diff --git a/samples/CMakeLists.txt b/samples/CMakeLists.txt deleted file mode 100644 index 799f34f10..000000000 --- a/samples/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -# ---------------------------------------------------------------------------- -# CMake file for samples. See root CMakeLists.txt -# -# ---------------------------------------------------------------------------- - -add_subdirectory(c) -add_subdirectory(cpp) -add_subdirectory(gpu) -add_subdirectory(ocl) - -if(ANDROID AND BUILD_ANDROID_EXAMPLES) - add_subdirectory(android) -endif() diff --git a/samples/MacOSX/FaceTracker/FaceTracker-Info.plist b/samples/MacOSX/FaceTracker/FaceTracker-Info.plist deleted file mode 100644 index 8388dcd4f..000000000 --- a/samples/MacOSX/FaceTracker/FaceTracker-Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - de.rwth-aachen.ient.FaceTracker - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - - diff --git a/samples/MacOSX/FaceTracker/FaceTracker.cpp b/samples/MacOSX/FaceTracker/FaceTracker.cpp deleted file mode 100644 index 0b972f8ac..000000000 --- a/samples/MacOSX/FaceTracker/FaceTracker.cpp +++ /dev/null @@ -1,86 +0,0 @@ - -#include -#include -#include - - -const char * WINDOW_NAME = "Face Tracker"; -const CFIndex CASCADE_NAME_LEN = 2048; - char CASCADE_NAME[CASCADE_NAME_LEN] = "~/opencv/data/haarcascades/haarcascade_frontalface_alt2.xml"; - -using namespace std; - -int main (int argc, char * const argv[]) -{ - const int scale = 2; - - // locate haar cascade from inside application bundle - // (this is the mac way to package application resources) - CFBundleRef mainBundle = CFBundleGetMainBundle (); - assert (mainBundle); - CFURLRef cascade_url = CFBundleCopyResourceURL (mainBundle, CFSTR("haarcascade_frontalface_alt2"), CFSTR("xml"), NULL); - assert (cascade_url); - Boolean got_it = CFURLGetFileSystemRepresentation (cascade_url, true, - reinterpret_cast(CASCADE_NAME), CASCADE_NAME_LEN); - if (! got_it) - abort (); - - // create all necessary instances - cvNamedWindow (WINDOW_NAME, CV_WINDOW_AUTOSIZE); - CvCapture * camera = cvCreateCameraCapture (CV_CAP_ANY); - CvHaarClassifierCascade* cascade = (CvHaarClassifierCascade*) cvLoad (CASCADE_NAME, 0, 0, 0); - CvMemStorage* storage = cvCreateMemStorage(0); - assert (storage); - - // you do own an iSight, don't you ?!? - if (! camera) - abort (); - - // did we load the cascade?!? - if (! cascade) - abort (); - - // get an initial frame and duplicate it for later work - IplImage * current_frame = cvQueryFrame (camera); - IplImage * draw_image = cvCreateImage(cvSize (current_frame->width, current_frame->height), IPL_DEPTH_8U, 3); - IplImage * gray_image = cvCreateImage(cvSize (current_frame->width, current_frame->height), IPL_DEPTH_8U, 1); - IplImage * small_image = cvCreateImage(cvSize (current_frame->width / scale, current_frame->height / scale), IPL_DEPTH_8U, 1); - assert (current_frame && gray_image && draw_image); - - // as long as there are images ... - while (current_frame = cvQueryFrame (camera)) - { - // convert to gray and downsize - cvCvtColor (current_frame, gray_image, CV_BGR2GRAY); - cvResize (gray_image, small_image, CV_INTER_LINEAR); - - // detect faces - CvSeq* faces = cvHaarDetectObjects (small_image, cascade, storage, - 1.1, 2, CV_HAAR_DO_CANNY_PRUNING, - cvSize (30, 30)); - - // draw faces - cvFlip (current_frame, draw_image, 1); - for (int i = 0; i < (faces ? faces->total : 0); i++) - { - CvRect* r = (CvRect*) cvGetSeqElem (faces, i); - CvPoint center; - int radius; - center.x = cvRound((small_image->width - r->width*0.5 - r->x) *scale); - center.y = cvRound((r->y + r->height*0.5)*scale); - radius = cvRound((r->width + r->height)*0.25*scale); - cvCircle (draw_image, center, radius, CV_RGB(0,255,0), 3, 8, 0 ); - } - - // just show the image - cvShowImage (WINDOW_NAME, draw_image); - - // wait a tenth of a second for keypress and window drawing - int key = cvWaitKey (100); - if (key == 'q' || key == 'Q') - break; - } - - // be nice and return no error - return 0; -} diff --git a/samples/MacOSX/FaceTracker/FaceTracker.xcodeproj/project.pbxproj b/samples/MacOSX/FaceTracker/FaceTracker.xcodeproj/project.pbxproj deleted file mode 100644 index 5d793c420..000000000 --- a/samples/MacOSX/FaceTracker/FaceTracker.xcodeproj/project.pbxproj +++ /dev/null @@ -1,262 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 42; - objects = { - -/* Begin PBXBuildFile section */ - 4D7DBE8E0C04A90C00D8835D /* FaceTracker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08FB7796FE84155DC02AAC07 /* FaceTracker.cpp */; }; - 4D95C9BE0C0577B200983E4D /* OpenCV.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D06E1E00C039982004AF23F /* OpenCV.framework */; }; - 4D95C9D80C0577BD00983E4D /* OpenCV.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4D06E1E00C039982004AF23F /* OpenCV.framework */; }; - 4DBF87310C05731500880673 /* haarcascade_frontalface_alt2.xml in Resources */ = {isa = PBXBuildFile; fileRef = 4DBF87300C05731500880673 /* haarcascade_frontalface_alt2.xml */; }; -/* End PBXBuildFile section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 4D7DBE8F0C04A93300D8835D /* CopyFiles */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - 4D95C9D80C0577BD00983E4D /* OpenCV.framework in CopyFiles */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 08FB7796FE84155DC02AAC07 /* FaceTracker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FaceTracker.cpp; sourceTree = ""; }; - 4D06E1E00C039982004AF23F /* OpenCV.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenCV.framework; path = ../../../OpenCV.framework; sourceTree = SOURCE_ROOT; }; - 4D4CDBCC0C0630060001A8A2 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = ""; }; - 4D7DBE570C04A8FF00D8835D /* FaceTracker.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FaceTracker.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 4D7DBE590C04A8FF00D8835D /* FaceTracker-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = "FaceTracker-Info.plist"; sourceTree = ""; }; - 4DBF87300C05731500880673 /* haarcascade_frontalface_alt2.xml */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = text.xml; name = haarcascade_frontalface_alt2.xml; path = ../../../data/haarcascades/haarcascade_frontalface_alt2.xml; sourceTree = SOURCE_ROOT; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 4D7DBE550C04A8FF00D8835D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4D95C9BE0C0577B200983E4D /* OpenCV.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 08FB7794FE84155DC02AAC07 /* FrameworkTest */ = { - isa = PBXGroup; - children = ( - 4D4CDBCC0C0630060001A8A2 /* README.txt */, - 08FB7795FE84155DC02AAC07 /* Source */, - 4DBF872C0C0572BC00880673 /* Resources */, - 4D9D40B00C04AC1600EEFFD0 /* Frameworks */, - 1AB674ADFE9D54B511CA2CBB /* Products */, - ); - name = FrameworkTest; - sourceTree = ""; - }; - 08FB7795FE84155DC02AAC07 /* Source */ = { - isa = PBXGroup; - children = ( - 08FB7796FE84155DC02AAC07 /* FaceTracker.cpp */, - ); - name = Source; - sourceTree = ""; - }; - 1AB674ADFE9D54B511CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - 4D7DBE570C04A8FF00D8835D /* FaceTracker.app */, - ); - name = Products; - sourceTree = ""; - }; - 4D9D40B00C04AC1600EEFFD0 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 4D06E1E00C039982004AF23F /* OpenCV.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 4DBF872C0C0572BC00880673 /* Resources */ = { - isa = PBXGroup; - children = ( - 4DBF87300C05731500880673 /* haarcascade_frontalface_alt2.xml */, - 4D7DBE590C04A8FF00D8835D /* FaceTracker-Info.plist */, - ); - name = Resources; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 4D7DBE560C04A8FF00D8835D /* FaceTracker */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4D7DBE5A0C04A8FF00D8835D /* Build configuration list for PBXNativeTarget "FaceTracker" */; - buildPhases = ( - 4D7DBE530C04A8FF00D8835D /* Resources */, - 4D7DBE540C04A8FF00D8835D /* Sources */, - 4D7DBE550C04A8FF00D8835D /* Frameworks */, - 4D7DBE8F0C04A93300D8835D /* CopyFiles */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = FaceTracker; - productName = FaceTracker; - productReference = 4D7DBE570C04A8FF00D8835D /* FaceTracker.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 08FB7793FE84155DC02AAC07 /* Project object */ = { - isa = PBXProject; - buildConfigurationList = 1DEB923508733DC60010E9CD /* Build configuration list for PBXProject "FaceTracker" */; - hasScannedForEncodings = 1; - mainGroup = 08FB7794FE84155DC02AAC07 /* FrameworkTest */; - projectDirPath = ""; - targets = ( - 4D7DBE560C04A8FF00D8835D /* FaceTracker */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 4D7DBE530C04A8FF00D8835D /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4DBF87310C05731500880673 /* haarcascade_frontalface_alt2.xml in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 4D7DBE540C04A8FF00D8835D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4D7DBE8E0C04A90C00D8835D /* FaceTracker.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - 1DEB923608733DC60010E9CD /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - PREBINDING = NO; - SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; - }; - name = Debug; - }; - 1DEB923708733DC60010E9CD /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = ( - ppc, - i386, - ); - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - PREBINDING = NO; - SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; - }; - name = Release; - }; - 4D7DBE5B0C04A8FF00D8835D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_2)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../opencv\""; - FRAMEWORK_SEARCH_PATHS_QUOTED_2 = "\"$(SRCROOT)/../../..\""; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/Carbon.framework/Headers/Carbon.h"; - INFOPLIST_FILE = "FaceTracker-Info.plist"; - INSTALL_PATH = "$(HOME)/Applications"; - OTHER_LDFLAGS = ( - "-framework", - Carbon, - ); - PREBINDING = NO; - PRODUCT_NAME = FaceTracker; - WRAPPER_EXTENSION = app; - ZERO_LINK = YES; - }; - name = Debug; - }; - 4D7DBE5C0C04A8FF00D8835D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = YES; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_2)", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../opencv\""; - FRAMEWORK_SEARCH_PATHS_QUOTED_2 = "\"$(SRCROOT)/../../..\""; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_MODEL_TUNING = G5; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/Carbon.framework/Headers/Carbon.h"; - INFOPLIST_FILE = "FaceTracker-Info.plist"; - INSTALL_PATH = "$(HOME)/Applications"; - OTHER_LDFLAGS = ( - "-framework", - Carbon, - ); - PREBINDING = NO; - PRODUCT_NAME = FaceTracker; - WRAPPER_EXTENSION = app; - ZERO_LINK = NO; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 1DEB923508733DC60010E9CD /* Build configuration list for PBXProject "FaceTracker" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1DEB923608733DC60010E9CD /* Debug */, - 1DEB923708733DC60010E9CD /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4D7DBE5A0C04A8FF00D8835D /* Build configuration list for PBXNativeTarget "FaceTracker" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4D7DBE5B0C04A8FF00D8835D /* Debug */, - 4D7DBE5C0C04A8FF00D8835D /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; -} diff --git a/samples/MacOSX/FaceTracker/README.txt b/samples/MacOSX/FaceTracker/README.txt deleted file mode 100644 index 11f433e39..000000000 --- a/samples/MacOSX/FaceTracker/README.txt +++ /dev/null @@ -1,35 +0,0 @@ -FaceTracker/REAME.txt -2007-05-24, Mark Asbach - -Objective: -This document is intended to get you up and running with an OpenCV Framework on Mac OS X - -Building the OpenCV.framework: -In the main directory of the opencv distribution, you will find a shell script called -'make_frameworks.sh' that does all of the typical unixy './configure && make' stuff required -to build a universal binary framework. Invoke this script from Terminal.app, wait some minutes -and you are done. - -OpenCV is a Private Framework: -On Mac OS X the concept of Framework bundles is meant to simplify distribution of shared libraries, -accompanying headers and documentation. There are however to subtly different 'flavours' of -Frameworks: public and private ones. The public frameworks get installed into the Frameworks -diretories in /Library, /System/Library or ~/Library and are meant to be shared amongst -applications. The private frameworks are only distributed as parts of an Application Bundle. -This makes it easier to deploy applications because they bring their own framework invisibly to -the user. No installation of the framework is necessary and different applications can bring -different versions of the same framework without any conflict. -Since OpenCV is still a moving target, it seems best to avoid any installation and versioning issues -for an end user. The OpenCV framework that currently comes with this demo application therefore -is a Private Framework. - -Use it for targets that result in an Application Bundle: -Since it is a Private Framework, it must be copied to the Frameworks/ directory of an Application -Bundle, which means, it is useless for plain unix console applications. You should create a Carbon -or a Cocoa application target in XCode for your projects. Then add the OpenCV.framework just like -in this demo and add a Copy Files build phase to your target. Let that phase copy to the Framework -directory and drop the OpenCV.framework on the build phase (again just like in this demo code). - -The resulting application bundle will be self contained and if you set compiler option correctly -(in the "Build" tab of the "Project Info" window you should find 'i386 ppc' for the architectures), -your application can just be copied to any OS 10.4 Mac and used without further installation. diff --git a/samples/android/.gitignore b/samples/android/.gitignore deleted file mode 100644 index 2d406cbbc..000000000 --- a/samples/android/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -bin/ -gen/ -build.xml -local.properties -proguard-project.txt -project.properties -default.properties \ No newline at end of file diff --git a/samples/android/15-puzzle/.classpath b/samples/android/15-puzzle/.classpath deleted file mode 100644 index 3f9691c5d..000000000 --- a/samples/android/15-puzzle/.classpath +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/samples/android/15-puzzle/.project b/samples/android/15-puzzle/.project deleted file mode 100644 index e7ad66040..000000000 --- a/samples/android/15-puzzle/.project +++ /dev/null @@ -1,33 +0,0 @@ - - - OpenCV Sample - 15 puzzle - - - - - - com.android.ide.eclipse.adt.ResourceManagerBuilder - - - - - com.android.ide.eclipse.adt.PreCompilerBuilder - - - - - org.eclipse.jdt.core.javabuilder - - - - - com.android.ide.eclipse.adt.ApkBuilder - - - - - - com.android.ide.eclipse.adt.AndroidNature - org.eclipse.jdt.core.javanature - - diff --git a/samples/android/15-puzzle/.settings/org.eclipse.jdt.core.prefs b/samples/android/15-puzzle/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index b080d2ddc..000000000 --- a/samples/android/15-puzzle/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,4 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 -org.eclipse.jdt.core.compiler.compliance=1.6 -org.eclipse.jdt.core.compiler.source=1.6 diff --git a/samples/android/15-puzzle/AndroidManifest.xml b/samples/android/15-puzzle/AndroidManifest.xml deleted file mode 100644 index 356382bf1..000000000 --- a/samples/android/15-puzzle/AndroidManifest.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/samples/android/15-puzzle/CMakeLists.txt b/samples/android/15-puzzle/CMakeLists.txt deleted file mode 100644 index 447931955..000000000 --- a/samples/android/15-puzzle/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -set(sample example-15-puzzle) - -add_android_project(${sample} "${CMAKE_CURRENT_SOURCE_DIR}" LIBRARY_DEPS ${OpenCV_BINARY_DIR} SDK_TARGET 11 ${ANDROID_SDK_TARGET}) -if(TARGET ${sample}) - add_dependencies(opencv_android_examples ${sample}) -endif() diff --git a/samples/android/15-puzzle/res/drawable/icon.png b/samples/android/15-puzzle/res/drawable/icon.png deleted file mode 100644 index 630454927..000000000 Binary files a/samples/android/15-puzzle/res/drawable/icon.png and /dev/null differ diff --git a/samples/android/15-puzzle/res/values/strings.xml b/samples/android/15-puzzle/res/values/strings.xml deleted file mode 100644 index 1421a4505..000000000 --- a/samples/android/15-puzzle/res/values/strings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - OCV 15 Puzzle - Show/hide tile numbers - Start new game - - \ No newline at end of file diff --git a/samples/android/15-puzzle/src/org/opencv/samples/puzzle15/Puzzle15Processor.java b/samples/android/15-puzzle/src/org/opencv/samples/puzzle15/Puzzle15Processor.java deleted file mode 100644 index 1ffeca82e..000000000 --- a/samples/android/15-puzzle/src/org/opencv/samples/puzzle15/Puzzle15Processor.java +++ /dev/null @@ -1,194 +0,0 @@ -package org.opencv.samples.puzzle15; - -import org.opencv.core.Core; -import org.opencv.core.CvType; -import org.opencv.core.Mat; -import org.opencv.core.Scalar; -import org.opencv.core.Size; -import org.opencv.core.Point; - -import android.util.Log; - - -/** - * This class is a controller for puzzle game. - * It converts the image from Camera into the shuffled image - */ -public class Puzzle15Processor { - - private static final int GRID_SIZE = 4; - private static final int GRID_AREA = GRID_SIZE * GRID_SIZE; - private static final int GRID_EMPTY_INDEX = GRID_AREA - 1; - private static final String TAG = "Puzzle15Processor"; - private static final Scalar GRID_EMPTY_COLOR = new Scalar(0x33, 0x33, 0x33, 0xFF); - - private int[] mIndexes; - private int[] mTextWidths; - private int[] mTextHeights; - - private Mat mRgba15; - private Mat[] mCells15; - private boolean mShowTileNumbers = true; - - public Puzzle15Processor() { - mTextWidths = new int[GRID_AREA]; - mTextHeights = new int[GRID_AREA]; - - mIndexes = new int [GRID_AREA]; - - for (int i = 0; i < GRID_AREA; i++) - mIndexes[i] = i; - } - - /* this method is intended to make processor prepared for a new game */ - public synchronized void prepareNewGame() { - do { - shuffle(mIndexes); - } while (!isPuzzleSolvable()); - } - - /* This method is to make the processor know the size of the frames that - * will be delivered via puzzleFrame. - * If the frames will be different size - then the result is unpredictable - */ - public synchronized void prepareGameSize(int width, int height) { - mRgba15 = new Mat(height, width, CvType.CV_8UC4); - mCells15 = new Mat[GRID_AREA]; - - for (int i = 0; i < GRID_SIZE; i++) { - for (int j = 0; j < GRID_SIZE; j++) { - int k = i * GRID_SIZE + j; - mCells15[k] = mRgba15.submat(i * height / GRID_SIZE, (i + 1) * height / GRID_SIZE, j * width / GRID_SIZE, (j + 1) * width / GRID_SIZE); - } - } - - for (int i = 0; i < GRID_AREA; i++) { - Size s = Core.getTextSize(Integer.toString(i + 1), 3/* CV_FONT_HERSHEY_COMPLEX */, 1, 2, null); - mTextHeights[i] = (int) s.height; - mTextWidths[i] = (int) s.width; - } - } - - /* this method to be called from the outside. it processes the frame and shuffles - * the tiles as specified by mIndexes array - */ - public synchronized Mat puzzleFrame(Mat inputPicture) { - Mat[] cells = new Mat[GRID_AREA]; - int rows = inputPicture.rows(); - int cols = inputPicture.cols(); - - rows = rows - rows%4; - cols = cols - cols%4; - - for (int i = 0; i < GRID_SIZE; i++) { - for (int j = 0; j < GRID_SIZE; j++) { - int k = i * GRID_SIZE + j; - cells[k] = inputPicture.submat(i * inputPicture.rows() / GRID_SIZE, (i + 1) * inputPicture.rows() / GRID_SIZE, j * inputPicture.cols()/ GRID_SIZE, (j + 1) * inputPicture.cols() / GRID_SIZE); - } - } - - rows = rows - rows%4; - cols = cols - cols%4; - - // copy shuffled tiles - for (int i = 0; i < GRID_AREA; i++) { - int idx = mIndexes[i]; - if (idx == GRID_EMPTY_INDEX) - mCells15[i].setTo(GRID_EMPTY_COLOR); - else { - cells[idx].copyTo(mCells15[i]); - if (mShowTileNumbers) { - Core.putText(mCells15[i], Integer.toString(1 + idx), new Point((cols / GRID_SIZE - mTextWidths[idx]) / 2, - (rows / GRID_SIZE + mTextHeights[idx]) / 2), 3/* CV_FONT_HERSHEY_COMPLEX */, 1, new Scalar(255, 0, 0, 255), 2); - } - } - } - - for (int i = 0; i < GRID_AREA; i++) - cells[i].release(); - - drawGrid(cols, rows, mRgba15); - - return mRgba15; - } - - public void toggleTileNumbers() { - mShowTileNumbers = !mShowTileNumbers; - } - - public void deliverTouchEvent(int x, int y) { - int rows = mRgba15.rows(); - int cols = mRgba15.cols(); - - int row = (int) Math.floor(y * GRID_SIZE / rows); - int col = (int) Math.floor(x * GRID_SIZE / cols); - - if (row < 0 || row >= GRID_SIZE || col < 0 || col >= GRID_SIZE) { - Log.e(TAG, "It is not expected to get touch event outside of picture"); - return ; - } - - int idx = row * GRID_SIZE + col; - int idxtoswap = -1; - - // left - if (idxtoswap < 0 && col > 0) - if (mIndexes[idx - 1] == GRID_EMPTY_INDEX) - idxtoswap = idx - 1; - // right - if (idxtoswap < 0 && col < GRID_SIZE - 1) - if (mIndexes[idx + 1] == GRID_EMPTY_INDEX) - idxtoswap = idx + 1; - // top - if (idxtoswap < 0 && row > 0) - if (mIndexes[idx - GRID_SIZE] == GRID_EMPTY_INDEX) - idxtoswap = idx - GRID_SIZE; - // bottom - if (idxtoswap < 0 && row < GRID_SIZE - 1) - if (mIndexes[idx + GRID_SIZE] == GRID_EMPTY_INDEX) - idxtoswap = idx + GRID_SIZE; - - // swap - if (idxtoswap >= 0) { - synchronized (this) { - int touched = mIndexes[idx]; - mIndexes[idx] = mIndexes[idxtoswap]; - mIndexes[idxtoswap] = touched; - } - } - } - - private void drawGrid(int cols, int rows, Mat drawMat) { - for (int i = 1; i < GRID_SIZE; i++) { - Core.line(drawMat, new Point(0, i * rows / GRID_SIZE), new Point(cols, i * rows / GRID_SIZE), new Scalar(0, 255, 0, 255), 3); - Core.line(drawMat, new Point(i * cols / GRID_SIZE, 0), new Point(i * cols / GRID_SIZE, rows), new Scalar(0, 255, 0, 255), 3); - } - } - - private static void shuffle(int[] array) { - for (int i = array.length; i > 1; i--) { - int temp = array[i - 1]; - int randIx = (int) (Math.random() * i); - array[i - 1] = array[randIx]; - array[randIx] = temp; - } - } - - private boolean isPuzzleSolvable() { - - int sum = 0; - for (int i = 0; i < GRID_AREA; i++) { - if (mIndexes[i] == GRID_EMPTY_INDEX) - sum += (i / GRID_SIZE) + 1; - else { - int smaller = 0; - for (int j = i + 1; j < GRID_AREA; j++) { - if (mIndexes[j] < mIndexes[i]) - smaller++; - } - sum += smaller; - } - } - return sum % 2 == 0; - } -} diff --git a/samples/android/color-blob-detection/.classpath b/samples/android/color-blob-detection/.classpath deleted file mode 100644 index 3f9691c5d..000000000 --- a/samples/android/color-blob-detection/.classpath +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/samples/android/color-blob-detection/.project b/samples/android/color-blob-detection/.project deleted file mode 100644 index c86365259..000000000 --- a/samples/android/color-blob-detection/.project +++ /dev/null @@ -1,33 +0,0 @@ - - - OpenCV Sample - color-blob-detection - - - - - - com.android.ide.eclipse.adt.ResourceManagerBuilder - - - - - com.android.ide.eclipse.adt.PreCompilerBuilder - - - - - org.eclipse.jdt.core.javabuilder - - - - - com.android.ide.eclipse.adt.ApkBuilder - - - - - - com.android.ide.eclipse.adt.AndroidNature - org.eclipse.jdt.core.javanature - - diff --git a/samples/android/color-blob-detection/.settings/org.eclipse.jdt.core.prefs b/samples/android/color-blob-detection/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index b080d2ddc..000000000 --- a/samples/android/color-blob-detection/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,4 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 -org.eclipse.jdt.core.compiler.compliance=1.6 -org.eclipse.jdt.core.compiler.source=1.6 diff --git a/samples/android/color-blob-detection/AndroidManifest.xml b/samples/android/color-blob-detection/AndroidManifest.xml deleted file mode 100644 index d322ba27d..000000000 --- a/samples/android/color-blob-detection/AndroidManifest.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/android/color-blob-detection/CMakeLists.txt b/samples/android/color-blob-detection/CMakeLists.txt deleted file mode 100644 index 400db29ce..000000000 --- a/samples/android/color-blob-detection/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -set(sample example-color-blob-detection) - -add_android_project(${sample} "${CMAKE_CURRENT_SOURCE_DIR}" LIBRARY_DEPS ${OpenCV_BINARY_DIR} SDK_TARGET 11 ${ANDROID_SDK_TARGET}) -if(TARGET ${sample}) - add_dependencies(opencv_android_examples ${sample}) -endif() - diff --git a/samples/android/color-blob-detection/res/drawable/icon.png b/samples/android/color-blob-detection/res/drawable/icon.png deleted file mode 100644 index 630454927..000000000 Binary files a/samples/android/color-blob-detection/res/drawable/icon.png and /dev/null differ diff --git a/samples/android/color-blob-detection/res/layout/color_blob_detection_surface_view.xml b/samples/android/color-blob-detection/res/layout/color_blob_detection_surface_view.xml deleted file mode 100644 index 94531a60d..000000000 --- a/samples/android/color-blob-detection/res/layout/color_blob_detection_surface_view.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - diff --git a/samples/android/color-blob-detection/res/values/strings.xml b/samples/android/color-blob-detection/res/values/strings.xml deleted file mode 100644 index 5b6f2c163..000000000 --- a/samples/android/color-blob-detection/res/values/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - OCV Color Blob Detection - \ No newline at end of file diff --git a/samples/android/color-blob-detection/src/org/opencv/samples/colorblobdetect/ColorBlobDetectionActivity.java b/samples/android/color-blob-detection/src/org/opencv/samples/colorblobdetect/ColorBlobDetectionActivity.java deleted file mode 100644 index 0799df26d..000000000 --- a/samples/android/color-blob-detection/src/org/opencv/samples/colorblobdetect/ColorBlobDetectionActivity.java +++ /dev/null @@ -1,190 +0,0 @@ -package org.opencv.samples.colorblobdetect; - -import java.util.List; - -import org.opencv.android.BaseLoaderCallback; -import org.opencv.android.CameraBridgeViewBase.CvCameraViewFrame; -import org.opencv.android.LoaderCallbackInterface; -import org.opencv.android.OpenCVLoader; -import org.opencv.core.Core; -import org.opencv.core.CvType; -import org.opencv.core.Mat; -import org.opencv.core.MatOfPoint; -import org.opencv.core.Rect; -import org.opencv.core.Scalar; -import org.opencv.core.Size; -import org.opencv.android.CameraBridgeViewBase; -import org.opencv.android.CameraBridgeViewBase.CvCameraViewListener2; -import org.opencv.imgproc.Imgproc; - -import android.app.Activity; -import android.os.Bundle; -import android.util.Log; -import android.view.MotionEvent; -import android.view.View; -import android.view.Window; -import android.view.WindowManager; -import android.view.View.OnTouchListener; - -public class ColorBlobDetectionActivity extends Activity implements OnTouchListener, CvCameraViewListener2 { - private static final String TAG = "OCVSample::Activity"; - - private boolean mIsColorSelected = false; - private Mat mRgba; - private Scalar mBlobColorRgba; - private Scalar mBlobColorHsv; - private ColorBlobDetector mDetector; - private Mat mSpectrum; - private Size SPECTRUM_SIZE; - private Scalar CONTOUR_COLOR; - - private CameraBridgeViewBase mOpenCvCameraView; - - private BaseLoaderCallback mLoaderCallback = new BaseLoaderCallback(this) { - @Override - public void onManagerConnected(int status) { - switch (status) { - case LoaderCallbackInterface.SUCCESS: - { - Log.i(TAG, "OpenCV loaded successfully"); - mOpenCvCameraView.enableView(); - mOpenCvCameraView.setOnTouchListener(ColorBlobDetectionActivity.this); - } break; - default: - { - super.onManagerConnected(status); - } break; - } - } - }; - - public ColorBlobDetectionActivity() { - Log.i(TAG, "Instantiated new " + this.getClass()); - } - - /** Called when the activity is first created. */ - @Override - public void onCreate(Bundle savedInstanceState) { - Log.i(TAG, "called onCreate"); - super.onCreate(savedInstanceState); - requestWindowFeature(Window.FEATURE_NO_TITLE); - getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); - - setContentView(R.layout.color_blob_detection_surface_view); - - mOpenCvCameraView = (CameraBridgeViewBase) findViewById(R.id.color_blob_detection_activity_surface_view); - mOpenCvCameraView.setCvCameraViewListener(this); - } - - @Override - public void onPause() - { - super.onPause(); - if (mOpenCvCameraView != null) - mOpenCvCameraView.disableView(); - } - - @Override - public void onResume() - { - super.onResume(); - OpenCVLoader.initAsync(OpenCVLoader.OPENCV_VERSION_2_4_3, this, mLoaderCallback); - } - - public void onDestroy() { - super.onDestroy(); - if (mOpenCvCameraView != null) - mOpenCvCameraView.disableView(); - } - - public void onCameraViewStarted(int width, int height) { - mRgba = new Mat(height, width, CvType.CV_8UC4); - mDetector = new ColorBlobDetector(); - mSpectrum = new Mat(); - mBlobColorRgba = new Scalar(255); - mBlobColorHsv = new Scalar(255); - SPECTRUM_SIZE = new Size(200, 64); - CONTOUR_COLOR = new Scalar(255,0,0,255); - } - - public void onCameraViewStopped() { - mRgba.release(); - } - - public boolean onTouch(View v, MotionEvent event) { - int cols = mRgba.cols(); - int rows = mRgba.rows(); - - int xOffset = (mOpenCvCameraView.getWidth() - cols) / 2; - int yOffset = (mOpenCvCameraView.getHeight() - rows) / 2; - - int x = (int)event.getX() - xOffset; - int y = (int)event.getY() - yOffset; - - Log.i(TAG, "Touch image coordinates: (" + x + ", " + y + ")"); - - if ((x < 0) || (y < 0) || (x > cols) || (y > rows)) return false; - - Rect touchedRect = new Rect(); - - touchedRect.x = (x>4) ? x-4 : 0; - touchedRect.y = (y>4) ? y-4 : 0; - - touchedRect.width = (x+4 < cols) ? x + 4 - touchedRect.x : cols - touchedRect.x; - touchedRect.height = (y+4 < rows) ? y + 4 - touchedRect.y : rows - touchedRect.y; - - Mat touchedRegionRgba = mRgba.submat(touchedRect); - - Mat touchedRegionHsv = new Mat(); - Imgproc.cvtColor(touchedRegionRgba, touchedRegionHsv, Imgproc.COLOR_RGB2HSV_FULL); - - // Calculate average color of touched region - mBlobColorHsv = Core.sumElems(touchedRegionHsv); - int pointCount = touchedRect.width*touchedRect.height; - for (int i = 0; i < mBlobColorHsv.val.length; i++) - mBlobColorHsv.val[i] /= pointCount; - - mBlobColorRgba = converScalarHsv2Rgba(mBlobColorHsv); - - Log.i(TAG, "Touched rgba color: (" + mBlobColorRgba.val[0] + ", " + mBlobColorRgba.val[1] + - ", " + mBlobColorRgba.val[2] + ", " + mBlobColorRgba.val[3] + ")"); - - mDetector.setHsvColor(mBlobColorHsv); - - Imgproc.resize(mDetector.getSpectrum(), mSpectrum, SPECTRUM_SIZE); - - mIsColorSelected = true; - - touchedRegionRgba.release(); - touchedRegionHsv.release(); - - return false; // don't need subsequent touch events - } - - public Mat onCameraFrame(CvCameraViewFrame inputFrame) { - mRgba = inputFrame.rgba(); - - if (mIsColorSelected) { - mDetector.process(mRgba); - List contours = mDetector.getContours(); - Log.e(TAG, "Contours count: " + contours.size()); - Core.drawContours(mRgba, contours, -1, CONTOUR_COLOR); - - Mat colorLabel = mRgba.submat(4, 68, 4, 68); - colorLabel.setTo(mBlobColorRgba); - - Mat spectrumLabel = mRgba.submat(4, 4 + mSpectrum.rows(), 70, 70 + mSpectrum.cols()); - mSpectrum.copyTo(spectrumLabel); - } - - return mRgba; - } - - private Scalar converScalarHsv2Rgba(Scalar hsvColor) { - Mat pointMatRgba = new Mat(); - Mat pointMatHsv = new Mat(1, 1, CvType.CV_8UC3, hsvColor); - Imgproc.cvtColor(pointMatHsv, pointMatRgba, Imgproc.COLOR_HSV2RGB_FULL, 4); - - return new Scalar(pointMatRgba.get(0, 0)); - } -} \ No newline at end of file diff --git a/samples/android/color-blob-detection/src/org/opencv/samples/colorblobdetect/ColorBlobDetector.java b/samples/android/color-blob-detection/src/org/opencv/samples/colorblobdetect/ColorBlobDetector.java deleted file mode 100644 index 21988a81a..000000000 --- a/samples/android/color-blob-detection/src/org/opencv/samples/colorblobdetect/ColorBlobDetector.java +++ /dev/null @@ -1,108 +0,0 @@ -package org.opencv.samples.colorblobdetect; - -import java.util.ArrayList; -import java.util.Iterator; -import java.util.List; - -import org.opencv.core.Core; -import org.opencv.core.CvType; -import org.opencv.core.Mat; -import org.opencv.core.MatOfPoint; -import org.opencv.core.Scalar; -import org.opencv.imgproc.Imgproc; - -public class ColorBlobDetector { - // Lower and Upper bounds for range checking in HSV color space - private Scalar mLowerBound = new Scalar(0); - private Scalar mUpperBound = new Scalar(0); - // Minimum contour area in percent for contours filtering - private static double mMinContourArea = 0.1; - // Color radius for range checking in HSV color space - private Scalar mColorRadius = new Scalar(25,50,50,0); - private Mat mSpectrum = new Mat(); - private List mContours = new ArrayList(); - - // Cache - Mat mPyrDownMat = new Mat(); - Mat mHsvMat = new Mat(); - Mat mMask = new Mat(); - Mat mDilatedMask = new Mat(); - Mat mHierarchy = new Mat(); - - public void setColorRadius(Scalar radius) { - mColorRadius = radius; - } - - public void setHsvColor(Scalar hsvColor) { - double minH = (hsvColor.val[0] >= mColorRadius.val[0]) ? hsvColor.val[0]-mColorRadius.val[0] : 0; - double maxH = (hsvColor.val[0]+mColorRadius.val[0] <= 255) ? hsvColor.val[0]+mColorRadius.val[0] : 255; - - mLowerBound.val[0] = minH; - mUpperBound.val[0] = maxH; - - mLowerBound.val[1] = hsvColor.val[1] - mColorRadius.val[1]; - mUpperBound.val[1] = hsvColor.val[1] + mColorRadius.val[1]; - - mLowerBound.val[2] = hsvColor.val[2] - mColorRadius.val[2]; - mUpperBound.val[2] = hsvColor.val[2] + mColorRadius.val[2]; - - mLowerBound.val[3] = 0; - mUpperBound.val[3] = 255; - - Mat spectrumHsv = new Mat(1, (int)(maxH-minH), CvType.CV_8UC3); - - for (int j = 0; j < maxH-minH; j++) { - byte[] tmp = {(byte)(minH+j), (byte)255, (byte)255}; - spectrumHsv.put(0, j, tmp); - } - - Imgproc.cvtColor(spectrumHsv, mSpectrum, Imgproc.COLOR_HSV2RGB_FULL, 4); - } - - public Mat getSpectrum() { - return mSpectrum; - } - - public void setMinContourArea(double area) { - mMinContourArea = area; - } - - public void process(Mat rgbaImage) { - Imgproc.pyrDown(rgbaImage, mPyrDownMat); - Imgproc.pyrDown(mPyrDownMat, mPyrDownMat); - - Imgproc.cvtColor(mPyrDownMat, mHsvMat, Imgproc.COLOR_RGB2HSV_FULL); - - Core.inRange(mHsvMat, mLowerBound, mUpperBound, mMask); - Imgproc.dilate(mMask, mDilatedMask, new Mat()); - - List contours = new ArrayList(); - - Imgproc.findContours(mDilatedMask, contours, mHierarchy, Imgproc.RETR_EXTERNAL, Imgproc.CHAIN_APPROX_SIMPLE); - - // Find max contour area - double maxArea = 0; - Iterator each = contours.iterator(); - while (each.hasNext()) { - MatOfPoint wrapper = each.next(); - double area = Imgproc.contourArea(wrapper); - if (area > maxArea) - maxArea = area; - } - - // Filter contours by area and resize to fit the original image size - mContours.clear(); - each = contours.iterator(); - while (each.hasNext()) { - MatOfPoint contour = each.next(); - if (Imgproc.contourArea(contour) > mMinContourArea*maxArea) { - Core.multiply(contour, new Scalar(4,4), contour); - mContours.add(contour); - } - } - } - - public List getContours() { - return mContours; - } -} diff --git a/samples/android/face-detection/.classpath b/samples/android/face-detection/.classpath deleted file mode 100644 index 3f9691c5d..000000000 --- a/samples/android/face-detection/.classpath +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/samples/android/face-detection/.cproject b/samples/android/face-detection/.cproject deleted file mode 100644 index f57ae9006..000000000 --- a/samples/android/face-detection/.cproject +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/android/face-detection/.project b/samples/android/face-detection/.project deleted file mode 100644 index 4cb4e8f64..000000000 --- a/samples/android/face-detection/.project +++ /dev/null @@ -1,101 +0,0 @@ - - - OpenCV Sample - face-detection - - - - - - org.eclipse.cdt.managedbuilder.core.genmakebuilder - auto,full,incremental, - - - ?name? - - - - org.eclipse.cdt.make.core.append_environment - true - - - org.eclipse.cdt.make.core.autoBuildTarget - - - - org.eclipse.cdt.make.core.buildArguments - - - - org.eclipse.cdt.make.core.buildCommand - ${NDKROOT}/ndk-build.cmd - - - org.eclipse.cdt.make.core.cleanBuildTarget - clean - - - org.eclipse.cdt.make.core.contents - org.eclipse.cdt.make.core.activeConfigSettings - - - org.eclipse.cdt.make.core.enableAutoBuild - true - - - org.eclipse.cdt.make.core.enableCleanBuild - false - - - org.eclipse.cdt.make.core.enableFullBuild - true - - - org.eclipse.cdt.make.core.fullBuildTarget - - - - org.eclipse.cdt.make.core.stopOnError - true - - - org.eclipse.cdt.make.core.useDefaultBuildCmd - false - - - - - com.android.ide.eclipse.adt.ResourceManagerBuilder - - - - - com.android.ide.eclipse.adt.PreCompilerBuilder - - - - - org.eclipse.jdt.core.javabuilder - - - - - com.android.ide.eclipse.adt.ApkBuilder - - - - - org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder - full,incremental, - - - - - - com.android.ide.eclipse.adt.AndroidNature - org.eclipse.jdt.core.javanature - org.eclipse.cdt.core.cnature - org.eclipse.cdt.core.ccnature - org.eclipse.cdt.managedbuilder.core.managedBuildNature - org.eclipse.cdt.managedbuilder.core.ScannerConfigNature - - diff --git a/samples/android/face-detection/.settings/org.eclipse.jdt.core.prefs b/samples/android/face-detection/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index b080d2ddc..000000000 --- a/samples/android/face-detection/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,4 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 -org.eclipse.jdt.core.compiler.compliance=1.6 -org.eclipse.jdt.core.compiler.source=1.6 diff --git a/samples/android/face-detection/AndroidManifest.xml b/samples/android/face-detection/AndroidManifest.xml deleted file mode 100644 index bcbb34de3..000000000 --- a/samples/android/face-detection/AndroidManifest.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/android/face-detection/CMakeLists.txt b/samples/android/face-detection/CMakeLists.txt deleted file mode 100644 index 70658a799..000000000 --- a/samples/android/face-detection/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -set(sample example-face-detection) - -if(BUILD_FAT_JAVA_LIB) - set(native_deps opencv_java) -else() - set(native_deps opencv_contrib) -endif() - -add_android_project(${sample} "${CMAKE_CURRENT_SOURCE_DIR}" LIBRARY_DEPS ${OpenCV_BINARY_DIR} SDK_TARGET 11 ${ANDROID_SDK_TARGET} NATIVE_DEPS ${native_deps}) -if(TARGET ${sample}) - add_dependencies(opencv_android_examples ${sample}) -endif() - diff --git a/samples/android/face-detection/jni/Android.mk b/samples/android/face-detection/jni/Android.mk deleted file mode 100644 index e6db280c1..000000000 --- a/samples/android/face-detection/jni/Android.mk +++ /dev/null @@ -1,16 +0,0 @@ -LOCAL_PATH := $(call my-dir) - -include $(CLEAR_VARS) - -#OPENCV_CAMERA_MODULES:=off -#OPENCV_INSTALL_MODULES:=off -#OPENCV_LIB_TYPE:=SHARED -include ../../sdk/native/jni/OpenCV.mk - -LOCAL_SRC_FILES := DetectionBasedTracker_jni.cpp -LOCAL_C_INCLUDES += $(LOCAL_PATH) -LOCAL_LDLIBS += -llog -ldl - -LOCAL_MODULE := detection_based_tracker - -include $(BUILD_SHARED_LIBRARY) \ No newline at end of file diff --git a/samples/android/face-detection/jni/Application.mk b/samples/android/face-detection/jni/Application.mk deleted file mode 100644 index 4fffcb283..000000000 --- a/samples/android/face-detection/jni/Application.mk +++ /dev/null @@ -1,4 +0,0 @@ -APP_STL := gnustl_static -APP_CPPFLAGS := -frtti -fexceptions -APP_ABI := armeabi-v7a -APP_PLATFORM := android-8 diff --git a/samples/android/face-detection/jni/DetectionBasedTracker_jni.cpp b/samples/android/face-detection/jni/DetectionBasedTracker_jni.cpp deleted file mode 100644 index e0e53e370..000000000 --- a/samples/android/face-detection/jni/DetectionBasedTracker_jni.cpp +++ /dev/null @@ -1,249 +0,0 @@ -#include -#include -#include - -#include -#include - -#include - -#define LOG_TAG "FaceDetection/DetectionBasedTracker" -#define LOGD(...) ((void)__android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)) - -using namespace std; -using namespace cv; - -inline void vector_Rect_to_Mat(vector& v_rect, Mat& mat) -{ - mat = Mat(v_rect, true); -} - -class CascadeDetectorAdapter: public DetectionBasedTracker::IDetector -{ -public: - CascadeDetectorAdapter(cv::Ptr detector): - IDetector(), - Detector(detector) - { - LOGD("CascadeDetectorAdapter::Detect::Detect"); - CV_Assert(!detector.empty()); - } - - void detect(const cv::Mat &Image, std::vector &objects) - { - LOGD("CascadeDetectorAdapter::Detect: begin"); - LOGD("CascadeDetectorAdapter::Detect: scaleFactor=%.2f, minNeighbours=%d, minObjSize=(%dx%d), maxObjSize=(%dx%d)", scaleFactor, minNeighbours, minObjSize.width, minObjSize.height, maxObjSize.width, maxObjSize.height); - Detector->detectMultiScale(Image, objects, scaleFactor, minNeighbours, 0, minObjSize, maxObjSize); - LOGD("CascadeDetectorAdapter::Detect: end"); - } - - virtual ~CascadeDetectorAdapter() - { - LOGD("CascadeDetectorAdapter::Detect::~Detect"); - } - -private: - CascadeDetectorAdapter(); - cv::Ptr Detector; -}; - -struct DetectorAgregator -{ - cv::Ptr mainDetector; - cv::Ptr trackingDetector; - - cv::Ptr tracker; - DetectorAgregator(cv::Ptr& _mainDetector, cv::Ptr& _trackingDetector): - mainDetector(_mainDetector), - trackingDetector(_trackingDetector) - { - CV_Assert(!_mainDetector.empty()); - CV_Assert(!_trackingDetector.empty()); - - DetectionBasedTracker::Parameters DetectorParams; - tracker = new DetectionBasedTracker(mainDetector.ptr(), trackingDetector.ptr(), DetectorParams); - } -}; - -JNIEXPORT jlong JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject -(JNIEnv * jenv, jclass, jstring jFileName, jint faceSize) -{ - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject enter"); - const char* jnamestr = jenv->GetStringUTFChars(jFileName, NULL); - string stdFileName(jnamestr); - jlong result = 0; - - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject"); - - try - { - cv::Ptr mainDetector = new CascadeDetectorAdapter(new CascadeClassifier(stdFileName)); - cv::Ptr trackingDetector = new CascadeDetectorAdapter(new CascadeClassifier(stdFileName)); - result = (jlong)new DetectorAgregator(mainDetector, trackingDetector); - if (faceSize > 0) - { - mainDetector->setMinObjectSize(Size(faceSize, faceSize)); - //trackingDetector->setMinObjectSize(Size(faceSize, faceSize)); - } - } - catch(cv::Exception& e) - { - LOGD("nativeCreateObject caught cv::Exception: %s", e.what()); - jclass je = jenv->FindClass("org/opencv/core/CvException"); - if(!je) - je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, e.what()); - } - catch (...) - { - LOGD("nativeCreateObject caught unknown exception"); - jclass je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, "Unknown exception in JNI code {Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject(...)}"); - return 0; - } - - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject exit"); - return result; -} - -JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject -(JNIEnv * jenv, jclass, jlong thiz) -{ - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject"); - - try - { - if(thiz != 0) - { - ((DetectorAgregator*)thiz)->tracker->stop(); - delete (DetectorAgregator*)thiz; - } - } - catch(cv::Exception& e) - { - LOGD("nativeestroyObject caught cv::Exception: %s", e.what()); - jclass je = jenv->FindClass("org/opencv/core/CvException"); - if(!je) - je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, e.what()); - } - catch (...) - { - LOGD("nativeDestroyObject caught unknown exception"); - jclass je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, "Unknown exception in JNI code {Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject(...)}"); - } - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject exit"); -} - -JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStart -(JNIEnv * jenv, jclass, jlong thiz) -{ - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStart"); - - try - { - ((DetectorAgregator*)thiz)->tracker->run(); - } - catch(cv::Exception& e) - { - LOGD("nativeStart caught cv::Exception: %s", e.what()); - jclass je = jenv->FindClass("org/opencv/core/CvException"); - if(!je) - je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, e.what()); - } - catch (...) - { - LOGD("nativeStart caught unknown exception"); - jclass je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, "Unknown exception in JNI code {Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStart(...)}"); - } - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStart exit"); -} - -JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStop -(JNIEnv * jenv, jclass, jlong thiz) -{ - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStop"); - - try - { - ((DetectorAgregator*)thiz)->tracker->stop(); - } - catch(cv::Exception& e) - { - LOGD("nativeStop caught cv::Exception: %s", e.what()); - jclass je = jenv->FindClass("org/opencv/core/CvException"); - if(!je) - je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, e.what()); - } - catch (...) - { - LOGD("nativeStop caught unknown exception"); - jclass je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, "Unknown exception in JNI code {Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStop(...)}"); - } - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStop exit"); -} - -JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeSetFaceSize -(JNIEnv * jenv, jclass, jlong thiz, jint faceSize) -{ - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeSetFaceSize -- BEGIN"); - - try - { - if (faceSize > 0) - { - ((DetectorAgregator*)thiz)->mainDetector->setMinObjectSize(Size(faceSize, faceSize)); - //((DetectorAgregator*)thiz)->trackingDetector->setMinObjectSize(Size(faceSize, faceSize)); - } - } - catch(cv::Exception& e) - { - LOGD("nativeStop caught cv::Exception: %s", e.what()); - jclass je = jenv->FindClass("org/opencv/core/CvException"); - if(!je) - je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, e.what()); - } - catch (...) - { - LOGD("nativeSetFaceSize caught unknown exception"); - jclass je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, "Unknown exception in JNI code {Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeSetFaceSize(...)}"); - } - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeSetFaceSize -- END"); -} - - -JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDetect -(JNIEnv * jenv, jclass, jlong thiz, jlong imageGray, jlong faces) -{ - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDetect"); - - try - { - vector RectFaces; - ((DetectorAgregator*)thiz)->tracker->process(*((Mat*)imageGray)); - ((DetectorAgregator*)thiz)->tracker->getObjects(RectFaces); - *((Mat*)faces) = Mat(RectFaces, true); - } - catch(cv::Exception& e) - { - LOGD("nativeCreateObject caught cv::Exception: %s", e.what()); - jclass je = jenv->FindClass("org/opencv/core/CvException"); - if(!je) - je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, e.what()); - } - catch (...) - { - LOGD("nativeDetect caught unknown exception"); - jclass je = jenv->FindClass("java/lang/Exception"); - jenv->ThrowNew(je, "Unknown exception in JNI code {Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDetect(...)}"); - } - LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDetect END"); -} diff --git a/samples/android/face-detection/jni/DetectionBasedTracker_jni.h b/samples/android/face-detection/jni/DetectionBasedTracker_jni.h deleted file mode 100644 index 7e0541d81..000000000 --- a/samples/android/face-detection/jni/DetectionBasedTracker_jni.h +++ /dev/null @@ -1,61 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ -#include -/* Header for class org_opencv_samples_fd_DetectionBasedTracker */ - -#ifndef _Included_org_opencv_samples_fd_DetectionBasedTracker -#define _Included_org_opencv_samples_fd_DetectionBasedTracker -#ifdef __cplusplus -extern "C" { -#endif -/* - * Class: org_opencv_samples_fd_DetectionBasedTracker - * Method: nativeCreateObject - * Signature: (Ljava/lang/String;F)J - */ -JNIEXPORT jlong JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject - (JNIEnv *, jclass, jstring, jint); - -/* - * Class: org_opencv_samples_fd_DetectionBasedTracker - * Method: nativeDestroyObject - * Signature: (J)V - */ -JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject - (JNIEnv *, jclass, jlong); - -/* - * Class: org_opencv_samples_fd_DetectionBasedTracker - * Method: nativeStart - * Signature: (J)V - */ -JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStart - (JNIEnv *, jclass, jlong); - -/* - * Class: org_opencv_samples_fd_DetectionBasedTracker - * Method: nativeStop - * Signature: (J)V - */ -JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStop - (JNIEnv *, jclass, jlong); - - /* - * Class: org_opencv_samples_fd_DetectionBasedTracker - * Method: nativeSetFaceSize - * Signature: (JI)V - */ - JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeSetFaceSize - (JNIEnv *, jclass, jlong, jint); - -/* - * Class: org_opencv_samples_fd_DetectionBasedTracker - * Method: nativeDetect - * Signature: (JJJ)V - */ -JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDetect - (JNIEnv *, jclass, jlong, jlong, jlong); - -#ifdef __cplusplus -} -#endif -#endif diff --git a/samples/android/face-detection/res/drawable/icon.png b/samples/android/face-detection/res/drawable/icon.png deleted file mode 100644 index 630454927..000000000 Binary files a/samples/android/face-detection/res/drawable/icon.png and /dev/null differ diff --git a/samples/android/face-detection/res/layout/face_detect_surface_view.xml b/samples/android/face-detection/res/layout/face_detect_surface_view.xml deleted file mode 100644 index 68d8fb4ec..000000000 --- a/samples/android/face-detection/res/layout/face_detect_surface_view.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - diff --git a/samples/android/face-detection/res/raw/lbpcascade_frontalface.xml b/samples/android/face-detection/res/raw/lbpcascade_frontalface.xml deleted file mode 100644 index fc7648ef5..000000000 --- a/samples/android/face-detection/res/raw/lbpcascade_frontalface.xml +++ /dev/null @@ -1,1505 +0,0 @@ - - - - - BOOST - LBP - 24 - 24 - - GAB - 0.9950000047683716 - 0.5000000000000000 - 0.9500000000000000 - 1 - 100 - - 256 - 20 - - - <_> - 3 - -0.7520892024040222 - - - <_> - - 0 -1 46 -67130709 -21569 -1426120013 -1275125205 -21585 - -16385 587145899 -24005 - - -0.6543210148811340 0.8888888955116272 - - <_> - - 0 -1 13 -163512766 -769593758 -10027009 -262145 -514457854 - -193593353 -524289 -1 - - -0.7739216089248657 0.7278633713722229 - - <_> - - 0 -1 2 -363936790 -893203669 -1337948010 -136907894 - 1088782736 -134217726 -741544961 -1590337 - - -0.7068563103675842 0.6761534214019775 - - <_> - 4 - -0.4872078299522400 - - - <_> - - 0 -1 84 2147483647 1946124287 -536870913 2147450879 - 738132490 1061101567 243204619 2147446655 - - -0.8083735704421997 0.7685696482658386 - - <_> - - 0 -1 21 2147483647 263176079 1879048191 254749487 1879048191 - -134252545 -268435457 801111999 - - -0.7698410153388977 0.6592915654182434 - - <_> - - 0 -1 106 -98110272 1610939566 -285484400 -850010381 - -189334372 -1671954433 -571026695 -262145 - - -0.7506558895111084 0.5444605946540833 - - <_> - - 0 -1 48 -798690576 -131075 1095771153 -237144073 -65569 -1 - -216727745 -69206049 - - -0.7775990366935730 0.5465461611747742 - - <_> - 4 - -1.1592328548431396 - - - <_> - - 0 -1 47 -21585 -20549 -100818262 -738254174 -20561 -36865 - -151016790 -134238549 - - -0.5601882934570313 0.7743113040924072 - - <_> - - 0 -1 12 -286003217 183435247 -268994614 -421330945 - -402686081 1090387966 -286785545 -402653185 - - -0.6124526262283325 0.6978127956390381 - - <_> - - 0 -1 26 -50347012 970882927 -50463492 -1253377 -134218251 - -50364513 -33619992 -172490753 - - -0.6114496588706970 0.6537628173828125 - - <_> - - 0 -1 8 -273 -135266321 1877977738 -2088243418 -134217987 - 2146926575 -18910642 1095231247 - - -0.6854077577590942 0.5403239130973816 - - <_> - 5 - -0.7562355995178223 - - - <_> - - 0 -1 96 -1273 1870659519 -20971602 -67633153 -134250731 - 2004875127 -250 -150995969 - - -0.4051094949245453 0.7584033608436585 - - <_> - - 0 -1 33 -868162224 -76810262 -4262145 -257 1465211989 - -268959873 -2656269 -524289 - - -0.7388162612915039 0.5340843200683594 - - <_> - - 0 -1 57 -12817 -49 -541103378 -152950 -38993 -20481 -1153876 - -72478976 - - -0.6582943797111511 0.5339496731758118 - - <_> - - 0 -1 125 -269484161 -452984961 -319816180 -1594032130 -2111 - -990117891 -488975296 -520947741 - - -0.5981323719024658 0.5323504805564880 - - <_> - - 0 -1 53 557787431 670265215 -1342193665 -1075892225 - 1998528318 1056964607 -33570977 -1 - - -0.6498787999153137 0.4913350641727448 - - <_> - 5 - -0.8085358142852783 - - - <_> - - 0 -1 60 -536873708 880195381 -16842788 -20971521 -176687276 - -168427659 -16777260 -33554626 - - -0.5278195738792419 0.6946372389793396 - - <_> - - 0 -1 7 -1 -62981529 -1090591130 805330978 -8388827 -41945787 - -39577 -531118985 - - -0.5206505060195923 0.6329920291900635 - - <_> - - 0 -1 98 -725287348 1347747543 -852489 -16809993 1489881036 - -167903241 -1 -1 - - -0.7516061067581177 0.4232024252414703 - - <_> - - 0 -1 44 -32777 1006582562 -65 935312171 -8388609 -1078198273 - -1 733886267 - - -0.7639313936233521 0.4123568832874298 - - <_> - - 0 -1 24 -85474705 2138828511 -1036436754 817625855 - 1123369029 -58796809 -1013468481 -194513409 - - -0.5123769044876099 0.5791834592819214 - - <_> - 5 - -0.5549971461296082 - - - <_> - - 0 -1 42 -17409 -20481 -268457797 -134239493 -17473 -1 -21829 - -21846 - - -0.3763174116611481 0.7298233509063721 - - <_> - - 0 -1 6 -805310737 -2098262358 -269504725 682502698 - 2147483519 1740574719 -1090519233 -268472385 - - -0.5352765917778015 0.5659480094909668 - - <_> - - 0 -1 61 -67109678 -6145 -8 -87884584 -20481 -1073762305 - -50856216 -16849696 - - -0.5678374171257019 0.4961479902267456 - - <_> - - 0 -1 123 -138428633 1002418167 -1359008245 -1908670465 - -1346685918 910098423 -1359010520 -1346371657 - - -0.5706262588500977 0.4572288393974304 - - <_> - - 0 -1 9 -89138513 -4196353 1256531674 -1330665426 1216308261 - -36190633 33498198 -151796633 - - -0.5344601869583130 0.4672054052352905 - - <_> - 5 - -0.8776460289955139 - - - <_> - - 0 -1 105 1073769576 206601725 -34013449 -33554433 -789514004 - -101384321 -690225153 -264193 - - -0.7700348496437073 0.5943940877914429 - - <_> - - 0 -1 30 -1432340997 -823623681 -49153 -34291724 -269484035 - -1342767105 -1078198273 -1277955 - - -0.5043668746948242 0.6151274442672730 - - <_> - - 0 -1 35 -1067385040 -195758209 -436748425 -134217731 - -50855988 -129 -1 -1 - - -0.6808040738105774 0.4667325913906097 - - <_> - - 0 -1 119 832534325 -34111555 -26050561 -423659521 -268468364 - 2105014143 -2114244 -17367185 - - -0.4927591383457184 0.5401885509490967 - - <_> - - 0 -1 82 -1089439888 -1080524865 2143059967 -1114121 - -1140949004 -3 -2361356 -739516 - - -0.6445107460021973 0.4227822124958038 - - <_> - 6 - -1.1139287948608398 - - - <_> - - 0 -1 52 -1074071553 -1074003969 -1 -1280135430 -5324817 -1 - -335548482 582134442 - - -0.5307556986808777 0.6258179545402527 - - <_> - - 0 -1 99 -706937396 -705364068 -540016724 -570495027 - -570630659 -587857963 -33628164 -35848193 - - -0.5227634310722351 0.5049746036529541 - - <_> - - 0 -1 18 -2035630093 42119158 -268503053 -1671444 261017599 - 1325432815 1954394111 -805306449 - - -0.4983572661876679 0.5106441378593445 - - <_> - - 0 -1 111 -282529488 -1558073088 1426018736 -170526448 - -546832487 -5113037 -34243375 -570427929 - - -0.4990860521793366 0.5060507059097290 - - <_> - - 0 -1 92 1016332500 -606301707 915094269 -1080086049 - -1837027144 -1361600280 2147318747 1067975613 - - -0.5695009231567383 0.4460467398166657 - - <_> - - 0 -1 51 -656420166 -15413034 -141599534 -603435836 - 1505950458 -787556946 -79823438 -1326199134 - - -0.6590405106544495 0.3616424500942230 - - <_> - 7 - -0.8243625760078430 - - - <_> - - 0 -1 28 -901591776 -201916417 -262 -67371009 -143312112 - -524289 -41943178 -1 - - -0.4972776770591736 0.6027074456214905 - - <_> - - 0 -1 112 -4507851 -411340929 -268437513 -67502145 -17350859 - -32901 -71344315 -29377 - - -0.4383158981800079 0.5966237187385559 - - <_> - - 0 -1 69 -75894785 -117379438 -239063587 -12538500 1485072126 - 2076233213 2123118847 801906927 - - -0.6386105418205261 0.3977999985218048 - - <_> - - 0 -1 19 -823480413 786628589 -16876049 -1364262914 242165211 - 1315930109 -696268833 -455082829 - - -0.5512794256210327 0.4282079637050629 - - <_> - - 0 -1 73 -521411968 6746762 -1396236286 -2038436114 - -185612509 57669627 -143132877 -1041235973 - - -0.6418755054473877 0.3549866080284119 - - <_> - - 0 -1 126 -478153869 1076028979 -1645895615 1365298272 - -557859073 -339771473 1442574528 -1058802061 - - -0.4841901361942291 0.4668019413948059 - - <_> - - 0 -1 45 -246350404 -1650402048 -1610612745 -788400696 - 1467604861 -2787397 1476263935 -4481349 - - -0.5855734348297119 0.3879135847091675 - - <_> - 7 - -1.2237116098403931 - - - <_> - - 0 -1 114 -24819 1572863935 -16809993 -67108865 2146778388 - 1433927541 -268608444 -34865205 - - -0.2518476545810700 0.7088654041290283 - - <_> - - 0 -1 97 -1841359 -134271049 -32769 -5767369 -1116675 -2185 - -8231 -33603327 - - -0.4303432404994965 0.5283288359642029 - - <_> - - 0 -1 25 -1359507589 -1360593090 -1073778729 -269553812 - -809512977 1744707583 -41959433 -134758978 - - -0.4259553551673889 0.5440809130668640 - - <_> - - 0 -1 34 729753407 -134270989 -1140907329 -235200777 - 658456383 2147467263 -1140900929 -16385 - - -0.5605589151382446 0.4220733344554901 - - <_> - - 0 -1 134 -310380553 -420675595 -193005472 -353568129 - 1205338070 -990380036 887604324 -420544526 - - -0.5192656517028809 0.4399855434894562 - - <_> - - 0 -1 16 -1427119361 1978920959 -287119734 -487068946 - 114759245 -540578051 -707510259 -671660453 - - -0.5013077259063721 0.4570254683494568 - - <_> - - 0 -1 74 -738463762 -889949281 -328301948 -121832450 - -1142658284 -1863576559 2146417353 -263185 - - -0.4631414115428925 0.4790246188640595 - - <_> - 7 - -0.5544230937957764 - - - <_> - - 0 -1 113 -76228780 -65538 -1 -67174401 -148007 -33 -221796 - -272842924 - - -0.3949716091156006 0.6082032322883606 - - <_> - - 0 -1 110 369147696 -1625232112 2138570036 -1189900 790708019 - -1212613127 799948719 -4456483 - - -0.4855885505676270 0.4785369932651520 - - <_> - - 0 -1 37 784215839 -290015241 536832799 -402984963 - -1342414991 -838864897 -176769 -268456129 - - -0.4620285332202911 0.4989669024944305 - - <_> - - 0 -1 41 -486418688 -171915327 -340294900 -21938 -519766032 - -772751172 -73096060 -585322623 - - -0.6420643329620361 0.3624351918697357 - - <_> - - 0 -1 117 -33554953 -475332625 -1423463824 -2077230421 - -4849669 -2080505925 -219032928 -1071915349 - - -0.4820112884044647 0.4632140696048737 - - <_> - - 0 -1 65 -834130468 -134217476 -1349314083 -1073803559 - -619913764 -1449131844 -1386890321 -1979118423 - - -0.4465552568435669 0.5061788558959961 - - <_> - - 0 -1 56 -285249779 1912569855 -16530 -1731022870 -1161904146 - -1342177297 -268439634 -1464078708 - - -0.5190586447715759 0.4441480338573456 - - <_> - 7 - -0.7161560654640198 - - - <_> - - 0 -1 20 1246232575 1078001186 -10027057 60102 -277348353 - -43646987 -1210581153 1195769615 - - -0.4323809444904327 0.5663768053054810 - - <_> - - 0 -1 15 -778583572 -612921106 -578775890 -4036478 - -1946580497 -1164766570 -1986687009 -12103599 - - -0.4588732719421387 0.4547033011913300 - - <_> - - 0 -1 129 -1073759445 2013231743 -1363169553 -1082459201 - -1414286549 868185983 -1356133589 -1077936257 - - -0.5218553543090820 0.4111092388629913 - - <_> - - 0 -1 102 -84148365 -2093417722 -1204850272 564290299 - -67121221 -1342177350 -1309195902 -776734797 - - -0.4920000731945038 0.4326725304126740 - - <_> - - 0 -1 88 -25694458 67104495 -290216278 -168563037 2083877442 - 1702788383 -144191964 -234882162 - - -0.4494568109512329 0.4448510706424713 - - <_> - - 0 -1 59 -857980836 904682741 -1612267521 232279415 - 1550862252 -574825221 -357380888 -4579409 - - -0.5180826783180237 0.3888972699642181 - - <_> - - 0 -1 27 -98549440 -137838400 494928389 -246013630 939541351 - -1196072350 -620603549 2137216273 - - -0.6081240773200989 0.3333222270011902 - - <_> - 8 - -0.6743940711021423 - - - <_> - - 0 -1 29 -150995201 2071191945 -1302151626 536934335 - -1059008937 914128709 1147328110 -268369925 - - -0.1790193915367127 0.6605972051620483 - - <_> - - 0 -1 128 -134509479 1610575703 -1342177289 1861484541 - -1107833788 1577058173 -333558568 -136319041 - - -0.3681024610996246 0.5139749646186829 - - <_> - - 0 -1 70 -1 1060154476 -1090984524 -630918524 -539492875 - 779616255 -839568424 -321 - - -0.3217232525348663 0.6171553134918213 - - <_> - - 0 -1 4 -269562385 -285029906 -791084350 -17923776 235286671 - 1275504943 1344390399 -966276889 - - -0.4373284578323364 0.4358185231685638 - - <_> - - 0 -1 76 17825984 -747628419 595427229 1474759671 575672208 - -1684005538 872217086 -1155858277 - - -0.4404836893081665 0.4601220190525055 - - <_> - - 0 -1 124 -336593039 1873735591 -822231622 -355795238 - -470820869 -1997537409 -1057132384 -1015285005 - - -0.4294152259826660 0.4452161788940430 - - <_> - - 0 -1 54 -834212130 -593694721 -322142257 -364892500 - -951029539 -302125121 -1615106053 -79249765 - - -0.3973052501678467 0.4854526817798615 - - <_> - - 0 -1 95 1342144479 2147431935 -33554561 -47873 -855685912 -1 - 1988052447 536827383 - - -0.7054683566093445 0.2697997391223908 - - <_> - 9 - -1.2042298316955566 - - - <_> - - 0 -1 39 1431368960 -183437936 -537002499 -137497097 - 1560590321 -84611081 -2097193 -513 - - -0.5905947685241699 0.5101932883262634 - - <_> - - 0 -1 120 -1645259691 2105491231 2130706431 1458995007 - -8567536 -42483883 -33780003 -21004417 - - -0.4449204802513123 0.4490709304809570 - - <_> - - 0 -1 89 -612381022 -505806938 -362027516 -452985106 - 275854917 1920431639 -12600561 -134221825 - - -0.4693818688392639 0.4061094820499420 - - <_> - - 0 -1 14 -805573153 -161 -554172679 -530519488 -16779441 - 2000682871 -33604275 -150997129 - - -0.3600351214408875 0.5056326985359192 - - <_> - - 0 -1 67 6192 435166195 1467449341 2046691505 -1608493775 - -4755729 -1083162625 -71365637 - - -0.4459891915321350 0.4132415652275085 - - <_> - - 0 -1 86 -41689215 -3281034 1853357967 -420712635 -415924289 - -270209208 -1088293113 -825311232 - - -0.4466069042682648 0.4135067760944367 - - <_> - - 0 -1 80 -117391116 -42203396 2080374461 -188709 -542008165 - -356831940 -1091125345 -1073796897 - - -0.3394956290721893 0.5658645033836365 - - <_> - - 0 -1 75 -276830049 1378714472 -1342181951 757272098 - 1073740607 -282199241 -415761549 170896931 - - -0.5346512198448181 0.3584479391574860 - - <_> - - 0 -1 55 -796075825 -123166849 2113667055 -217530421 - -1107432194 -16385 -806359809 -391188771 - - -0.4379335641860962 0.4123645126819611 - - <_> - 10 - -0.8402050137519836 - - - <_> - - 0 -1 71 -890246622 15525883 -487690486 47116238 -1212319899 - -1291847681 -68159890 -469829921 - - -0.2670986354351044 0.6014143228530884 - - <_> - - 0 -1 31 -1361180685 -1898008841 -1090588811 -285410071 - -1074016265 -840443905 2147221487 -262145 - - -0.4149844348430634 0.4670888185501099 - - <_> - - 0 -1 40 1426190596 1899364271 2142731795 -142607505 - -508232452 -21563393 -41960001 -65 - - -0.4985891580581665 0.3719584941864014 - - <_> - - 0 -1 109 -201337965 10543906 -236498096 -746195597 - 1974565825 -15204415 921907633 -190058309 - - -0.4568729996681213 0.3965812027454376 - - <_> - - 0 -1 130 -595026732 -656401928 -268649235 -571490699 - -440600392 -133131 -358810952 -2004088646 - - -0.4770836830139160 0.3862601518630981 - - <_> - - 0 -1 66 941674740 -1107882114 1332789109 -67691015 - -1360463693 -1556612430 -609108546 733546933 - - -0.4877715110778809 0.3778986334800720 - - <_> - - 0 -1 49 -17114945 -240061474 1552871558 -82775604 -932393844 - -1308544889 -532635478 -99042357 - - -0.3721654713153839 0.4994400143623352 - - <_> - - 0 -1 133 -655906006 1405502603 -939205164 1884929228 - -498859222 559417357 -1928559445 -286264385 - - -0.3934195041656494 0.4769641458988190 - - <_> - - 0 -1 0 -335837777 1860677295 -90 -1946186226 931096183 - 251612987 2013265917 -671232197 - - -0.4323300719261169 0.4342164099216461 - - <_> - - 0 -1 103 37769424 -137772680 374692301 2002666345 -536176194 - -1644484728 807009019 1069089930 - - -0.4993278682231903 0.3665378093719482 - - <_> - 9 - -1.1974394321441650 - - - <_> - - 0 -1 43 -5505 2147462911 2143265466 -4511070 -16450 -257 - -201348440 -71333206 - - -0.3310225307941437 0.5624626278877258 - - <_> - - 0 -1 90 -136842268 -499330741 2015250980 -87107126 - -641665744 -788524639 -1147864792 -134892563 - - -0.5266560912132263 0.3704403042793274 - - <_> - - 0 -1 104 -146800880 -1780368555 2111170033 -140904684 - -16777551 -1946681885 -1646463595 -839131947 - - -0.4171888828277588 0.4540435671806335 - - <_> - - 0 -1 85 -832054034 -981663763 -301990281 -578814081 - -932319000 -1997406723 -33555201 -69206017 - - -0.4556705355644226 0.3704262077808380 - - <_> - - 0 -1 24 -118492417 -1209026825 1119023838 -1334313353 - 1112948738 -297319313 1378887291 -139469193 - - -0.4182529747486115 0.4267231225967407 - - <_> - - 0 -1 78 -1714382628 -2353704 -112094959 -549613092 - -1567058760 -1718550464 -342315012 -1074972227 - - -0.3625369668006897 0.4684656262397766 - - <_> - - 0 -1 5 -85219702 316836394 -33279 1904970288 2117267315 - -260901769 -621461759 -88607770 - - -0.4742925167083740 0.3689507246017456 - - <_> - - 0 -1 11 -294654041 -353603585 -1641159686 -50331921 - -2080899877 1145569279 -143132713 -152044037 - - -0.3666271567344666 0.4580127298831940 - - <_> - - 0 -1 32 1887453658 -638545712 -1877976819 -34320972 - -1071067983 -661345416 -583338277 1060190561 - - -0.4567637443542481 0.3894708156585693 - - <_> - 9 - -0.5733128190040588 - - - <_> - - 0 -1 122 -994063296 1088745462 -318837116 -319881377 - 1102566613 1165490103 -121679694 -134744129 - - -0.4055117964744568 0.5487945079803467 - - <_> - - 0 -1 68 -285233233 -538992907 1811935199 -369234005 -529 - -20593 -20505 -1561401854 - - -0.3787897229194641 0.4532003402709961 - - <_> - - 0 -1 58 -1335245632 1968917183 1940861695 536816369 - -1226071367 -570908176 457026619 1000020667 - - -0.4258328974246979 0.4202791750431061 - - <_> - - 0 -1 94 -1360318719 -1979797897 -50435249 -18646473 - -608879292 -805306691 -269304244 -17840167 - - -0.4561023116111755 0.4002747833728790 - - <_> - - 0 -1 87 2062765935 -16449 -1275080721 -16406 45764335 - -1090552065 -772846337 -570464322 - - -0.4314672648906708 0.4086346626281738 - - <_> - - 0 -1 127 -536896021 1080817663 -738234288 -965478709 - -2082767969 1290855887 1993822934 -990381609 - - -0.4174543321132660 0.4249868988990784 - - <_> - - 0 -1 3 -818943025 168730891 -293610428 -79249354 669224671 - 621166734 1086506807 1473768907 - - -0.4321364760398865 0.4090838730335236 - - <_> - - 0 -1 79 -68895696 -67107736 -1414315879 -841676168 - -619843344 -1180610531 -1081990469 1043203389 - - -0.5018386244773865 0.3702533841133118 - - <_> - - 0 -1 116 -54002134 -543485719 -2124882422 -1437445858 - -115617074 -1195787391 -1096024366 -2140472445 - - -0.5037505626678467 0.3564981222152710 - - <_> - 9 - -0.4892596900463104 - - - <_> - - 0 -1 132 -67113211 2003808111 1862135111 846461923 -2752 - 2002237273 -273154752 1937223539 - - -0.2448196411132813 0.5689709186553955 - - <_> - - 0 -1 62 1179423888 -78064940 -611839555 -539167899 - -1289358360 -1650810108 -892540499 -1432827684 - - -0.4633283913135529 0.3587929606437683 - - <_> - - 0 -1 23 -285212705 -78450761 -656212031 -264050110 -27787425 - -1334349961 -547662981 -135796924 - - -0.3731099069118500 0.4290455579757690 - - <_> - - 0 -1 77 341863476 403702016 -550588417 1600194541 - -1080690735 951127993 -1388580949 -1153717473 - - -0.3658909499645233 0.4556473195552826 - - <_> - - 0 -1 22 -586880702 -204831512 -100644596 -39319550 - -1191150794 705692513 457203315 -75806957 - - -0.5214384198188782 0.3221037387847900 - - <_> - - 0 -1 72 -416546870 545911370 -673716192 -775559454 - -264113598 139424 -183369982 -204474641 - - -0.4289036989212036 0.4004956185817719 - - <_> - - 0 -1 50 -1026505020 -589692154 -1740499937 -1563770497 - 1348491006 -60710713 -1109853489 -633909413 - - -0.4621542394161224 0.3832748532295227 - - <_> - - 0 -1 108 -1448872304 -477895040 -1778390608 -772418127 - -1789923416 -1612057181 -805306693 -1415842113 - - -0.3711548447608948 0.4612701535224915 - - <_> - - 0 -1 92 407905424 -582449988 52654751 -1294472 -285103725 - -74633006 1871559083 1057955850 - - -0.5180652141571045 0.3205870389938355 - - <_> - 10 - -0.5911940932273865 - - - <_> - - 0 -1 81 4112 -1259563825 -846671428 -100902460 1838164148 - -74153752 -90653988 -1074263896 - - -0.2592592537403107 0.5873016119003296 - - <_> - - 0 -1 1 -285216785 -823206977 -1085589 -1081346 1207959293 - 1157103471 2097133565 -2097169 - - -0.3801195919513702 0.4718827307224274 - - <_> - - 0 -1 121 -12465 -536875169 2147478367 2130706303 -37765492 - -866124467 -318782328 -1392509185 - - -0.3509117066860199 0.5094807147979736 - - <_> - - 0 -1 38 2147449663 -20741 -16794757 1945873146 -16710 -1 - -8406341 -67663041 - - -0.4068757295608521 0.4130136370658875 - - <_> - - 0 -1 17 -155191713 866117231 1651407483 548272812 -479201468 - -447742449 1354229504 -261884429 - - -0.4557141065597534 0.3539792001247406 - - <_> - - 0 -1 100 -225319378 -251682065 -492783986 -792341777 - -1287261695 1393643841 -11274182 -213909521 - - -0.4117803275585175 0.4118592441082001 - - <_> - - 0 -1 63 -382220122 -2002072729 -51404800 -371201558 - -923011069 -2135301457 -2066104743 -1042557441 - - -0.4008397758007050 0.4034757018089294 - - <_> - - 0 -1 101 -627353764 -48295149 1581203952 -436258614 - -105268268 -1435893445 -638126888 -1061107126 - - -0.5694189667701721 0.2964762747287750 - - <_> - - 0 -1 118 -8399181 1058107691 -621022752 -251003468 -12582915 - -574619739 -994397789 -1648362021 - - -0.3195341229438782 0.5294018983840942 - - <_> - - 0 -1 92 -348343812 -1078389516 1717960437 364735981 - -1783841602 -4883137 -457572354 -1076950384 - - -0.3365339040756226 0.5067458748817444 - - <_> - 10 - -0.7612916231155396 - - - <_> - - 0 -1 10 -1976661318 -287957604 -1659497122 -782068 43591089 - -453637880 1435470000 -1077438561 - - -0.4204545319080353 0.5165745615959168 - - <_> - - 0 -1 131 -67110925 14874979 -142633168 -1338923040 - 2046713291 -2067933195 1473503712 -789579837 - - -0.3762553930282593 0.4075302779674530 - - <_> - - 0 -1 83 -272814301 -1577073 -1118685 -305156120 -1052289 - -1073813756 -538971154 -355523038 - - -0.4253497421741486 0.3728055357933044 - - <_> - - 0 -1 135 -2233 -214486242 -538514758 573747007 -159390971 - 1994225489 -973738098 -203424005 - - -0.3601998090744019 0.4563256204128265 - - <_> - - 0 -1 115 -261031688 -1330369299 -641860609 1029570301 - -1306461192 -1196149518 -1529767778 683139823 - - -0.4034293889999390 0.4160816967487335 - - <_> - - 0 -1 64 -572993608 -34042628 -417865 -111109 -1433365268 - -19869715 -1920939864 -1279457063 - - -0.3620899617671967 0.4594142735004425 - - <_> - - 0 -1 36 -626275097 -615256993 1651946018 805366393 - 2016559730 -430780849 -799868165 -16580645 - - -0.3903816640377045 0.4381459355354309 - - <_> - - 0 -1 93 1354797300 -1090957603 1976418270 -1342502178 - -1851873892 -1194637077 -1153521668 -1108399474 - - -0.3591445386409760 0.4624078869819641 - - <_> - - 0 -1 91 68157712 1211368313 -304759523 1063017136 798797750 - -275513546 648167355 -1145357350 - - -0.4297670423984528 0.4023293554782867 - - <_> - - 0 -1 107 -546318240 -1628569602 -163577944 -537002306 - -545456389 -1325465645 -380446736 -1058473386 - - -0.5727006793022156 0.2995934784412384 - - <_> - - 0 0 3 5 - <_> - - 0 0 4 2 - <_> - - 0 0 6 3 - <_> - - 0 1 2 3 - <_> - - 0 1 3 3 - <_> - - 0 1 3 7 - <_> - - 0 4 3 3 - <_> - - 0 11 3 4 - <_> - - 0 12 8 4 - <_> - - 0 14 4 3 - <_> - - 1 0 5 3 - <_> - - 1 1 2 2 - <_> - - 1 3 3 1 - <_> - - 1 7 4 4 - <_> - - 1 12 2 2 - <_> - - 1 13 4 1 - <_> - - 1 14 4 3 - <_> - - 1 17 3 2 - <_> - - 2 0 2 3 - <_> - - 2 1 2 2 - <_> - - 2 2 4 6 - <_> - - 2 3 4 4 - <_> - - 2 7 2 1 - <_> - - 2 11 2 3 - <_> - - 2 17 3 2 - <_> - - 3 0 2 2 - <_> - - 3 1 7 3 - <_> - - 3 7 2 1 - <_> - - 3 7 2 4 - <_> - - 3 18 2 2 - <_> - - 4 0 2 3 - <_> - - 4 3 2 1 - <_> - - 4 6 2 1 - <_> - - 4 6 2 5 - <_> - - 4 7 5 2 - <_> - - 4 8 4 3 - <_> - - 4 18 2 2 - <_> - - 5 0 2 2 - <_> - - 5 3 4 4 - <_> - - 5 6 2 5 - <_> - - 5 9 2 2 - <_> - - 5 10 2 2 - <_> - - 6 3 4 4 - <_> - - 6 4 4 3 - <_> - - 6 5 2 3 - <_> - - 6 5 2 5 - <_> - - 6 5 4 3 - <_> - - 6 6 4 2 - <_> - - 6 6 4 4 - <_> - - 6 18 1 2 - <_> - - 6 21 2 1 - <_> - - 7 0 3 7 - <_> - - 7 4 2 3 - <_> - - 7 9 5 1 - <_> - - 7 21 2 1 - <_> - - 8 0 1 4 - <_> - - 8 5 2 2 - <_> - - 8 5 3 2 - <_> - - 8 17 3 1 - <_> - - 8 18 1 2 - <_> - - 9 0 5 3 - <_> - - 9 2 2 6 - <_> - - 9 5 1 1 - <_> - - 9 11 1 1 - <_> - - 9 16 1 1 - <_> - - 9 16 2 1 - <_> - - 9 17 1 1 - <_> - - 9 18 1 1 - <_> - - 10 5 1 2 - <_> - - 10 5 3 3 - <_> - - 10 7 1 5 - <_> - - 10 8 1 1 - <_> - - 10 9 1 1 - <_> - - 10 10 1 1 - <_> - - 10 10 1 2 - <_> - - 10 14 3 3 - <_> - - 10 15 1 1 - <_> - - 10 15 2 1 - <_> - - 10 16 1 1 - <_> - - 10 16 2 1 - <_> - - 10 17 1 1 - <_> - - 10 21 1 1 - <_> - - 11 3 2 2 - <_> - - 11 5 1 2 - <_> - - 11 5 3 3 - <_> - - 11 5 4 6 - <_> - - 11 6 1 1 - <_> - - 11 7 2 2 - <_> - - 11 8 1 2 - <_> - - 11 10 1 1 - <_> - - 11 10 1 2 - <_> - - 11 15 1 1 - <_> - - 11 17 1 1 - <_> - - 11 18 1 1 - <_> - - 12 0 2 2 - <_> - - 12 1 2 5 - <_> - - 12 2 4 1 - <_> - - 12 3 1 3 - <_> - - 12 7 3 4 - <_> - - 12 10 3 2 - <_> - - 12 11 1 1 - <_> - - 12 12 3 2 - <_> - - 12 14 4 3 - <_> - - 12 17 1 1 - <_> - - 12 21 2 1 - <_> - - 13 6 2 5 - <_> - - 13 7 3 5 - <_> - - 13 11 3 2 - <_> - - 13 17 2 2 - <_> - - 13 17 3 2 - <_> - - 13 18 1 2 - <_> - - 13 18 2 2 - <_> - - 14 0 2 2 - <_> - - 14 1 1 3 - <_> - - 14 2 3 2 - <_> - - 14 7 2 1 - <_> - - 14 13 2 1 - <_> - - 14 13 3 3 - <_> - - 14 17 2 2 - <_> - - 15 0 2 2 - <_> - - 15 0 2 3 - <_> - - 15 4 3 2 - <_> - - 15 4 3 6 - <_> - - 15 6 3 2 - <_> - - 15 11 3 4 - <_> - - 15 13 3 2 - <_> - - 15 17 2 2 - <_> - - 15 17 3 2 - <_> - - 16 1 2 3 - <_> - - 16 3 2 4 - <_> - - 16 6 1 1 - <_> - - 16 16 2 2 - <_> - - 17 1 2 2 - <_> - - 17 1 2 5 - <_> - - 17 12 2 2 - <_> - - 18 0 2 2 - diff --git a/samples/android/face-detection/res/values/strings.xml b/samples/android/face-detection/res/values/strings.xml deleted file mode 100644 index 476a9e036..000000000 --- a/samples/android/face-detection/res/values/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - OCV Face Detection - diff --git a/samples/android/face-detection/src/org/opencv/samples/facedetect/DetectionBasedTracker.java b/samples/android/face-detection/src/org/opencv/samples/facedetect/DetectionBasedTracker.java deleted file mode 100644 index 6179f1bdc..000000000 --- a/samples/android/face-detection/src/org/opencv/samples/facedetect/DetectionBasedTracker.java +++ /dev/null @@ -1,41 +0,0 @@ -package org.opencv.samples.facedetect; - -import org.opencv.core.Mat; -import org.opencv.core.MatOfRect; - -public class DetectionBasedTracker -{ - public DetectionBasedTracker(String cascadeName, int minFaceSize) { - mNativeObj = nativeCreateObject(cascadeName, minFaceSize); - } - - public void start() { - nativeStart(mNativeObj); - } - - public void stop() { - nativeStop(mNativeObj); - } - - public void setMinFaceSize(int size) { - nativeSetFaceSize(mNativeObj, size); - } - - public void detect(Mat imageGray, MatOfRect faces) { - nativeDetect(mNativeObj, imageGray.getNativeObjAddr(), faces.getNativeObjAddr()); - } - - public void release() { - nativeDestroyObject(mNativeObj); - mNativeObj = 0; - } - - private long mNativeObj = 0; - - private static native long nativeCreateObject(String cascadeName, int minFaceSize); - private static native void nativeDestroyObject(long thiz); - private static native void nativeStart(long thiz); - private static native void nativeStop(long thiz); - private static native void nativeSetFaceSize(long thiz, int size); - private static native void nativeDetect(long thiz, long inputImage, long faces); -} diff --git a/samples/android/hello-android/CMakeLists.txt b/samples/android/hello-android/CMakeLists.txt deleted file mode 100644 index 032d98369..000000000 --- a/samples/android/hello-android/CMakeLists.txt +++ /dev/null @@ -1,66 +0,0 @@ -CMAKE_MINIMUM_REQUIRED( VERSION 2.8 ) - -######################################################### -# Set project name -######################################################### - -IF( NOT PROJECT_NAME ) - IF ( NOT "x$ENV{PROJECT_NAME}" STREQUAL "x" ) - SET( PROJECT_NAME $ENV{PROJECT_NAME} ) - ELSE() - SET( PROJECT_NAME hello-android ) - ENDIF() -ENDIF() -SET( PROJECT_NAME ${PROJECT_NAME} CACHE STRING "The name of your project") - -PROJECT( ${PROJECT_NAME} ) - -######################################################### -# Find OpenCV -######################################################### - -FIND_PACKAGE( OpenCV REQUIRED ) - -######################################################### -# c/c++ flags, includes and lib dependencies -######################################################### - -#notice the "recycling" of CMAKE_C_FLAGS -#this is necessary to pick up android flags -SET( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -pedantic" ) -SET( CMAKE_CPP_FLAGS "${CMAKE_CPP_FLAGS} -Wall -pedantic" ) - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}) - -SET( LIBRARY_DEPS ${OpenCV_LIBS} ) -IF( ANDROID ) - SET( LIBRARY_DEPS ${LIBRARY_DEPS} log dl ) -ENDIF() - -######################################################### -# source files -######################################################### - -FILE( GLOB hdrs "*.h*" ) -FILE( GLOB srcs "*.cpp" ) - -ADD_EXECUTABLE( ${PROJECT_NAME} ${srcs} ) -TARGET_LINK_LIBRARIES( ${PROJECT_NAME} ${LIBRARY_DEPS} ) - -######################################################### -# Summary report -######################################################### -message( STATUS "") -message( STATUS "General configuration for ${PROJECT_NAME} =====================================") -message( STATUS "") -message( STATUS " OpenCV path: ${OpenCV_DIR}") -message( STATUS " Compiler: ${CMAKE_CXX_COMPILER}") -message( STATUS " C++ flags (Release): ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_RELEASE}") -message( STATUS " C++ flags (Debug): ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_DEBUG}") -if(WIN32) -message( STATUS " Linker flags (Release): ${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS_RELEASE}") -message( STATUS " Linker flags (Debug): ${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS_DEBUG}") -else() -message( STATUS " Linker flags (Release): ${CMAKE_SHARED_LINKER_FLAGS} ${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") -message( STATUS " Linker flags (Debug): ${CMAKE_SHARED_LINKER_FLAGS} ${CMAKE_SHARED_LINKER_FLAGS_DEBUG}") -endif() diff --git a/samples/android/hello-android/cmake_android.cmd b/samples/android/hello-android/cmake_android.cmd deleted file mode 100644 index 65a1461c2..000000000 --- a/samples/android/hello-android/cmake_android.cmd +++ /dev/null @@ -1,9 +0,0 @@ -@ECHO OFF -SETLOCAL -PUSHD %~dp0 -SET PROJECT_NAME=hello-android -SET BUILD_DIR=build_armeabi -SET ANDROID_ABI=armeabi -CALL ..\..\..\android\scripts\build.cmd %* -POPD -ENDLOCAL diff --git a/samples/android/hello-android/cmake_android.sh b/samples/android/hello-android/cmake_android.sh deleted file mode 100755 index f233e302e..000000000 --- a/samples/android/hello-android/cmake_android.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -cd `dirname $0` - -BUILD_DIR=build_armeabi -opencv_android=`pwd`/../../../android -opencv_build_dir=$opencv_android/$BUILD_DIR - -mkdir -p $BUILD_DIR -cd $BUILD_DIR - -RUN_CMAKE="cmake -DOpenCV_DIR=$opencv_build_dir -DARM_TARGET=armeabi -DCMAKE_TOOLCHAIN_FILE=$opencv_android/android.toolchain.cmake .." -echo $RUN_CMAKE -$RUN_CMAKE diff --git a/samples/android/hello-android/run.cmd b/samples/android/hello-android/run.cmd deleted file mode 100644 index 54a73f040..000000000 --- a/samples/android/hello-android/run.cmd +++ /dev/null @@ -1,49 +0,0 @@ -:: this batch file copies compiled executable to the device, -:: runs it and gets resulting image back to the host -:: -:: Here is sample output of successful run: -:: -:: 204 KB/s (2887388 bytes in 13.790s) -:: Hello Android! -:: 304 KB/s (8723 bytes in 0.028s) - -@ECHO OFF - -:: enable command extensions -VERIFY BADVALUE 2>NUL -SETLOCAL ENABLEEXTENSIONS || (ECHO Unable to enable command extensions. & EXIT \B) - -PUSHD %~dp0 -:: project specific settings -SET PROJECT_NAME=hello-android - -:: try to load config file -SET CFG_PATH=..\..\..\android\scripts\wincfg.cmd -IF EXIST %CFG_PATH% CALL %CFG_PATH% - -:: check if sdk path defined -IF NOT DEFINED ANDROID_SDK (ECHO. & ECHO You should set an environment variable ANDROID_SDK to the full path to your copy of Android SDK & GOTO end) -(PUSHD "%ANDROID_SDK%" 2>NUL && POPD) || (ECHO. & ECHO Directory "%ANDROID_SDK%" specified by ANDROID_SDK variable does not exist & GOTO end) -SET adb=%ANDROID_SDK%\platform-tools\adb.exe - -:: copy file to device (usually takes 10 seconds or more) -%adb% push .\bin\%PROJECT_NAME% /data/bin/sample/%PROJECT_NAME% || GOTO end - -:: set execute permission -%adb% shell chmod 777 /data/bin/sample/%PROJECT_NAME% || GOTO end - -:: execute our application -%adb% shell /data/bin/sample/%PROJECT_NAME% || GOTO end - -:: get image result from device -%adb% pull /mnt/sdcard/HelloAndroid.png || GOTO end - -GOTO end - -:: cleanup (comment out GOTO above to enable cleanup) -%adb% shell rm /data/bin/sample/%PROJECT_NAME% -%adb% shell rm /mnt/sdcard/HelloAndroid.png - -:end -POPD -ENDLOCAL diff --git a/samples/android/hello-android/run.sh b/samples/android/hello-android/run.sh deleted file mode 100755 index 1168c51df..000000000 --- a/samples/android/hello-android/run.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -cd `dirname $0` -PROJECT_NAME=hello-android - -# copy file to device (usually takes 10 seconds or more) -adb push ./bin/$PROJECT_NAME /data/bin/sample/$PROJECT_NAME || return - -# set execute permission -adb shell chmod 777 /data/bin/sample/$PROJECT_NAME || return - -# execute our application -adb shell /data/bin/sample/$PROJECT_NAME || return - -# get image result from device -adb pull /mnt/sdcard/HelloAndroid.png || return diff --git a/samples/android/image-manipulations/.classpath b/samples/android/image-manipulations/.classpath deleted file mode 100644 index 3f9691c5d..000000000 --- a/samples/android/image-manipulations/.classpath +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/samples/android/image-manipulations/.project b/samples/android/image-manipulations/.project deleted file mode 100644 index 6bf32a8a3..000000000 --- a/samples/android/image-manipulations/.project +++ /dev/null @@ -1,33 +0,0 @@ - - - OpenCV Sample - image-manipulations - - - - - - com.android.ide.eclipse.adt.ResourceManagerBuilder - - - - - com.android.ide.eclipse.adt.PreCompilerBuilder - - - - - org.eclipse.jdt.core.javabuilder - - - - - com.android.ide.eclipse.adt.ApkBuilder - - - - - - com.android.ide.eclipse.adt.AndroidNature - org.eclipse.jdt.core.javanature - - diff --git a/samples/android/image-manipulations/.settings/org.eclipse.jdt.core.prefs b/samples/android/image-manipulations/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index b080d2ddc..000000000 --- a/samples/android/image-manipulations/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,4 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 -org.eclipse.jdt.core.compiler.compliance=1.6 -org.eclipse.jdt.core.compiler.source=1.6 diff --git a/samples/android/image-manipulations/AndroidManifest.xml b/samples/android/image-manipulations/AndroidManifest.xml deleted file mode 100644 index 50ef788ac..000000000 --- a/samples/android/image-manipulations/AndroidManifest.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/android/image-manipulations/CMakeLists.txt b/samples/android/image-manipulations/CMakeLists.txt deleted file mode 100644 index 70adb1dbe..000000000 --- a/samples/android/image-manipulations/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -set(sample example-image-manipulations) - -add_android_project(${sample} "${CMAKE_CURRENT_SOURCE_DIR}" LIBRARY_DEPS ${OpenCV_BINARY_DIR} SDK_TARGET 11 ${ANDROID_SDK_TARGET}) -if(TARGET ${sample}) - add_dependencies(opencv_android_examples ${sample}) -endif() diff --git a/samples/android/image-manipulations/res/drawable/icon.png b/samples/android/image-manipulations/res/drawable/icon.png deleted file mode 100644 index 630454927..000000000 Binary files a/samples/android/image-manipulations/res/drawable/icon.png and /dev/null differ diff --git a/samples/android/image-manipulations/res/layout/image_manipulations_surface_view.xml b/samples/android/image-manipulations/res/layout/image_manipulations_surface_view.xml deleted file mode 100644 index 06e2e5e90..000000000 --- a/samples/android/image-manipulations/res/layout/image_manipulations_surface_view.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - diff --git a/samples/android/image-manipulations/res/values/strings.xml b/samples/android/image-manipulations/res/values/strings.xml deleted file mode 100644 index 564fd795c..000000000 --- a/samples/android/image-manipulations/res/values/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - OCV Image Manipulations - diff --git a/samples/android/image-manipulations/src/org/opencv/samples/imagemanipulations/ImageManipulationsActivity.java b/samples/android/image-manipulations/src/org/opencv/samples/imagemanipulations/ImageManipulationsActivity.java deleted file mode 100644 index 88ade8430..000000000 --- a/samples/android/image-manipulations/src/org/opencv/samples/imagemanipulations/ImageManipulationsActivity.java +++ /dev/null @@ -1,362 +0,0 @@ -package org.opencv.samples.imagemanipulations; - -import java.util.Arrays; - -import org.opencv.android.BaseLoaderCallback; -import org.opencv.android.CameraBridgeViewBase.CvCameraViewFrame; -import org.opencv.android.LoaderCallbackInterface; -import org.opencv.android.OpenCVLoader; -import org.opencv.core.Core; -import org.opencv.core.CvType; -import org.opencv.core.Mat; -import org.opencv.core.MatOfFloat; -import org.opencv.core.MatOfInt; -import org.opencv.core.Point; -import org.opencv.core.Scalar; -import org.opencv.core.Size; -import org.opencv.android.CameraBridgeViewBase; -import org.opencv.android.CameraBridgeViewBase.CvCameraViewListener2; -import org.opencv.imgproc.Imgproc; - -import android.app.Activity; -import android.os.Bundle; -import android.util.Log; -import android.view.Menu; -import android.view.MenuItem; -import android.view.WindowManager; - -public class ImageManipulationsActivity extends Activity implements CvCameraViewListener2 { - private static final String TAG = "OCVSample::Activity"; - - public static final int VIEW_MODE_RGBA = 0; - public static final int VIEW_MODE_HIST = 1; - public static final int VIEW_MODE_CANNY = 2; - public static final int VIEW_MODE_SEPIA = 3; - public static final int VIEW_MODE_SOBEL = 4; - public static final int VIEW_MODE_ZOOM = 5; - public static final int VIEW_MODE_PIXELIZE = 6; - public static final int VIEW_MODE_POSTERIZE = 7; - - private MenuItem mItemPreviewRGBA; - private MenuItem mItemPreviewHist; - private MenuItem mItemPreviewCanny; - private MenuItem mItemPreviewSepia; - private MenuItem mItemPreviewSobel; - private MenuItem mItemPreviewZoom; - private MenuItem mItemPreviewPixelize; - private MenuItem mItemPreviewPosterize; - private CameraBridgeViewBase mOpenCvCameraView; - - private Size mSize0; - private Size mSizeRgba; - private Size mSizeRgbaInner; - - private Mat mRgba; - private Mat mGray; - private Mat mIntermediateMat; - private Mat mHist; - private Mat mMat0; - private MatOfInt mChannels[]; - private MatOfInt mHistSize; - private int mHistSizeNum; - private MatOfFloat mRanges; - private Scalar mColorsRGB[]; - private Scalar mColorsHue[]; - private Scalar mWhilte; - private Point mP1; - private Point mP2; - private float mBuff[]; - private Mat mRgbaInnerWindow; - private Mat mGrayInnerWindow; - private Mat mZoomWindow; - private Mat mZoomCorner; - private Mat mSepiaKernel; - - public static int viewMode = VIEW_MODE_RGBA; - - private BaseLoaderCallback mLoaderCallback = new BaseLoaderCallback(this) { - @Override - public void onManagerConnected(int status) { - switch (status) { - case LoaderCallbackInterface.SUCCESS: - { - Log.i(TAG, "OpenCV loaded successfully"); - mOpenCvCameraView.enableView(); - } break; - default: - { - super.onManagerConnected(status); - } break; - } - } - }; - - public ImageManipulationsActivity() { - Log.i(TAG, "Instantiated new " + this.getClass()); - } - - /** Called when the activity is first created. */ - @Override - public void onCreate(Bundle savedInstanceState) { - Log.i(TAG, "called onCreate"); - super.onCreate(savedInstanceState); - getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); - - setContentView(R.layout.image_manipulations_surface_view); - - mOpenCvCameraView = (CameraBridgeViewBase) findViewById(R.id.image_manipulations_activity_surface_view); - mOpenCvCameraView.setCvCameraViewListener(this); - } - - @Override - public void onPause() - { - super.onPause(); - if (mOpenCvCameraView != null) - mOpenCvCameraView.disableView(); - } - - @Override - public void onResume() - { - super.onResume(); - OpenCVLoader.initAsync(OpenCVLoader.OPENCV_VERSION_2_4_3, this, mLoaderCallback); - } - - public void onDestroy() { - super.onDestroy(); - if (mOpenCvCameraView != null) - mOpenCvCameraView.disableView(); - } - - @Override - public boolean onCreateOptionsMenu(Menu menu) { - Log.i(TAG, "called onCreateOptionsMenu"); - mItemPreviewRGBA = menu.add("Preview RGBA"); - mItemPreviewHist = menu.add("Histograms"); - mItemPreviewCanny = menu.add("Canny"); - mItemPreviewSepia = menu.add("Sepia"); - mItemPreviewSobel = menu.add("Sobel"); - mItemPreviewZoom = menu.add("Zoom"); - mItemPreviewPixelize = menu.add("Pixelize"); - mItemPreviewPosterize = menu.add("Posterize"); - return true; - } - - @Override - public boolean onOptionsItemSelected(MenuItem item) { - Log.i(TAG, "called onOptionsItemSelected; selected item: " + item); - if (item == mItemPreviewRGBA) - viewMode = VIEW_MODE_RGBA; - if (item == mItemPreviewHist) - viewMode = VIEW_MODE_HIST; - else if (item == mItemPreviewCanny) - viewMode = VIEW_MODE_CANNY; - else if (item == mItemPreviewSepia) - viewMode = VIEW_MODE_SEPIA; - else if (item == mItemPreviewSobel) - viewMode = VIEW_MODE_SOBEL; - else if (item == mItemPreviewZoom) - viewMode = VIEW_MODE_ZOOM; - else if (item == mItemPreviewPixelize) - viewMode = VIEW_MODE_PIXELIZE; - else if (item == mItemPreviewPosterize) - viewMode = VIEW_MODE_POSTERIZE; - return true; - } - - public void onCameraViewStarted(int width, int height) { - mGray = new Mat(); - mRgba = new Mat(); - mIntermediateMat = new Mat(); - mSize0 = new Size(); - mHist = new Mat(); - mChannels = new MatOfInt[] { new MatOfInt(0), new MatOfInt(1), new MatOfInt(2) }; - mHistSizeNum = 25; - mBuff = new float[mHistSizeNum]; - mHistSize = new MatOfInt(mHistSizeNum); - mRanges = new MatOfFloat(0f, 256f); - mMat0 = new Mat(); - mColorsRGB = new Scalar[] { new Scalar(200, 0, 0, 255), new Scalar(0, 200, 0, 255), new Scalar(0, 0, 200, 255) }; - mColorsHue = new Scalar[] { - new Scalar(255, 0, 0, 255), new Scalar(255, 60, 0, 255), new Scalar(255, 120, 0, 255), new Scalar(255, 180, 0, 255), new Scalar(255, 240, 0, 255), - new Scalar(215, 213, 0, 255), new Scalar(150, 255, 0, 255), new Scalar(85, 255, 0, 255), new Scalar(20, 255, 0, 255), new Scalar(0, 255, 30, 255), - new Scalar(0, 255, 85, 255), new Scalar(0, 255, 150, 255), new Scalar(0, 255, 215, 255), new Scalar(0, 234, 255, 255), new Scalar(0, 170, 255, 255), - new Scalar(0, 120, 255, 255), new Scalar(0, 60, 255, 255), new Scalar(0, 0, 255, 255), new Scalar(64, 0, 255, 255), new Scalar(120, 0, 255, 255), - new Scalar(180, 0, 255, 255), new Scalar(255, 0, 255, 255), new Scalar(255, 0, 215, 255), new Scalar(255, 0, 85, 255), new Scalar(255, 0, 0, 255) - }; - mWhilte = Scalar.all(255); - mP1 = new Point(); - mP2 = new Point(); - - // Fill sepia kernel - mSepiaKernel = new Mat(4, 4, CvType.CV_32F); - mSepiaKernel.put(0, 0, /* R */0.189f, 0.769f, 0.393f, 0f); - mSepiaKernel.put(1, 0, /* G */0.168f, 0.686f, 0.349f, 0f); - mSepiaKernel.put(2, 0, /* B */0.131f, 0.534f, 0.272f, 0f); - mSepiaKernel.put(3, 0, /* A */0.000f, 0.000f, 0.000f, 1f); - } - - private void CreateAuxiliaryMats() { - if (mRgba.empty()) - return; - - mSizeRgba = mRgba.size(); - - int rows = (int) mSizeRgba.height; - int cols = (int) mSizeRgba.width; - - int left = cols / 8; - int top = rows / 8; - - int width = cols * 3 / 4; - int height = rows * 3 / 4; - - if (mRgbaInnerWindow == null) - mRgbaInnerWindow = mRgba.submat(top, top + height, left, left + width); - mSizeRgbaInner = mRgbaInnerWindow.size(); - - if (mGrayInnerWindow == null && !mGray.empty()) - mGrayInnerWindow = mGray.submat(top, top + height, left, left + width); - - if (mZoomCorner == null) - mZoomCorner = mRgba.submat(0, rows / 2 - rows / 10, 0, cols / 2 - cols / 10); - - if (mZoomWindow == null) - mZoomWindow = mRgba.submat(rows / 2 - 9 * rows / 100, rows / 2 + 9 * rows / 100, cols / 2 - 9 * cols / 100, cols / 2 + 9 * cols / 100); - } - - public void onCameraViewStopped() { - // Explicitly deallocate Mats - if (mZoomWindow != null) - mZoomWindow.release(); - if (mZoomCorner != null) - mZoomCorner.release(); - if (mGrayInnerWindow != null) - mGrayInnerWindow.release(); - if (mRgbaInnerWindow != null) - mRgbaInnerWindow.release(); - if (mRgba != null) - mRgba.release(); - if (mGray != null) - mGray.release(); - if (mIntermediateMat != null) - mIntermediateMat.release(); - - mRgba = null; - mGray = null; - mIntermediateMat = null; - mRgbaInnerWindow = null; - mGrayInnerWindow = null; - mZoomCorner = null; - mZoomWindow = null; - } - - public Mat onCameraFrame(CvCameraViewFrame inputFrame) { - mRgba = inputFrame.rgba(); - - switch (ImageManipulationsActivity.viewMode) { - case ImageManipulationsActivity.VIEW_MODE_RGBA: - break; - - case ImageManipulationsActivity.VIEW_MODE_HIST: - if ((mSizeRgba == null) || (mRgba.cols() != mSizeRgba.width) || (mRgba.height() != mSizeRgba.height)) - CreateAuxiliaryMats(); - int thikness = (int) (mSizeRgba.width / (mHistSizeNum + 10) / 5); - if(thikness > 5) thikness = 5; - int offset = (int) ((mSizeRgba.width - (5*mHistSizeNum + 4*10)*thikness)/2); - // RGB - for(int c=0; c<3; c++) { - Imgproc.calcHist(Arrays.asList(mRgba), mChannels[c], mMat0, mHist, mHistSize, mRanges); - Core.normalize(mHist, mHist, mSizeRgba.height/2, 0, Core.NORM_INF); - mHist.get(0, 0, mBuff); - for(int h=0; h - - - - - - - diff --git a/samples/android/tutorial-1-camerapreview/.project b/samples/android/tutorial-1-camerapreview/.project deleted file mode 100644 index bcb4d1718..000000000 --- a/samples/android/tutorial-1-camerapreview/.project +++ /dev/null @@ -1,33 +0,0 @@ - - - OpenCV Tutorial 1 - Camera Preview - - - - - - com.android.ide.eclipse.adt.ResourceManagerBuilder - - - - - com.android.ide.eclipse.adt.PreCompilerBuilder - - - - - org.eclipse.jdt.core.javabuilder - - - - - com.android.ide.eclipse.adt.ApkBuilder - - - - - - com.android.ide.eclipse.adt.AndroidNature - org.eclipse.jdt.core.javanature - - diff --git a/samples/android/tutorial-1-camerapreview/.settings/org.eclipse.jdt.core.prefs b/samples/android/tutorial-1-camerapreview/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index b080d2ddc..000000000 --- a/samples/android/tutorial-1-camerapreview/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,4 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 -org.eclipse.jdt.core.compiler.compliance=1.6 -org.eclipse.jdt.core.compiler.source=1.6 diff --git a/samples/android/tutorial-1-camerapreview/AndroidManifest.xml b/samples/android/tutorial-1-camerapreview/AndroidManifest.xml deleted file mode 100644 index 47d45ed37..000000000 --- a/samples/android/tutorial-1-camerapreview/AndroidManifest.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/android/tutorial-1-camerapreview/CMakeLists.txt b/samples/android/tutorial-1-camerapreview/CMakeLists.txt deleted file mode 100644 index 7e5c5cb1b..000000000 --- a/samples/android/tutorial-1-camerapreview/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -set(sample example-tutorial-1-camerapreview) - -add_android_project(${sample} "${CMAKE_CURRENT_SOURCE_DIR}" LIBRARY_DEPS ${OpenCV_BINARY_DIR} SDK_TARGET 11 ${ANDROID_SDK_TARGET}) -if(TARGET ${sample}) - add_dependencies(opencv_android_examples ${sample}) -endif() diff --git a/samples/android/tutorial-1-camerapreview/res/drawable/icon.png b/samples/android/tutorial-1-camerapreview/res/drawable/icon.png deleted file mode 100644 index 630454927..000000000 Binary files a/samples/android/tutorial-1-camerapreview/res/drawable/icon.png and /dev/null differ diff --git a/samples/android/tutorial-1-camerapreview/res/values/strings.xml b/samples/android/tutorial-1-camerapreview/res/values/strings.xml deleted file mode 100644 index b7bea7d51..000000000 --- a/samples/android/tutorial-1-camerapreview/res/values/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - OCV T1 Preview - diff --git a/samples/android/tutorial-1-camerapreview/src/org/opencv/samples/tutorial1/Tutorial1Activity.java b/samples/android/tutorial-1-camerapreview/src/org/opencv/samples/tutorial1/Tutorial1Activity.java deleted file mode 100644 index cbac1649b..000000000 --- a/samples/android/tutorial-1-camerapreview/src/org/opencv/samples/tutorial1/Tutorial1Activity.java +++ /dev/null @@ -1,131 +0,0 @@ -package org.opencv.samples.tutorial1; - -import org.opencv.android.BaseLoaderCallback; -import org.opencv.android.CameraBridgeViewBase.CvCameraViewFrame; -import org.opencv.android.LoaderCallbackInterface; -import org.opencv.android.OpenCVLoader; -import org.opencv.core.Mat; -import org.opencv.android.CameraBridgeViewBase; -import org.opencv.android.CameraBridgeViewBase.CvCameraViewListener2; - -import android.app.Activity; -import android.os.Bundle; -import android.util.Log; -import android.view.Menu; -import android.view.MenuItem; -import android.view.SurfaceView; -import android.view.WindowManager; -import android.widget.Toast; - -public class Tutorial1Activity extends Activity implements CvCameraViewListener2 { - private static final String TAG = "OCVSample::Activity"; - - private CameraBridgeViewBase mOpenCvCameraView; - private boolean mIsJavaCamera = true; - private MenuItem mItemSwitchCamera = null; - - private BaseLoaderCallback mLoaderCallback = new BaseLoaderCallback(this) { - @Override - public void onManagerConnected(int status) { - switch (status) { - case LoaderCallbackInterface.SUCCESS: - { - Log.i(TAG, "OpenCV loaded successfully"); - mOpenCvCameraView.enableView(); - } break; - default: - { - super.onManagerConnected(status); - } break; - } - } - }; - - public Tutorial1Activity() { - Log.i(TAG, "Instantiated new " + this.getClass()); - } - - /** Called when the activity is first created. */ - @Override - public void onCreate(Bundle savedInstanceState) { - Log.i(TAG, "called onCreate"); - super.onCreate(savedInstanceState); - getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); - - setContentView(R.layout.tutorial1_surface_view); - - if (mIsJavaCamera) - mOpenCvCameraView = (CameraBridgeViewBase) findViewById(R.id.tutorial1_activity_java_surface_view); - else - mOpenCvCameraView = (CameraBridgeViewBase) findViewById(R.id.tutorial1_activity_native_surface_view); - - mOpenCvCameraView.setVisibility(SurfaceView.VISIBLE); - - mOpenCvCameraView.setCvCameraViewListener(this); - } - - @Override - public void onPause() - { - super.onPause(); - if (mOpenCvCameraView != null) - mOpenCvCameraView.disableView(); - } - - @Override - public void onResume() - { - super.onResume(); - OpenCVLoader.initAsync(OpenCVLoader.OPENCV_VERSION_2_4_3, this, mLoaderCallback); - } - - public void onDestroy() { - super.onDestroy(); - if (mOpenCvCameraView != null) - mOpenCvCameraView.disableView(); - } - - @Override - public boolean onCreateOptionsMenu(Menu menu) { - Log.i(TAG, "called onCreateOptionsMenu"); - mItemSwitchCamera = menu.add("Toggle Native/Java camera"); - return true; - } - - @Override - public boolean onOptionsItemSelected(MenuItem item) { - String toastMesage = new String(); - Log.i(TAG, "called onOptionsItemSelected; selected item: " + item); - - if (item == mItemSwitchCamera) { - mOpenCvCameraView.setVisibility(SurfaceView.GONE); - mIsJavaCamera = !mIsJavaCamera; - - if (mIsJavaCamera) { - mOpenCvCameraView = (CameraBridgeViewBase) findViewById(R.id.tutorial1_activity_java_surface_view); - toastMesage = "Java Camera"; - } else { - mOpenCvCameraView = (CameraBridgeViewBase) findViewById(R.id.tutorial1_activity_native_surface_view); - toastMesage = "Native Camera"; - } - - mOpenCvCameraView.setVisibility(SurfaceView.VISIBLE); - mOpenCvCameraView.setCvCameraViewListener(this); - mOpenCvCameraView.enableView(); - Toast toast = Toast.makeText(this, toastMesage, Toast.LENGTH_LONG); - toast.show(); - } - - return true; - } - - public void onCameraViewStarted(int width, int height) { - } - - public void onCameraViewStopped() { - } - - public Mat onCameraFrame(CvCameraViewFrame inputFrame) { - return inputFrame.rgba(); - } -} diff --git a/samples/android/tutorial-2-mixedprocessing/.classpath b/samples/android/tutorial-2-mixedprocessing/.classpath deleted file mode 100644 index 3f9691c5d..000000000 --- a/samples/android/tutorial-2-mixedprocessing/.classpath +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/samples/android/tutorial-2-mixedprocessing/.cproject b/samples/android/tutorial-2-mixedprocessing/.cproject deleted file mode 100644 index 0d1d13e85..000000000 --- a/samples/android/tutorial-2-mixedprocessing/.cproject +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/android/tutorial-2-mixedprocessing/.project b/samples/android/tutorial-2-mixedprocessing/.project deleted file mode 100644 index c3e05a59a..000000000 --- a/samples/android/tutorial-2-mixedprocessing/.project +++ /dev/null @@ -1,101 +0,0 @@ - - - OpenCV Tutorial 2 - Mixed Processing - - - - - - org.eclipse.cdt.managedbuilder.core.genmakebuilder - auto,full,incremental, - - - ?name? - - - - org.eclipse.cdt.make.core.append_environment - true - - - org.eclipse.cdt.make.core.autoBuildTarget - - - - org.eclipse.cdt.make.core.buildArguments - - - - org.eclipse.cdt.make.core.buildCommand - ${NDKROOT}/ndk-build.cmd - - - org.eclipse.cdt.make.core.cleanBuildTarget - clean - - - org.eclipse.cdt.make.core.contents - org.eclipse.cdt.make.core.activeConfigSettings - - - org.eclipse.cdt.make.core.enableAutoBuild - true - - - org.eclipse.cdt.make.core.enableCleanBuild - false - - - org.eclipse.cdt.make.core.enableFullBuild - true - - - org.eclipse.cdt.make.core.fullBuildTarget - - - - org.eclipse.cdt.make.core.stopOnError - true - - - org.eclipse.cdt.make.core.useDefaultBuildCmd - false - - - - - com.android.ide.eclipse.adt.ResourceManagerBuilder - - - - - com.android.ide.eclipse.adt.PreCompilerBuilder - - - - - org.eclipse.jdt.core.javabuilder - - - - - com.android.ide.eclipse.adt.ApkBuilder - - - - - org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder - full,incremental, - - - - - - com.android.ide.eclipse.adt.AndroidNature - org.eclipse.jdt.core.javanature - org.eclipse.cdt.core.cnature - org.eclipse.cdt.core.ccnature - org.eclipse.cdt.managedbuilder.core.managedBuildNature - org.eclipse.cdt.managedbuilder.core.ScannerConfigNature - - diff --git a/samples/android/tutorial-2-mixedprocessing/.settings/org.eclipse.jdt.core.prefs b/samples/android/tutorial-2-mixedprocessing/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index b080d2ddc..000000000 --- a/samples/android/tutorial-2-mixedprocessing/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,4 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 -org.eclipse.jdt.core.compiler.compliance=1.6 -org.eclipse.jdt.core.compiler.source=1.6 diff --git a/samples/android/tutorial-2-mixedprocessing/AndroidManifest.xml b/samples/android/tutorial-2-mixedprocessing/AndroidManifest.xml deleted file mode 100644 index 795dd204b..000000000 --- a/samples/android/tutorial-2-mixedprocessing/AndroidManifest.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/android/tutorial-2-mixedprocessing/CMakeLists.txt b/samples/android/tutorial-2-mixedprocessing/CMakeLists.txt deleted file mode 100644 index e8771ede1..000000000 --- a/samples/android/tutorial-2-mixedprocessing/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ -set(sample example-tutorial-2-mixedprocessing) - -if(BUILD_FAT_JAVA_LIB) - set(native_deps opencv_java) -else() - set(native_deps opencv_features2d) -endif() - -add_android_project(${sample} "${CMAKE_CURRENT_SOURCE_DIR}" LIBRARY_DEPS ${OpenCV_BINARY_DIR} SDK_TARGET 11 ${ANDROID_SDK_TARGET} NATIVE_DEPS ${native_deps}) -if(TARGET ${sample}) - add_dependencies(opencv_android_examples ${sample}) -endif() diff --git a/samples/android/tutorial-2-mixedprocessing/jni/Android.mk b/samples/android/tutorial-2-mixedprocessing/jni/Android.mk deleted file mode 100644 index 18dac1fb0..000000000 --- a/samples/android/tutorial-2-mixedprocessing/jni/Android.mk +++ /dev/null @@ -1,11 +0,0 @@ -LOCAL_PATH := $(call my-dir) - -include $(CLEAR_VARS) - -include ../../sdk/native/jni/OpenCV.mk - -LOCAL_MODULE := mixed_sample -LOCAL_SRC_FILES := jni_part.cpp -LOCAL_LDLIBS += -llog -ldl - -include $(BUILD_SHARED_LIBRARY) diff --git a/samples/android/tutorial-2-mixedprocessing/jni/Application.mk b/samples/android/tutorial-2-mixedprocessing/jni/Application.mk deleted file mode 100644 index 4fffcb283..000000000 --- a/samples/android/tutorial-2-mixedprocessing/jni/Application.mk +++ /dev/null @@ -1,4 +0,0 @@ -APP_STL := gnustl_static -APP_CPPFLAGS := -frtti -fexceptions -APP_ABI := armeabi-v7a -APP_PLATFORM := android-8 diff --git a/samples/android/tutorial-2-mixedprocessing/res/drawable/icon.png b/samples/android/tutorial-2-mixedprocessing/res/drawable/icon.png deleted file mode 100644 index 630454927..000000000 Binary files a/samples/android/tutorial-2-mixedprocessing/res/drawable/icon.png and /dev/null differ diff --git a/samples/android/tutorial-2-mixedprocessing/res/layout/tutorial2_surface_view.xml b/samples/android/tutorial-2-mixedprocessing/res/layout/tutorial2_surface_view.xml deleted file mode 100644 index a176669aa..000000000 --- a/samples/android/tutorial-2-mixedprocessing/res/layout/tutorial2_surface_view.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - diff --git a/samples/android/tutorial-2-mixedprocessing/res/values/strings.xml b/samples/android/tutorial-2-mixedprocessing/res/values/strings.xml deleted file mode 100644 index 0ecc4bb60..000000000 --- a/samples/android/tutorial-2-mixedprocessing/res/values/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - OCV T2 Mixed Processing - diff --git a/samples/android/tutorial-2-mixedprocessing/src/org/opencv/samples/tutorial2/Tutorial2Activity.java b/samples/android/tutorial-2-mixedprocessing/src/org/opencv/samples/tutorial2/Tutorial2Activity.java deleted file mode 100644 index eb84a1ec6..000000000 --- a/samples/android/tutorial-2-mixedprocessing/src/org/opencv/samples/tutorial2/Tutorial2Activity.java +++ /dev/null @@ -1,166 +0,0 @@ -package org.opencv.samples.tutorial2; - -import org.opencv.android.BaseLoaderCallback; -import org.opencv.android.CameraBridgeViewBase.CvCameraViewFrame; -import org.opencv.android.LoaderCallbackInterface; -import org.opencv.android.OpenCVLoader; -import org.opencv.core.CvType; -import org.opencv.core.Mat; -import org.opencv.android.CameraBridgeViewBase; -import org.opencv.android.CameraBridgeViewBase.CvCameraViewListener2; -import org.opencv.imgproc.Imgproc; - -import android.app.Activity; -import android.os.Bundle; -import android.util.Log; -import android.view.Menu; -import android.view.MenuItem; -import android.view.WindowManager; - -public class Tutorial2Activity extends Activity implements CvCameraViewListener2 { - private static final String TAG = "OCVSample::Activity"; - - private static final int VIEW_MODE_RGBA = 0; - private static final int VIEW_MODE_GRAY = 1; - private static final int VIEW_MODE_CANNY = 2; - private static final int VIEW_MODE_FEATURES = 5; - - private int mViewMode; - private Mat mRgba; - private Mat mIntermediateMat; - private Mat mGray; - - private MenuItem mItemPreviewRGBA; - private MenuItem mItemPreviewGray; - private MenuItem mItemPreviewCanny; - private MenuItem mItemPreviewFeatures; - - private CameraBridgeViewBase mOpenCvCameraView; - - private BaseLoaderCallback mLoaderCallback = new BaseLoaderCallback(this) { - @Override - public void onManagerConnected(int status) { - switch (status) { - case LoaderCallbackInterface.SUCCESS: - { - Log.i(TAG, "OpenCV loaded successfully"); - - // Load native library after(!) OpenCV initialization - System.loadLibrary("mixed_sample"); - - mOpenCvCameraView.enableView(); - } break; - default: - { - super.onManagerConnected(status); - } break; - } - } - }; - - public Tutorial2Activity() { - Log.i(TAG, "Instantiated new " + this.getClass()); - } - - /** Called when the activity is first created. */ - @Override - public void onCreate(Bundle savedInstanceState) { - Log.i(TAG, "called onCreate"); - super.onCreate(savedInstanceState); - getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); - - setContentView(R.layout.tutorial2_surface_view); - - mOpenCvCameraView = (CameraBridgeViewBase) findViewById(R.id.tutorial2_activity_surface_view); - mOpenCvCameraView.setCvCameraViewListener(this); - } - - @Override - public boolean onCreateOptionsMenu(Menu menu) { - Log.i(TAG, "called onCreateOptionsMenu"); - mItemPreviewRGBA = menu.add("Preview RGBA"); - mItemPreviewGray = menu.add("Preview GRAY"); - mItemPreviewCanny = menu.add("Canny"); - mItemPreviewFeatures = menu.add("Find features"); - return true; - } - - @Override - public void onPause() - { - super.onPause(); - if (mOpenCvCameraView != null) - mOpenCvCameraView.disableView(); - } - - @Override - public void onResume() - { - super.onResume(); - OpenCVLoader.initAsync(OpenCVLoader.OPENCV_VERSION_2_4_3, this, mLoaderCallback); - } - - public void onDestroy() { - super.onDestroy(); - if (mOpenCvCameraView != null) - mOpenCvCameraView.disableView(); - } - - public void onCameraViewStarted(int width, int height) { - mRgba = new Mat(height, width, CvType.CV_8UC4); - mIntermediateMat = new Mat(height, width, CvType.CV_8UC4); - mGray = new Mat(height, width, CvType.CV_8UC1); - } - - public void onCameraViewStopped() { - mRgba.release(); - mGray.release(); - mIntermediateMat.release(); - } - - public Mat onCameraFrame(CvCameraViewFrame inputFrame) { - final int viewMode = mViewMode; - switch (viewMode) { - case VIEW_MODE_GRAY: - // input frame has gray scale format - Imgproc.cvtColor(inputFrame.gray(), mRgba, Imgproc.COLOR_GRAY2RGBA, 4); - break; - case VIEW_MODE_RGBA: - // input frame has RBGA format - mRgba = inputFrame.rgba(); - break; - case VIEW_MODE_CANNY: - // input frame has gray scale format - mRgba = inputFrame.rgba(); - Imgproc.Canny(inputFrame.gray(), mIntermediateMat, 80, 100); - Imgproc.cvtColor(mIntermediateMat, mRgba, Imgproc.COLOR_GRAY2RGBA, 4); - break; - case VIEW_MODE_FEATURES: - // input frame has RGBA format - mRgba = inputFrame.rgba(); - mGray = inputFrame.gray(); - FindFeatures(mGray.getNativeObjAddr(), mRgba.getNativeObjAddr()); - break; - } - - return mRgba; - } - - public boolean onOptionsItemSelected(MenuItem item) { - Log.i(TAG, "called onOptionsItemSelected; selected item: " + item); - - if (item == mItemPreviewRGBA) { - mViewMode = VIEW_MODE_RGBA; - } else if (item == mItemPreviewGray) { - mViewMode = VIEW_MODE_GRAY; - } else if (item == mItemPreviewCanny) { - mViewMode = VIEW_MODE_CANNY; - } else if (item == mItemPreviewFeatures) { - mViewMode = VIEW_MODE_FEATURES; - } - - return true; - } - - public native void FindFeatures(long matAddrGr, long matAddrRgba); -} diff --git a/samples/android/tutorial-3-cameracontrol/.classpath b/samples/android/tutorial-3-cameracontrol/.classpath deleted file mode 100644 index 3f9691c5d..000000000 --- a/samples/android/tutorial-3-cameracontrol/.classpath +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/samples/android/tutorial-3-cameracontrol/.project b/samples/android/tutorial-3-cameracontrol/.project deleted file mode 100644 index bccca2d7c..000000000 --- a/samples/android/tutorial-3-cameracontrol/.project +++ /dev/null @@ -1,33 +0,0 @@ - - - OpenCV Tutorial 3 - Camera Control - - - - - - com.android.ide.eclipse.adt.ResourceManagerBuilder - - - - - com.android.ide.eclipse.adt.PreCompilerBuilder - - - - - org.eclipse.jdt.core.javabuilder - - - - - com.android.ide.eclipse.adt.ApkBuilder - - - - - - com.android.ide.eclipse.adt.AndroidNature - org.eclipse.jdt.core.javanature - - diff --git a/samples/android/tutorial-3-cameracontrol/.settings/org.eclipse.jdt.core.prefs b/samples/android/tutorial-3-cameracontrol/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index b080d2ddc..000000000 --- a/samples/android/tutorial-3-cameracontrol/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,4 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 -org.eclipse.jdt.core.compiler.compliance=1.6 -org.eclipse.jdt.core.compiler.source=1.6 diff --git a/samples/android/tutorial-3-cameracontrol/AndroidManifest.xml b/samples/android/tutorial-3-cameracontrol/AndroidManifest.xml deleted file mode 100644 index da90f95d8..000000000 --- a/samples/android/tutorial-3-cameracontrol/AndroidManifest.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/android/tutorial-3-cameracontrol/CMakeLists.txt b/samples/android/tutorial-3-cameracontrol/CMakeLists.txt deleted file mode 100644 index 3fd69c929..000000000 --- a/samples/android/tutorial-3-cameracontrol/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -set(sample example-tutorial-3-cameracontrol) - -add_android_project(${sample} "${CMAKE_CURRENT_SOURCE_DIR}" LIBRARY_DEPS ${OpenCV_BINARY_DIR} SDK_TARGET 11 ${ANDROID_SDK_TARGET}) -if(TARGET ${sample}) - add_dependencies(opencv_android_examples ${sample}) -endif() diff --git a/samples/android/tutorial-3-cameracontrol/res/drawable/icon.png b/samples/android/tutorial-3-cameracontrol/res/drawable/icon.png deleted file mode 100644 index 630454927..000000000 Binary files a/samples/android/tutorial-3-cameracontrol/res/drawable/icon.png and /dev/null differ diff --git a/samples/android/tutorial-3-cameracontrol/res/values/strings.xml b/samples/android/tutorial-3-cameracontrol/res/values/strings.xml deleted file mode 100644 index d3fb56d94..000000000 --- a/samples/android/tutorial-3-cameracontrol/res/values/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - OCV T3 Camera Control - diff --git a/samples/android/tutorial-3-cameracontrol/src/org/opencv/samples/tutorial3/Tutorial3Activity.java b/samples/android/tutorial-3-cameracontrol/src/org/opencv/samples/tutorial3/Tutorial3Activity.java deleted file mode 100644 index 28c00f3b1..000000000 --- a/samples/android/tutorial-3-cameracontrol/src/org/opencv/samples/tutorial3/Tutorial3Activity.java +++ /dev/null @@ -1,178 +0,0 @@ -package org.opencv.samples.tutorial3; - -import java.text.SimpleDateFormat; -import java.util.Date; -import java.util.List; -import java.util.ListIterator; - -import org.opencv.android.BaseLoaderCallback; -import org.opencv.android.CameraBridgeViewBase.CvCameraViewFrame; -import org.opencv.android.LoaderCallbackInterface; -import org.opencv.android.OpenCVLoader; -import org.opencv.core.Mat; -import org.opencv.android.CameraBridgeViewBase.CvCameraViewListener2; - -import android.annotation.SuppressLint; -import android.app.Activity; -import android.hardware.Camera.Size; -import android.os.Bundle; -import android.os.Environment; -import android.util.Log; -import android.view.Menu; -import android.view.MenuItem; -import android.view.MotionEvent; -import android.view.SubMenu; -import android.view.SurfaceView; -import android.view.View; -import android.view.View.OnTouchListener; -import android.view.WindowManager; -import android.widget.Toast; - -public class Tutorial3Activity extends Activity implements CvCameraViewListener2, OnTouchListener { - private static final String TAG = "OCVSample::Activity"; - - private Tutorial3View mOpenCvCameraView; - private List mResolutionList; - private MenuItem[] mEffectMenuItems; - private SubMenu mColorEffectsMenu; - private MenuItem[] mResolutionMenuItems; - private SubMenu mResolutionMenu; - - private BaseLoaderCallback mLoaderCallback = new BaseLoaderCallback(this) { - @Override - public void onManagerConnected(int status) { - switch (status) { - case LoaderCallbackInterface.SUCCESS: - { - Log.i(TAG, "OpenCV loaded successfully"); - mOpenCvCameraView.enableView(); - mOpenCvCameraView.setOnTouchListener(Tutorial3Activity.this); - } break; - default: - { - super.onManagerConnected(status); - } break; - } - } - }; - - public Tutorial3Activity() { - Log.i(TAG, "Instantiated new " + this.getClass()); - } - - /** Called when the activity is first created. */ - @Override - public void onCreate(Bundle savedInstanceState) { - Log.i(TAG, "called onCreate"); - super.onCreate(savedInstanceState); - getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); - - setContentView(R.layout.tutorial3_surface_view); - - mOpenCvCameraView = (Tutorial3View) findViewById(R.id.tutorial3_activity_java_surface_view); - - mOpenCvCameraView.setVisibility(SurfaceView.VISIBLE); - - mOpenCvCameraView.setCvCameraViewListener(this); - } - - @Override - public void onPause() - { - super.onPause(); - if (mOpenCvCameraView != null) - mOpenCvCameraView.disableView(); - } - - @Override - public void onResume() - { - super.onResume(); - OpenCVLoader.initAsync(OpenCVLoader.OPENCV_VERSION_2_4_3, this, mLoaderCallback); - } - - public void onDestroy() { - super.onDestroy(); - if (mOpenCvCameraView != null) - mOpenCvCameraView.disableView(); - } - - public void onCameraViewStarted(int width, int height) { - } - - public void onCameraViewStopped() { - } - - public Mat onCameraFrame(CvCameraViewFrame inputFrame) { - return inputFrame.rgba(); - } - - @Override - public boolean onCreateOptionsMenu(Menu menu) { - List effects = mOpenCvCameraView.getEffectList(); - - if (effects == null) { - Log.e(TAG, "Color effects are not supported by device!"); - return true; - } - - mColorEffectsMenu = menu.addSubMenu("Color Effect"); - mEffectMenuItems = new MenuItem[effects.size()]; - - int idx = 0; - ListIterator effectItr = effects.listIterator(); - while(effectItr.hasNext()) { - String element = effectItr.next(); - mEffectMenuItems[idx] = mColorEffectsMenu.add(1, idx, Menu.NONE, element); - idx++; - } - - mResolutionMenu = menu.addSubMenu("Resolution"); - mResolutionList = mOpenCvCameraView.getResolutionList(); - mResolutionMenuItems = new MenuItem[mResolutionList.size()]; - - ListIterator resolutionItr = mResolutionList.listIterator(); - idx = 0; - while(resolutionItr.hasNext()) { - Size element = resolutionItr.next(); - mResolutionMenuItems[idx] = mResolutionMenu.add(2, idx, Menu.NONE, - Integer.valueOf(element.width).toString() + "x" + Integer.valueOf(element.height).toString()); - idx++; - } - - return true; - } - - public boolean onOptionsItemSelected(MenuItem item) { - Log.i(TAG, "called onOptionsItemSelected; selected item: " + item); - if (item.getGroupId() == 1) - { - mOpenCvCameraView.setEffect((String) item.getTitle()); - Toast.makeText(this, mOpenCvCameraView.getEffect(), Toast.LENGTH_SHORT).show(); - } - else if (item.getGroupId() == 2) - { - int id = item.getItemId(); - Size resolution = mResolutionList.get(id); - mOpenCvCameraView.setResolution(resolution); - resolution = mOpenCvCameraView.getResolution(); - String caption = Integer.valueOf(resolution.width).toString() + "x" + Integer.valueOf(resolution.height).toString(); - Toast.makeText(this, caption, Toast.LENGTH_SHORT).show(); - } - - return true; - } - - @SuppressLint("SimpleDateFormat") - @Override - public boolean onTouch(View v, MotionEvent event) { - Log.i(TAG,"onTouch event"); - SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd_HH-mm-ss"); - String currentDateandTime = sdf.format(new Date()); - String fileName = Environment.getExternalStorageDirectory().getPath() + - "/sample_picture_" + currentDateandTime + ".jpg"; - mOpenCvCameraView.takePicture(fileName); - Toast.makeText(this, fileName + " saved", Toast.LENGTH_SHORT).show(); - return false; - } -} diff --git a/samples/c/CMakeLists.txt b/samples/c/CMakeLists.txt deleted file mode 100644 index dfab5e00a..000000000 --- a/samples/c/CMakeLists.txt +++ /dev/null @@ -1,60 +0,0 @@ -# ---------------------------------------------------------------------------- -# CMake file for C samples. See root CMakeLists.txt -# -# ---------------------------------------------------------------------------- - -SET(OPENCV_C_SAMPLES_REQUIRED_DEPS opencv_core opencv_flann opencv_imgproc - opencv_highgui opencv_ml opencv_video opencv_objdetect opencv_photo opencv_nonfree - opencv_features2d opencv_calib3d opencv_legacy opencv_contrib) - -ocv_check_dependencies(${OPENCV_C_SAMPLES_REQUIRED_DEPS}) - -if(BUILD_EXAMPLES AND OCV_DEPENDENCIES_FOUND) - project(c_samples) - - if(CMAKE_COMPILER_IS_GNUCXX AND NOT ENABLE_NOISY_WARNINGS) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-function") - endif() - - ocv_include_modules(${OPENCV_C_SAMPLES_REQUIRED_DEPS}) - - # --------------------------------------------- - # Define executable targets - # --------------------------------------------- - MACRO(OPENCV_DEFINE_C_EXAMPLE name srcs) - set(the_target "example_${name}") - add_executable(${the_target} ${srcs}) - target_link_libraries(${the_target} ${OPENCV_LINKER_LIBS} ${OPENCV_C_SAMPLES_REQUIRED_DEPS}) - - set_target_properties(${the_target} PROPERTIES - OUTPUT_NAME "c-example-${name}" - PROJECT_LABEL "(EXAMPLE) ${name}") - - if(ENABLE_SOLUTION_FOLDERS) - set_target_properties(${the_target} PROPERTIES FOLDER "samples//c") - endif() - - if(WIN32) - if(MSVC AND NOT BUILD_SHARED_LIBS) - set_target_properties(${the_target} PROPERTIES LINK_FLAGS "/NODEFAULTLIB:atlthunk.lib /NODEFAULTLIB:atlsd.lib /DEBUG") - endif() - install(TARGETS ${the_target} - RUNTIME DESTINATION "samples/c" COMPONENT main) - endif() - ENDMACRO() - - file(GLOB cpp_samples RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.cpp *.c) - - foreach(sample_filename ${cpp_samples}) - get_filename_component(sample ${sample_filename} NAME_WE) - OPENCV_DEFINE_C_EXAMPLE(${sample} ${sample_filename}) - endforeach() -endif() - -if (INSTALL_C_EXAMPLES AND NOT WIN32) - file(GLOB C_SAMPLES *.c *.cpp *.jpg *.png *.data makefile.* build_all.sh *.dsp *.cmd ) - install(FILES ${C_SAMPLES} - DESTINATION share/OpenCV/samples/c - PERMISSIONS OWNER_READ GROUP_READ WORLD_READ) -endif () - diff --git a/samples/c/JCB.png b/samples/c/JCB.png deleted file mode 100644 index 243602aaa..000000000 Binary files a/samples/c/JCB.png and /dev/null differ diff --git a/samples/c/agaricus-lepiota.data b/samples/c/agaricus-lepiota.data deleted file mode 100644 index 14fe8bbe7..000000000 --- a/samples/c/agaricus-lepiota.data +++ /dev/null @@ -1,8124 +0,0 @@ -p,x,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -p,x,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,s,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,b,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -p,x,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,g -e,b,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -p,x,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -e,s,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,y,u -e,f,f,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -p,x,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,g -p,x,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,u -p,x,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,u -e,b,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -p,x,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,g -e,b,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,b,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,b,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -p,f,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,y,u -e,x,s,y,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -p,x,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,p -e,b,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,f,y,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,s,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -p,x,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,f,y,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,p -e,x,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,y,u -p,x,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,p -e,f,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,p -e,x,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,g -e,x,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -p,x,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -p,x,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,b,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,f,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,b,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,p -e,s,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,b,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,b,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,b,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,b,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,s,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,g -e,x,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,f,y,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,f,y,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,p -e,b,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,s,y,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,s,w,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,f,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,p -p,x,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,s,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -p,x,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,g -e,f,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,y,u -e,x,f,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,g -e,x,s,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -e,b,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,g -e,s,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,y,u -e,b,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,g -e,x,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,f,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -e,b,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,g -e,x,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,p -e,b,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,g -e,b,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,s,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,y,u -e,x,f,w,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -p,x,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,g -e,s,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,y,u -e,x,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,s,y,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,s,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,y,u -p,x,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -p,f,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,g -e,f,s,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -e,b,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,f,f,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,b,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,s,w,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,s,w,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -p,x,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,f,w,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -p,x,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,g -e,b,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,p -e,b,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,s,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,p -e,x,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,f,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,f,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,b,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,s,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,s,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,s,w,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,g -e,b,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,y,u -e,f,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,p -e,b,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,g -e,b,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,y,u -e,b,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,y,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,b,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,g -e,b,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,b,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,b,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,b,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -p,x,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,s,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,y,u -e,f,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,p -p,x,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,g -e,b,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,b,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,f,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,s,w,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,s,y,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,y,u -e,b,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,s,w,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,f,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -e,f,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,p -p,x,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,b,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,f,y,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,y,u -e,f,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,g -e,b,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,s,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -p,x,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,g -e,f,f,w,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,b,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -p,x,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,b,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,y,u -p,x,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,p -e,f,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,b,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,w,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,g -e,f,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,p -e,f,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,p -e,x,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -p,x,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,f,w,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,s,w,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,p -e,x,s,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -e,f,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,g -p,x,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,g -e,s,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,v,u -e,b,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,b,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,b,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,g -p,x,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,f,w,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,f,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,s,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,b,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -p,f,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -p,f,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,p -e,x,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,p -e,f,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,f,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -p,x,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,g -e,b,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,s,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -e,f,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,g -e,b,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,p -e,f,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,y,u -e,x,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,y,u -e,b,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,f,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,s,y,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -p,x,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,f,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -e,b,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,s,y,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -e,b,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,f,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -p,x,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,f,w,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -p,x,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,s,y,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,f,w,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,s,w,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,f,y,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,p -e,b,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -p,x,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,b,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -p,x,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,u -e,b,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,b,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,g -e,b,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,f,y,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,y,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,s,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,y,u -e,f,s,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,p -e,b,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,p -e,s,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,p -p,x,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,s,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,p -e,x,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,p -e,x,f,y,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,b,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,g -e,f,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,s,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,y,u -e,x,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,s,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,y,u -e,b,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -p,x,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,s,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -p,x,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,p -e,x,s,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -e,b,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,b,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,b,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,g -e,x,f,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -p,x,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,u -e,b,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -p,x,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,b,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,p -e,x,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,g -p,x,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,g -e,b,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,w,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -p,x,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,f,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -p,x,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,u -e,f,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,g -e,x,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,s,w,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,p -e,b,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,s,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,g -e,b,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,s,w,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,f,y,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,b,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,p -e,x,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,g -e,x,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,f,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,g -e,b,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,b,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,f,y,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,s,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -e,b,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,p -e,f,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,g -e,b,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,p -e,x,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,f,f,w,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,s,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,y,u -e,f,s,y,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,y,u -e,x,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,y,u -e,b,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,s,w,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,s,w,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,f,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,y,u -e,f,s,w,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,s,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,y,u -e,x,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,p -e,x,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,p -e,f,f,y,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -p,f,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,g -p,x,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,p -e,x,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,g -e,b,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,f,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,g -e,x,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,b,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -p,x,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,s,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,s,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,f,w,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,y,u -e,b,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,f,w,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,s,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,p -e,b,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,b,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,p -p,x,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,u -e,f,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,y,u -e,b,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,p -e,x,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,f,n,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,y,u -e,f,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -p,x,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,g -e,f,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,p -p,f,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,f,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -e,b,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,s,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,s,w,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,f,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -p,x,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,g -e,f,f,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,y,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,y,u -e,x,f,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,p -e,f,s,w,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,p -p,x,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,f,w,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,b,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,s,y,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,s,y,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,f,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -e,b,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -p,x,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,f,s,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -p,x,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,g -e,b,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,f,f,y,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,g -p,x,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,g -e,f,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,g -e,x,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,s,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,y,u -e,s,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -p,x,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,s,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -p,x,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -p,x,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,b,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -e,b,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -p,x,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,g -p,x,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,s,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,g -e,f,f,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,p -e,b,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,s,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,s,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,f,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -p,x,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,g -e,b,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,f,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -e,b,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,s,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,y,u -e,f,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,g -e,b,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,w,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,f,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,p -e,f,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,y,u -e,x,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,f,y,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,s,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,y,u -e,b,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,f,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,b,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,g -e,x,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,g -e,b,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,g -e,x,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,g -e,f,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,p -e,f,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,g -e,f,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,p -e,x,s,y,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,b,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,b,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,f,w,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,g -p,x,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,g -p,x,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,f,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -e,b,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,p -e,f,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,y,u -e,b,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -p,x,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,g -p,x,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,g -e,b,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,g -e,x,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,g -e,f,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,f,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,f,y,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,f,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,p -e,f,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,y,u -e,f,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,p -e,b,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,s,w,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,f,y,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,b,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,f,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,b,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,p -e,f,s,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -p,x,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,g -e,b,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -p,x,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,g -p,x,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,s,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -p,x,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,g -e,f,f,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,p -e,b,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,f,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,p -e,f,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,p -e,b,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,s,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,y,u -e,x,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,b,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,f,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,p -e,f,s,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,b,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,b,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,p -e,x,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,g -e,s,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,g -e,x,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,s,y,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,s,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,f,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,g -p,x,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -e,b,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,f,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -p,x,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,g -p,x,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,w,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -p,x,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,b,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,g -e,b,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,p -e,x,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -p,x,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,s,y,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,p -e,b,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,f,s,w,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,b,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,b,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,b,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,s,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -e,b,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,p -e,b,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,f,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,p -e,f,f,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,s,w,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,y,u -e,b,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,b,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,y,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,g -p,x,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,s,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,y,u -e,b,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -p,x,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -p,x,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,p -e,b,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,p -e,x,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -p,x,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,g -p,x,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,u -e,b,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,s,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -p,x,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,p -e,b,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -p,x,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,b,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,f,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,g -e,b,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,g -e,b,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,y,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,b,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -p,x,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -p,x,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,g -p,x,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,s,w,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,b,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,b,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,p -e,x,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,f,w,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,w,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,s,y,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,s,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,f,y,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,g -e,x,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,p -p,x,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -p,x,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,s,y,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -p,x,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,g -e,b,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,s,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,y,u -e,x,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,f,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,b,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,s,w,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,b,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,g -e,s,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,y,u -e,x,f,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -e,s,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,p -e,f,s,y,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,b,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,b,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -p,x,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,g -e,f,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,g -e,x,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,y,u -e,x,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,f,y,n,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,p -e,x,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,p -e,x,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,g -e,b,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,f,f,w,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,s,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,g -e,x,s,w,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,s,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,p -e,x,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,b,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,g -e,b,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,p -e,x,f,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,s,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,f,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -p,f,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,f,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -p,f,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -p,x,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,g -e,b,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,f,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,f,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,s,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,f,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,s,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,f,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,s,y,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,f,f,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,s,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,s,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -p,x,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,y,u -e,b,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,s,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,f,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -p,f,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,y,u -e,f,s,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,f,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,s,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -e,b,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -p,x,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,f,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,f,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -e,b,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,f,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -p,f,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,u -p,x,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,u -e,b,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,s,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -e,b,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -p,x,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,w,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,f,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,f,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,s,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,s,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -p,f,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,s,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,f,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,f,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,f,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,s,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,b,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,f,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,f,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,f,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -p,x,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,f,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,f,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,s,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,s,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,s,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,s,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,m -e,f,s,w,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,b,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -p,f,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,g -e,f,s,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -p,x,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,s,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,s,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,f,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,p -e,f,s,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,f,y,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,f,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -p,f,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,f,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -e,b,s,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,b,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,y,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -p,f,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -p,f,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,s,y,t,l,f,w,n,w,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -p,x,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,f,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,f,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,s,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,f,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,f,y,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,g,f,n,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,y,u -p,x,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,p -e,f,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,p -e,x,f,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,s,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -p,f,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,f,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,f,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,y,y,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,p -e,x,f,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -e,b,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,f,w,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,s,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,f,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,s,y,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,s,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -p,f,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,u -e,f,f,y,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,f,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,g -e,x,s,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -p,f,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,p -e,f,s,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,y,u -p,f,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,g -e,f,f,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,p -e,f,f,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -p,f,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,b,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,f,f,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -e,b,s,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,f,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -e,b,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -p,f,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,g -e,s,f,n,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,y,u -e,x,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,g -e,f,f,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,f,y,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,s,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -p,f,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,f,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,s,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -p,x,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,s,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -p,x,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,g -e,f,f,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,s,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -p,x,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,f,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -e,b,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,s,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -p,f,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,g -e,f,f,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,g -e,f,f,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,s,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,f,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,s,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -e,f,f,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,s,y,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,f,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,s,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -e,b,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -p,f,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -p,x,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,g -e,f,s,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,f,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -e,b,y,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,f,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,f,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,f,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,s,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,f,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,s,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,f,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,s,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,s,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,p -p,x,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,g -e,f,s,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -p,x,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,g -e,b,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,f,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,s,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,b,y,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,f,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,s,p -e,x,s,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,b,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,m -p,x,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,s,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -e,b,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,s,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,f,g,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,f,g,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,y,u -e,b,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,f,f,n,f,n,f,c,n,g,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,y,n,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,p -e,x,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,p -e,x,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,k,y,g -e,f,f,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,s,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,s,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -p,f,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,y,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,y,n,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,p -e,b,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -p,x,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,f,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -e,b,y,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,s,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,s,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,g -e,b,s,w,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,s,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -p,f,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,g -e,f,s,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -p,f,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,u -e,f,s,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,s,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,s,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,f,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -p,f,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,s,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -e,f,f,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,f,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,g -e,x,s,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,f,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,s,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,f,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -p,x,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,f,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -p,f,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,g -e,f,f,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,s,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,f,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,s,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,f,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,s,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,s,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -p,f,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,s,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -p,x,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,g -p,f,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,u -e,f,s,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,s,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,f,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,f,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,s,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -p,f,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,g -p,f,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,s,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -p,f,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,g -e,f,f,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,s,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -p,f,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,g -p,f,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,g -p,f,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,g -p,f,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,s,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,s,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,f,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -p,f,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,s,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,s,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,s,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -p,f,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,g -e,f,f,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,f,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -p,f,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,f,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,f,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,s,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,s,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -e,b,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,s,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,f,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -p,x,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,u -e,f,s,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,s,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,f,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,f,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -p,f,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,g -p,f,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,s,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,s,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,s,p -e,f,s,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,s,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,s,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,s,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,f,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -e,f,s,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,f,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,s,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -p,f,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,f,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -e,b,y,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,f,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,s,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -e,b,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,s,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -p,x,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,g -e,f,f,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -p,f,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,s,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,s,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -e,b,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,s,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,s,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,f,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,f,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,s,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -p,f,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,g -e,f,f,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,s,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,s,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,f,f,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,s,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,f,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -p,f,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,u -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,s,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,f,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -p,f,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,s,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,s,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,s,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,f,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,f,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,f,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,s,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -e,f,f,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -p,f,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,f,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,s,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,f,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,f,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,s,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,f,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,s,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,f,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -e,b,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -p,x,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,g -p,f,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,g -e,f,f,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,f,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -p,f,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,g -e,f,f,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -p,x,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,s,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -p,f,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,s,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,s,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,f,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,s,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,s,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,s,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,s,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -e,f,s,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -p,f,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,g -e,f,s,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,s,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -p,f,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,s,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,s,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,s,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,s,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,s,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,s,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,f,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,f,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,s,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -p,x,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,s,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,f,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,s,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,f,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,f,s,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,s,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,p -p,f,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,s,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -p,f,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,g -p,x,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,u -p,f,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -e,b,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -p,f,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,g -e,f,f,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,s,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,s,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,f,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,f,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -p,f,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,u -p,f,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,s,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,s,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,f,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -p,f,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -p,f,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,s,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,f,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,s,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,s,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -p,f,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,s,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,s,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,s,w,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,f,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,s,y,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,f,f,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,s,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -p,f,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,f,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,s,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -p,f,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,f,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,s,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,f,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,s,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,y,g -p,x,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,f,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,s,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,s,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -p,f,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,g -e,f,f,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -p,f,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,u -e,f,s,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,s,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,f,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,f,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,s,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,s,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,f,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,f,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,b,y,y,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -e,f,f,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,f,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -p,f,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,f,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,f,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,s,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,s,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,f,w,t,a,f,w,n,p,t,b,s,s,w,w,p,w,o,p,u,v,d -e,f,f,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -e,b,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,x,f,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,f,s,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,s,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,s,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,s,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -p,f,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,u -e,f,s,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -p,f,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,u -e,f,s,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -p,x,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,s,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -p,x,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,s,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -p,f,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,f,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,f,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -p,f,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,u -e,f,f,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,y,y,t,a,f,c,b,w,e,r,s,y,w,w,p,w,o,p,k,y,g -e,x,f,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -e,b,s,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,m -e,f,s,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,f,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,f,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -p,f,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,s,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -e,b,y,y,t,a,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,f,s,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,s,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,f,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,s,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,f,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -e,b,y,w,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -p,f,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,s,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -p,f,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,s,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,f,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,s,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,s,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,s,g -e,f,s,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,s,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -p,x,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,g -e,f,f,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -p,f,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,g -e,f,f,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,f,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -p,f,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,s,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -p,x,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,f,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,p -e,f,f,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,s,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,f,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,f,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,s,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,s,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,s,g -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,s,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,f,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,s,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,f,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,f,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,s,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,s,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,s,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,y,u -p,f,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,u -p,f,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,s,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,f,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,s,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,s,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,s,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -p,f,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -p,f,s,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,u -p,f,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,g -p,f,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,u -e,f,f,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,s,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,f,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,s,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -p,f,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,g -p,f,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,g -e,f,s,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,f,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,s,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,s,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,s,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,s,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,s,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,s,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,s,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,s,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,f,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,f,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,f,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,f,f,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,f,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,s,y,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,s,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -p,x,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,f,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -p,x,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -p,f,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,y,y,t,l,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,y,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,y,n,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,s,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,s,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,s,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,s,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,s,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,s,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,s,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -e,b,s,w,t,l,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,n,g -e,x,s,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,s,y,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,s,m -p,f,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,g -e,f,s,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,s,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,s,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,f,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,f,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,s,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -e,f,s,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,s,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,f,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,s,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,f,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -p,f,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,f,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,f,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -p,f,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,f,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,s,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,f,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,y,w,t,l,f,c,b,w,e,c,s,s,w,w,p,w,o,p,k,n,g -e,x,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,m -e,f,s,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,f,s,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,s,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -e,b,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,n,m -p,f,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,s,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,s,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,y,n,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,k,s,g -e,x,s,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,s,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -p,x,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,s,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -p,f,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,f,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,s,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -p,f,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,f,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,s,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,f,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,y,n,t,l,f,c,b,w,e,r,s,y,w,w,p,w,o,p,n,y,g -p,f,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,f,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,y,u -p,f,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,u -e,f,s,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,y,y,t,a,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,y,p -e,x,f,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,f,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -p,f,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,g -e,f,f,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,s,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,s,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,s,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -p,x,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,u -e,f,s,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,g -e,x,s,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,y,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,a,g -p,f,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,u -p,f,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,s,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,f,g,f,n,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,s,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,s,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,a,g -p,f,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,g -e,b,s,y,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -p,f,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,s,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,s,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,s,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -p,f,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,s,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -p,f,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,f,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -p,f,y,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,s,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,f,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,s,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,f,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -p,f,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,g -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -p,x,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,s,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,y,y,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,g -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,g -e,f,s,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,s,w,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,s,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,f,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -p,x,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,n,g -e,f,f,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,s,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,s,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,f,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,s,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,f,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -e,f,f,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -p,f,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,s,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,s,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,f,y,t,a,f,w,n,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -p,f,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,s,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,f,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,s,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,s,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,s,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,s,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,f,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,f,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,s,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,s,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,s,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,f,w,t,l,f,w,n,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -p,f,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,g -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,s,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,f,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,s,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,s,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,s,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,s,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -e,f,s,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,f,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,f,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -e,f,f,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,s,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,s,w,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,g,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,y,y,t,l,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,y,g -p,f,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,s,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,f,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,f,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,f,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,f,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,s,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,s,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -p,f,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,u -e,b,s,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,g,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,s,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,s,w,t,l,f,w,n,n,t,b,s,s,w,w,p,w,o,p,u,v,d -e,x,f,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,s,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,s,n,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -p,f,s,w,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,f,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,f,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -p,x,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,v,g -e,x,f,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -p,f,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,f,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,f,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,a,g -e,f,s,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,s,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,s,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,f,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -e,f,f,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -p,x,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,u -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,s,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -p,f,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,f,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,f,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,s,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,s,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -p,f,y,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -p,f,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,u -p,f,y,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,s,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,f,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,s,n,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,f,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,s,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,s,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,a,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -p,f,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,y,y,t,l,f,c,b,n,e,r,s,y,w,w,p,w,o,p,n,s,g -p,f,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,g -e,f,f,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,f,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,a,g -p,f,s,n,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,s,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,f,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,f,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,f,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,s,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,a,g -e,f,f,w,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -e,f,s,y,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,w,t,a,f,w,n,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,n,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,f,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,a,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,s,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,a,g -e,b,y,w,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,s,n,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,s,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,s,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,f,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,s,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,f,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,s,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,y,y,t,a,f,c,b,p,e,r,s,y,w,w,p,w,o,p,n,s,p -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,f,n,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,f,w,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,y,w,t,a,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,s,m -e,x,s,n,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,s,w,t,a,f,c,b,n,e,c,s,s,w,w,p,w,o,p,k,n,m -e,f,s,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -p,f,y,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,g -e,f,f,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,f,w,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -p,f,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,u -e,f,s,g,f,n,f,w,b,p,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -p,x,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,s,y,t,l,f,c,b,k,e,c,s,s,w,w,p,w,o,p,k,n,m -e,x,f,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,s,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,f,g,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,s,g -e,f,s,w,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,f,g,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,f,g,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -e,f,f,n,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -p,f,y,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,s,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -e,b,s,w,t,a,f,c,b,g,e,c,s,s,w,w,p,w,o,p,n,s,m -e,x,s,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,f,n,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,g,f,n,f,w,b,p,t,e,f,s,w,w,p,w,o,e,k,s,g -p,x,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,s,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -p,x,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,g -p,f,s,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,f,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -p,f,s,n,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -p,x,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,s,g -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,s,g,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,s,w,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -p,x,s,p,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,f,w,f,n,f,w,b,k,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,f,g,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,p -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -p,f,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,k,v,g -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,f,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,f,g,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,s,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,s,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,a,g -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,f,n,f,n,f,w,b,n,t,e,s,f,w,w,p,w,o,e,k,s,g -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -p,x,s,p,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -p,f,s,n,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,s,w,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,f,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,n,s,g -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,s,g,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,n,s,g -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -p,f,y,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,s,u -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,s,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -p,f,s,w,t,p,f,c,n,w,e,e,s,s,w,w,p,w,o,p,n,v,u -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,s,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,s,g -e,x,s,g,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,n,s,g -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,f,n,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,k,a,g -p,x,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,n,v,g -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -p,x,s,w,t,p,f,c,n,n,e,e,s,s,w,w,p,w,o,p,k,v,g -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -p,x,s,p,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,g -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,f,g,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,n,a,g -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -p,f,y,n,t,p,f,c,n,k,e,e,s,s,w,w,p,w,o,p,k,s,u -e,x,s,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -p,x,s,p,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,s,w,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,n,s,g -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -p,f,y,w,t,p,f,c,n,p,e,e,s,s,w,w,p,w,o,p,n,v,u -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,s,w,f,n,f,w,b,h,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,f,n,f,n,f,w,b,k,t,e,f,s,w,w,p,w,o,e,n,a,g -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -p,x,s,w,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,s,w,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,p -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,f,p,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -p,x,f,w,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,g -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,p -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,p -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,s,n,f,n,f,w,b,p,t,e,s,f,w,w,p,w,o,e,k,a,g -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,f,w,f,n,f,w,b,h,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -p,x,f,p,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,s,n,f,n,f,w,b,n,t,e,s,s,w,w,p,w,o,e,n,a,g -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,g -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,s,g,f,n,f,w,b,h,t,e,f,s,w,w,p,w,o,e,k,s,g -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -p,x,f,g,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,s,g,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -p,x,f,w,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,f,w,f,n,f,w,b,h,t,e,s,s,w,w,p,w,o,e,n,s,g -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,n,f,n,f,w,b,n,t,e,f,f,w,w,p,w,o,e,k,s,g -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -p,x,f,p,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,s,n,f,n,f,w,b,p,t,e,f,f,w,w,p,w,o,e,n,s,g -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -p,x,s,p,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,s,w,f,n,f,w,b,k,t,e,s,f,w,w,p,w,o,e,k,s,g -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -p,x,s,g,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,f,n,f,n,f,w,b,k,t,e,s,s,w,w,p,w,o,e,k,a,g -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -p,x,f,w,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,p -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,p -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,p -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -e,x,f,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,g,f,n,f,w,b,n,t,e,f,s,w,w,p,w,o,e,n,s,g -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,f,g,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,p -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -p,x,f,w,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,g -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,p -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -p,x,f,p,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -p,x,f,g,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -p,x,s,p,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -p,x,s,w,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -p,x,s,g,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,p,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,d -p,x,s,w,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,p -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -p,x,s,w,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,p -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,p -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,p -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,g -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,g -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,g -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,g -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -p,x,s,g,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -p,x,s,p,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,p -p,x,s,g,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,g -p,x,f,g,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -p,x,s,g,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,w,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -p,x,s,w,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,p -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -p,x,s,w,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,w,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -p,x,s,w,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -e,x,y,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,f,p,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,p -p,x,f,w,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,p -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,p -p,x,s,g,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,p -p,x,f,p,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,g -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,p,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,w,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,g -p,x,s,p,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,g -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,p -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,g -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,g -p,x,f,w,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -p,x,s,g,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,p -p,x,s,w,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,p -p,x,s,w,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,p -e,x,y,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,g -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -p,x,s,w,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,g -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,g -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -p,x,s,g,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -p,x,f,p,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,g -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -p,x,s,p,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,p -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,p -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -p,x,s,g,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,f,p,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,g -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -p,x,f,w,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,p -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,p -p,x,s,p,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -p,x,f,p,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -p,x,s,w,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,g -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,g -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,g -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -p,x,f,w,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -p,x,f,p,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -p,x,s,w,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,f,p,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,p -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -p,x,s,p,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,g -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -p,x,f,w,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,p -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -p,x,f,g,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,p -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -p,x,s,g,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,g -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -p,x,f,w,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,g -p,x,f,g,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,g -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -p,x,f,p,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,s,g,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -p,x,s,p,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,p -e,x,f,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -p,x,s,p,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -e,x,y,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -p,x,s,w,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,d -p,x,f,p,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -p,x,f,g,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -p,x,f,p,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -p,x,s,w,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,g -p,x,s,g,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,s,p,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -p,x,s,g,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -p,x,s,g,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,s,g,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -p,x,f,g,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,s,g,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,p -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -p,x,f,g,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,p -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -p,x,f,p,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -p,x,f,p,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,s,w,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -p,x,s,p,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,g -p,x,f,g,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,p -p,x,f,w,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -p,x,f,w,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -e,x,y,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -p,x,f,w,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -p,x,f,g,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,s,p,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,p -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -p,x,f,g,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,p -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -p,x,s,w,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,w,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,g -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,g -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -p,x,f,w,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,g -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -p,x,s,g,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -p,x,s,p,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,y,d -p,x,f,p,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,y,d -p,x,s,w,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -p,x,s,g,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -p,x,s,p,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -p,x,s,p,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -p,x,f,p,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,d -p,x,s,g,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,f,g,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,g -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,p -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,g -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -p,x,f,g,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -p,x,f,p,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,g -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,g -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,g -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,d -p,x,s,g,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,g -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,p -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -p,x,f,p,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,g -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,p -e,f,f,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,f,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -p,x,f,p,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,p -e,x,f,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -p,x,s,g,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,g -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,g -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,g -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,p -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -p,x,f,g,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,y,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,p -e,x,y,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -p,x,s,w,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -p,x,s,p,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -p,x,s,p,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,y,d -p,x,s,w,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,g -p,x,f,w,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -p,x,f,w,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,g -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,n,v,d -p,x,s,p,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -p,x,s,p,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,g -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -p,x,f,p,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,p -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,y,d -p,x,f,g,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,g -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -e,x,f,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -e,x,y,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,s,w,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,g,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,g -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,d -p,x,f,w,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,f,g,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,s,g,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,f,g,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -p,x,s,g,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,w,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,g -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -e,x,f,g,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,f,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,p -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,y,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,p -e,x,y,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,y,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -p,x,f,g,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -p,x,s,w,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -p,x,s,w,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,y,d -p,x,s,g,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,v,d -p,x,f,p,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -p,x,s,p,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,g -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,g -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,v,d -p,x,s,p,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,g,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,d -e,x,y,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,k,y,d -p,x,f,w,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,y,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,g -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -p,x,s,w,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,k,v,d -p,x,s,w,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -e,f,y,g,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,p -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,g -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,y,d -p,x,f,g,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,y,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,y,d -p,x,s,p,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,g -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,n,v,d -p,x,s,w,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,w,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -e,x,y,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,f,w,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -p,x,f,w,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,s,g,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -e,x,y,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,d -p,x,f,g,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,s,g,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -e,x,f,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -p,x,f,p,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -p,x,s,p,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,g,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -p,x,f,g,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,s,g,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -p,x,f,g,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,k,v,d -p,x,s,w,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -e,f,y,n,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,g -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,g -e,f,y,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,v,d -p,x,f,w,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,g -p,x,f,w,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,d -e,f,y,g,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,k,y,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,g -e,x,f,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,g -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,g -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,n,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,p -p,x,s,p,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,g -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,k,y,d -p,x,f,p,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,g -e,x,y,g,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,g,p,w,o,p,n,y,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,g -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,g -p,x,s,p,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,g,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,v,d -p,x,s,g,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,u -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,p -p,x,s,w,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,p -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,p -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,p -p,x,s,p,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,g -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,g -p,x,s,w,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,n,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,g -p,x,f,p,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -p,f,s,w,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,p -e,x,y,b,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,g -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,y,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,g -p,x,f,g,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,f,g,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,g -p,x,s,g,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,g -e,f,y,g,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,y,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,p -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,p -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,n,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,p -e,x,f,e,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,p -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,d -e,x,f,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,y,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,p -p,x,y,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,g -p,x,s,g,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,g -p,f,s,b,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,d -p,x,s,w,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,d -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,p,p,w,o,p,k,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,k,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,s,w,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,w,p,w,o,p,k,v,d -p,x,f,w,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,f,p,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,n,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,p -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,p -p,x,f,g,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,s,d -p,x,s,p,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -e,x,f,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,g -e,f,f,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,k,y,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,p -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,n,y,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,y,n,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,g -e,f,y,u,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,y,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,p -e,x,f,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,d -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,w,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,y,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,g -e,x,f,e,t,n,f,c,b,w,t,b,s,s,p,p,p,w,o,p,k,v,d -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,p -p,x,f,w,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,y,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,n,y,d -p,x,y,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -e,f,y,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -p,b,s,b,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,g,p,w,o,p,k,y,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,g -e,f,y,g,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,k,y,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,g -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,v,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,p -e,f,y,e,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,k,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,g -e,f,f,n,t,n,f,c,b,u,t,b,s,s,w,p,p,w,o,p,k,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,k,y,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,p,t,b,s,s,g,g,p,w,o,p,k,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,s,g,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,w,t,b,s,s,p,g,p,w,o,p,k,v,d -p,f,s,g,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,u -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,p -e,f,y,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,n,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,v,d -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,p -e,f,y,n,t,n,f,c,b,u,t,b,s,s,g,p,p,w,o,p,k,y,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,g -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,d -e,f,f,c,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,g -p,x,s,b,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,u -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,k,y,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,p -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,k,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,d -e,f,f,g,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,g -p,x,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,p -e,f,y,n,t,n,f,c,b,p,t,b,s,s,p,w,p,w,o,p,n,y,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,n,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,g -p,f,s,b,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,u -e,f,f,e,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,y,d -p,x,y,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -e,x,y,g,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,v,d -p,x,f,g,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,p,f,c,f,w,n,n,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,y,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,g -p,x,s,g,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,u -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,g -p,f,s,g,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,u -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,p -e,f,y,e,t,n,f,c,b,p,t,b,s,s,w,w,p,w,o,p,n,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,p -p,f,s,w,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,u -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,d -p,x,s,w,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,g -p,x,s,b,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,g -e,f,y,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,y,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,p -p,x,f,p,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,p -e,k,y,n,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,d -p,x,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,g -e,f,s,p,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,g -e,k,s,p,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,g -e,f,y,g,t,n,f,c,b,w,t,b,s,s,p,w,p,w,o,p,n,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,p -e,x,y,r,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,v,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,d -p,x,y,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,d -p,k,y,n,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,g -e,f,y,e,t,n,f,c,b,w,t,b,s,s,g,p,p,w,o,p,k,y,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,g -p,f,s,b,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,u -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,g -e,x,s,e,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,g -p,b,y,w,t,n,f,w,n,w,e,b,s,s,w,w,p,w,o,p,w,c,l -p,f,s,b,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,u -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,p -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,g -p,x,s,w,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,u -e,f,y,g,t,n,f,c,b,n,t,b,s,s,g,p,p,w,o,p,n,v,d -p,x,y,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,g -e,f,y,e,t,n,f,c,b,n,t,b,s,s,p,g,p,w,o,p,k,v,d -e,x,y,b,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,g -p,x,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,p -e,x,y,u,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,d -e,f,f,e,t,n,f,c,b,u,t,b,s,s,g,w,p,w,o,p,n,y,d -p,f,s,b,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,u -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,d -e,f,y,n,t,n,f,c,b,u,t,b,s,s,w,g,p,w,o,p,k,v,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,g -e,x,s,b,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,p -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,k,y,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,y,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,g -p,x,s,g,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,g -p,f,s,g,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,u -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,d -e,f,y,g,t,n,f,c,b,u,t,b,s,s,p,g,p,w,o,p,k,y,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,p -e,f,y,n,t,n,f,c,b,n,t,b,s,s,g,g,p,w,o,p,n,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,g -e,k,y,b,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,p -p,x,y,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,d -p,x,s,w,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,u -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,p,t,b,s,s,w,p,p,w,o,p,k,y,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,d -e,f,f,c,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,f,y,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,p -p,x,s,g,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,g -e,f,s,n,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,x,s,g,f,c,f,w,n,u,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,d -e,x,s,b,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,y,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,g -e,x,y,u,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,v,d -e,f,y,b,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,g -p,f,s,b,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,g -p,f,s,w,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,g,g,p,w,o,p,n,v,d -e,x,y,u,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,p -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,g,p,w,o,p,n,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,p -p,x,f,w,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,n,v,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,g -p,x,y,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -e,f,y,b,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,p -p,x,f,g,f,c,f,c,n,u,e,b,s,s,w,w,p,w,o,p,k,s,d -p,f,s,b,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,g -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,k,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,g -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,k,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,g -p,f,s,w,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,u -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,d -e,f,y,u,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,g -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,p,p,w,o,p,n,y,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,g -p,x,s,w,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,u -e,f,y,e,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -e,x,y,u,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,p -e,f,s,p,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,p -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,d -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,n,t,b,s,s,w,g,p,w,o,p,n,y,d -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,p -p,x,s,g,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,p -p,x,f,w,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,s,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,d -p,f,s,b,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,u -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,g -p,f,s,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,s,b,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,u -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,p -e,f,y,u,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,g -e,f,f,e,t,n,f,c,b,w,t,b,s,s,g,w,p,w,o,p,n,v,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,g -p,x,y,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,g -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,g -e,f,f,e,t,n,f,c,b,w,t,b,s,s,w,w,p,w,o,p,k,y,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,d -p,x,f,p,f,c,f,w,n,p,e,b,s,s,w,w,p,w,o,p,k,s,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,p -e,x,s,p,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,d -p,x,s,p,f,c,f,w,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,g -e,f,f,e,t,n,f,c,b,p,t,b,s,s,p,p,p,w,o,p,n,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,g -e,f,y,n,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,p -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,g -e,f,f,g,t,n,f,c,b,u,t,b,s,s,w,w,p,w,o,p,n,y,d -p,x,s,g,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,g -p,x,y,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,s,g,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,d -e,f,y,e,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,g -e,f,y,n,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,g -p,k,f,n,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,y,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,p -p,f,s,w,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,g -e,x,y,e,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,d -p,b,f,y,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,s,g,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,u -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,g -e,k,y,e,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,p -e,k,y,n,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,x,s,w,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,p -p,b,s,b,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,s,w,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,g -e,f,y,e,t,n,f,c,b,n,t,b,s,s,w,p,p,w,o,p,n,y,d -p,b,s,w,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -e,f,y,p,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,s,w,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,g -e,k,y,n,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,p -p,f,s,b,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,u -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,p -e,k,s,e,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -e,f,y,n,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -e,f,s,b,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,d -e,f,f,g,t,n,f,c,b,u,t,b,s,s,p,p,p,w,o,p,n,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,s,g,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,g -p,x,y,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,p -e,f,y,n,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -e,f,y,e,t,n,f,c,b,p,t,b,s,s,g,p,p,w,o,p,k,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,p,w,p,w,o,p,n,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,p -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,d -p,b,y,w,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,p -p,x,y,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,p -e,f,y,p,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,s,w,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,g -p,f,s,b,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,u -p,x,f,g,f,c,f,c,n,g,e,b,s,s,w,w,p,w,o,p,k,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,p -e,x,y,r,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,y,d -e,f,y,w,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,p -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,y,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,x,y,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,p -e,f,s,e,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,p -p,f,s,g,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,p -p,x,s,g,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,u -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,g -p,x,s,w,f,c,f,c,n,n,e,b,s,s,w,w,p,w,o,p,k,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,p -e,f,y,e,t,n,f,c,b,u,t,b,s,s,p,w,p,w,o,p,n,y,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,p -e,k,s,b,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,g -e,x,f,n,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -e,x,y,e,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,g -p,f,s,g,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,y,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -e,k,s,b,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,d -p,x,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,g -e,k,s,p,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,n,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,p -p,f,s,b,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,u -e,f,s,b,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,s,w,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,u -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,p -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,s,b,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,u -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,d -p,f,s,g,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,u -e,f,s,b,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -e,x,s,p,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -e,k,s,n,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,y,p,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,p -e,f,y,u,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,y,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,g -p,x,y,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,p -e,f,s,b,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,d -e,x,s,n,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,y,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,y,n,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,b,s,b,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,d -e,f,y,u,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,y,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,g -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,d -e,x,y,e,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,f,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,g -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,p -e,k,s,b,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,p -p,f,s,w,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,u -p,x,s,g,f,c,f,c,n,p,e,b,s,s,w,w,p,w,o,p,n,v,d -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,d -e,f,y,u,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,s,g,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,u -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,d -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,g -p,f,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,y,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,p -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,p -p,f,s,b,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,y,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -e,k,y,b,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -e,f,y,b,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,g -p,f,y,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,g -p,x,s,b,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,u -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,p -p,x,s,w,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,u -p,x,f,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,p -p,x,s,w,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,u -p,f,s,b,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,g -p,x,s,w,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,u -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,p -e,x,y,w,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,y,d -e,x,s,e,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,y,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,d -e,f,f,e,t,n,f,c,b,n,t,b,s,s,g,w,p,w,o,p,n,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,p -p,k,f,y,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,g -e,k,f,c,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,d -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,d -p,b,y,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -e,k,y,p,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,g -e,k,y,b,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,d -p,x,s,w,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,u -p,x,y,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,x,y,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,y,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,g,w,t,n,f,w,n,w,e,b,s,s,w,w,p,w,o,p,w,c,l -p,x,s,g,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,u -e,f,y,c,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,p -e,f,y,p,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,s,b,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,g -p,x,s,g,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,g -p,x,y,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -e,k,y,c,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -p,x,s,w,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,u -p,x,s,w,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,g -p,f,s,b,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,u -p,f,s,b,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,g -e,k,y,c,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,d -p,f,s,w,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,g -p,f,s,g,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,u -p,c,g,w,t,n,f,w,n,w,e,b,s,s,w,w,p,w,o,p,w,c,l -p,x,s,g,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,u -p,b,g,w,t,n,f,w,n,w,e,b,s,s,w,w,p,w,o,p,w,c,l -p,x,s,b,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,g -p,f,s,w,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,u -p,b,f,y,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,x,y,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,x,y,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -e,k,s,n,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -e,k,y,b,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,s,w,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,g -p,f,s,b,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,g -p,f,s,b,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,y,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,y,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,d -e,x,s,e,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,y,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,g -p,x,y,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -e,f,f,n,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -p,x,y,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -e,x,s,b,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -e,f,y,n,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,p -p,f,y,b,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,n,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,x,y,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,x,s,b,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,g -p,x,s,b,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,s,g,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,g -p,x,y,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,x,s,b,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,g -p,f,f,n,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -e,x,y,e,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,s,b,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,g -p,f,s,w,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,g -e,k,y,e,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,p -p,x,f,n,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -e,x,y,n,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,g -p,f,s,b,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,g -p,f,s,b,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,d -e,x,s,p,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -e,f,s,p,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,b,y,w,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -e,x,y,c,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -e,f,s,n,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,s,b,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,u -p,x,s,g,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,d -p,x,s,b,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,u -p,x,s,w,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,g -e,f,y,c,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -p,x,y,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,d -e,x,y,w,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,p -p,f,y,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,s,g,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,u -p,x,y,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -e,k,s,p,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,y,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,p -p,f,s,b,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,u -e,k,y,p,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,g -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,d -p,x,s,b,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,g -p,x,y,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,f,y,f,f,f,c,b,h,e,b,k,k,n,n,p,w,o,l,h,v,d -p,f,f,n,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -e,k,s,b,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,g -p,x,y,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,s,g,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,u -e,f,s,n,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,y,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,x,s,g,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,u -p,x,s,g,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,g -p,f,y,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -e,k,y,b,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,s,w,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,u -p,x,y,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -e,k,y,n,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,d -e,x,y,p,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,s,g,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,u -e,x,s,p,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,b,y,n,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,f,s,b,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,g -p,x,y,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,x,y,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,x,s,b,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,u -p,x,y,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -e,k,y,p,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -e,k,f,c,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,g -e,x,s,n,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,p -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,s,g,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,u -p,k,y,w,t,n,f,w,n,w,e,b,s,s,w,w,p,w,o,p,w,c,l -e,k,f,n,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -p,k,f,y,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,f,s,w,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,g -p,f,y,y,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,d -e,k,s,b,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,y,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,p -p,b,y,w,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,y,g -p,x,s,w,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,g -p,x,s,b,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,g -e,k,y,b,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,p -p,x,s,b,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,g -p,b,y,b,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,s,w,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,g -e,k,s,n,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,s,g,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,u -p,x,f,y,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,f,s,g,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,d -p,k,y,n,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,f,s,b,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,u -e,f,s,e,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,x,y,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,x,y,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,s,w,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,u -e,k,s,n,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,g -e,x,s,b,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,s,w,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,u -e,k,f,n,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -p,x,y,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,s,w,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,g -p,x,s,g,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,u -p,k,y,y,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,f,s,w,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,p -e,k,y,p,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,y,w,t,n,f,w,n,w,e,b,s,s,w,w,p,w,o,p,w,c,l -p,f,s,b,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,u -e,f,y,w,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,y,d -e,x,y,r,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,v,d -e,x,s,b,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,s,g,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,g -p,x,y,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,p -p,f,s,g,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,g -p,f,s,b,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,g -e,f,s,e,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,y,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,d -e,x,s,n,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,s,g,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,g -p,x,y,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,s,w,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,g -e,x,f,c,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -p,f,s,g,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,p -e,x,y,r,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,y,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,p -p,x,y,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,x,y,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -e,f,y,e,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,s,g,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,u -e,k,y,n,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -e,f,y,e,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,b,y,n,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,x,y,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -e,f,y,b,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,s,w,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,g -e,f,y,n,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,b,y,w,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -e,x,y,n,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,p -p,x,s,b,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,g -p,x,y,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,x,s,g,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,u -p,f,s,g,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,u -p,x,y,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -e,f,y,w,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,y,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,f,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,g -p,x,y,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,x,s,w,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,d -p,x,s,w,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,u -p,k,y,y,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,f,s,w,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,u -p,f,s,g,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,u -e,x,y,c,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,x,s,w,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,u -p,x,y,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,y,p,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,p -e,x,s,p,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,b,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,f,y,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,p -e,f,f,n,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -e,x,f,n,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,x,y,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,f,s,g,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,u -p,x,s,b,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,u -p,f,s,g,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,g -p,x,s,b,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,g -e,x,y,r,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,v,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,d -p,f,s,g,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,u -p,x,y,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,g -p,f,s,w,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,u -p,x,s,w,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,u -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,p -p,x,y,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,y,y,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -e,f,s,n,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,d -p,f,s,g,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,u -p,x,y,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,d -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,d -p,f,s,w,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,u -p,f,s,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,g -e,k,s,p,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,s,b,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,g -p,x,s,w,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,g -p,x,s,w,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,g -p,x,y,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,b,y,p,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,s,b,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,u -e,x,y,p,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,x,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,v,p -p,x,s,w,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,u -e,f,y,b,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,s,b,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,u -e,x,f,c,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -e,f,s,p,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -e,x,y,n,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -e,f,s,p,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,s,g,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,u -e,k,s,e,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -e,k,y,e,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,s,w,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,g -e,k,s,b,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,s,b,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,g -p,b,y,y,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,x,s,w,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,u -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,p -p,b,f,n,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,p -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,v,p -e,f,y,c,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -p,x,y,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,f,s,w,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,g -p,x,y,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,b,y,p,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,d -p,x,s,b,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,p -p,f,s,b,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,g -p,f,s,b,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,u -p,x,y,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,p -e,x,s,n,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,v,g -e,f,s,b,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -e,f,s,e,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -e,x,s,n,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,s,w,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,u -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,d -e,f,s,p,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -e,x,s,e,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,d -p,b,y,b,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,s,b,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,u -p,f,s,g,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,g -p,x,s,b,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,s,w,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,g -p,x,s,g,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,u -e,f,y,r,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,y,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,g -p,x,y,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,s,b,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,g -e,x,f,c,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,x,s,g,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,u -e,x,y,u,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,y,d -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,v,p -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,g -p,f,y,w,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,x,y,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,x,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,p -e,x,y,p,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,s,g,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,g -p,x,s,b,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,g -p,x,y,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,x,s,g,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,u -p,x,y,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,f,s,w,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,g -p,x,s,g,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,u -p,x,s,g,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,p -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,p -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,s,g,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,u -p,f,s,b,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,u -p,f,s,w,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,u -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,g -p,f,s,b,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,g -p,x,y,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,x,s,w,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,g -e,k,s,e,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,y,b,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -e,k,y,n,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,s,w,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,u -p,f,s,w,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,u -p,x,y,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,x,s,w,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,g -p,x,y,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,b,s,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,y,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,p -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,d -p,x,y,g,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,v,g -p,f,y,w,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,s,g,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,g -e,k,y,p,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,s,w,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,g -e,k,s,p,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,s,w,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,u -p,x,y,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,d -p,f,y,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,p -p,x,y,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,p -e,x,y,e,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,p -p,x,y,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,x,s,b,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,d -e,k,y,e,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,y,p,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,y,w,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,g -e,f,y,r,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,s,w,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,g -p,x,s,w,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,g -p,x,s,b,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,u -p,x,y,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -e,k,y,e,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -e,k,s,p,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -e,x,y,b,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,s,g,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,y,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,c,y,w,t,n,f,w,n,w,e,b,s,s,w,w,p,w,o,p,w,c,l -p,f,s,w,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,g -p,f,s,g,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,g -p,x,y,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,x,s,g,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,g -p,x,y,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -e,x,y,p,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -e,f,y,w,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,y,d -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,g -p,x,y,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,x,f,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,d -p,x,y,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,x,s,g,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,u -p,x,y,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -e,k,f,n,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -p,x,s,w,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,u -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,p -e,x,y,p,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,b,y,b,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,p -e,f,y,r,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,y,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,y,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,s,b,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,d -p,x,y,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -e,f,y,n,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,y,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,f,y,e,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -e,x,y,b,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -e,x,s,n,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,s,w,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,g -e,x,y,b,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,d -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,y,g -e,k,y,e,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,s,w,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,u -e,k,y,c,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -e,k,y,n,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -p,b,s,p,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,x,s,b,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,u -e,f,y,r,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,s,b,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,g -e,f,y,u,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,y,d -p,x,y,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,s,w,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,u -e,x,s,e,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -e,f,y,p,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,y,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,x,y,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,s,w,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,p -e,x,y,n,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -e,x,y,e,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,s,w,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,u -p,x,y,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,g -p,f,s,b,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,v,p -p,x,s,g,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,g -e,f,s,p,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -e,x,y,n,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,b,y,w,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,d -p,x,y,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,x,s,b,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,g -p,x,s,b,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,g -p,x,y,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,b,y,p,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -e,x,y,c,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -p,x,y,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,x,s,w,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,u -p,x,y,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -e,f,y,n,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,x,y,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,s,g,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,u -p,x,y,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -e,x,y,r,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,y,d -p,b,y,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -e,x,s,p,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,y,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,x,y,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,s,g,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,y,p,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,x,y,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -e,f,s,b,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,s,b,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,u -e,x,y,c,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -e,x,y,w,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,y,d -p,x,y,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,f,y,n,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -p,x,y,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,x,y,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -e,k,y,p,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,s,w,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,g -e,k,y,n,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -p,f,s,g,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,g -p,f,s,w,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,f,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,g -e,f,s,n,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,f,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,d -p,x,y,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,x,y,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,g -p,b,s,w,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,s,b,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,u -e,f,y,b,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -e,x,f,c,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -p,f,s,w,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,u -e,k,s,p,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -e,k,y,n,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -e,x,y,b,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,g -p,f,s,g,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,p -e,x,y,e,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,s,b,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,g -e,x,y,n,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,d -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,d -p,b,y,b,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,y,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,p -p,f,f,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,p -p,f,y,w,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -e,k,s,e,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,n,p,w,o,l,h,v,p -e,k,s,n,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,y,y,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,f,y,g,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,p -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,g -p,x,y,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,f,s,b,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,s,w,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,u -p,x,s,w,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,g -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,d -e,f,y,p,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,p -e,k,s,e,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -e,x,y,n,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,g -p,f,s,b,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,s,g,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,u -p,x,s,w,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,g -p,x,f,n,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,f,s,b,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,g -e,f,y,e,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,g -p,x,s,b,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,u -e,k,f,n,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,g -e,k,y,c,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -p,x,f,g,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,y,p -p,x,y,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -e,f,y,p,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,s,b,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,n,p,w,o,l,h,y,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,y,g -p,x,y,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -e,f,y,r,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,y,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,p -p,x,s,g,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,g -p,x,s,w,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,g -p,f,s,b,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,g -e,x,y,n,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,f,y,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -e,f,y,u,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,y,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -e,x,s,n,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,s,w,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,u -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,b,p,w,o,l,h,v,d -e,f,s,b,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -e,k,f,c,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -p,x,s,g,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,u -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,p -p,x,y,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -e,f,y,p,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -e,k,y,p,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,g -p,x,y,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -e,f,s,n,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,g -p,x,y,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -e,f,s,n,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,p,p,w,o,l,h,v,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,p -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,y,p -e,f,f,c,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,b,y,b,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -e,k,y,e,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,s,b,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,u -p,x,s,g,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,g -p,x,s,g,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,u -p,x,y,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,s,w,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,u -e,f,s,p,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,s,b,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,g -p,x,y,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -e,f,y,w,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,v,d -e,x,y,p,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,s,b,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,u -p,k,g,w,t,n,f,w,n,w,e,b,s,s,w,w,p,w,o,p,w,c,l -p,f,s,g,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,g -p,x,y,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -e,k,s,e,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,y,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,f,s,w,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,s,g -e,f,s,e,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,f,s,b,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,g -p,b,s,w,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -e,f,f,n,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,f,s,g,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,u -p,x,s,w,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,g -e,x,s,b,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -e,f,y,n,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -e,x,y,r,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,v,d -e,k,s,b,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,s,w,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,u -p,x,y,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -e,x,y,b,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,w,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,s,b,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,u -p,x,s,g,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,g -e,k,s,n,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,s,g,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,g -e,k,y,p,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,b,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,v,p -p,x,s,b,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,u -e,k,f,c,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -p,f,s,g,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,u -p,f,s,w,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,g -p,b,s,b,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -p,b,s,p,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,s,w,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,g -e,x,y,n,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,y,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,x,y,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,g -e,x,s,b,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,x,s,b,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,u -p,f,s,p,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,y,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,x,s,w,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,u -p,f,s,w,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,u -e,f,y,r,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,y,d -p,f,s,w,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,g -p,f,s,w,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,u -e,x,y,w,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,y,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -e,k,y,b,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,x,y,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,x,s,b,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,u -e,f,y,r,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,y,d -p,b,s,p,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,s,b,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,u -e,f,y,c,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -e,x,y,u,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,s,b,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,u -e,x,y,w,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,v,d -p,x,y,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -e,x,s,p,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,s,p,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,y,n,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,p -p,f,s,w,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,g -p,x,y,g,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,v,g -e,f,y,e,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,s,b,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -p,b,s,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,x,s,b,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,v,u -p,x,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,y,p -p,b,y,w,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -e,f,y,n,f,n,f,w,n,w,e,b,s,f,w,n,p,w,o,e,w,v,l -p,f,f,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,b,p,w,o,l,h,v,p -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,g -p,x,s,g,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,u -p,x,y,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,y,y,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,x,y,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,f,s,w,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,g -e,f,f,n,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -p,x,s,g,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,g -p,f,s,b,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,u -e,f,s,e,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,s,b,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,u -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,d -p,x,y,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,s,w,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,v,g -p,f,s,g,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,g -e,f,f,c,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -p,x,y,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -e,k,y,e,t,n,f,c,b,e,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,y,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,s,w,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,g -p,x,y,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -e,x,s,n,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,p -p,x,s,w,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,u -e,f,s,e,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,v,d -e,f,y,e,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,s,g,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,g -e,k,s,n,t,n,f,c,b,e,e,?,s,s,e,w,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,b,p,w,o,l,h,y,d -p,x,s,w,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,g -p,x,y,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,g -p,f,y,w,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,y,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -e,f,y,w,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,v,d -e,x,y,w,f,n,f,c,n,h,e,?,s,f,w,w,p,w,o,f,h,y,d -p,x,y,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,s,g,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,u -e,x,y,u,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,v,d -p,f,s,w,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,y,y,f,f,f,c,b,g,e,b,k,k,p,b,p,w,o,l,h,v,d -p,f,s,g,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,n,p,w,o,l,h,y,p -p,x,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,y,d -p,x,s,g,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,s,g -e,f,y,r,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,v,d -p,f,s,w,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,s,g -e,k,s,n,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,y,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,x,s,g,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,s,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,p,p,p,w,o,l,h,y,g -p,b,s,w,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,b,s,b,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,m -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,y,g,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,d -e,x,y,e,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -e,k,s,b,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,y,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -e,x,s,e,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,s,b,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,m -e,f,s,n,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -e,f,y,b,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,s,g,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,u -p,f,s,b,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,y,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,x,y,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,y,y,f,f,f,c,b,h,e,b,k,k,b,b,p,w,o,l,h,y,g -p,x,y,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,y,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,f,s,g,t,f,f,c,b,w,t,b,f,s,w,w,p,w,o,p,h,v,u -e,x,y,p,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -e,x,y,u,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,y,d -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,y,p -p,x,s,g,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,g -p,x,y,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,f,s,g,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,u -p,x,s,b,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,b,p,p,w,o,l,h,y,g -p,b,s,w,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -e,k,y,n,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,x,y,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,v,p -e,x,y,b,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -p,x,s,b,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,g -p,f,s,g,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,u -p,f,s,b,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,u -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,b,p,w,o,l,h,y,d -p,x,y,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,s,w,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,u -e,k,y,n,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -e,x,s,e,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -e,x,y,w,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,v,d -p,f,s,b,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,u -p,f,s,g,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,s,u -e,f,s,e,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,y,g -p,x,y,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,s,w,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,y,g,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,d -e,x,f,n,f,n,f,w,n,w,e,b,s,s,w,n,p,w,o,e,w,v,l -p,f,y,y,f,f,f,c,b,p,e,b,k,k,b,n,p,w,o,l,h,y,d -p,x,s,w,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,u -e,x,s,b,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -e,x,s,p,t,n,f,c,b,w,e,?,s,s,w,e,p,w,t,e,w,c,w -p,x,s,g,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,g -p,f,f,g,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,p -p,x,s,w,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,g -p,x,f,y,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,v,p -p,f,s,w,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,u -e,k,y,n,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -e,x,y,p,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,y,g -e,f,y,b,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -e,x,s,e,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,s,g,t,f,f,c,b,p,t,b,f,f,w,w,p,w,o,p,h,v,u -p,f,s,b,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,u -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,p -p,x,s,b,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,u -p,f,s,w,t,f,f,c,b,h,t,b,s,s,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,n,p,p,w,o,l,h,y,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,n,p,p,w,o,l,h,y,p -p,f,f,g,f,f,f,c,b,g,e,b,k,k,b,n,p,w,o,l,h,v,p -p,b,s,p,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,b,s,w,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -e,x,y,n,t,n,f,c,b,w,e,?,s,s,w,w,p,w,t,e,w,c,w -p,x,y,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,x,y,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,x,y,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,f,s,b,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,g -p,b,y,y,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,x,s,g,t,f,f,c,b,w,t,b,f,f,w,w,p,w,o,p,h,v,u -e,f,y,p,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -e,k,s,p,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -e,f,y,n,t,n,f,c,b,w,e,?,s,s,e,e,p,w,t,e,w,c,w -p,b,y,p,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,s,g,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,v,g -p,x,s,g,t,f,f,c,b,p,t,b,s,s,w,w,p,w,o,p,h,s,g -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,g -p,x,y,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,f,y,b,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,r,v,g -p,x,s,b,t,f,f,c,b,h,t,b,f,f,w,w,p,w,o,p,h,v,u -p,b,s,b,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -e,f,y,w,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,y,d -e,x,y,n,f,n,f,w,n,w,e,b,f,s,w,n,p,w,o,e,w,v,l -p,x,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,v,p -p,f,s,b,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,v,g -e,k,s,e,t,n,f,c,b,e,e,?,s,s,e,e,p,w,t,e,w,c,w -p,f,f,y,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,p -p,b,f,n,f,n,f,c,n,w,e,?,k,y,w,n,p,w,o,e,w,v,d -p,x,y,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,f,y,y,f,f,f,c,b,h,e,b,k,k,n,b,p,w,o,l,h,y,d -p,x,y,y,f,f,f,c,b,g,e,b,k,k,n,b,p,w,o,l,h,y,g -p,x,s,g,t,f,f,c,b,p,t,b,f,s,w,w,p,w,o,p,h,s,g -p,x,y,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -e,x,y,n,t,n,f,c,b,w,e,?,s,s,e,w,p,w,t,e,w,c,w -e,f,y,n,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -p,f,y,b,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -p,k,f,n,f,n,f,c,n,w,e,?,k,y,w,y,p,w,o,e,w,v,d -p,f,y,g,f,f,f,c,b,h,e,b,k,k,p,n,p,w,o,l,h,v,g -p,x,y,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,f,f,g,f,f,f,c,b,h,e,b,k,k,p,p,p,w,o,l,h,y,d -p,f,f,g,f,f,f,c,b,p,e,b,k,k,b,p,p,w,o,l,h,v,d -p,x,s,g,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,s,g -e,x,y,r,f,n,f,c,n,u,e,?,s,f,w,w,p,w,o,f,h,y,d -p,x,y,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,f,s,p,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,m -p,x,y,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,s,b,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,g -p,x,s,b,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,v,u -e,k,s,e,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -p,f,s,b,t,f,f,c,b,w,t,b,s,f,w,w,p,w,o,p,h,s,g -e,x,f,n,f,n,f,w,n,w,e,b,f,f,w,n,p,w,o,e,w,v,l -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,v,d -e,f,y,w,f,n,f,c,n,w,e,?,s,f,w,w,p,w,o,f,h,y,d -p,f,s,w,t,f,f,c,b,w,t,b,s,s,w,w,p,w,o,p,h,s,u -p,f,s,p,t,n,f,c,b,r,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,y,y,f,f,f,c,b,p,e,b,k,k,p,n,p,w,o,l,h,y,d -p,f,s,g,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,g -p,x,y,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,b,p,w,o,l,h,v,g -p,f,s,g,t,f,f,c,b,h,t,b,f,s,w,w,p,w,o,p,h,s,g -p,f,s,w,t,f,f,c,b,h,t,b,s,f,w,w,p,w,o,p,h,s,u -p,x,y,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,f,f,y,f,f,f,c,b,p,e,b,k,k,n,n,p,w,o,l,h,y,d -p,x,y,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,b,y,b,t,n,f,c,b,g,e,b,s,s,w,w,p,w,t,p,r,v,g -p,f,y,y,f,f,f,c,b,g,e,b,k,k,b,p,p,w,o,l,h,v,g -p,x,y,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,x,y,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -e,k,y,b,t,n,f,c,b,e,e,?,s,s,w,w,p,w,t,e,w,c,w -e,x,y,w,f,n,f,c,n,p,e,?,s,f,w,w,p,w,o,f,h,y,d -p,f,s,b,t,f,f,c,b,p,t,b,s,f,w,w,p,w,o,p,h,v,u -p,f,y,y,f,f,f,c,b,g,e,b,k,k,n,p,p,w,o,l,h,y,g -p,x,y,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,x,s,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,k,s,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,y,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,n,c,l -p,f,s,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,n,v,l -p,f,y,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,x,y,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,s,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,s,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,k,s,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,k,s,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,y,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -e,x,f,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -p,f,y,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,f,s,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,k,s,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,y,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,s,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,k,y,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,s,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,f,s,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,x,y,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,y,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,f,y,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,y,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,s,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,k,s,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -e,x,s,c,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,s,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,k,s,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,f,y,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,s,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,y,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -e,b,f,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -p,x,y,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -e,k,f,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -p,x,s,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,x,s,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,k,s,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,f,s,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,k,s,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,y,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -e,b,s,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -p,x,y,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,f,y,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -e,k,s,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -p,f,y,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,y,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -e,b,f,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,y,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,k,s,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,s,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -e,k,s,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -p,f,s,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,k,y,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,k,y,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,s,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,y,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,x,y,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,f,s,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,x,s,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,k,y,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,x,y,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,s,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,k,y,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -e,k,s,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -p,x,s,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,s,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -e,b,s,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -p,f,s,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,f,s,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,y,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,s,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,y,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,k,s,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,x,y,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,k,y,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,x,s,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,x,s,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -e,x,f,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -p,f,y,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,x,s,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,y,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,x,s,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,s,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,s,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,s,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,x,y,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -e,k,f,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -p,x,s,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,s,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,o,v,l -p,f,s,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,s,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,k,y,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,f,y,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,x,s,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,k,y,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -e,x,s,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -p,f,y,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,y,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,s,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -e,k,f,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -p,f,s,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -e,b,f,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -p,f,s,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,s,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,s,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,x,y,e,f,m,f,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,f,y,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,y,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,y,c,l -p,f,y,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,x,y,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,y,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,o,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,s,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,s,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,k,y,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,x,s,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -e,k,s,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -p,f,s,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,y,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,y,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,x,s,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,s,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,s,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,f,s,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,f,y,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,y,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,x,y,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -e,x,f,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -p,x,s,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -e,x,f,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -p,f,y,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,y,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,x,s,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,f,y,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -e,k,f,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -p,k,y,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,x,s,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,x,y,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,y,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,b,v,l -p,x,s,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,k,s,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,s,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,f,y,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,s,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,k,y,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,k,y,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,y,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,s,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,s,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -e,x,s,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -p,k,y,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,k,y,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,k,s,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,f,s,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,f,s,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,x,s,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,s,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,k,y,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,f,y,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,y,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,k,s,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -e,b,f,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -p,x,s,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,k,s,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,y,v,l -p,f,s,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,y,c,f,m,a,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,x,s,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,s,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,s,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,f,s,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,s,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,s,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,f,s,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,s,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,s,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,s,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,x,s,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,x,s,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,x,s,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,x,s,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,y,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,y,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,f,s,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -e,x,f,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -p,x,s,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,x,s,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -e,b,f,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -p,f,y,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,s,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -e,k,f,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,o,c,l -p,f,s,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,s,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,y,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,s,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,y,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -e,x,f,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -p,f,s,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,s,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,x,y,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,s,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,s,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,s,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,s,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,y,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,f,y,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,s,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,x,s,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,k,y,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -e,x,s,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,y,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,s,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,f,s,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,x,s,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,k,y,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,k,y,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,o,c,l -p,x,s,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,k,y,n,f,m,f,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,x,s,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -e,k,s,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -p,f,y,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,s,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,x,s,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -e,k,f,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -p,x,s,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,k,y,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,s,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,f,y,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,x,y,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,y,v,l -p,k,s,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,k,y,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -e,x,y,c,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,y,c,l -e,k,s,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -e,x,f,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -p,x,s,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,k,y,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,o,c,l -p,k,s,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,b,y,y,f,n,f,w,n,y,e,c,y,y,y,y,p,y,o,e,w,c,l -p,x,s,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -e,b,s,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,y,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -e,k,f,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,s,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,f,s,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -e,b,f,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -p,f,y,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,n,c,l -e,x,y,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -p,f,s,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,k,y,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -e,b,s,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -p,x,y,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,f,y,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,k,y,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -e,x,f,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -e,b,s,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,s,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -e,f,y,n,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,k,s,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,f,y,e,f,m,a,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,x,s,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,k,s,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,k,y,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -e,x,f,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,s,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,k,s,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,k,y,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -e,k,f,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,s,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,k,y,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,k,s,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,k,s,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,x,y,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,y,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -e,b,s,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,d -p,f,s,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -e,x,s,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,d -p,f,s,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,x,s,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -e,k,f,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -p,f,y,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,x,s,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,s,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,k,s,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -e,b,s,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,p -p,k,s,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,s,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,n,c,l -e,k,s,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,y,e,f,m,f,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,y,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,o,c,l -p,f,y,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -e,k,f,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -e,x,s,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,o,v,l -p,k,y,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,k,y,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,k,s,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -e,x,s,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -e,k,s,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -e,k,s,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,s,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,x,s,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -e,k,s,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -e,x,f,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,y,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -e,b,s,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,s,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,f,s,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -e,k,s,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -e,x,s,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -p,f,y,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -e,x,f,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -e,k,f,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -p,f,s,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -e,f,s,g,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,b,c,l -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,n,c,l -p,k,y,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,k,s,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -e,k,f,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,n,c,l -p,k,y,c,f,m,f,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -e,x,f,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,o,v,l -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,b,v,l -p,k,y,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -e,k,f,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -e,x,f,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,n,v,l -p,k,y,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,k,y,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,y,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -e,k,f,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -p,f,y,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -e,k,s,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,y,c,l -p,k,y,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,x,s,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,o,v,l -p,k,s,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,x,s,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -e,x,s,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -p,f,s,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,x,y,n,f,m,a,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,s,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -e,k,s,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,s,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,f,y,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,s,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,k,y,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -e,f,s,c,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -p,f,y,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,k,s,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,x,s,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,x,s,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,n,c,l -p,f,s,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,x,s,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -e,b,f,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -e,k,f,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,n,v,l -p,f,y,n,f,m,f,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,s,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,f,s,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,k,y,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,k,y,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -e,x,f,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,y,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,x,y,c,f,m,a,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,y,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,k,y,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,b,s,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,s,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,x,s,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,s,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,k,y,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -e,b,f,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,y,n,f,m,a,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,f,y,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,k,y,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -e,x,y,g,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,f,s,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,k,y,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -e,k,f,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -p,x,s,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,s,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -e,k,s,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -p,f,y,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,y,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,y,v,l -p,f,y,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,k,y,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,k,s,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,k,s,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,b,v,l -e,k,s,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,n,v,l -e,x,f,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,s,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,y,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,b,s,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -p,f,s,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -e,b,f,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -p,x,s,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,f,y,c,f,m,f,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,f,s,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,x,y,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,s,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,f,y,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,f,s,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,x,s,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -e,k,s,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -p,x,s,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,k,y,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,x,s,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -e,b,s,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -p,x,s,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,f,s,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -e,b,s,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -p,x,s,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,y,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,f,y,n,f,m,f,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -e,b,f,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -p,f,s,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,k,s,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -e,k,s,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -p,k,y,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,x,s,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,y,c,l -p,k,y,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,b,c,l -p,k,s,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,k,s,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,k,s,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -e,f,y,c,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,n,c,l -e,b,s,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,s,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -e,b,s,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,y,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,y,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,y,c,l -p,x,s,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,f,s,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,y,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -e,k,y,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,d -p,f,s,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,f,y,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,f,s,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -e,k,f,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,s,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -e,b,f,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,s,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,x,s,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,y,c,l -p,k,s,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,k,y,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -e,k,f,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -p,x,s,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,k,y,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -e,x,f,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,y,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,k,s,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,k,y,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,k,y,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -e,k,s,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,y,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -e,x,s,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,y,v,l -e,k,s,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -p,x,s,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,k,s,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -e,x,s,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,y,v,l -e,k,s,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -p,f,y,e,f,m,f,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -e,b,s,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -p,f,y,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,b,c,l -e,b,s,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,y,c,l -e,b,s,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,s,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,o,c,l -p,k,s,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,k,s,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,y,v,l -e,k,f,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,o,c,l -p,k,s,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,k,y,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,k,y,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,n,c,l -p,k,s,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,o,v,l -p,k,s,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -e,k,s,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -e,k,f,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -p,f,s,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,x,s,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,y,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,f,s,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -e,x,f,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,y,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,y,n,f,m,a,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -e,b,f,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,y,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,s,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -e,k,f,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -e,k,f,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -e,k,s,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,s,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -e,k,s,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,b,s,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,s,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -e,x,s,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,n,v,l -p,k,s,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,k,y,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -e,x,f,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -p,x,y,e,f,m,a,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,s,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,s,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,b,c,l -p,k,y,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -e,f,y,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,d -e,k,s,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -p,f,y,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,k,y,y,f,n,f,w,n,y,e,c,y,y,y,y,p,y,o,e,w,c,l -p,k,y,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,k,y,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,n,c,l -e,x,s,g,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -e,k,s,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -p,f,y,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,k,y,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -e,b,f,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,o,c,l -p,k,s,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -e,x,f,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -e,x,f,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,k,y,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -e,x,s,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -e,x,s,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -p,k,y,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,k,s,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -e,b,f,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -p,f,s,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,x,y,n,f,m,f,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,y,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,y,c,l -p,x,y,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,y,v,l -e,b,s,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -e,b,s,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,y,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,k,s,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,k,s,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -e,b,f,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -e,k,s,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -p,f,y,e,f,m,f,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,y,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,f,s,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,k,y,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,k,y,c,f,m,f,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,y,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -e,k,s,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -p,f,y,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -e,b,f,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -p,f,s,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,k,s,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -e,k,s,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -e,x,s,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,s,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,y,c,l -e,f,y,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -e,b,s,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -p,f,y,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,s,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -e,k,f,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -e,x,f,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -e,x,s,c,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -e,k,f,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,s,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,k,y,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,x,y,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,o,c,l -p,f,y,y,f,n,f,w,n,w,e,c,y,y,y,y,p,y,o,e,w,c,l -p,x,y,c,f,m,a,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,x,s,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -e,x,y,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,k,y,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -e,k,s,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -e,b,s,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,s,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,b,v,l -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,b,v,l -e,f,s,n,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -e,k,s,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -p,f,s,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,k,y,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,k,s,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -e,b,s,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,y,n,f,m,f,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,y,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,y,v,l -p,k,s,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -e,b,s,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -e,x,s,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,s,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,k,s,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,k,y,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -e,b,s,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,y,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -e,b,f,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -p,c,y,y,f,n,f,w,n,y,e,c,y,y,y,y,p,y,o,e,w,c,l -p,x,s,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,k,y,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -e,x,s,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,y,v,l -p,k,y,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,n,c,l -p,k,y,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,k,y,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,k,s,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -e,b,s,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,n,c,l -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,n,v,l -p,x,s,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -e,x,s,g,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -e,x,f,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,s,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -e,k,f,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,s,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,k,y,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,k,y,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -e,f,s,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -p,k,y,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,k,y,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,b,c,l -p,k,y,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,y,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,k,y,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,o,c,l -p,f,s,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -e,k,s,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,s,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,k,s,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,o,v,l -p,k,s,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -e,x,f,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,o,v,l -p,f,s,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,k,s,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -e,f,y,n,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -e,x,f,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -e,k,s,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,b,c,l -p,k,y,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,k,y,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -e,k,y,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,p -e,x,f,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,s,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,k,y,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,b,v,l -p,f,y,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,k,s,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,y,c,l -e,x,f,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,s,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,k,y,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -e,x,s,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,y,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,k,s,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,k,y,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,o,c,l -e,b,s,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -p,x,y,e,f,m,a,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,s,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,y,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,k,s,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,x,s,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -e,b,f,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,y,n,f,m,a,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -e,f,s,n,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,y,y,f,n,f,w,n,y,e,c,y,y,y,y,p,y,o,e,w,c,l -p,k,s,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,f,y,e,f,m,a,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -e,x,f,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,y,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,f,y,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,y,c,l -p,k,y,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,y,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,k,s,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,k,y,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -e,x,s,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -e,x,s,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -e,x,f,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,s,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,k,s,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,k,y,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,k,y,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,k,y,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,k,s,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,o,c,l -p,f,s,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,x,s,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -e,x,f,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,y,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,o,c,l -p,k,y,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,k,y,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,k,y,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,k,y,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,k,s,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,b,c,l -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,n,c,l -e,b,s,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,s,n,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,n,c,l -p,k,y,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -e,b,f,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -e,b,s,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -p,x,s,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,b,c,l -e,x,s,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -e,x,s,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,p -e,k,s,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -e,x,s,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -p,f,y,c,f,m,f,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,y,c,l -p,k,s,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,k,y,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -e,x,s,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -e,k,f,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -e,b,f,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,b,v,l -p,k,y,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,n,v,l -e,f,s,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,k,y,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -e,b,s,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,s,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -e,k,s,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,y,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,k,s,n,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,b,c,l -p,k,s,n,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -p,k,y,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,y,v,l -e,x,f,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -e,x,f,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,b,v,l -p,k,s,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,k,y,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -e,x,s,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -e,x,f,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,s,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -p,k,s,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -e,k,s,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,p -p,k,s,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,k,s,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -e,b,s,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,y,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,k,s,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -e,k,f,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,y,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,k,s,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,k,y,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -e,k,f,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -p,k,y,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -e,b,f,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -e,x,s,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -e,b,s,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,k,y,e,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -e,b,s,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -p,f,s,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -e,k,s,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,y,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,k,s,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,k,s,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -e,x,s,n,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,k,s,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,b,y,y,f,n,f,w,n,w,e,c,y,y,y,y,p,y,o,e,w,c,l -p,k,y,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -e,x,s,n,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -p,k,s,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -e,k,f,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,s,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,k,s,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -e,x,f,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -e,b,s,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,y,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,n,c,l -p,k,y,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -e,b,s,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,s,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,o,v,l -p,f,s,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -e,b,f,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -e,k,s,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,s,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -e,x,s,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,b,c,l -p,k,s,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,k,y,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,b,v,l -e,b,f,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -e,x,s,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -p,f,y,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,x,y,e,f,m,f,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,y,c,l -p,k,s,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -e,b,s,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -e,b,s,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -e,k,f,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -e,k,f,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -e,x,f,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,y,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,f,y,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,k,y,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,f,s,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,b,s,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -e,k,s,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -e,b,f,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,b,c,l -p,k,y,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,f,y,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,x,s,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,o,v,l -e,k,f,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,s,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -e,b,f,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,y,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,y,c,l -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,n,v,l -p,k,y,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,k,y,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -p,k,y,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,k,y,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -e,x,s,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,y,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -e,f,y,c,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,n,v,l -p,k,s,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,k,s,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -e,b,f,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,y,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -e,b,f,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,s,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -e,x,s,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,y,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,k,y,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -e,x,s,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,y,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,k,y,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,o,v,l -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,n,v,l -p,k,s,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,k,s,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,n,c,l -p,k,s,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,k,s,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,k,y,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,k,y,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -e,k,f,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,n,v,l -p,k,s,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,b,v,l -e,f,y,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,p -p,k,y,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -e,f,s,g,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -e,x,s,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,c,y,y,f,n,f,w,n,w,e,c,y,y,y,y,p,y,o,e,w,c,l -p,k,s,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,k,y,e,f,m,a,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,o,v,l -p,k,s,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -e,x,s,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -p,x,s,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,y,c,f,m,f,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,f,s,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,b,c,l -e,b,y,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,d -p,f,s,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -e,b,s,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -e,x,y,n,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,f,s,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,y,c,l -e,b,f,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -e,x,f,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,s,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,x,y,n,f,m,a,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,y,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,b,c,l -p,k,s,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,x,s,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,k,s,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,k,y,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -p,k,s,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -e,b,f,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,y,v,l -p,k,y,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,k,y,y,f,n,f,w,n,w,e,c,y,y,y,y,p,y,o,e,w,c,l -e,k,s,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,y,c,l -p,k,s,n,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,k,f,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -e,k,f,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,b,c,l -e,x,s,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -e,b,s,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -e,x,f,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -e,k,f,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,s,n,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -e,k,f,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -e,x,s,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,s,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,k,y,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,n,v,l -p,k,s,e,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -e,x,s,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,y,v,l -e,b,s,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,s,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,n,v,l -p,k,s,n,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,k,s,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -e,b,f,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,y,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,k,s,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -e,b,s,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,s,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,x,s,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -e,x,s,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -e,x,s,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,y,n,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -e,k,s,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,d -p,k,s,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,o,v,l -e,b,f,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -p,k,s,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,k,s,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -p,f,y,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,f,y,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,y,c,l -p,k,y,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -e,k,s,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,b,c,l -p,k,y,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -e,k,s,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -p,k,y,e,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -e,x,s,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,s,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,k,y,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,f,y,c,f,m,a,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,x,s,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -e,k,f,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,s,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,x,y,n,f,m,f,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,f,y,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,b,c,l -p,k,s,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -e,b,f,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -e,b,f,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,y,v,l -p,k,y,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,o,c,l -e,x,s,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,s,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,k,s,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,p -e,x,s,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -e,b,s,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,y,n,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -p,k,y,e,f,m,f,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,y,e,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,k,y,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -e,x,f,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,b,v,l -p,k,y,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,y,v,l -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,n,v,l -e,k,s,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,y,c,l -p,k,y,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,b,v,l -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,n,c,l -p,k,y,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,d -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,n,c,l -p,k,s,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -e,b,f,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,y,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,b,v,l -p,k,s,n,f,s,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,l -e,x,s,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -e,x,s,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,b,v,l -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,b,c,l -p,k,y,e,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -e,x,f,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,s,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,k,y,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,k,y,n,f,s,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,k,y,e,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -e,x,s,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,s,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,k,s,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -e,x,f,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,o,c,l -e,b,s,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,s,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,k,y,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,k,s,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,x,y,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,b,v,l -e,x,s,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,s,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,k,y,e,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -e,k,s,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,b,v,l -e,k,s,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,n,g -p,k,s,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -p,k,s,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,x,s,n,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,n,c,l -p,k,s,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -p,k,y,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -e,x,f,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -p,f,s,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,k,s,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,b,v,l -e,x,y,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,d -p,k,y,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,s,e,f,s,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,l -e,b,s,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,y,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,n,c,l -e,x,s,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -e,x,s,g,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -p,f,y,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,f,y,n,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -e,f,y,g,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -e,x,f,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,y,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,k,s,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -p,x,s,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -e,x,f,g,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,s,g -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,n,v,l -p,x,y,e,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,b,f,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,s,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -e,x,f,g,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,s,g -p,f,y,n,f,m,a,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,o,v,l -e,b,s,g,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,o,v,l -p,k,s,e,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,o,v,l -e,x,f,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -p,k,s,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -e,x,f,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -e,f,y,p,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,k,y,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -e,k,f,g,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,y,c,l -p,k,s,n,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -p,k,s,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,k,y,n,f,s,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,d -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,o,c,l -p,k,y,n,f,s,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -e,k,f,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,y,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -e,f,s,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,p -p,k,s,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -e,x,f,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,y,e,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,d -p,k,y,e,f,y,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,o,c,l -e,k,s,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -e,b,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,o,c,l -e,f,y,g,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -p,k,y,e,f,m,a,c,b,w,e,c,k,y,c,c,p,w,n,n,w,c,d -p,x,y,e,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,y,v,l -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,o,c,l -e,x,y,c,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,l -p,k,s,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -p,k,y,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,k,y,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -e,f,s,c,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,v,p -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,n,c,l -e,b,f,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,n,g -e,k,f,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,o,c,l -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,o,c,l -e,k,f,w,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -p,k,y,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,l -e,b,f,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,y,n,f,y,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,k,y,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,y,v,l -e,x,y,n,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -e,b,s,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,n,g -p,f,y,n,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,k,s,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,y,c,l -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,n,v,l -e,b,s,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -p,x,y,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -e,b,f,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -e,b,f,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -e,b,f,w,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,o,v,l -p,k,y,e,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,p -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,o,v,l -p,k,s,e,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,d -p,k,y,c,f,m,a,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -p,k,s,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -e,x,s,g,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,n,g -e,f,s,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,d -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,y,c,l -e,b,y,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,p -p,x,s,n,f,f,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,b,c,l -p,f,s,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -p,k,y,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -e,k,s,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,y,n,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -e,k,f,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,s,g -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,o,c,l -p,k,s,e,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,y,v,l -p,k,s,n,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,k,y,n,f,s,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,n,v,l -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,n,c,l -e,x,y,n,f,n,f,c,b,w,e,b,y,y,n,n,p,w,t,p,w,y,p -e,x,s,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,o,v,l -p,f,s,n,f,f,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,x,y,e,f,s,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,d -p,k,y,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,k,s,e,f,f,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,k,s,e,f,f,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,p -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,n,v,l -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,y,v,l -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,y,v,l -p,k,s,n,f,s,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,b,v,l -e,k,s,g,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,s,g -e,k,f,w,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -p,k,s,e,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,p -e,b,f,w,f,n,f,w,b,g,e,?,k,k,w,w,p,w,t,p,w,n,g -e,x,s,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -e,b,f,w,f,n,f,w,b,p,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,y,n,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,d -p,f,s,n,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -p,f,y,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,k,s,e,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,p -p,k,y,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,y,c,l -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,n,v,l -p,k,y,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,l -p,k,s,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -e,x,f,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,n,g -e,k,s,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -p,k,y,e,f,f,f,c,n,b,t,?,s,k,p,p,p,w,o,e,w,v,p -p,x,s,n,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,l -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,b,c,l -e,b,f,w,f,n,f,w,b,p,e,?,k,s,w,w,p,w,t,p,w,n,g -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,b,v,l -p,k,y,e,f,y,f,c,n,b,t,?,k,k,p,w,p,w,o,e,w,v,d -e,x,y,g,t,n,f,c,b,w,e,b,s,s,w,w,p,w,t,p,w,y,p -p,k,s,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,y,v,l -p,k,y,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,b,c,l -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,b,v,l -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,y,c,l -p,k,y,e,f,y,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -e,b,f,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,s,e,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,k,s,n,f,y,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,l -p,k,s,n,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,d -e,x,f,w,f,n,f,w,b,w,e,?,s,k,w,w,p,w,t,p,w,s,g -e,f,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,o,v,l -p,k,y,n,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -e,x,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,n,v,l -e,b,f,g,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,y,v,l -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,o,v,l -p,k,s,e,f,s,f,c,n,b,t,?,s,k,w,p,p,w,o,e,w,v,l -p,k,s,n,f,f,f,c,n,b,t,?,s,s,w,p,p,w,o,e,w,v,p -p,k,s,n,f,s,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,s,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,k,y,n,f,y,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -e,k,f,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,f,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,l -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,b,v,l -p,k,s,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -e,b,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,b,c,l -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,b,c,l -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,n,c,l -p,k,y,e,f,s,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,l -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,y,v,l -p,k,y,e,f,f,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,p -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,y,v,l -e,b,f,g,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,n,g -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,o,c,l -e,b,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,y,c,l -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,o,v,l -e,b,f,g,f,n,f,w,b,g,e,?,s,s,w,w,p,w,t,p,w,s,g -p,k,y,e,f,f,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -p,k,s,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,k,s,w,w,p,w,o,e,w,v,p -p,k,s,e,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,p -p,k,y,n,f,y,f,c,n,b,t,?,s,s,w,w,p,w,o,e,w,v,l -e,b,f,g,f,n,f,w,b,p,e,?,k,k,w,w,p,w,t,p,w,s,g -e,k,f,w,f,n,f,w,b,g,e,?,s,k,w,w,p,w,t,p,w,s,g -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,n,o,p,o,v,l -p,x,s,e,f,f,f,c,n,b,t,?,k,s,w,p,p,w,o,e,w,v,p -e,k,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,n,v,l -p,k,y,e,f,f,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -p,k,s,n,f,f,f,c,n,b,t,?,k,s,p,p,p,w,o,e,w,v,d -p,k,y,e,f,f,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,p -p,k,y,e,f,y,f,c,n,b,t,?,s,s,p,p,p,w,o,e,w,v,p -p,x,s,n,f,y,f,c,n,b,t,?,k,k,w,w,p,w,o,e,w,v,d -e,b,s,g,f,n,f,w,b,g,e,?,k,s,w,w,p,w,t,p,w,n,g -p,x,y,c,f,m,f,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -e,k,f,w,f,n,f,w,b,w,e,?,k,s,w,w,p,w,t,p,w,n,g -p,k,y,n,f,s,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,l -p,k,s,e,f,y,f,c,n,b,t,?,k,k,w,p,p,w,o,e,w,v,d -e,k,f,w,f,n,f,w,b,w,e,?,k,k,w,w,p,w,t,p,w,s,g -e,f,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,b,v,l -p,k,s,e,f,s,f,c,n,b,t,?,s,s,p,w,p,w,o,e,w,v,p -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,n,c,l -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,o,c,l -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,n,v,l -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,y,v,l -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,n,v,l -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,n,c,l -p,k,y,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,l -e,b,s,w,f,n,f,w,b,w,e,?,s,s,w,w,p,w,t,p,w,n,g -e,x,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,o,o,p,n,v,l -e,k,s,w,f,n,f,w,b,p,e,?,s,s,w,w,p,w,t,p,w,n,g -e,k,s,n,f,n,a,c,b,o,e,?,s,s,o,o,p,n,o,p,b,v,l -p,k,y,e,f,y,f,c,n,b,t,?,k,k,p,p,p,w,o,e,w,v,d -p,f,y,c,f,m,a,c,b,y,e,c,k,y,c,c,p,w,n,n,w,c,d -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,o,v,l -p,k,y,n,f,s,f,c,n,b,t,?,s,k,p,w,p,w,o,e,w,v,l -p,k,s,e,f,y,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -p,k,y,n,f,f,f,c,n,b,t,?,k,s,p,w,p,w,o,e,w,v,d -e,k,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,b,c,l -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,n,o,p,b,v,l -e,f,s,n,f,n,a,c,b,n,e,?,s,s,o,o,p,o,o,p,b,c,l -p,k,y,n,f,y,f,c,n,b,t,?,s,k,w,w,p,w,o,e,w,v,l -e,x,s,n,f,n,a,c,b,y,e,?,s,s,o,o,p,o,o,p,o,c,l diff --git a/samples/c/airplane.jpg b/samples/c/airplane.jpg deleted file mode 100644 index a9b465267..000000000 Binary files a/samples/c/airplane.jpg and /dev/null differ diff --git a/samples/c/baboon.jpg b/samples/c/baboon.jpg deleted file mode 100644 index 2f98d8359..000000000 Binary files a/samples/c/baboon.jpg and /dev/null differ diff --git a/samples/c/baboon200.jpg b/samples/c/baboon200.jpg deleted file mode 100644 index 1b873e0ce..000000000 Binary files a/samples/c/baboon200.jpg and /dev/null differ diff --git a/samples/c/baboon200_rotated.jpg b/samples/c/baboon200_rotated.jpg deleted file mode 100644 index 86160db9a..000000000 Binary files a/samples/c/baboon200_rotated.jpg and /dev/null differ diff --git a/samples/c/box.png b/samples/c/box.png deleted file mode 100644 index 6f01082f7..000000000 Binary files a/samples/c/box.png and /dev/null differ diff --git a/samples/c/box_in_scene.png b/samples/c/box_in_scene.png deleted file mode 100644 index cff246a3f..000000000 Binary files a/samples/c/box_in_scene.png and /dev/null differ diff --git a/samples/c/build_all.sh b/samples/c/build_all.sh deleted file mode 100755 index 787474aa2..000000000 --- a/samples/c/build_all.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -if [ $# -gt 0 ] ; then - base=`basename $1 .c` - echo "compiling $base" - gcc -ggdb `pkg-config opencv --cflags --libs` $base.c -o $base -else - for i in *.c; do - echo "compiling $i" - gcc -ggdb `pkg-config --cflags opencv` -o `basename $i .c` $i `pkg-config --libs opencv`; - done - for i in *.cpp; do - echo "compiling $i" - g++ -ggdb `pkg-config --cflags opencv` -o `basename $i .cpp` $i `pkg-config --libs opencv`; - done -fi diff --git a/samples/c/calonder_params.xml b/samples/c/calonder_params.xml deleted file mode 100644 index f2294caef..000000000 --- a/samples/c/calonder_params.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - 20 - 7 - 1000 - 20 - 30 - 4 - 1 - diff --git a/samples/c/cat.jpg b/samples/c/cat.jpg deleted file mode 100644 index df4a907e5..000000000 Binary files a/samples/c/cat.jpg and /dev/null differ diff --git a/samples/c/cat.xml b/samples/c/cat.xml deleted file mode 100644 index 85fcf0908..000000000 Binary files a/samples/c/cat.xml and /dev/null differ diff --git a/samples/c/contours.c b/samples/c/contours.c deleted file mode 100644 index 58939e47a..000000000 --- a/samples/c/contours.c +++ /dev/null @@ -1,167 +0,0 @@ -#include "opencv2/imgproc/imgproc_c.h" -#include "opencv2/highgui/highgui_c.h" -#include - -static void help(void) -{ - printf("\nThis program creates an image to demonstrate the use of the \"c\" contour\n" - "functions: cvFindContours() and cvApproxPoly() along with the storage\n" - "functions cvCreateMemStorage() and cvDrawContours().\n" - "It also shows the use of a trackbar to control contour retrieval.\n" - "\n" - "Usage :\n" - "./contours\n"); -} - -#define w 500 -int levels = 3; -CvSeq* contours = 0; - -static void on_trackbar(int pos) -{ - IplImage* cnt_img = cvCreateImage( cvSize(w,w), 8, 3 ); - CvSeq* _contours = contours; - int _levels = levels - 3; - (void)pos; - - if( _levels <= 0 ) // get to the nearest face to make it look more funny - _contours = _contours->h_next->h_next->h_next; - cvZero( cnt_img ); - cvDrawContours( cnt_img, _contours, CV_RGB(255,0,0), CV_RGB(0,255,0), _levels, 3, CV_AA, cvPoint(0,0) ); - cvShowImage( "contours", cnt_img ); - cvReleaseImage( &cnt_img ); -} - -static void findCComp( IplImage* img ) -{ - int x, y, cidx = 1; - IplImage* mask = cvCreateImage( cvSize(img->width+2, img->height+2), 8, 1 ); - cvZero(mask); - cvRectangle( mask, cvPoint(0, 0), cvPoint(mask->width-1, mask->height-1), - cvScalarAll(1), 1, 8, 0 ); - - for( y = 0; y < img->height; y++ ) - for( x = 0; x < img->width; x++ ) - { - if( CV_IMAGE_ELEM(mask, uchar, y+1, x+1) != 0 ) - continue; - cvFloodFill(img, cvPoint(x,y), cvScalarAll(cidx), - cvScalarAll(0), cvScalarAll(0), 0, 4, mask); - cidx++; - } -} - - -int main(int argc, char* argv[]) -{ - int i, j; - CvMemStorage* storage = cvCreateMemStorage(0); - IplImage* img = cvCreateImage( cvSize(w,w), 8, 1 ); - IplImage* img32f = cvCreateImage( cvSize(w,w), IPL_DEPTH_32F, 1 ); - IplImage* img32s = cvCreateImage( cvSize(w,w), IPL_DEPTH_32S, 1 ); - IplImage* img3 = cvCreateImage( cvSize(w,w), 8, 3 ); - (void)argc; (void)argv; - - help(); - cvZero( img ); - - for( i=0; i < 6; i++ ) - { - int dx = (i%2)*250 - 30; - int dy = (i/2)*150; - CvScalar white = cvRealScalar(255); - CvScalar black = cvRealScalar(0); - - if( i == 0 ) - { - for( j = 0; j <= 10; j++ ) - { - double angle = (j+5)*CV_PI/21; - cvLine(img, cvPoint(cvRound(dx+100+j*10-80*cos(angle)), - cvRound(dy+100-90*sin(angle))), - cvPoint(cvRound(dx+100+j*10-30*cos(angle)), - cvRound(dy+100-30*sin(angle))), white, 3, 8, 0); - } - } - - cvEllipse( img, cvPoint(dx+150, dy+100), cvSize(100,70), 0, 0, 360, white, -1, 8, 0 ); - cvEllipse( img, cvPoint(dx+115, dy+70), cvSize(30,20), 0, 0, 360, black, -1, 8, 0 ); - cvEllipse( img, cvPoint(dx+185, dy+70), cvSize(30,20), 0, 0, 360, black, -1, 8, 0 ); - cvEllipse( img, cvPoint(dx+115, dy+70), cvSize(15,15), 0, 0, 360, white, -1, 8, 0 ); - cvEllipse( img, cvPoint(dx+185, dy+70), cvSize(15,15), 0, 0, 360, white, -1, 8, 0 ); - cvEllipse( img, cvPoint(dx+115, dy+70), cvSize(5,5), 0, 0, 360, black, -1, 8, 0 ); - cvEllipse( img, cvPoint(dx+185, dy+70), cvSize(5,5), 0, 0, 360, black, -1, 8, 0 ); - cvEllipse( img, cvPoint(dx+150, dy+100), cvSize(10,5), 0, 0, 360, black, -1, 8, 0 ); - cvEllipse( img, cvPoint(dx+150, dy+150), cvSize(40,10), 0, 0, 360, black, -1, 8, 0 ); - cvEllipse( img, cvPoint(dx+27, dy+100), cvSize(20,35), 0, 0, 360, white, -1, 8, 0 ); - cvEllipse( img, cvPoint(dx+273, dy+100), cvSize(20,35), 0, 0, 360, white, -1, 8, 0 ); - } - - cvNamedWindow( "image", 1 ); - cvShowImage( "image", img ); - cvConvert( img, img32f ); - findCComp( img32f ); - cvConvert( img32f, img32s ); - - cvFindContours( img32s, storage, &contours, sizeof(CvContour), - CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE, cvPoint(0,0) ); - - //cvFindContours( img, storage, &contours, sizeof(CvContour), - // CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, cvPoint(0,0) ); - - - { - const char* attrs[] = {"recursive", "1", 0}; - cvSave("contours.xml", contours, 0, 0, cvAttrList(attrs, 0)); - contours = (CvSeq*)cvLoad("contours.xml", storage, 0, 0); - } - - // comment this out if you do not want approximation - contours = cvApproxPoly( contours, sizeof(CvContour), storage, CV_POLY_APPROX_DP, 3, 1 ); - - cvNamedWindow( "contours", 1 ); - cvCreateTrackbar( "levels+3", "contours", &levels, 7, on_trackbar ); - - { - CvRNG rng = cvRNG(-1); - - CvSeq* tcontours = contours; - cvCvtColor( img, img3, CV_GRAY2BGR ); - while( tcontours->h_next ) - tcontours = tcontours->h_next; - - for( ; tcontours != 0; tcontours = tcontours->h_prev ) - { - CvScalar color; - color.val[0] = cvRandInt(&rng) % 256; - color.val[1] = cvRandInt(&rng) % 256; - color.val[2] = cvRandInt(&rng) % 256; - color.val[3] = cvRandInt(&rng) % 256; - cvDrawContours(img3, tcontours, color, color, 0, -1, 8, cvPoint(0,0)); - if( tcontours->v_next ) - { - color.val[0] = cvRandInt(&rng) % 256; - color.val[1] = cvRandInt(&rng) % 256; - color.val[2] = cvRandInt(&rng) % 256; - color.val[3] = cvRandInt(&rng) % 256; - cvDrawContours(img3, tcontours->v_next, color, color, 1, -1, 8, cvPoint(0,0)); - } - } - - } - - cvShowImage( "colored", img3 ); - on_trackbar(0); - cvWaitKey(0); - cvReleaseMemStorage( &storage ); - cvReleaseImage( &img ); - cvReleaseImage( &img32f ); - cvReleaseImage( &img32s ); - cvReleaseImage( &img3 ); - - return 0; -} - -#ifdef _EiC -main(1,""); -#endif diff --git a/samples/c/cvsample.dsp b/samples/c/cvsample.dsp deleted file mode 100644 index 71fcf28f3..000000000 --- a/samples/c/cvsample.dsp +++ /dev/null @@ -1,92 +0,0 @@ -# Microsoft Developer Studio Project File - Name="cvsample" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=cvsample - Win32 Release -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "cvsample.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "cvsample.mak" CFG="cvsample - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "cvsample - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "cvsample - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "cvsample - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\_temp\cvsample_Release" -# PROP Intermediate_Dir "..\..\_temp\cvsample_Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W4 /Gm /GX /Zi /O2 /I "../../cxcore/include" /I "../../cv/include" /I "../../otherlibs/highgui" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib cxcore.lib cv.lib highgui.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libmmd.lib" /out:".\cvsample.exe" /libpath:"../../lib" - -!ELSEIF "$(CFG)" == "cvsample - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\_temp\cvsample_Debug" -# PROP Intermediate_Dir "..\..\_temp\cvsample_Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -F90=df.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W4 /Gm /GX /Zi /Od /I "../../cxcore/include" /I "../../cv/include" /I "../../otherlibs/highgui" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib cxcored.lib cvd.lib highguid.lib /nologo /subsystem:console /debug /machine:I386 /nodefaultlib:"libmmdd.lib" /out:".\cvsampled.exe" /pdbtype:sept /libpath:"../../lib" - -!ENDIF - -# Begin Target - -# Name "cvsample - Win32 Release" -# Name "cvsample - Win32 Debug" -# Begin Source File - -SOURCE=.\squares.c -# End Source File -# End Target -# End Project diff --git a/samples/c/cvsample.vs2005.vcproj b/samples/c/cvsample.vs2005.vcproj deleted file mode 100644 index 18d2f06b2..000000000 --- a/samples/c/cvsample.vs2005.vcproj +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/c/example_cmake/CMakeLists.txt b/samples/c/example_cmake/CMakeLists.txt deleted file mode 100644 index 85129a752..000000000 --- a/samples/c/example_cmake/CMakeLists.txt +++ /dev/null @@ -1,18 +0,0 @@ -PROJECT(opencv_example) - -CMAKE_MINIMUM_REQUIRED(VERSION 2.6) -if(COMMAND cmake_policy) - cmake_policy(SET CMP0003 NEW) -endif(COMMAND cmake_policy) - -FIND_PACKAGE( OpenCV REQUIRED ) - -# Declare the target (an executable) -ADD_EXECUTABLE(opencv_example minarea.c) - -TARGET_LINK_LIBRARIES(opencv_example ${OpenCV_LIBS}) - -#MESSAGE(STATUS "OpenCV_LIBS: ${OpenCV_LIBS}") - - - diff --git a/samples/c/example_cmake/README.txt b/samples/c/example_cmake/README.txt deleted file mode 100644 index 7bf53e7ac..000000000 --- a/samples/c/example_cmake/README.txt +++ /dev/null @@ -1,32 +0,0 @@ -Example for CMake build system. - -Compile OpenCV with cmake, preferently in an off-tree build, for example: - - $ mkdir opencv-release - $ cd opencv-release - $ cmake - $ make - -And, *only optionally*, install it with. - $ sudo make install - -Then create the binary directory for the example with: - $ mkdir example-release - $ cd example-release - -Then, if "make install" have been executed, directly running - $ cmake /samples/c/example_cmake/ - -will detect the "OpenCVConfig.cmake" file and the project is ready to compile. - -If "make install" has not been executed, you'll have to manually pick the opencv -binary directory (Under Windows CMake may remember the correct directory). Open -the CMake gui with: - $ cmake-gui /samples/c/example_cmake/ - -And pick the correct value for OpenCV_DIR. - - - - - diff --git a/samples/c/example_cmake/minarea.c b/samples/c/example_cmake/minarea.c deleted file mode 100644 index 916acb0ef..000000000 --- a/samples/c/example_cmake/minarea.c +++ /dev/null @@ -1,117 +0,0 @@ -#ifdef _CH_ -#pragma package -#endif - -#ifndef _EiC -#include "cv.h" -#include "highgui.h" -#include -#include -#endif - -#define ARRAY 1 - -void help() -{ - printf("\nThis program demonstrates finding the minimum enclosing box or circle of a set\n" - "of points using functions: minAreaRect() minEnclosingCircle().\n" - "Random points are generated and then enclosed.\n" - "Call:\n" - "./minarea\n"); -} - -int main( int argc, char** argv ) -{ - IplImage* img = cvCreateImage( cvSize( 500, 500 ), 8, 3 ); -#if !ARRAY - CvMemStorage* storage = cvCreateMemStorage(0); -#endif - help(); - cvNamedWindow( "rect & circle", 1 ); - - for(;;) - { - char key; - int i, count = rand()%100 + 1; - CvPoint pt0, pt; - CvBox2D box; - CvPoint2D32f box_vtx[4]; - CvPoint2D32f center; - CvPoint icenter; - float radius; -#if !ARRAY - CvSeq* ptseq = cvCreateSeq( CV_SEQ_KIND_GENERIC|CV_32SC2, sizeof(CvContour), - sizeof(CvPoint), storage ); - for( i = 0; i < count; i++ ) - { - pt0.x = rand() % (img->width/2) + img->width/4; - pt0.y = rand() % (img->height/2) + img->height/4; - cvSeqPush( ptseq, &pt0 ); - } -#ifndef _EiC /* unfortunately, here EiC crashes */ - box = cvMinAreaRect2( ptseq, 0 ); -#endif - cvMinEnclosingCircle( ptseq, ¢er, &radius ); -#else - CvPoint* points = (CvPoint*)malloc( count * sizeof(points[0])); - CvMat pointMat = cvMat( 1, count, CV_32SC2, points ); - - for( i = 0; i < count; i++ ) - { - pt0.x = rand() % (img->width/2) + img->width/4; - pt0.y = rand() % (img->height/2) + img->height/4; - points[i] = pt0; - } -#ifndef _EiC - box = cvMinAreaRect2( &pointMat, 0 ); -#endif - cvMinEnclosingCircle( &pointMat, ¢er, &radius ); -#endif - cvBoxPoints( box, box_vtx ); - cvZero( img ); - for( i = 0; i < count; i++ ) - { -#if !ARRAY - pt0 = *CV_GET_SEQ_ELEM( CvPoint, ptseq, i ); -#else - pt0 = points[i]; -#endif - cvCircle( img, pt0, 2, CV_RGB( 255, 0, 0 ), CV_FILLED, CV_AA, 0 ); - } - -#ifndef _EiC - pt0.x = cvRound(box_vtx[3].x); - pt0.y = cvRound(box_vtx[3].y); - for( i = 0; i < 4; i++ ) - { - pt.x = cvRound(box_vtx[i].x); - pt.y = cvRound(box_vtx[i].y); - cvLine(img, pt0, pt, CV_RGB(0, 255, 0), 1, CV_AA, 0); - pt0 = pt; - } -#endif - icenter.x = cvRound(center.x); - icenter.y = cvRound(center.y); - cvCircle( img, icenter, cvRound(radius), CV_RGB(255, 255, 0), 1, CV_AA, 0 ); - - cvShowImage( "rect & circle", img ); - - key = (char) cvWaitKey(0); - if( key == 27 || key == 'q' || key == 'Q' ) // 'ESC' - break; - -#if !ARRAY - cvClearMemStorage( storage ); -#else - free( points ); -#endif - } - - cvDestroyWindow( "rect & circle" ); - return 0; -} - -#ifdef _EiC -main(1,"convexhull.c"); -#endif - diff --git a/samples/c/facedetect.cmd b/samples/c/facedetect.cmd deleted file mode 100644 index c5dcef3aa..000000000 --- a/samples/c/facedetect.cmd +++ /dev/null @@ -1,2 +0,0 @@ -REM an example of using haar cascade recognition for face and eye detection. -facedetect --cascade="../../data/haarcascades/haarcascade_frontalface_alt.xml" --nested-cascade="../../data/haarcascades/haarcascade_eye.xml" --scale=1.3 %1 diff --git a/samples/c/fruits.jpg b/samples/c/fruits.jpg deleted file mode 100644 index a89b84a58..000000000 Binary files a/samples/c/fruits.jpg and /dev/null differ diff --git a/samples/c/intrinsics.yml b/samples/c/intrinsics.yml deleted file mode 100644 index 70c615187..000000000 --- a/samples/c/intrinsics.yml +++ /dev/null @@ -1,23 +0,0 @@ -%YAML:1.0 -M1: !!opencv-matrix - rows: 3 - cols: 3 - dt: d - data: [ 5.3480326845051309e+02, 0., 3.3568643204394891e+02, 0., - 5.3480326845051309e+02, 2.4066183054066337e+02, 0., 0., 1. ] -D1: !!opencv-matrix - rows: 1 - cols: 5 - dt: d - data: [ 2.9589439552724328e-01, -1.0354662043042675e+00, 0., 0., 0. ] -M2: !!opencv-matrix - rows: 3 - cols: 3 - dt: d - data: [ 5.3480326845051309e+02, 0., 3.3455744527912015e+02, 0., - 5.3480326845051309e+02, 2.4205324573376600e+02, 0., 0., 1. ] -D2: !!opencv-matrix - rows: 1 - cols: 5 - dt: d - data: [ -1.6916358306948096e-01, -1.1214173641213163e-01, 0., 0., 0. ] diff --git a/samples/c/lena.jpg b/samples/c/lena.jpg deleted file mode 100644 index f06aa74a5..000000000 Binary files a/samples/c/lena.jpg and /dev/null differ diff --git a/samples/c/mushroom.cpp b/samples/c/mushroom.cpp deleted file mode 100644 index 5763b1246..000000000 --- a/samples/c/mushroom.cpp +++ /dev/null @@ -1,322 +0,0 @@ -#include "opencv2/core/core_c.h" -#include "opencv2/ml/ml.hpp" -#include - -static void help() -{ - printf("\nThis program demonstrated the use of OpenCV's decision tree function for learning and predicting data\n" - "Usage :\n" - "./mushroom \n" - "\n" - "The sample demonstrates how to build a decision tree for classifying mushrooms.\n" - "It uses the sample base agaricus-lepiota.data from UCI Repository, here is the link:\n" - "\n" - "Newman, D.J. & Hettich, S. & Blake, C.L. & Merz, C.J. (1998).\n" - "UCI Repository of machine learning databases\n" - "[http://www.ics.uci.edu/~mlearn/MLRepository.html].\n" - "Irvine, CA: University of California, Department of Information and Computer Science.\n" - "\n" - "// loads the mushroom database, which is a text file, containing\n" - "// one training sample per row, all the input variables and the output variable are categorical,\n" - "// the values are encoded by characters.\n\n"); -} - -static int mushroom_read_database( const char* filename, CvMat** data, CvMat** missing, CvMat** responses ) -{ - const int M = 1024; - FILE* f = fopen( filename, "rt" ); - CvMemStorage* storage; - CvSeq* seq; - char buf[M+2], *ptr; - float* el_ptr; - CvSeqReader reader; - int i, j, var_count = 0; - - if( !f ) - return 0; - - // read the first line and determine the number of variables - if( !fgets( buf, M, f )) - { - fclose(f); - return 0; - } - - for( ptr = buf; *ptr != '\0'; ptr++ ) - var_count += *ptr == ','; - assert( ptr - buf == (var_count+1)*2 ); - - // create temporary memory storage to store the whole database - el_ptr = new float[var_count+1]; - storage = cvCreateMemStorage(); - seq = cvCreateSeq( 0, sizeof(*seq), (var_count+1)*sizeof(float), storage ); - - for(;;) - { - for( i = 0; i <= var_count; i++ ) - { - int c = buf[i*2]; - el_ptr[i] = c == '?' ? -1.f : (float)c; - } - if( i != var_count+1 ) - break; - cvSeqPush( seq, el_ptr ); - if( !fgets( buf, M, f ) || !strchr( buf, ',' ) ) - break; - } - fclose(f); - - // allocate the output matrices and copy the base there - *data = cvCreateMat( seq->total, var_count, CV_32F ); - *missing = cvCreateMat( seq->total, var_count, CV_8U ); - *responses = cvCreateMat( seq->total, 1, CV_32F ); - - cvStartReadSeq( seq, &reader ); - - for( i = 0; i < seq->total; i++ ) - { - const float* sdata = (float*)reader.ptr + 1; - float* ddata = data[0]->data.fl + var_count*i; - float* dr = responses[0]->data.fl + i; - uchar* dm = missing[0]->data.ptr + var_count*i; - - for( j = 0; j < var_count; j++ ) - { - ddata[j] = sdata[j]; - dm[j] = sdata[j] < 0; - } - *dr = sdata[-1]; - CV_NEXT_SEQ_ELEM( seq->elem_size, reader ); - } - - cvReleaseMemStorage( &storage ); - delete el_ptr; - return 1; -} - - -static CvDTree* mushroom_create_dtree( const CvMat* data, const CvMat* missing, - const CvMat* responses, float p_weight ) -{ - CvDTree* dtree; - CvMat* var_type; - int i, hr1 = 0, hr2 = 0, p_total = 0; - float priors[] = { 1, p_weight }; - - var_type = cvCreateMat( data->cols + 1, 1, CV_8U ); - cvSet( var_type, cvScalarAll(CV_VAR_CATEGORICAL) ); // all the variables are categorical - - dtree = new CvDTree; - - dtree->train( data, CV_ROW_SAMPLE, responses, 0, 0, var_type, missing, - CvDTreeParams( 8, // max depth - 10, // min sample count - 0, // regression accuracy: N/A here - true, // compute surrogate split, as we have missing data - 15, // max number of categories (use sub-optimal algorithm for larger numbers) - 10, // the number of cross-validation folds - true, // use 1SE rule => smaller tree - true, // throw away the pruned tree branches - priors // the array of priors, the bigger p_weight, the more attention - // to the poisonous mushrooms - // (a mushroom will be judjed to be poisonous with bigger chance) - )); - - // compute hit-rate on the training database, demonstrates predict usage. - for( i = 0; i < data->rows; i++ ) - { - CvMat sample, mask; - cvGetRow( data, &sample, i ); - cvGetRow( missing, &mask, i ); - double r = dtree->predict( &sample, &mask )->value; - int d = fabs(r - responses->data.fl[i]) >= FLT_EPSILON; - if( d ) - { - if( r != 'p' ) - hr1++; - else - hr2++; - } - p_total += responses->data.fl[i] == 'p'; - } - - printf( "Results on the training database:\n" - "\tPoisonous mushrooms mis-predicted: %d (%g%%)\n" - "\tFalse-alarms: %d (%g%%)\n", hr1, (double)hr1*100/p_total, - hr2, (double)hr2*100/(data->rows - p_total) ); - - cvReleaseMat( &var_type ); - - return dtree; -} - - -static const char* var_desc[] = -{ - "cap shape (bell=b,conical=c,convex=x,flat=f)", - "cap surface (fibrous=f,grooves=g,scaly=y,smooth=s)", - "cap color (brown=n,buff=b,cinnamon=c,gray=g,green=r,\n\tpink=p,purple=u,red=e,white=w,yellow=y)", - "bruises? (bruises=t,no=f)", - "odor (almond=a,anise=l,creosote=c,fishy=y,foul=f,\n\tmusty=m,none=n,pungent=p,spicy=s)", - "gill attachment (attached=a,descending=d,free=f,notched=n)", - "gill spacing (close=c,crowded=w,distant=d)", - "gill size (broad=b,narrow=n)", - "gill color (black=k,brown=n,buff=b,chocolate=h,gray=g,\n\tgreen=r,orange=o,pink=p,purple=u,red=e,white=w,yellow=y)", - "stalk shape (enlarging=e,tapering=t)", - "stalk root (bulbous=b,club=c,cup=u,equal=e,rhizomorphs=z,rooted=r)", - "stalk surface above ring (ibrous=f,scaly=y,silky=k,smooth=s)", - "stalk surface below ring (ibrous=f,scaly=y,silky=k,smooth=s)", - "stalk color above ring (brown=n,buff=b,cinnamon=c,gray=g,orange=o,\n\tpink=p,red=e,white=w,yellow=y)", - "stalk color below ring (brown=n,buff=b,cinnamon=c,gray=g,orange=o,\n\tpink=p,red=e,white=w,yellow=y)", - "veil type (partial=p,universal=u)", - "veil color (brown=n,orange=o,white=w,yellow=y)", - "ring number (none=n,one=o,two=t)", - "ring type (cobwebby=c,evanescent=e,flaring=f,large=l,\n\tnone=n,pendant=p,sheathing=s,zone=z)", - "spore print color (black=k,brown=n,buff=b,chocolate=h,green=r,\n\torange=o,purple=u,white=w,yellow=y)", - "population (abundant=a,clustered=c,numerous=n,\n\tscattered=s,several=v,solitary=y)", - "habitat (grasses=g,leaves=l,meadows=m,paths=p\n\turban=u,waste=w,woods=d)", - 0 -}; - - -static void print_variable_importance( CvDTree* dtree ) -{ - const CvMat* var_importance = dtree->get_var_importance(); - int i; - char input[1000]; - - if( !var_importance ) - { - printf( "Error: Variable importance can not be retrieved\n" ); - return; - } - - printf( "Print variable importance information? (y/n) " ); - int values_read = scanf( "%1s", input ); - CV_Assert(values_read == 1); - - if( input[0] != 'y' && input[0] != 'Y' ) - return; - - for( i = 0; i < var_importance->cols*var_importance->rows; i++ ) - { - double val = var_importance->data.db[i]; - char buf[100]; - int len = (int)(strchr( var_desc[i], '(' ) - var_desc[i] - 1); - strncpy( buf, var_desc[i], len ); - buf[len] = '\0'; - printf( "%s", buf ); - printf( ": %g%%\n", val*100. ); - } -} - -static void interactive_classification( CvDTree* dtree ) -{ - char input[1000]; - const CvDTreeNode* root; - CvDTreeTrainData* data; - - if( !dtree ) - return; - - root = dtree->get_root(); - data = dtree->get_data(); - - for(;;) - { - const CvDTreeNode* node; - - printf( "Start/Proceed with interactive mushroom classification (y/n): " ); - int values_read = scanf( "%1s", input ); - CV_Assert(values_read == 1); - - if( input[0] != 'y' && input[0] != 'Y' ) - break; - printf( "Enter 1-letter answers, '?' for missing/unknown value...\n" ); - - // custom version of predict - node = root; - for(;;) - { - CvDTreeSplit* split = node->split; - int dir = 0; - - if( !node->left || node->Tn <= dtree->get_pruned_tree_idx() || !node->split ) - break; - - for( ; split != 0; ) - { - int vi = split->var_idx, j; - int count = data->cat_count->data.i[vi]; - const int* map = data->cat_map->data.i + data->cat_ofs->data.i[vi]; - - printf( "%s: ", var_desc[vi] ); - values_read = scanf( "%1s", input ); - CV_Assert(values_read == 1); - - if( input[0] == '?' ) - { - split = split->next; - continue; - } - - // convert the input character to the normalized value of the variable - for( j = 0; j < count; j++ ) - if( map[j] == input[0] ) - break; - if( j < count ) - { - dir = (split->subset[j>>5] & (1 << (j&31))) ? -1 : 1; - if( split->inversed ) - dir = -dir; - break; - } - else - printf( "Error: unrecognized value\n" ); - } - - if( !dir ) - { - printf( "Impossible to classify the sample\n"); - node = 0; - break; - } - node = dir < 0 ? node->left : node->right; - } - - if( node ) - printf( "Prediction result: the mushroom is %s\n", - node->class_idx == 0 ? "EDIBLE" : "POISONOUS" ); - printf( "\n-----------------------------\n" ); - } -} - - -int main( int argc, char** argv ) -{ - CvMat *data = 0, *missing = 0, *responses = 0; - CvDTree* dtree; - const char* base_path = argc >= 2 ? argv[1] : "agaricus-lepiota.data"; - - help(); - - if( !mushroom_read_database( base_path, &data, &missing, &responses ) ) - { - printf( "\nUnable to load the training database\n\n"); - help(); - return -1; - } - - dtree = mushroom_create_dtree( data, missing, responses, - 10 // poisonous mushrooms will have 10x higher weight in the decision tree - ); - cvReleaseMat( &data ); - cvReleaseMat( &missing ); - cvReleaseMat( &responses ); - - print_variable_importance( dtree ); - interactive_classification( dtree ); - delete dtree; - - return 0; -} diff --git a/samples/c/one_way_train_0000.jpg b/samples/c/one_way_train_0000.jpg deleted file mode 100644 index 457820e90..000000000 Binary files a/samples/c/one_way_train_0000.jpg and /dev/null differ diff --git a/samples/c/one_way_train_0001.jpg b/samples/c/one_way_train_0001.jpg deleted file mode 100644 index 7f3990f4e..000000000 Binary files a/samples/c/one_way_train_0001.jpg and /dev/null differ diff --git a/samples/c/one_way_train_images.txt b/samples/c/one_way_train_images.txt deleted file mode 100644 index eefa571d5..000000000 --- a/samples/c/one_way_train_images.txt +++ /dev/null @@ -1,2 +0,0 @@ -one_way_train_0000.jpg -one_way_train_0001.jpg diff --git a/samples/c/puzzle.png b/samples/c/puzzle.png deleted file mode 100644 index 499ceacd3..000000000 Binary files a/samples/c/puzzle.png and /dev/null differ diff --git a/samples/c/scene_l.bmp b/samples/c/scene_l.bmp deleted file mode 100644 index dd3b619e4..000000000 Binary files a/samples/c/scene_l.bmp and /dev/null differ diff --git a/samples/c/scene_r.bmp b/samples/c/scene_r.bmp deleted file mode 100644 index 2b6c8d63b..000000000 Binary files a/samples/c/scene_r.bmp and /dev/null differ diff --git a/samples/c/stuff.jpg b/samples/c/stuff.jpg deleted file mode 100644 index 720d3413c..000000000 Binary files a/samples/c/stuff.jpg and /dev/null differ diff --git a/samples/c/tree.avi b/samples/c/tree.avi deleted file mode 100644 index 8c7ff14a3..000000000 Binary files a/samples/c/tree.avi and /dev/null differ diff --git a/samples/c/waveform.data b/samples/c/waveform.data deleted file mode 100644 index 179e51af1..000000000 --- a/samples/c/waveform.data +++ /dev/null @@ -1,5000 +0,0 @@ --1.23,-1.56,-1.75,-0.28,0.60,2.22,0.85,0.21,-0.20,0.89,1.08,4.20,2.89,7.75,4.59,3.15,5.12,3.32,1.20,0.24,-0.56,2 --0.69,2.43,0.61,2.08,2.30,3.25,5.52,4.55,2.97,2.22,2.81,1.61,1.24,1.89,1.88,-1.34,0.83,1.41,1.78,0.60,2.42,1 --0.12,-0.94,1.29,2.59,2.42,3.55,4.94,3.25,1.90,2.07,0.51,1.45,2.50,0.12,1.41,2.78,0.64,0.62,-0.01,-0.79,-0.12,0 -0.86,0.29,2.19,-0.02,1.13,2.51,2.37,5.45,5.45,4.84,4.65,4.05,2.58,1.40,1.24,1.41,1.07,-1.43,2.84,-1.18,1.12,1 -1.16,0.37,0.40,-0.59,2.66,1.00,2.69,4.06,5.34,3.53,4.82,4.79,4.30,1.84,1.73,0.21,-0.18,0.13,-0.21,-0.80,-0.68,1 --0.00,0.77,1.32,0.29,-1.28,0.84,1.60,1.55,2.93,4.76,5.55,4.30,4.89,2.81,2.37,3.68,-0.98,0.69,0.91,-1.80,0.39,2 -0.87,1.07,-0.65,1.46,0.84,2.70,3.67,2.94,3.81,5.20,8.16,3.29,4.24,2.43,0.40,1.60,0.72,0.66,0.05,-0.24,0.67,1 --0.22,-0.91,-1.18,0.35,-1.92,-1.59,1.91,0.75,1.72,2.02,3.63,3.91,2.73,4.29,4.89,2.04,1.13,-0.66,-1.33,0.41,-0.75,2 --1.11,-1.14,-0.89,0.00,0.53,0.44,0.24,2.15,1.64,1.75,3.92,5.68,3.39,4.24,3.81,4.56,3.18,1.51,2.90,0.14,-0.12,2 --0.75,1.10,-1.90,1.43,0.47,0.40,0.86,3.51,2.62,4.50,6.83,6.94,0.75,3.23,1.08,-0.25,0.73,-0.41,-1.50,0.46,1.47,2 -0.14,-1.18,1.42,2.28,3.10,3.15,3.49,4.54,1.40,3.41,3.40,2.83,0.06,0.60,3.61,2.08,-0.83,0.55,-0.55,-0.43,-1.05,0 -1.32,-0.40,-0.69,4.17,3.66,4.00,5.24,3.88,2.17,1.82,3.65,1.01,1.82,1.13,-0.07,0.26,0.50,1.38,1.25,-1.34,0.53,0 --0.93,2.48,1.20,2.97,2.91,3.57,3.68,4.19,3.22,3.53,2.46,2.17,0.77,0.52,2.42,-0.89,0.51,-0.39,0.82,0.14,-0.63,1 --1.06,0.59,1.01,3.33,2.05,3.20,4.70,4.21,4.73,2.22,2.67,2.79,2.05,-1.53,-1.54,0.37,-0.09,1.04,-0.08,-0.27,0.47,1 -1.86,0.37,-0.35,0.74,0.84,0.21,1.97,1.52,1.85,2.39,3.92,3.76,3.27,1.61,3.08,2.78,1.58,1.68,2.61,-0.91,-0.27,2 --0.51,-0.48,0.35,-1.67,0.26,2.45,-0.09,2.03,0.79,1.42,1.13,2.52,2.06,4.50,4.28,4.66,3.30,0.38,0.75,1.76,0.37,0 -1.16,-1.19,-2.26,0.63,0.32,1.51,2.11,2.58,1.03,2.01,4.04,4.55,5.65,2.74,3.12,2.67,2.01,4.12,-0.81,0.07,-0.96,2 --0.09,2.30,-0.43,0.36,0.11,-1.20,1.47,2.25,3.50,2.14,6.68,5.45,2.22,2.79,2.61,1.87,0.48,1.98,1.64,1.32,0.71,2 --1.43,-0.46,-0.52,1.45,-0.00,1.35,1.39,0.81,0.03,1.39,2.55,2.42,3.07,5.46,6.29,6.50,4.60,3.77,1.62,1.01,-1.86,0 --1.09,-0.22,0.11,-1.03,1.09,1.72,1.91,3.61,2.22,4.67,4.02,5.32,1.63,2.02,0.40,1.37,1.80,-0.59,-1.22,-0.10,-1.56,1 --0.95,-1.28,0.68,-0.31,-1.04,1.86,-0.13,0.16,-1.05,-0.24,1.47,2.30,4.23,4.70,7.40,6.18,3.00,3.84,2.33,1.28,0.08,2 -0.97,0.72,-0.64,-0.87,0.66,0.80,-0.47,0.55,0.57,0.30,1.97,2.48,3.13,2.53,6.35,5.24,4.37,3.77,0.47,2.25,-0.30,0 -0.31,-0.34,-1.32,-1.24,-1.28,-0.02,-1.80,0.11,3.29,3.63,3.32,3.75,5.93,5.41,4.94,5.15,2.07,3.62,1.56,0.05,-0.31,2 --1.57,1.23,2.03,2.07,3.88,4.71,4.44,3.76,5.00,4.49,3.59,2.05,1.83,0.64,-0.21,0.79,-1.42,-0.73,-2.04,2.65,-0.26,1 -0.39,0.93,0.19,-0.50,0.39,-0.58,0.13,0.85,2.63,3.32,4.41,4.24,3.59,4.06,3.42,2.33,2.04,0.83,1.16,0.81,0.91,2 --0.96,0.13,0.13,-0.70,2.89,1.26,3.48,4.36,0.59,2.37,2.02,2.62,2.75,2.60,3.66,3.06,1.41,1.09,1.25,-0.29,-0.41,0 -0.36,0.40,0.73,1.91,1.44,3.17,2.72,3.60,1.02,3.27,1.06,1.54,3.44,2.45,2.58,-0.48,1.02,-0.01,2.42,0.71,-0.81,0 -1.22,-0.19,1.38,0.16,0.14,3.07,4.07,5.37,4.33,3.96,6.73,2.16,2.83,1.27,1.57,0.73,0.80,0.15,-0.99,0.60,0.13,1 --1.07,1.18,-0.22,1.13,0.01,0.33,0.76,1.20,2.44,2.32,4.24,3.25,4.78,4.18,3.28,2.91,-0.04,2.57,0.91,1.46,0.39,2 -1.01,0.40,1.01,0.60,2.77,1.70,1.44,4.01,5.26,4.47,4.67,4.55,2.91,0.30,1.62,0.92,-0.46,0.51,1.43,-0.05,-1.80,1 --0.73,-0.31,-1.88,-1.40,0.46,1.44,3.38,2.93,5.07,6.01,6.30,3.41,4.52,4.66,1.06,0.65,0.29,1.26,-1.04,-0.72,-0.71,2 --0.47,0.46,4.50,3.10,3.39,4.79,6.43,3.70,4.09,2.03,0.87,1.78,-0.78,-1.88,-2.09,0.29,0.01,0.06,-0.76,1.50,0.50,0 -0.20,1.35,-0.74,-0.21,4.44,3.82,5.31,4.13,2.85,1.81,-1.38,1.08,0.65,-0.38,0.64,-0.38,0.23,0.75,1.05,2.09,-0.07,0 --0.84,0.96,2.33,4.86,5.01,5.57,6.62,4.60,3.42,2.86,0.31,0.53,0.20,-1.77,-0.41,-0.36,0.56,-0.15,0.26,-0.89,0.86,0 -0.34,1.39,-0.71,-0.03,-1.56,1.10,-0.10,0.95,0.91,0.96,3.23,2.56,2.90,5.67,4.88,6.35,2.10,2.03,-0.43,1.70,1.91,2 -1.66,-0.55,-0.40,-0.63,0.88,0.82,1.45,1.61,1.73,2.70,3.92,0.51,5.15,4.14,4.24,5.35,2.93,4.78,1.77,1.12,-0.94,2 --1.85,0.05,1.25,1.62,0.54,0.22,0.05,-0.19,0.32,3.64,1.91,3.03,2.77,5.21,4.89,3.30,5.68,3.59,0.98,1.46,-0.70,2 -0.93,1.48,1.01,-0.30,0.95,0.73,0.27,3.66,3.02,3.87,2.60,3.15,4.65,3.87,3.37,0.73,2.61,2.16,2.10,1.86,-0.03,2 --0.94,1.51,1.41,2.49,1.54,2.29,4.48,4.10,2.39,1.51,1.09,1.32,0.72,4.28,2.25,0.06,0.76,0.53,-0.01,0.98,-1.48,0 -1.72,1.47,2.62,3.11,1.14,3.17,3.93,4.51,3.11,3.96,2.69,1.27,0.48,1.47,2.20,0.79,2.05,-0.00,0.60,-2.16,-0.59,1 --0.67,0.49,0.55,-1.08,0.84,4.56,2.20,4.51,4.96,4.44,4.92,4.08,1.54,2.31,2.71,2.16,1.59,1.48,0.86,-0.14,2.03,1 -0.25,0.56,2.37,1.03,0.21,-0.72,1.73,0.34,0.64,1.84,2.98,2.30,4.71,5.47,4.83,4.21,2.42,1.78,1.69,-0.18,0.65,0 --0.78,0.02,2.51,2.81,2.37,3.17,4.55,4.02,2.87,3.02,1.45,1.29,1.22,1.22,-1.20,0.91,0.34,-0.32,1.47,-0.29,0.68,1 --2.80,1.05,0.18,2.46,1.19,3.40,4.22,3.53,4.36,4.60,4.28,3.56,1.80,-0.75,-0.00,2.31,0.99,-0.10,1.49,-0.71,1.59,1 -0.08,2.22,2.23,0.41,-0.21,2.27,0.78,0.11,3.39,0.57,-0.18,5.00,4.08,4.03,6.77,4.89,4.26,4.63,1.78,1.87,-0.10,2 -1.91,1.66,1.61,3.71,1.26,4.74,4.57,2.65,4.80,3.47,1.42,2.75,0.33,1.88,1.63,1.42,1.12,0.81,-1.30,0.85,-1.98,0 -0.46,-2.24,-0.01,0.68,1.01,2.45,2.31,0.52,1.40,3.52,2.97,1.87,5.68,6.38,4.48,4.96,0.66,1.91,0.88,0.45,-0.22,2 -0.60,-0.30,-2.65,-0.49,0.18,-1.13,0.22,1.48,3.13,1.90,2.91,3.86,4.04,3.76,3.69,2.70,0.46,2.11,-0.45,1.73,-0.61,2 --0.59,0.11,-0.90,2.62,5.15,2.82,6.70,4.69,5.16,3.29,3.26,1.24,1.65,1.99,-1.25,2.59,0.70,1.97,0.56,-0.51,1.90,1 --0.18,0.22,1.68,-0.98,-0.57,1.41,-0.66,0.21,1.69,2.01,2.17,2.11,4.98,4.81,4.42,4.10,3.65,2.80,0.44,-0.51,0.70,2 --0.80,0.75,1.73,1.09,0.71,3.20,1.87,-0.52,0.96,0.72,2.15,3.32,2.91,4.37,2.58,4.32,0.83,0.60,1.60,1.17,1.64,0 --0.17,-0.50,1.34,0.48,2.20,2.14,3.50,2.95,4.29,6.32,7.48,4.49,5.40,3.45,1.62,0.77,-0.38,0.46,-0.47,-0.05,1.60,1 --1.41,1.77,1.92,3.66,2.74,1.89,3.16,2.97,2.30,3.65,2.66,0.68,2.29,1.32,2.07,2.72,1.44,0.86,-0.00,-0.96,-0.18,0 -0.25,-1.88,-1.40,0.57,0.92,1.25,0.30,1.20,1.69,1.70,3.78,3.27,3.43,4.58,6.73,3.83,0.77,1.68,1.41,0.02,0.31,2 -0.42,0.46,1.63,2.56,3.17,4.02,4.41,5.08,1.83,4.73,4.16,3.88,0.64,0.57,0.31,-1.56,1.45,-0.61,0.02,1.30,-2.42,1 --0.61,-1.42,-0.93,-1.90,0.56,0.50,0.62,1.64,3.26,1.83,4.37,6.80,3.99,2.43,3.96,4.23,2.52,2.34,1.49,-0.93,-0.31,2 -0.50,-0.74,0.69,1.21,-0.47,1.26,1.35,0.32,1.78,1.95,3.35,4.37,3.82,2.05,5.28,2.65,3.04,1.67,2.44,0.52,0.53,2 --1.80,0.00,0.69,1.16,1.68,2.34,2.54,2.06,3.74,3.56,3.88,5.12,3.81,4.15,1.78,2.24,0.15,1.43,0.92,0.95,-0.21,2 -1.11,-1.25,0.16,0.62,0.90,0.18,0.64,1.88,-0.02,1.57,2.95,4.32,3.30,4.65,5.54,4.40,1.25,4.69,1.70,1.80,0.31,0 -0.16,0.95,0.32,1.58,0.95,1.30,2.71,-0.02,0.07,2.09,1.50,1.09,3.44,4.96,2.85,2.92,2.50,1.87,-0.01,3.13,0.58,0 -0.53,0.45,-0.12,0.22,-0.50,0.92,2.03,2.71,4.53,2.59,6.93,4.56,2.32,4.60,1.36,1.75,0.24,0.14,2.50,-0.90,0.06,2 --1.57,-0.68,1.36,0.55,3.18,1.99,2.46,1.30,-0.09,1.26,2.86,1.69,1.38,3.57,2.91,1.78,0.59,1.45,1.57,2.57,0.15,0 --0.20,0.41,1.57,-0.29,1.92,0.61,0.68,1.87,1.39,2.13,3.67,3.92,5.49,4.65,4.65,6.61,2.75,3.45,2.40,1.28,-0.14,2 -0.13,0.37,1.83,4.13,2.16,2.85,4.13,2.95,2.17,2.58,2.89,2.21,3.09,0.28,2.20,3.00,2.68,0.22,1.35,1.22,-0.03,0 --0.63,0.23,0.08,1.80,1.95,1.66,3.23,2.69,4.34,2.76,5.99,3.48,3.12,0.77,0.95,2.14,-1.31,-0.18,0.21,-1.14,0.76,1 -0.46,1.21,0.65,1.05,4.47,4.46,5.10,2.55,4.23,3.77,1.94,1.34,1.01,0.84,0.55,1.77,1.93,2.21,1.50,1.35,0.09,0 --0.03,0.87,0.97,-0.78,0.41,2.06,2.95,1.96,2.45,1.12,2.64,1.76,1.27,3.13,2.76,2.33,0.96,1.53,2.40,0.64,-1.45,0 --0.70,-1.25,3.31,2.24,4.60,2.67,5.56,1.96,1.91,1.38,2.71,2.69,1.36,2.48,0.24,2.42,1.05,0.97,0.12,0.47,-1.67,0 -0.68,-0.21,-1.23,-0.28,1.08,0.47,3.29,1.48,1.45,0.07,0.71,3.49,2.34,2.95,3.88,3.46,1.33,1.15,2.09,0.63,0.12,0 --1.58,2.09,1.38,2.14,4.06,3.92,4.74,4.37,4.93,1.20,1.65,1.80,0.53,1.89,-0.03,1.04,0.98,0.55,1.11,0.30,-0.19,0 --0.78,-0.38,-0.35,-1.00,0.37,1.72,1.42,3.55,2.94,6.02,7.17,5.13,5.17,2.41,3.24,-0.41,-1.02,0.71,-0.10,0.13,0.41,2 -0.26,-0.15,0.02,1.86,0.65,1.99,2.87,2.30,4.90,3.00,4.86,2.23,0.74,0.48,2.53,1.33,0.28,0.82,1.14,1.83,0.32,1 -0.38,0.65,2.83,1.74,2.58,3.79,4.67,4.82,4.89,4.10,2.15,2.19,1.60,2.19,2.54,0.44,-0.49,-0.26,0.36,-0.69,0.74,0 --0.02,-0.70,0.98,1.78,2.42,3.65,5.38,4.89,4.35,3.69,3.01,1.08,0.72,-1.40,-0.09,0.09,0.32,-0.21,-1.83,-1.49,1.12,1 -1.66,-0.02,-0.63,-0.00,-0.19,-0.03,1.90,4.74,5.17,3.09,6.10,5.10,4.14,2.61,3.32,1.56,1.39,-1.18,0.64,0.38,-0.56,1 -0.83,0.33,0.86,1.37,3.17,3.93,4.04,2.46,3.33,3.45,3.13,-0.90,2.70,1.74,1.28,1.73,0.98,0.96,1.13,-0.07,-1.27,0 -0.05,-0.46,2.11,1.94,-0.49,1.38,-0.39,-0.47,1.32,2.53,2.85,3.20,2.53,5.19,6.11,4.67,3.35,3.21,2.63,1.19,0.77,2 --0.41,1.48,1.83,3.34,2.29,1.52,3.99,4.97,3.42,5.05,4.72,1.09,1.21,2.17,1.30,2.04,-1.70,1.63,-0.26,-1.16,-0.05,1 -0.55,1.79,1.36,3.26,2.49,3.77,4.66,5.24,3.94,2.76,2.73,2.14,1.32,1.22,2.49,1.74,0.20,0.60,-0.28,0.40,-0.44,1 -0.52,0.29,-1.01,2.66,3.63,3.30,3.92,4.35,5.33,4.78,2.78,1.27,1.10,2.81,-0.19,-1.27,0.09,-0.67,0.94,-2.07,-0.52,1 --0.15,0.97,1.41,2.51,3.57,3.79,6.19,5.09,1.99,2.79,2.79,1.43,0.48,-0.80,1.54,0.91,1.51,0.97,0.59,0.03,0.50,0 -1.32,0.73,-0.86,-1.23,0.36,0.95,0.69,0.10,0.01,2.14,3.16,1.69,3.21,2.77,5.38,5.67,1.12,2.90,1.02,4.65,-0.90,2 --1.28,0.44,0.28,-0.30,2.41,-0.81,0.93,0.50,1.85,1.53,1.28,4.19,2.47,2.76,5.49,3.28,3.00,1.40,2.39,2.04,-0.63,0 --0.28,-0.11,-0.18,0.73,-0.74,1.32,0.43,-0.05,1.56,2.63,2.24,2.48,3.31,3.83,7.12,3.69,3.45,1.17,1.35,0.70,1.92,2 -0.51,2.16,0.87,1.81,-0.07,3.58,5.03,2.52,3.61,4.97,5.62,2.96,1.13,2.47,1.18,0.12,-0.35,1.00,0.17,-1.01,1.12,1 -0.66,0.83,1.29,-0.59,1.40,0.33,3.06,4.39,5.13,3.66,5.46,2.66,5.22,4.59,2.32,-0.30,1.33,2.16,2.17,0.05,-0.23,1 --0.57,0.61,0.61,0.48,-0.88,-0.38,0.81,3.13,2.79,5.24,4.54,5.49,4.87,3.15,2.14,1.88,1.59,0.81,0.23,1.66,-1.08,2 -1.15,1.16,-0.92,-0.02,0.86,0.63,-0.78,2.03,0.66,3.90,4.92,4.53,4.61,2.77,3.18,2.82,1.40,3.32,0.16,1.09,-0.76,2 --1.36,0.39,-0.71,1.50,4.03,4.61,6.23,3.01,3.63,3.54,4.01,0.69,1.29,0.83,1.25,-0.70,1.86,0.52,-0.63,1.90,-0.37,0 --0.40,-0.50,0.40,0.43,-0.43,-1.68,0.04,2.46,2.44,2.28,4.00,3.96,2.31,3.14,4.16,2.95,0.02,0.50,-0.32,2.79,0.45,2 -2.37,1.24,1.04,1.86,2.81,2.34,2.05,2.34,2.76,1.06,2.33,1.34,2.20,3.68,2.70,1.52,3.16,0.51,2.27,1.70,-0.79,0 -0.58,-0.18,0.97,2.94,2.35,3.19,4.18,0.68,2.31,2.65,1.63,2.06,1.79,1.62,2.04,2.82,3.27,1.42,1.76,2.12,0.18,0 -0.65,0.05,0.53,5.66,3.01,6.64,5.15,4.12,4.56,3.35,3.02,-0.53,1.26,-1.11,-1.57,-0.84,1.26,-0.22,-1.75,-0.14,0.39,0 -0.36,1.66,1.59,1.11,2.99,4.20,5.10,3.31,4.01,3.76,4.41,3.56,0.89,1.65,0.85,0.59,-0.69,0.60,0.20,0.64,-0.16,1 --0.61,0.10,0.48,0.08,0.29,3.30,2.18,4.83,5.02,3.19,5.01,2.65,2.25,2.59,-0.23,0.65,0.36,-0.33,1.49,-0.66,1.32,1 -0.96,0.28,1.14,0.87,-1.34,1.36,2.24,2.16,3.21,3.56,8.38,6.84,4.30,1.79,2.99,2.46,-1.25,0.62,-1.96,0.48,-0.28,2 -0.49,-0.12,-0.42,0.54,1.93,2.98,3.66,4.78,1.80,2.11,3.33,2.14,2.65,0.84,3.16,2.70,2.41,1.30,0.77,0.97,0.26,0 --0.31,1.49,0.86,0.36,3.01,2.81,3.42,1.63,2.30,0.89,0.62,1.72,2.32,3.16,3.85,2.83,1.75,1.71,0.21,1.28,0.78,0 --1.75,-0.77,-0.25,1.36,-0.70,0.76,2.84,1.15,2.16,-1.77,3.13,0.52,3.78,4.55,6.07,4.65,4.26,5.18,0.80,1.54,0.33,2 --1.20,1.14,0.01,-0.07,-0.48,1.63,2.70,0.24,1.49,1.11,2.87,4.98,4.76,4.33,2.20,4.01,2.60,1.24,-0.97,0.84,1.33,2 --1.17,0.42,0.06,3.27,1.24,2.11,2.86,3.14,5.32,4.45,5.71,4.64,3.08,3.29,1.62,0.57,-0.28,0.01,-1.24,-0.52,0.89,1 -0.62,2.03,2.53,1.19,3.24,5.13,5.51,5.25,4.80,4.86,2.64,0.92,-0.24,-0.26,0.79,-1.30,0.24,0.20,-0.73,1.36,0.93,1 -2.51,0.00,0.85,2.12,1.42,2.59,3.14,2.38,3.23,2.58,2.59,1.93,2.35,1.90,2.20,3.97,2.13,3.49,2.31,1.86,0.26,0 --0.82,-0.19,0.27,1.45,1.50,0.49,-0.88,0.74,0.40,2.38,2.07,3.24,4.84,5.42,5.67,4.68,4.96,2.56,1.36,1.32,0.12,0 -0.39,2.67,0.38,2.08,3.48,2.20,3.79,4.28,3.86,6.00,3.38,5.30,2.89,1.02,1.18,1.89,-1.76,0.46,0.40,0.51,-0.25,1 --0.82,0.14,0.17,0.81,0.18,2.40,1.87,2.61,0.23,2.52,2.30,2.67,-0.01,3.52,1.22,2.72,3.19,3.37,3.12,1.60,-0.33,0 --1.87,3.15,-0.08,0.78,2.66,1.62,4.64,1.59,2.65,-0.72,2.21,3.64,2.78,4.79,5.28,1.10,3.34,1.78,1.32,1.15,-0.71,0 --2.56,0.18,3.45,1.68,4.09,3.85,5.51,5.19,3.02,4.09,1.91,2.24,2.56,1.07,-0.97,1.20,-0.65,-0.68,-0.25,-0.71,0.65,1 --0.27,-0.26,2.37,1.79,2.48,3.46,3.16,2.99,0.62,2.06,2.24,2.87,2.36,0.44,3.42,-0.44,1.31,1.58,0.30,1.31,-0.20,0 --0.69,-0.87,-0.19,0.58,2.31,2.80,4.65,2.68,3.10,4.74,5.24,3.67,3.38,0.30,1.35,-0.02,-1.67,-1.33,-1.28,-0.47,0.66,1 -0.61,-0.46,1.77,-0.14,-1.54,0.64,3.73,2.81,2.75,4.78,6.39,5.63,3.18,3.09,4.21,1.15,-0.20,1.40,-1.42,-1.89,-0.75,2 --0.72,-0.01,2.10,1.42,3.22,3.18,5.91,4.89,4.16,2.93,1.67,-0.36,1.56,2.55,-0.02,0.42,0.46,1.59,0.11,1.51,-1.80,0 --0.68,1.57,1.30,1.09,2.93,3.20,3.93,2.08,4.01,3.37,3.05,2.25,2.10,1.24,1.12,-0.16,1.75,1.24,-0.12,2.17,0.98,1 -0.08,-0.27,0.38,1.11,1.29,1.05,0.11,0.77,2.61,2.65,2.33,3.81,2.56,4.45,4.82,3.30,3.18,3.33,0.73,0.17,-0.53,2 --2.52,0.11,0.38,1.98,-0.66,1.06,0.32,1.93,3.23,2.51,3.89,4.52,2.85,3.91,3.25,3.14,2.75,3.13,1.89,2.45,0.96,2 -0.68,-0.03,1.99,0.14,-1.35,0.05,0.52,1.25,2.01,2.46,1.73,4.17,2.10,4.78,4.04,3.31,3.45,1.00,2.30,-0.66,0.28,2 --0.83,1.43,-1.59,0.75,0.29,0.67,1.74,3.94,5.03,6.47,5.80,5.49,2.37,3.77,2.89,3.40,1.47,-1.16,-0.36,-0.04,-0.37,1 --0.05,0.59,1.44,0.10,4.25,4.25,4.13,4.05,2.52,2.94,2.05,2.24,0.37,1.32,0.16,1.60,1.41,1.18,1.56,-0.37,0.08,0 -0.09,0.96,2.55,4.53,4.35,3.15,6.64,4.79,4.24,3.57,1.47,0.95,0.61,0.42,1.13,1.36,1.19,-1.43,0.06,0.37,0.24,0 -0.77,1.89,-0.10,2.99,1.75,3.01,4.46,5.44,4.76,3.40,4.53,3.02,4.18,3.12,0.40,0.81,1.19,-3.19,-0.45,0.90,-2.61,1 --1.98,0.24,3.63,2.20,1.72,4.81,5.48,3.55,3.55,1.84,1.89,1.90,0.66,2.05,3.07,1.88,1.90,1.30,0.24,1.33,1.91,0 -0.88,2.71,0.26,0.02,1.03,1.73,2.08,3.31,4.33,5.97,5.40,4.19,4.20,4.14,1.82,-1.13,1.85,0.05,-0.21,0.56,-0.43,1 --2.01,1.38,3.15,-0.22,3.47,3.10,3.79,2.16,3.65,3.17,0.72,2.08,3.26,1.92,3.76,3.12,2.42,2.79,0.80,0.43,1.67,0 -1.12,0.42,-1.31,-0.08,0.01,0.47,2.48,1.76,1.66,3.73,5.05,6.68,4.68,5.16,3.30,0.41,0.58,-1.02,-0.22,0.68,-0.74,2 --1.10,-1.88,0.51,-1.04,0.59,0.47,1.64,0.16,4.27,3.84,5.36,5.28,2.16,2.72,2.47,0.07,1.94,0.29,-1.29,1.45,0.24,2 -0.71,2.71,1.82,4.07,4.94,4.04,5.71,6.08,3.56,3.66,4.21,0.55,0.33,-0.91,-0.29,-0.52,0.18,0.46,-0.51,0.50,-0.57,1 -1.56,0.24,-1.22,0.09,-0.53,1.41,1.44,3.50,4.03,4.80,4.88,6.36,4.25,3.35,1.23,1.75,-0.16,0.91,-0.38,0.75,1.54,2 -0.57,0.18,2.14,1.46,1.91,0.90,3.17,2.30,0.73,2.20,2.68,0.53,2.42,3.52,3.69,3.26,1.62,3.77,1.40,0.03,2.64,0 --1.32,-1.20,0.53,-0.55,1.50,1.98,3.63,3.60,4.16,5.06,4.38,4.19,2.05,1.09,2.70,1.43,-1.10,-1.21,-0.28,0.51,0.15,1 -1.09,-0.13,-0.81,0.56,1.35,0.33,-0.06,2.48,4.75,2.92,5.27,5.45,2.80,2.60,4.70,1.78,1.15,1.27,0.41,0.15,-0.05,2 -0.82,0.69,-1.22,2.28,1.71,3.50,3.76,4.00,5.63,3.37,1.66,1.94,1.39,1.93,0.68,-0.18,0.13,-0.20,-1.08,0.38,-0.06,1 -0.28,0.63,1.61,-0.98,-0.13,1.03,-1.43,1.60,3.49,3.35,5.01,3.22,4.90,5.22,3.65,2.95,3.66,2.50,1.12,0.11,-0.60,2 --0.15,2.14,2.24,2.05,3.22,6.64,3.96,6.34,5.18,3.21,2.57,2.00,-0.96,-0.44,2.24,0.27,-2.85,0.39,-0.03,0.56,-0.28,1 -0.60,0.10,-0.14,0.22,-1.43,1.17,3.52,2.21,6.55,5.02,5.42,6.23,2.66,2.66,2.79,2.69,-0.86,0.43,1.22,-2.12,1.21,2 -0.08,-0.49,0.71,1.11,-0.23,3.33,2.11,3.32,4.67,4.24,5.55,4.19,2.84,-0.34,1.86,0.66,-0.24,0.50,-0.83,-0.43,-0.13,1 -0.59,-0.76,0.20,-0.59,0.75,0.59,4.30,2.42,3.00,4.64,5.32,5.06,2.61,3.88,1.40,2.16,-0.02,0.89,0.19,-0.59,1.38,1 --0.50,-1.34,1.57,0.44,-0.40,-0.33,-1.20,0.30,1.16,2.71,1.06,3.41,5.26,3.74,4.81,3.72,2.67,1.71,1.73,0.04,0.42,2 -1.16,1.72,2.54,1.15,4.04,5.30,4.34,4.18,4.67,2.61,0.62,1.81,0.19,0.87,-0.14,0.72,0.93,-0.77,-0.08,0.74,0.38,0 --0.86,-0.72,-0.63,0.01,-0.26,-1.11,0.02,0.80,-0.19,-0.02,0.48,3.66,3.39,4.68,5.35,5.38,2.94,2.07,-0.10,0.41,-1.53,0 -1.51,1.37,0.53,-0.64,1.74,2.34,-0.26,2.12,0.11,3.81,4.84,4.72,5.59,2.92,5.48,2.08,2.08,-0.87,2.29,0.00,0.08,2 -0.36,0.74,-0.80,1.13,0.12,1.46,2.42,3.60,4.00,3.95,5.29,4.57,1.52,0.48,1.92,2.09,1.72,-0.34,-0.49,0.95,-0.53,1 --2.03,0.06,-0.17,-0.32,0.74,0.59,0.58,3.33,1.02,1.61,3.92,2.61,4.49,4.04,3.12,3.56,2.59,2.68,2.31,0.34,-0.37,2 --0.28,-0.40,0.96,0.87,1.70,3.45,4.67,4.61,6.03,3.54,2.62,1.39,1.18,3.81,0.29,-0.16,-0.13,-0.22,-0.67,-0.71,0.38,1 --0.15,-2.35,-2.02,1.30,-1.29,1.20,0.63,0.81,-0.77,3.50,3.69,2.23,1.86,4.90,6.27,5.50,1.46,3.11,1.53,-0.16,-0.32,2 --0.51,0.50,2.06,1.46,-0.09,1.97,3.13,3.39,6.10,4.67,3.60,2.44,2.07,1.43,2.18,0.70,-0.18,-2.39,1.28,1.24,-1.13,1 -0.79,0.22,1.49,2.36,3.48,2.95,3.56,1.90,3.71,3.64,2.18,3.97,1.42,2.90,1.76,1.10,1.29,2.45,-1.05,0.47,0.57,0 -0.42,-1.19,0.29,2.24,3.14,1.86,3.78,2.83,2.92,4.86,5.03,2.76,1.57,0.55,-0.09,2.07,0.46,-0.80,0.14,0.27,-0.06,1 -1.03,0.86,1.52,0.62,1.17,0.80,4.10,4.07,2.35,2.40,0.36,1.80,2.34,2.12,4.02,2.26,1.16,3.61,0.25,0.33,-0.20,0 --2.02,-1.17,-0.41,-0.41,0.03,1.36,1.97,-0.10,1.28,2.89,4.78,2.86,5.63,4.89,3.97,2.43,1.50,2.76,0.13,0.05,-1.24,2 --0.38,3.15,-1.61,1.81,3.03,3.24,3.15,3.25,2.41,5.26,4.09,2.54,3.59,3.18,2.49,-0.09,-0.09,-0.46,-0.46,-1.16,0.27,1 --0.20,0.57,1.40,1.54,3.76,2.92,4.43,3.76,5.14,3.00,6.02,2.36,4.51,0.86,1.28,-0.22,1.76,0.26,-0.19,0.12,0.40,1 -2.10,0.03,0.85,1.77,2.39,1.23,4.82,4.11,2.02,3.32,5.01,4.46,1.17,0.40,0.16,1.07,0.43,0.57,-0.29,1.64,-0.28,1 --0.23,0.39,0.82,-0.27,0.17,-0.25,2.70,2.43,3.96,4.01,6.30,4.97,4.49,3.73,1.88,0.65,1.06,0.21,1.50,1.38,1.65,2 -2.50,0.68,-0.20,0.02,2.07,-0.59,1.12,0.71,1.07,3.27,4.01,2.32,2.96,5.33,4.86,2.82,2.05,1.15,-0.31,0.66,1.96,2 --0.16,0.47,0.85,-0.57,0.50,1.83,2.03,1.61,5.16,3.97,7.89,5.56,3.72,2.42,1.23,0.55,0.77,-0.02,0.26,-1.02,0.77,1 --1.20,0.93,1.76,2.67,3.89,2.39,3.67,4.89,4.06,2.62,2.73,1.61,2.47,1.18,2.21,0.91,3.01,0.20,-0.63,1.44,1.29,0 -1.93,0.65,0.54,0.50,-0.47,0.65,-0.72,-0.90,1.11,2.15,2.75,3.66,5.37,6.06,5.40,5.14,3.84,3.98,1.71,0.33,0.33,2 -1.47,-1.08,1.98,0.91,1.01,1.25,2.74,2.17,5.25,3.76,4.67,2.97,2.19,2.95,2.11,0.76,-2.13,0.53,0.20,2.16,0.16,1 -0.14,0.65,-0.79,0.71,0.93,0.79,2.81,2.22,4.06,6.43,6.56,4.81,2.58,3.71,2.32,2.48,-1.76,2.34,0.23,0.09,-0.48,2 -1.03,1.29,1.47,0.39,3.09,3.51,5.46,6.32,5.08,4.48,-0.03,-0.29,-0.48,1.13,0.56,0.97,-1.05,1.03,-0.05,-0.86,-0.01,1 --0.14,0.38,1.34,3.57,2.93,4.58,3.67,2.82,3.15,3.80,1.70,2.58,-0.84,0.63,-1.00,2.16,0.87,0.69,-0.34,-0.12,-0.04,0 -0.06,1.10,-0.55,1.49,0.94,4.29,5.37,5.09,5.39,3.85,4.14,0.47,0.95,-0.36,1.59,0.08,-0.23,0.26,-0.41,-0.26,1.39,1 -0.56,0.65,1.17,0.80,1.52,-0.02,-0.32,-1.25,1.80,-0.07,1.83,4.37,3.79,2.84,6.07,3.79,2.48,1.72,2.06,0.77,-0.19,0 --0.38,-0.61,0.51,0.85,-1.10,1.02,-0.32,0.79,2.94,1.72,2.02,3.54,3.43,3.84,5.55,3.45,3.75,1.75,1.76,0.73,0.69,2 --0.75,0.45,0.06,1.21,2.98,2.04,5.44,3.18,4.33,2.92,3.04,2.59,0.71,0.26,0.89,0.22,-1.50,-1.16,1.18,0.51,-0.35,1 --0.64,-1.38,-2.45,-1.48,-0.25,-0.54,2.96,2.67,2.75,3.02,5.12,2.97,4.22,3.57,4.54,2.71,1.46,0.13,0.87,-0.56,0.40,2 -0.93,-1.39,1.24,1.24,-2.03,0.56,-0.42,-0.12,1.50,0.61,4.70,3.11,4.00,6.22,7.22,4.76,5.32,0.81,2.03,1.17,-0.75,2 --0.85,0.96,-0.70,-0.61,-0.67,0.01,1.85,1.64,4.17,2.52,4.54,3.57,3.52,4.92,6.22,1.49,1.88,0.09,0.46,-0.58,-0.85,2 --0.28,1.52,1.96,1.12,0.06,1.39,3.82,2.74,4.58,4.23,7.46,3.46,2.26,2.73,1.04,0.87,2.13,2.01,0.70,-1.50,0.19,1 --0.03,0.93,1.59,2.99,3.42,4.39,3.81,3.15,1.83,1.02,2.37,2.28,0.89,0.42,0.58,1.73,1.61,-0.70,1.19,0.49,-0.15,0 -0.40,0.29,-0.19,-0.46,-1.76,-0.26,1.72,2.26,0.31,3.17,4.12,4.31,4.07,4.25,1.13,3.95,2.41,0.41,0.62,1.02,-0.91,2 --0.03,2.54,2.62,2.44,3.41,5.67,3.71,6.12,3.09,2.68,2.22,0.83,1.69,0.43,-0.68,-0.12,0.85,0.32,-0.62,-0.24,-0.75,0 -1.74,1.49,-0.09,2.15,1.73,2.46,5.13,3.10,0.94,4.32,2.62,2.39,0.71,1.94,1.33,1.09,0.52,1.44,0.17,0.94,-1.68,0 --0.38,-0.09,-0.17,0.32,0.27,1.34,1.93,-0.92,2.02,3.64,2.10,1.69,3.67,3.69,4.74,3.13,3.06,1.25,1.22,0.85,0.50,2 --0.53,0.56,2.06,-1.11,0.43,1.05,0.92,0.71,1.11,0.76,1.41,2.54,5.32,5.38,5.77,2.04,1.65,1.39,1.42,0.19,0.28,2 -0.01,-0.90,1.22,0.31,-1.16,1.55,1.51,2.07,1.15,3.30,3.64,6.11,4.02,2.19,3.28,1.68,0.15,1.54,1.46,0.21,0.84,2 -1.47,-0.95,1.05,0.20,0.16,0.24,0.83,1.11,2.11,2.27,2.73,2.68,4.52,3.79,4.50,3.15,3.18,1.61,1.31,0.61,0.03,2 -1.98,-0.58,0.06,2.05,1.95,-1.45,0.45,-0.65,2.08,0.52,2.84,3.31,4.14,4.54,5.95,5.14,3.00,1.50,3.67,-0.60,-0.27,2 --0.62,0.75,0.20,0.48,0.89,0.98,1.85,3.40,3.76,4.47,6.78,3.69,3.29,2.07,1.47,1.54,-2.18,-1.56,-0.21,-0.41,2.10,1 -0.27,2.67,0.96,2.67,3.44,5.53,6.85,5.59,3.14,2.79,1.49,0.23,-0.13,0.35,0.92,-1.29,0.81,-0.04,0.20,-2.02,-1.57,1 -0.76,1.14,-0.18,-1.52,1.31,1.33,-1.13,3.87,3.76,5.35,5.83,4.79,3.72,4.54,1.61,0.85,0.07,0.06,-0.02,-0.17,-1.53,2 --0.67,1.67,1.55,4.06,3.58,5.12,4.88,3.94,4.76,3.84,2.58,1.61,1.51,0.74,0.81,0.85,0.09,1.20,1.44,-1.33,-1.26,1 -1.42,-0.14,0.61,1.17,2.70,1.35,3.66,2.17,1.65,3.00,3.70,3.19,0.66,1.95,4.26,-0.35,1.60,1.95,-0.70,1.17,-1.39,0 -0.19,-0.39,-0.96,0.09,2.04,-0.37,-1.30,1.19,2.95,3.59,1.89,5.61,2.85,3.97,5.30,3.68,3.61,0.64,2.65,1.93,0.36,2 -1.11,-0.89,-2.79,-0.41,0.59,0.15,3.55,3.48,5.43,6.22,5.21,2.81,3.61,0.62,2.58,1.02,0.50,0.16,0.33,1.72,1.36,1 --0.53,1.14,0.41,1.68,2.59,0.25,3.57,2.34,1.79,1.89,1.40,3.26,3.32,1.65,2.50,1.61,2.42,2.18,2.99,1.37,0.02,0 --0.94,1.39,1.69,0.60,3.45,2.99,5.45,4.05,2.39,4.87,3.18,0.35,3.02,-0.07,-0.95,-0.09,0.76,-0.59,-2.90,-0.72,0.26,1 --0.99,-0.48,0.99,-0.38,0.25,-0.07,3.08,2.28,2.70,5.66,5.40,5.19,2.96,4.58,2.87,2.07,0.84,1.24,1.87,0.21,1.25,2 -0.16,0.81,0.72,2.32,-0.26,2.43,4.33,3.89,4.25,5.60,3.89,4.37,2.82,1.99,0.65,1.96,0.38,0.44,0.83,1.86,0.65,1 -2.52,-0.32,-1.89,1.29,0.25,-0.26,-1.45,0.49,2.38,2.52,1.68,2.61,2.39,6.71,3.88,2.99,4.42,2.88,0.76,2.77,0.18,2 --0.79,2.45,0.70,0.20,0.54,0.61,0.88,3.22,1.53,4.12,6.56,4.69,3.91,5.31,2.53,-1.34,1.55,-0.73,-0.39,-0.34,-0.55,2 -1.96,-0.52,0.12,0.64,0.83,1.04,2.93,3.55,4.61,4.70,5.30,3.49,2.69,2.31,-0.05,0.01,-1.90,0.03,0.74,-2.09,0.47,1 --0.21,1.78,0.10,-0.36,1.20,2.75,0.68,3.51,2.00,2.27,3.51,2.72,2.56,2.11,3.73,3.45,1.64,2.62,2.88,2.10,-0.18,0 -0.25,2.29,2.25,0.82,2.50,4.56,4.39,4.96,2.99,4.19,0.91,0.74,0.23,3.16,-1.45,-1.22,-0.21,-1.40,-1.67,0.53,0.58,1 --0.71,1.57,0.26,-0.75,1.27,0.28,1.10,4.92,3.50,3.69,5.03,5.30,2.98,5.05,3.80,2.56,-0.98,1.17,-0.10,-1.80,-0.69,2 -0.16,1.43,0.74,2.47,0.81,0.99,2.54,3.63,2.56,1.09,2.56,2.99,1.04,3.61,4.43,1.94,2.16,0.11,0.99,0.24,-1.64,0 --0.76,0.51,0.82,0.83,2.20,3.88,4.26,3.97,3.61,4.50,3.39,1.21,2.22,0.12,-0.20,0.35,2.44,-0.43,-0.50,1.15,0.07,1 -1.27,-0.36,-0.15,3.61,3.10,3.13,6.50,2.48,2.65,3.96,3.37,3.68,0.59,0.39,0.33,1.08,0.52,-0.29,0.08,-1.59,-2.10,1 -0.97,0.97,1.69,1.92,4.20,3.22,5.18,2.77,2.43,3.46,-0.12,1.07,1.65,0.68,2.02,2.69,-0.02,1.49,-0.73,1.61,-0.19,0 -0.74,1.20,2.28,2.44,0.99,4.74,3.25,3.33,4.86,3.78,5.15,3.35,0.97,1.22,-1.16,-0.33,0.71,-0.68,0.81,-0.17,-0.14,1 --0.32,1.58,-0.91,2.38,0.50,0.67,-0.46,0.45,1.25,2.76,1.26,5.33,3.20,2.99,3.32,2.96,1.11,1.70,1.10,1.04,-0.36,2 -1.08,1.21,0.84,2.83,4.13,3.80,5.58,3.46,3.65,4.25,2.78,1.56,0.49,1.52,1.18,1.64,-1.63,-0.57,0.25,-0.52,1.00,1 --1.35,0.93,1.37,2.13,1.44,1.51,3.39,3.74,3.95,3.23,4.49,4.43,3.43,3.20,1.37,-0.46,-1.48,2.16,0.28,-0.45,2.36,1 --1.00,0.04,0.24,-0.39,-1.02,0.14,-0.26,0.51,-0.75,0.59,3.74,1.81,2.93,5.06,5.23,4.25,0.37,2.98,2.86,1.63,0.46,0 --0.62,-0.73,-1.33,0.57,1.24,1.26,2.26,2.70,2.00,1.58,3.32,1.62,3.04,3.31,4.42,3.72,2.27,0.92,2.04,-0.19,-2.13,0 --0.63,0.96,-0.60,1.58,-0.06,1.36,2.67,3.84,5.79,5.37,6.00,4.48,1.74,4.65,1.63,1.60,0.85,-2.67,0.50,-0.45,1.93,1 --1.82,1.99,1.33,2.37,2.53,5.14,3.51,3.69,4.71,2.12,2.23,2.81,1.21,2.43,2.92,0.85,1.43,3.11,-0.25,0.62,0.23,0 -0.57,0.23,3.42,2.97,2.68,2.61,3.67,1.95,2.61,2.91,1.45,1.18,1.20,2.87,1.24,-0.05,0.52,0.51,1.03,-0.23,-0.27,0 --0.98,0.67,0.09,0.88,0.91,-0.45,0.95,1.47,0.28,1.46,3.51,2.90,3.69,3.52,5.32,3.85,2.70,0.92,2.65,2.34,-1.05,2 --0.61,-0.73,-0.30,2.10,0.59,3.51,5.82,6.14,3.71,3.42,4.91,1.85,2.47,1.46,1.73,2.04,-2.09,0.45,2.07,0.58,0.32,1 --0.00,-0.30,0.33,1.77,-0.12,1.09,1.11,2.01,1.68,2.93,4.53,2.93,3.51,3.23,2.63,1.01,1.75,1.15,1.60,0.45,-1.19,2 -0.10,-0.10,1.60,3.49,4.42,6.39,5.44,4.98,3.87,2.34,2.42,-0.49,0.11,1.36,-0.58,-0.21,-0.49,-0.40,-0.40,1.58,-0.60,1 --0.48,0.28,1.19,3.06,4.61,5.92,4.69,5.65,5.79,1.74,1.85,1.08,-1.60,-0.46,0.26,-0.64,-0.61,-0.28,0.90,-0.62,1.17,1 --0.21,1.10,2.30,2.74,2.03,4.21,3.68,1.73,4.48,4.54,1.83,-1.04,1.45,1.95,1.74,0.20,3.14,0.62,-0.51,-0.24,-0.44,0 -2.23,-0.09,1.10,0.49,-0.50,0.30,-0.96,0.80,0.52,1.45,3.50,4.83,3.90,3.17,5.20,4.02,2.71,2.77,2.24,1.12,-1.28,2 -0.68,1.19,1.86,0.73,4.91,2.82,6.46,5.29,4.45,2.91,3.81,1.34,0.83,1.54,1.10,-0.52,0.23,-0.16,-0.75,-0.29,0.29,1 -0.65,3.40,1.86,2.36,3.22,3.22,6.83,3.59,4.24,3.14,1.68,3.12,2.03,0.21,1.58,-0.33,0.16,-0.59,1.41,-2.55,0.53,1 -1.91,-0.68,0.93,2.01,2.62,3.04,3.18,3.16,0.65,0.83,2.56,0.86,1.09,2.33,2.75,2.36,1.93,2.86,1.30,0.50,-0.86,0 -0.39,1.67,-0.35,2.28,0.82,2.52,1.30,4.00,3.73,4.19,3.82,4.66,1.31,3.91,3.66,0.29,1.52,0.72,0.14,1.62,-0.53,1 --0.54,2.21,2.91,3.18,4.54,6.26,4.96,3.52,6.88,2.19,3.82,1.51,1.22,1.74,0.81,0.02,-1.14,2.31,1.04,-1.11,0.26,1 --0.16,1.57,-0.64,-0.05,0.36,-0.04,-0.45,2.54,4.02,4.61,6.04,5.78,3.30,3.25,3.22,0.94,0.67,0.98,-0.31,1.16,0.38,2 --1.01,0.31,2.02,2.87,1.21,1.08,3.26,1.33,1.91,1.13,0.81,0.96,2.34,1.54,3.12,3.53,3.86,0.56,0.08,-0.16,-0.10,0 -2.08,-0.78,1.20,0.15,2.26,2.66,5.25,5.21,3.87,3.97,2.69,2.08,3.04,-0.40,1.57,-0.12,1.17,-0.63,-0.31,-1.39,0.20,1 -1.47,0.84,1.14,3.23,4.50,2.05,3.98,5.03,3.90,3.01,4.43,1.75,0.38,-1.08,0.36,0.75,-1.70,-0.38,-0.51,-0.51,1.41,1 --0.22,2.00,2.09,0.66,4.74,3.42,6.67,4.17,5.56,2.43,2.55,2.49,0.43,0.57,2.36,0.73,0.49,0.31,-0.79,0.74,0.41,1 --0.93,-0.23,-0.40,3.04,-1.71,1.80,1.58,0.97,-1.48,2.48,1.94,3.82,4.59,3.88,7.68,4.11,4.28,3.67,1.22,-0.03,1.06,0 --0.61,0.33,-0.15,0.53,3.37,1.33,4.13,4.74,3.40,2.82,5.11,2.95,2.78,3.04,-0.14,1.87,0.06,0.56,-0.36,-0.83,0.49,1 --1.51,0.13,-0.34,-0.18,0.36,-0.58,2.10,2.26,2.53,4.15,4.13,4.14,3.19,3.97,2.75,3.76,2.70,0.05,0.98,1.07,1.75,2 --0.29,-1.69,2.18,1.98,2.78,3.96,4.40,1.86,2.43,2.15,2.64,1.92,1.71,0.91,1.99,1.49,1.25,1.21,1.44,0.27,-0.25,0 -0.12,0.59,-0.72,0.14,-1.51,0.61,2.73,1.01,2.93,3.90,4.65,5.97,3.36,4.17,2.92,4.70,-0.06,0.75,0.95,-0.14,0.55,2 --0.01,2.75,1.20,-0.20,4.05,2.76,4.97,4.43,2.21,3.51,1.24,0.71,2.45,1.16,2.36,2.19,2.60,0.04,0.11,0.76,2.95,0 -0.46,0.30,-0.03,-0.03,-0.07,2.75,3.81,2.44,3.77,2.49,4.71,5.67,3.03,2.36,1.47,-0.36,-0.08,0.32,-0.70,-0.47,-0.48,1 --0.08,-1.16,2.75,2.20,0.06,1.94,5.98,2.30,3.61,2.79,4.23,3.06,4.62,-1.00,0.83,1.17,-1.00,-0.40,-1.22,-0.03,-0.06,1 -0.44,-0.42,1.08,0.23,0.69,0.81,0.55,-0.36,0.87,0.45,3.48,3.70,3.83,4.68,6.35,3.51,3.29,2.73,1.41,-1.01,-0.59,2 -0.37,-0.37,0.86,-0.93,-0.62,-0.57,2.14,0.69,2.69,1.99,2.97,5.59,4.53,4.94,5.63,2.84,0.91,0.67,1.50,-0.15,1.04,2 --1.76,-0.29,0.68,0.05,1.21,1.18,1.74,3.30,4.67,5.06,5.20,5.51,3.56,2.12,1.13,0.35,1.31,-0.13,0.05,-0.79,0.95,1 -0.54,-0.17,-0.46,-0.19,0.12,-0.61,1.87,2.85,2.34,4.39,5.62,3.97,4.34,1.56,2.16,2.97,0.05,1.79,1.33,-0.16,-0.58,2 --1.16,1.27,1.42,-0.60,1.09,0.35,0.27,-0.39,0.26,2.23,2.87,3.77,4.49,2.68,5.25,2.91,0.82,2.51,2.28,0.66,-0.60,0 --1.03,-0.20,0.94,1.09,0.99,1.66,3.42,3.06,2.70,5.57,5.08,3.81,3.47,2.05,1.28,-1.02,0.55,0.53,-0.86,0.99,0.12,1 --0.11,0.30,2.74,0.96,4.59,7.62,6.19,5.73,1.41,1.20,2.52,2.02,0.63,0.74,1.60,0.84,-1.23,0.70,-0.12,-0.62,0.98,0 -0.72,0.16,-0.13,0.79,0.01,-0.13,1.51,0.50,0.92,3.46,5.26,4.37,4.39,2.85,3.03,3.97,1.54,0.75,1.01,1.29,-0.23,2 -0.45,0.03,-0.96,-2.38,0.36,1.70,1.30,1.95,2.47,3.33,4.78,3.37,3.64,3.96,4.01,2.72,1.35,3.37,1.62,-0.12,-1.60,2 --0.02,0.79,-1.32,-0.17,0.95,2.31,0.12,1.00,0.26,1.69,1.72,2.97,2.20,4.61,6.44,4.66,5.46,3.55,1.55,0.67,0.27,0 -0.74,0.91,0.90,1.69,3.48,3.75,5.29,4.05,3.31,5.81,2.16,5.23,2.76,1.07,0.32,-0.85,1.70,1.45,-0.74,0.49,1.35,1 -0.55,-0.79,0.62,-0.34,-0.89,-0.47,0.76,2.69,3.58,3.18,3.57,3.95,3.03,5.44,3.49,2.55,1.30,1.91,1.30,1.50,1.47,2 --0.19,1.57,0.10,-0.54,0.12,1.19,2.21,-0.33,1.95,4.02,4.54,5.13,4.26,1.75,4.96,1.02,1.02,1.20,0.95,-0.77,-0.15,2 -0.08,1.83,2.13,5.75,4.72,5.40,5.86,5.09,3.76,3.34,3.72,1.95,1.17,-1.48,-1.32,0.76,-1.40,0.07,-0.68,0.32,-0.24,1 -0.79,0.86,-0.68,-0.92,-1.60,-0.11,2.09,2.18,4.40,5.69,4.87,5.55,5.16,3.20,1.73,0.24,1.39,-1.42,-0.25,-1.83,0.70,1 --1.28,1.03,0.38,0.67,2.87,0.40,2.42,1.55,2.24,1.13,0.56,4.12,2.13,3.23,3.27,2.22,2.82,-0.13,1.23,-0.82,-0.33,0 --1.25,2.03,-2.25,0.48,-1.13,0.84,0.22,4.18,4.45,4.50,5.95,5.29,3.82,3.47,1.99,0.64,0.71,-2.95,-1.72,-0.32,0.35,2 -0.67,0.59,0.26,-0.34,-0.19,1.07,-0.66,-0.02,0.76,2.57,4.75,3.89,3.34,3.67,5.66,3.81,4.23,2.11,1.06,0.27,0.58,2 --0.24,-0.73,0.12,1.46,2.68,5.14,4.40,3.02,3.53,4.94,3.57,2.69,1.15,0.84,0.96,-0.28,-0.73,-1.03,-0.49,0.68,0.05,1 --0.42,0.37,-0.18,2.25,0.42,-0.16,1.24,2.76,4.30,4.47,6.78,5.78,2.99,4.35,3.88,1.18,-1.37,0.52,-0.72,-0.13,0.77,2 -1.68,-0.38,0.32,0.90,-1.13,2.88,1.52,0.02,2.01,0.80,2.53,1.79,3.48,4.95,5.64,5.96,2.56,3.80,1.59,1.18,-0.79,0 -1.23,-0.48,0.70,0.06,0.51,-0.42,0.87,1.18,0.87,3.76,5.74,3.52,3.16,5.51,4.25,1.69,1.23,1.78,2.95,0.07,-0.33,2 -0.36,0.82,1.26,1.82,1.86,1.61,2.36,0.81,1.77,2.53,2.75,2.87,3.37,2.23,5.16,5.43,2.98,4.22,2.27,0.97,-0.86,0 -0.12,0.74,-1.08,-0.03,-1.70,-1.74,0.85,1.36,-0.83,2.39,2.52,3.42,6.13,4.18,7.16,1.99,4.58,4.24,-0.21,0.24,0.43,2 --0.91,-0.47,0.65,0.74,-0.24,-0.19,2.44,2.35,1.64,0.79,0.53,3.16,5.25,1.85,5.55,3.86,3.63,2.80,1.51,0.47,0.36,0 --0.88,0.51,0.51,0.64,0.71,-1.33,-0.20,0.48,0.51,1.66,1.32,4.89,3.38,5.64,5.27,5.89,2.71,3.92,0.23,1.15,-0.09,2 --0.63,-0.58,1.36,1.85,0.98,0.44,1.91,1.50,1.37,1.16,1.72,2.48,3.48,3.02,3.88,2.95,3.37,1.58,-0.74,2.03,-0.33,0 -1.23,1.31,1.16,0.07,1.66,0.65,2.01,1.79,2.31,2.91,3.18,4.34,4.07,4.51,3.61,4.02,1.00,2.45,0.09,-0.14,-0.78,2 --0.10,-0.07,-0.21,1.73,-0.68,-1.09,1.25,1.13,-1.66,2.26,2.61,3.30,3.36,5.06,5.91,6.05,1.19,0.42,3.33,2.30,-0.51,2 -0.55,-1.26,0.64,-0.93,-0.08,0.85,-1.05,1.45,2.21,2.16,4.50,3.62,3.28,3.04,4.12,3.66,1.50,1.44,1.92,1.49,-0.30,2 --0.68,-0.96,0.12,0.08,-0.34,1.02,0.43,3.65,2.84,2.72,4.83,4.98,4.65,1.29,3.54,4.38,2.42,1.92,1.32,2.05,-1.59,2 -0.25,0.70,4.14,1.24,4.36,4.93,5.60,5.50,4.58,3.51,-0.03,0.63,0.79,0.47,-1.11,1.27,0.24,1.82,1.10,-0.94,0.22,1 --0.19,1.21,1.95,2.82,3.37,4.26,6.37,3.41,2.18,1.90,3.37,0.13,1.83,1.88,1.01,0.74,0.24,-0.41,0.58,1.84,0.07,1 -1.51,-0.88,1.61,1.47,0.60,2.12,2.75,4.48,4.93,4.11,5.22,4.60,1.75,1.17,1.50,1.29,-0.96,-0.68,0.40,-0.25,-1.31,1 -0.89,-0.61,0.18,2.46,-0.43,1.13,1.35,3.04,4.48,4.17,5.15,4.53,4.62,4.37,2.27,1.75,1.11,-1.87,-0.37,1.67,0.59,2 -0.32,-0.78,0.47,1.65,1.42,2.76,3.20,3.20,2.43,0.32,2.67,1.94,2.57,2.27,2.24,2.83,0.45,0.84,-0.59,-0.29,0.32,0 -0.37,0.44,1.32,2.31,2.20,0.40,2.43,3.88,4.41,3.67,4.27,4.47,2.18,2.45,-1.28,1.36,-0.30,0.90,-0.51,0.31,0.01,1 --0.97,2.05,1.00,2.00,1.59,3.26,5.11,4.98,3.12,4.13,2.68,1.81,1.86,0.63,1.10,1.08,0.62,-1.02,-0.52,-1.76,1.26,1 --0.81,-0.36,3.08,3.45,3.41,4.99,4.51,4.04,3.60,3.24,2.67,2.83,-1.08,-1.22,-0.61,0.16,0.14,1.04,-1.89,0.81,-0.27,0 --0.81,0.20,1.88,1.45,3.47,2.96,5.51,4.42,4.52,2.51,2.71,0.91,1.96,-0.58,1.80,-0.68,-0.53,1.99,-0.42,0.18,1.29,0 --1.79,-0.05,1.03,3.34,3.51,2.05,4.07,2.24,3.71,1.54,1.41,1.30,-0.04,1.82,2.21,2.91,1.74,-0.17,-0.27,-1.56,0.44,0 -1.06,0.66,0.15,1.36,-2.14,1.62,-0.61,4.11,1.71,3.69,4.04,6.06,3.93,5.35,3.13,2.67,3.59,0.70,0.07,-1.09,-1.03,2 -3.31,0.29,1.60,-1.46,-1.16,1.06,-0.98,-0.87,3.22,3.17,3.21,2.53,5.38,2.65,4.88,4.89,2.67,1.46,0.79,-0.08,1.32,2 --0.71,0.15,0.85,-0.21,0.77,0.92,1.00,5.47,4.07,4.54,2.89,4.50,4.62,2.97,2.24,1.62,0.30,0.08,-0.09,0.81,-0.49,1 --0.83,-0.10,1.62,-1.39,0.78,0.06,1.99,-1.11,1.23,1.19,2.26,3.62,1.59,4.91,4.32,3.50,3.62,2.31,-0.45,-0.12,-0.16,2 --0.14,-0.26,-0.67,0.73,-0.13,1.05,1.49,-0.46,-0.33,2.23,1.02,2.91,4.70,4.84,4.21,4.16,2.52,1.41,2.13,2.46,-1.02,2 --1.60,1.41,-1.31,1.88,2.40,2.42,3.85,4.03,3.42,5.80,4.82,4.61,1.25,2.16,0.69,0.71,-1.28,0.51,-0.24,-0.04,-1.20,1 -0.59,-0.65,1.84,2.68,0.82,2.21,3.77,0.47,1.96,1.80,1.06,2.35,4.51,3.32,2.34,2.86,2.44,2.37,2.33,0.24,-0.82,0 -0.35,-0.29,-0.21,-2.05,-0.55,1.22,3.09,3.37,4.01,5.72,3.68,3.46,4.15,3.52,0.96,1.32,-0.40,-0.46,2.95,1.30,0.78,2 -0.91,-1.83,1.53,0.59,1.44,3.21,2.59,3.79,3.01,2.11,1.58,-0.72,1.88,2.47,3.66,1.41,2.80,0.36,1.58,-0.14,0.45,0 -1.90,0.24,1.22,2.24,1.92,1.18,5.09,3.67,1.42,1.78,-0.11,1.76,0.54,0.62,1.14,1.48,3.21,0.08,-0.48,1.36,-0.72,0 --0.73,0.33,-0.81,-0.26,-0.45,0.39,-0.70,0.76,2.02,1.37,2.20,2.85,4.67,5.25,6.76,5.24,3.61,1.99,-0.41,2.19,-0.57,2 --0.60,0.27,-0.21,0.65,1.10,0.68,1.91,0.85,-0.82,0.25,0.99,2.86,5.59,1.97,5.69,4.35,4.91,1.74,0.57,-0.46,0.44,0 -1.59,0.35,0.92,0.82,-1.63,-0.77,-1.31,1.38,0.87,1.55,1.04,2.89,3.56,4.77,7.41,4.27,6.61,2.47,2.01,1.36,-0.48,0 --1.10,0.48,1.25,0.36,-0.95,-0.75,0.61,3.21,2.79,1.94,3.89,2.91,4.18,3.14,2.12,2.91,1.90,0.15,1.26,-0.06,-1.52,2 -0.42,-0.37,-0.91,-1.92,0.38,0.46,1.36,1.74,1.96,3.70,6.82,4.77,4.60,3.89,2.46,2.39,2.46,0.28,3.47,-0.60,-1.00,2 --0.29,0.58,1.13,-0.92,2.32,0.41,-0.59,0.08,-0.85,1.17,2.70,3.60,4.11,4.38,4.87,2.44,3.26,2.66,2.28,1.23,0.61,2 -0.95,-0.79,1.64,2.23,4.72,2.83,5.75,4.06,3.47,4.63,2.89,3.08,0.33,0.16,0.67,0.20,-0.34,-1.11,1.58,0.68,-0.65,1 --0.99,-0.56,-0.06,-1.86,0.53,-1.72,1.05,1.92,2.27,2.90,4.87,4.31,5.09,3.62,2.72,-0.71,2.78,2.31,1.92,0.31,-0.61,2 --1.11,1.13,1.41,1.70,-1.69,0.86,1.19,1.57,2.49,3.56,4.17,3.94,5.09,3.78,3.87,3.68,1.42,0.44,0.97,0.96,1.48,2 --0.73,-0.15,0.19,-0.90,0.84,2.28,4.00,1.22,3.49,4.37,5.16,4.22,3.90,3.57,2.23,-0.69,-1.05,0.61,1.29,-1.12,-0.77,1 --0.40,0.52,3.01,2.40,4.43,3.41,4.21,5.09,2.93,2.61,1.15,0.79,0.36,2.20,0.61,1.91,-0.02,2.48,0.75,0.24,-0.08,0 -1.27,1.25,0.04,4.49,3.97,4.58,6.10,4.64,4.26,3.93,1.37,1.15,-1.04,-0.24,1.26,0.00,2.04,-0.29,-2.15,-0.16,0.00,1 --0.25,0.08,0.04,-0.27,-0.16,0.44,0.49,-0.43,1.31,1.93,3.25,2.51,5.14,3.14,5.20,2.36,2.61,2.87,0.53,0.43,0.20,2 --0.03,0.76,0.38,1.69,-0.69,0.80,3.00,2.11,3.25,6.14,4.81,3.56,1.66,3.01,1.22,0.36,-0.45,0.06,-0.06,1.38,0.54,1 --1.67,1.78,0.86,-0.51,0.75,0.32,0.93,3.55,3.84,5.44,5.58,5.37,5.41,4.99,3.84,2.92,-0.58,-1.44,-0.90,0.46,-2.07,2 -0.69,0.98,1.99,2.13,3.37,6.43,6.22,5.30,3.58,1.59,0.48,1.53,1.16,1.27,-0.07,0.24,0.25,-1.10,0.54,0.46,-0.03,0 -0.26,-0.13,-2.48,0.96,1.97,3.61,3.00,3.32,5.09,5.57,4.74,5.49,3.19,2.70,1.77,1.17,-1.01,-0.26,0.31,-1.24,0.17,1 -1.19,1.69,1.24,-0.69,0.20,0.79,0.15,-1.26,0.78,0.54,1.94,3.15,4.85,4.79,4.55,4.55,3.70,2.77,2.97,0.06,-0.21,2 -0.16,0.52,-0.30,0.96,3.66,0.43,1.74,2.48,1.46,0.36,0.78,2.29,2.56,4.24,5.15,2.98,3.27,2.60,2.98,1.01,0.07,0 -0.09,-1.78,0.87,1.50,3.21,2.98,4.59,3.90,2.92,3.66,2.45,1.54,0.13,1.47,2.90,-0.94,1.12,0.63,1.03,0.13,1.47,0 -0.51,1.02,-0.21,0.41,-1.22,-0.44,1.31,0.69,1.24,-0.07,3.29,3.63,4.53,5.30,7.01,6.56,4.38,3.14,1.14,1.41,-0.15,0 --1.65,1.39,1.00,2.58,1.21,2.56,1.71,1.85,1.67,0.47,1.01,2.46,1.31,3.58,4.13,3.54,3.67,2.43,1.16,-0.02,0.84,0 -0.43,0.62,0.45,0.98,2.51,4.62,6.21,3.13,1.54,3.68,4.03,0.99,-0.41,0.82,1.26,0.98,1.96,-1.15,-0.66,-0.28,-0.21,0 -0.07,2.13,2.11,-0.27,1.91,3.85,2.07,2.14,1.97,2.16,-0.12,0.87,2.15,1.80,4.64,2.92,2.15,1.22,3.65,-1.45,-0.55,0 --0.22,1.06,-0.72,-1.02,0.79,2.14,1.81,2.60,3.46,3.93,5.57,5.87,4.34,5.69,1.94,-0.29,-0.53,0.40,0.28,-0.63,0.98,1 --2.14,-0.08,-0.08,0.54,-2.75,1.47,0.72,2.82,3.31,2.02,5.74,3.89,5.87,3.39,5.23,2.87,2.93,1.11,-0.21,-0.42,-1.02,2 -0.20,2.53,0.59,1.96,0.15,1.87,3.57,-0.10,1.28,1.48,3.40,3.57,4.83,3.79,3.68,3.65,2.23,0.65,0.92,1.85,2.14,0 --1.90,-0.63,1.45,1.57,2.68,1.61,4.00,4.21,2.54,4.72,4.05,1.22,3.61,1.26,1.76,0.05,-0.08,-1.04,-1.70,-0.42,-0.47,1 --1.23,0.06,0.95,0.25,-1.13,2.59,0.72,1.10,1.99,1.17,2.25,3.67,4.62,6.77,6.26,5.78,4.54,2.88,2.11,-0.63,0.52,0 --0.41,-0.28,1.23,2.41,-1.49,0.02,0.18,1.58,1.17,2.15,1.79,4.72,4.54,3.41,5.55,2.90,2.00,1.97,2.09,-0.13,1.43,2 -0.46,0.67,-1.47,0.85,1.48,1.22,3.59,3.28,4.78,5.31,4.32,3.41,3.19,3.78,1.46,1.09,0.04,0.48,-0.27,0.27,1.62,1 --1.48,1.45,-1.07,-0.39,-0.16,1.04,2.74,2.33,2.05,4.75,6.38,5.76,0.83,2.06,1.26,3.44,1.66,0.10,-0.40,-0.50,-0.19,1 --0.51,0.47,1.31,0.05,0.88,0.41,2.76,0.90,0.50,3.33,1.12,3.23,1.70,2.04,5.80,2.98,3.15,0.44,3.11,2.84,-1.93,0 --0.40,-0.77,0.48,-0.44,1.01,-0.21,3.40,3.27,1.84,3.87,6.48,5.29,2.73,2.09,1.63,0.44,1.42,1.40,-0.17,1.33,0.01,1 --1.20,0.93,1.67,3.74,2.67,5.66,3.90,1.77,3.44,0.79,2.01,2.23,2.96,1.37,-0.02,1.85,-1.89,1.36,-0.11,-0.73,0.10,0 -0.07,0.06,0.83,2.18,4.38,5.63,6.98,4.79,4.33,3.67,2.59,0.47,-0.34,0.71,1.26,0.22,-0.68,-1.36,0.15,-1.53,0.50,1 --0.49,0.92,-1.58,-0.10,-1.81,2.28,0.41,-0.28,-0.94,1.45,2.14,3.08,4.49,5.60,6.41,2.35,3.73,3.46,-0.34,2.07,-1.53,2 --0.24,-1.56,0.91,3.27,3.97,4.47,4.95,5.65,3.26,2.13,2.96,3.31,1.25,3.46,0.12,-0.80,-0.50,0.54,-0.62,0.91,-1.13,1 -0.02,-1.22,-1.07,1.04,-1.58,1.33,1.03,3.79,3.75,5.23,5.82,4.45,2.88,3.29,4.66,1.24,-0.09,-0.61,0.53,1.45,0.57,1 --0.37,-1.37,0.14,-0.26,0.49,0.90,1.05,0.31,1.88,0.59,4.57,2.87,5.00,2.94,3.16,3.33,1.22,0.47,2.02,1.15,0.63,2 -0.61,-0.10,-0.53,-0.81,-1.10,2.35,-0.56,1.21,2.36,4.29,3.86,5.06,4.48,3.87,4.86,1.78,1.09,1.02,1.34,1.10,-0.79,2 -0.84,2.55,0.75,0.74,2.62,1.93,1.84,4.11,0.72,1.08,3.10,2.13,1.97,3.12,4.72,2.36,1.73,0.93,1.86,0.09,0.60,0 --0.70,1.88,1.93,0.42,2.28,0.22,2.05,1.32,2.90,0.58,1.41,3.08,0.99,2.18,3.17,3.93,2.03,2.83,1.31,-0.27,0.33,0 --1.05,-0.43,-0.13,-0.61,2.25,1.13,1.78,1.05,3.28,4.12,5.08,4.76,3.67,0.72,1.95,1.60,-0.17,-0.01,1.57,1.06,-1.36,1 --0.71,-0.43,-0.78,-1.02,-0.89,0.79,-0.37,1.45,1.80,3.60,2.61,3.54,2.12,3.71,4.85,2.80,2.06,2.03,-0.24,2.26,0.16,2 --1.61,-0.00,1.17,0.59,-1.59,-0.13,1.98,1.29,1.50,4.20,3.64,3.63,2.12,3.34,5.29,2.77,2.42,0.82,0.40,0.30,-0.59,2 -0.09,1.73,2.03,1.87,2.88,4.58,6.25,5.61,3.63,4.22,1.10,1.31,-0.14,2.40,0.90,-1.93,0.48,-0.26,0.95,0.51,1.25,1 -0.63,-0.82,0.49,3.51,1.97,1.86,4.30,5.42,3.59,3.72,2.70,4.35,2.19,1.77,2.32,1.10,0.49,-0.75,-0.07,0.15,-0.37,1 --0.17,0.03,1.01,-1.03,-1.08,1.22,1.18,3.08,1.54,4.47,4.01,3.26,3.13,4.00,2.39,-0.11,1.31,2.46,1.41,-1.73,-0.46,2 --0.71,1.80,1.52,-1.11,1.38,1.64,0.89,0.21,0.64,1.32,2.15,3.88,3.32,4.08,5.48,2.87,2.36,3.64,1.76,0.63,0.30,0 -0.86,0.19,0.09,-2.54,0.12,0.44,2.56,2.15,2.83,3.47,4.55,4.87,4.40,3.02,3.00,2.91,1.91,0.48,0.38,-0.05,0.86,2 --1.24,0.14,-0.62,-0.76,-0.33,0.49,2.19,2.92,3.81,4.92,5.63,5.53,2.43,2.03,1.73,1.81,2.04,1.69,-1.65,0.31,1.28,1 --1.10,0.83,1.86,-0.27,1.95,1.29,3.48,4.25,2.60,3.82,3.37,2.36,-0.54,1.47,2.70,-0.81,1.52,-1.58,-0.81,1.94,-1.57,1 --0.67,-1.12,-2.86,0.64,1.32,1.01,-0.59,2.00,4.05,2.45,3.39,3.64,3.65,3.02,4.75,2.77,3.29,1.01,0.90,0.85,-1.19,2 --0.08,1.80,2.73,3.10,4.00,2.37,4.94,5.52,4.40,2.86,1.75,2.52,2.02,0.38,0.39,1.97,0.61,0.88,0.67,-2.31,-1.75,1 --0.67,-0.40,0.55,0.92,0.92,0.74,2.42,0.08,1.46,0.56,1.96,1.14,2.48,3.04,4.82,4.27,3.66,2.18,-0.13,2.61,-0.87,0 -1.66,1.29,3.29,4.21,3.67,3.95,6.10,2.80,5.25,1.45,0.79,2.30,-0.62,0.15,0.57,-0.04,0.74,0.89,-0.03,-1.42,-1.76,1 --0.06,1.00,1.35,-0.64,0.98,2.95,2.18,4.40,2.78,3.63,5.15,1.18,1.82,0.97,1.84,0.42,1.76,1.26,2.34,-0.50,-0.57,1 -0.68,1.33,0.27,-0.00,-0.81,1.70,0.75,0.85,3.07,3.41,5.03,5.20,5.06,4.08,5.11,3.76,1.53,2.62,0.96,-0.70,2.47,2 --0.62,1.09,-0.55,0.54,0.52,1.24,0.37,-0.51,1.17,3.65,2.12,4.93,3.57,3.34,5.38,5.12,3.06,2.47,3.40,-0.23,0.26,2 --0.05,-0.34,-1.22,-1.05,-1.47,-0.30,2.37,1.73,3.83,2.53,3.62,5.79,4.19,3.71,2.00,1.02,-1.16,1.51,1.33,0.18,0.17,2 -1.01,2.75,-0.56,0.60,0.82,0.48,2.33,2.08,6.47,5.22,3.96,6.18,3.19,4.33,1.29,1.45,-0.48,1.51,-0.85,-0.64,0.51,1 -0.28,1.43,-0.28,1.65,3.11,3.36,5.49,6.04,4.03,3.97,3.06,1.45,1.68,1.18,-0.62,-0.09,0.82,0.52,1.30,0.85,-0.54,1 --0.35,0.98,1.07,3.52,3.14,4.20,5.41,3.76,1.02,2.41,2.70,2.22,1.07,1.91,0.60,1.27,0.85,1.12,0.42,0.42,1.08,0 -1.77,-0.44,1.07,3.49,0.72,2.50,2.81,3.38,1.69,1.14,1.36,3.15,2.76,1.64,2.19,2.51,0.70,0.15,0.03,2.13,0.25,0 -0.63,0.71,1.18,0.23,0.11,4.37,5.97,2.71,3.01,4.34,4.30,4.34,2.41,-0.64,1.23,2.33,-0.77,-0.47,0.42,0.07,-0.70,1 --0.40,-0.42,1.18,1.49,3.07,2.79,4.44,3.65,3.59,2.15,1.81,3.56,0.33,2.77,1.15,1.71,1.55,1.45,0.42,-0.15,0.34,0 --1.91,-0.19,-0.76,-0.01,0.11,0.92,-0.24,2.01,2.20,4.33,5.53,5.51,4.43,2.63,1.62,0.59,0.73,1.49,0.18,-0.90,0.96,2 -0.73,0.51,-0.07,0.57,0.65,1.28,-1.31,1.09,-1.86,0.55,1.64,2.62,3.30,4.16,6.17,5.50,4.38,4.47,2.14,0.33,0.06,0 -0.51,-0.41,-0.17,1.39,2.36,2.41,3.64,4.20,4.54,4.90,5.38,3.99,3.63,1.36,-0.44,1.94,-0.30,-1.05,-0.05,0.51,-0.91,1 --2.84,0.75,1.21,2.19,3.53,4.65,5.70,6.23,4.89,2.07,2.27,0.49,2.12,0.58,1.03,0.38,0.33,-0.41,-0.53,-0.49,-0.09,1 --1.72,1.04,1.77,3.57,4.21,3.52,3.44,4.13,2.21,2.71,3.78,2.24,-1.33,0.16,-0.50,-0.26,-0.49,-1.13,1.26,-0.40,1.54,0 -0.03,-1.45,-0.45,-0.63,-0.86,1.77,-0.44,-0.78,3.71,4.34,5.00,3.60,4.85,2.75,4.07,3.48,0.75,2.59,0.52,2.29,-0.10,2 --0.12,-0.73,-0.37,1.16,2.01,0.25,2.20,-0.07,-0.09,1.18,3.31,1.79,3.82,5.08,5.84,5.75,6.74,4.23,0.45,0.02,1.42,0 --0.81,-0.10,0.07,1.43,-0.02,1.79,3.65,2.57,2.59,2.39,1.01,1.61,1.64,1.35,4.03,3.67,2.87,2.77,0.33,1.39,0.51,0 -0.26,0.89,2.00,2.04,2.84,3.90,1.29,3.06,3.05,2.94,3.21,1.53,0.51,2.65,0.49,2.09,1.91,0.62,-0.96,-0.24,0.99,0 --0.88,-1.90,-0.26,1.66,-0.52,0.26,2.21,4.98,5.54,4.98,4.49,3.55,1.81,1.63,-0.63,0.63,-0.77,0.95,-2.14,0.62,1.10,1 --0.95,2.83,0.90,0.19,1.18,-2.06,0.60,0.30,-0.44,-0.47,0.64,2.68,5.47,4.46,6.35,4.81,3.63,3.09,1.40,1.64,-1.63,0 --0.20,0.49,-0.10,0.69,-0.10,-0.60,0.80,0.20,1.42,2.01,3.10,3.95,3.40,4.19,2.98,2.68,2.09,0.96,1.35,2.71,1.72,2 --0.76,1.04,-0.63,0.42,-0.82,-0.27,2.06,1.95,0.96,2.28,2.50,4.17,3.49,3.50,3.96,4.01,0.95,1.29,1.64,-0.24,0.36,2 --1.13,0.28,2.59,0.92,3.02,3.62,1.34,1.83,2.18,4.12,0.95,0.84,2.99,0.19,2.50,2.80,1.41,1.89,1.66,0.73,1.02,0 --0.11,1.49,0.75,1.90,3.53,5.70,4.04,2.27,0.35,2.20,0.11,0.79,-1.30,-0.71,0.55,0.88,0.82,-1.66,0.71,1.40,0.11,0 --0.50,1.62,3.09,1.12,3.36,5.30,5.34,4.79,1.58,1.90,2.85,-0.55,-0.24,1.26,2.05,2.32,-0.83,-0.85,-0.85,-0.94,0.12,0 -0.46,0.27,1.54,2.75,4.47,4.97,4.66,5.54,1.62,2.64,1.32,1.65,0.06,1.73,0.19,-0.74,-0.09,0.38,1.47,0.98,-0.37,0 --0.97,0.52,1.23,2.49,3.52,5.08,4.57,3.16,3.21,2.59,1.26,0.52,0.67,1.17,0.06,0.47,-0.19,0.04,-0.19,-0.84,-2.22,0 --2.06,1.10,1.98,2.03,4.15,3.11,5.82,3.20,4.28,4.49,3.06,1.26,1.33,1.67,0.92,-1.65,1.16,0.55,0.15,1.30,0.36,1 --0.59,-0.02,0.72,3.06,2.45,4.01,6.30,3.51,2.31,3.98,3.44,0.65,0.65,-0.05,1.32,0.12,0.50,-1.84,-0.07,0.45,0.31,1 -0.41,1.85,1.51,1.60,2.45,2.89,5.45,3.17,3.01,3.73,2.86,1.87,0.35,3.15,-0.30,3.09,2.48,2.66,0.62,0.09,0.93,0 -0.84,-0.63,0.86,0.57,1.17,1.61,3.44,3.06,3.25,3.33,6.04,3.23,3.33,2.75,1.24,2.16,0.39,0.14,-0.14,0.29,-0.96,1 -0.09,0.30,0.12,0.86,1.13,3.00,2.23,4.04,3.79,1.53,1.39,3.41,0.14,0.73,2.03,0.76,1.41,-0.66,0.41,0.78,-0.38,0 -0.72,-1.39,0.19,-0.73,-0.32,-0.02,0.15,2.65,2.40,1.27,6.34,3.65,3.13,4.37,3.18,2.32,0.52,1.45,-0.62,1.01,0.68,2 --0.18,1.38,0.91,2.57,2.25,3.61,2.78,3.70,3.15,3.79,0.95,0.68,0.75,0.08,3.71,1.01,1.53,-0.07,1.11,0.27,0.82,0 -0.74,0.22,-1.22,0.53,0.99,1.46,3.03,2.42,3.59,6.10,5.94,4.10,3.84,2.98,0.99,0.88,1.37,0.97,0.07,-0.88,0.66,2 -0.28,-0.19,1.95,2.01,2.54,4.64,3.90,3.63,2.11,1.48,0.49,0.66,1.17,3.08,1.82,-0.12,1.57,1.29,1.43,0.71,-1.47,0 --0.30,0.37,3.16,2.05,3.89,2.86,7.74,7.25,2.79,2.82,2.85,0.64,0.65,0.66,0.41,-1.15,-0.47,-0.71,-0.45,-0.45,-0.16,1 --1.17,-1.60,-1.60,-0.00,1.32,0.65,0.40,0.62,0.93,0.31,1.92,2.55,4.59,6.23,5.59,4.76,4.06,3.41,1.77,1.09,-0.23,0 -0.91,0.46,-0.32,-1.08,-0.81,0.00,0.79,3.93,3.33,4.01,3.49,3.46,4.04,3.27,4.25,2.89,2.07,2.15,-1.36,1.19,-0.52,2 --0.35,2.38,1.35,3.64,3.35,5.47,6.22,5.04,3.43,2.91,1.01,0.37,-0.73,-0.53,0.39,0.21,-0.71,-1.01,-0.79,0.34,-0.70,0 -0.09,-1.20,1.08,0.49,1.09,-1.30,0.77,-0.20,2.14,3.64,1.71,4.51,4.02,3.76,5.11,2.45,2.50,1.70,1.56,1.64,0.42,2 -1.56,0.26,-0.56,-0.45,-0.09,1.59,0.90,-0.54,-2.60,0.75,0.86,1.31,2.41,5.23,4.33,3.92,3.98,1.50,2.24,-0.81,0.95,0 --2.01,0.76,-0.16,0.27,-0.63,-1.14,0.55,0.78,1.06,2.98,3.02,3.62,3.29,5.42,4.08,3.57,5.27,4.00,2.28,-0.25,1.31,2 -0.15,-0.09,1.02,0.34,1.00,0.16,0.46,3.68,2.62,5.95,7.57,5.55,5.50,0.58,2.92,0.37,-1.25,-0.16,-1.60,0.47,0.19,1 -0.16,3.38,1.29,3.19,3.73,3.90,5.19,3.65,2.21,3.96,2.19,2.55,0.68,-1.22,0.47,-1.93,-0.04,0.01,1.42,1.48,-1.36,0 --2.95,0.22,-1.43,1.88,1.35,5.11,3.13,5.36,4.13,4.41,3.15,2.77,3.17,1.20,1.05,-0.94,-0.23,-1.39,-1.19,-0.62,-1.07,1 -0.07,1.73,-0.30,0.92,1.84,2.71,1.15,-0.23,1.73,2.13,3.33,3.11,4.10,3.91,4.31,3.20,2.71,2.54,2.23,1.14,0.76,0 -0.87,0.00,-0.51,0.05,-0.07,1.81,1.57,2.27,2.18,1.57,5.06,4.83,4.48,2.53,3.18,3.56,1.13,0.49,-0.09,0.31,0.72,2 --2.13,0.60,-0.51,-0.71,-0.74,-0.79,1.42,3.01,-0.37,2.58,3.92,3.11,5.12,4.17,5.00,3.74,1.94,1.83,2.92,0.80,1.84,2 -1.86,0.03,0.84,1.81,2.35,1.95,3.78,3.25,3.73,4.22,3.64,3.78,1.60,2.25,2.39,1.63,-1.35,-1.09,0.57,0.43,-0.31,1 --1.66,-0.13,1.12,1.53,3.71,2.42,6.84,6.06,2.33,2.07,2.91,0.67,-0.86,-0.02,2.30,0.37,1.50,1.11,1.31,0.61,-2.05,0 -0.61,-0.26,3.00,1.77,1.66,2.22,3.76,2.84,1.25,2.52,1.54,3.52,0.91,0.69,-0.29,0.96,0.27,1.00,0.16,1.46,-0.93,0 --0.86,0.73,0.89,-1.59,-1.45,1.42,2.07,2.61,3.57,2.31,4.74,4.73,5.69,2.52,3.21,-1.26,0.05,-0.08,-0.27,1.29,-0.22,2 --0.60,0.08,2.31,0.94,2.45,6.63,7.52,4.68,3.61,2.25,0.78,1.81,-0.08,-0.08,0.14,2.29,1.81,1.80,-0.81,1.26,0.70,0 -1.42,1.35,-0.14,-1.02,0.66,-1.49,1.65,2.59,4.11,4.11,5.16,3.60,4.51,1.99,1.83,0.49,2.90,-0.90,0.76,-1.72,0.84,2 -0.31,1.74,0.16,1.97,2.13,3.33,2.47,1.42,2.80,1.19,3.41,2.16,2.62,3.14,1.51,3.85,2.66,1.36,2.01,0.33,-0.04,0 --0.07,0.48,0.01,-0.91,0.51,0.93,-0.59,1.48,1.74,0.50,4.47,2.71,3.59,4.90,4.47,3.00,2.54,2.25,0.26,0.89,-1.58,2 --1.31,-0.43,1.57,-0.74,-0.22,2.15,2.18,3.03,4.33,6.20,5.80,3.84,2.43,4.49,1.13,0.20,-0.64,0.92,0.17,-0.57,1.58,1 --1.10,2.56,2.08,3.01,3.90,6.13,5.34,4.56,4.83,2.59,2.60,0.93,-1.05,-1.71,1.02,-0.42,-0.46,-0.28,-0.08,-0.81,0.77,0 -0.21,1.25,0.04,0.34,0.40,-0.10,-0.01,0.07,0.40,1.33,1.59,3.57,2.86,6.60,6.54,3.94,2.26,3.44,0.42,0.25,0.61,0 -0.20,1.35,1.44,2.29,0.79,3.52,3.91,4.18,3.88,4.44,4.16,1.16,2.08,0.25,0.39,0.49,0.23,-0.32,-1.17,0.71,0.64,1 -0.94,1.27,1.53,-0.15,1.48,4.42,1.82,6.19,4.28,4.95,3.50,4.50,2.06,1.19,0.83,-1.08,-0.52,0.99,-2.08,-0.46,0.01,1 --1.19,0.58,-0.72,-0.99,0.92,1.74,0.17,3.54,3.79,4.23,5.28,3.68,4.37,2.69,1.19,1.29,0.74,-0.58,0.81,1.04,-0.87,1 --0.01,-1.21,0.61,-0.02,0.38,3.04,3.31,3.84,3.47,6.62,3.80,4.45,3.98,1.11,0.24,0.67,-0.84,2.49,0.33,0.95,0.61,1 --0.33,-1.88,-1.13,1.78,1.25,0.78,-0.03,0.59,-0.74,1.73,0.94,3.07,3.32,4.85,4.37,4.07,3.71,3.32,2.52,-0.85,-0.54,2 --0.64,0.47,1.24,-0.05,-0.08,0.91,0.92,1.77,0.19,2.57,2.63,3.91,3.88,5.56,5.37,3.20,2.13,1.78,1.11,1.38,-0.52,2 -0.36,-0.21,0.46,-0.23,-0.24,-0.01,-0.71,0.59,-0.52,2.86,2.24,3.49,4.05,5.00,3.21,4.50,1.38,1.42,1.16,0.68,-0.29,2 -1.67,1.70,0.39,-0.28,0.85,0.39,3.66,5.51,2.54,4.47,5.18,1.05,1.65,2.10,0.23,0.65,-0.79,0.17,0.27,0.62,-0.32,1 --0.80,0.40,-0.16,1.39,0.54,2.86,2.12,2.42,0.82,3.31,-0.34,2.87,4.23,4.84,6.34,3.76,1.52,1.71,2.50,0.57,-1.53,0 --0.88,0.45,0.01,-1.89,3.25,-0.36,0.69,-0.47,1.26,0.98,2.28,3.07,3.46,4.77,4.30,4.72,3.19,1.65,0.88,0.86,-1.80,2 -0.58,-0.24,0.24,-0.75,-1.41,1.07,1.78,3.54,1.97,3.02,2.46,2.12,3.56,2.78,4.16,5.30,2.85,3.00,1.63,1.79,-0.98,2 --0.03,0.14,2.00,3.27,0.34,2.14,2.02,1.22,1.82,0.47,4.74,2.33,2.28,2.63,3.81,1.69,2.82,2.03,1.30,-0.67,0.57,0 -0.18,1.25,2.09,0.72,1.22,2.69,3.77,3.21,6.49,3.71,3.72,3.42,3.62,0.35,1.69,1.23,0.22,0.16,-1.07,0.73,-1.02,1 -0.43,-0.60,0.15,-1.02,-0.28,2.95,3.55,2.02,3.16,4.90,3.49,5.97,5.00,3.39,2.88,1.21,1.55,0.45,1.45,-1.23,0.32,2 -0.80,-0.43,0.57,-0.21,0.79,0.81,1.81,-0.65,0.84,1.12,2.69,2.79,3.38,5.35,5.28,3.25,5.05,2.24,2.05,0.56,0.81,0 --1.04,0.59,1.07,-0.39,0.46,-0.92,1.43,4.87,4.33,6.03,4.70,5.71,2.75,2.61,2.68,1.54,1.44,-0.62,-0.25,1.47,-0.39,2 -1.31,-0.25,2.02,-0.27,0.92,-0.82,-0.75,1.76,-1.13,1.29,1.93,3.09,4.78,5.07,5.00,2.97,4.80,3.70,3.30,1.29,-1.06,2 -0.29,1.66,0.33,0.97,1.72,2.57,2.61,2.01,1.19,3.02,2.56,2.37,0.93,1.40,2.72,4.01,2.11,1.81,0.51,-0.25,0.55,0 --1.61,-0.29,1.24,2.58,3.28,2.94,4.13,4.52,2.56,1.88,2.84,1.94,1.79,-0.14,1.86,0.46,-0.36,0.23,-0.09,0.05,2.40,0 -1.01,1.25,1.59,0.86,1.65,2.51,3.98,4.47,3.43,5.26,4.47,3.10,1.60,1.43,0.10,1.63,-1.15,1.73,-1.53,-0.13,-1.68,1 --0.22,-1.58,-0.18,0.46,0.54,0.93,1.70,-0.27,1.33,0.24,3.13,3.49,2.67,2.56,5.88,2.91,2.79,1.61,1.97,2.36,-0.76,0 --1.74,0.98,2.28,1.64,1.74,6.35,4.11,3.80,3.80,3.61,1.89,3.43,0.78,0.59,-0.69,-0.31,0.29,0.76,-0.60,-1.44,1.43,0 --0.42,0.42,-0.43,0.60,-1.05,0.34,1.75,0.71,1.09,-0.79,1.17,5.27,3.49,3.54,4.50,4.08,3.38,2.72,0.21,2.36,0.83,0 --0.11,2.26,0.23,-1.10,-2.40,1.97,2.00,3.45,3.65,4.96,5.88,4.77,1.84,2.69,1.56,1.28,-0.31,1.93,0.42,-0.04,-1.07,2 -0.90,0.26,1.19,1.08,3.97,3.40,6.14,4.82,3.67,3.38,3.05,1.16,0.21,1.32,0.18,0.26,0.08,1.96,0.02,0.18,-0.16,1 -0.10,-0.14,0.41,0.05,0.64,1.45,-0.41,-0.21,0.07,0.96,2.69,0.25,3.03,1.95,4.40,4.65,4.97,0.84,1.43,2.76,-0.78,0 --0.64,1.04,0.98,1.59,1.70,1.95,4.82,1.72,4.82,2.46,4.39,4.01,2.63,2.54,0.45,1.51,-0.82,1.15,2.60,-0.99,0.17,1 --0.95,0.49,1.01,-1.76,-0.54,0.37,1.15,-0.66,0.73,1.46,2.04,2.04,4.05,4.19,7.38,5.78,5.80,4.35,1.59,2.63,0.17,2 -0.40,0.09,-0.13,-0.07,2.09,2.28,2.21,1.75,1.95,0.82,-0.19,2.39,3.25,3.51,4.30,4.77,3.11,1.96,1.73,0.52,-1.31,0 --0.50,0.52,-0.94,2.29,0.46,0.44,1.58,3.03,3.70,3.41,4.13,3.48,2.28,2.88,1.82,0.85,0.08,0.04,0.09,-0.03,1.27,1 --1.18,1.94,0.02,3.15,4.62,5.18,6.21,4.26,4.88,1.52,0.71,1.01,1.14,-0.66,0.57,0.59,1.01,0.59,0.26,2.29,-1.69,0 --2.55,0.64,0.10,0.75,1.05,2.26,3.05,3.05,3.33,3.42,2.79,1.69,3.21,1.74,3.14,1.41,2.31,1.01,-0.18,0.79,-1.35,0 --0.46,-0.62,1.18,2.84,2.27,5.11,5.06,3.43,4.26,3.72,2.04,-0.79,0.39,0.68,-0.75,0.47,0.44,0.19,0.49,0.12,1.47,1 --0.16,0.79,-0.01,0.17,-0.90,-0.03,0.36,1.42,1.65,3.77,4.04,3.60,2.44,4.48,5.12,3.46,2.65,2.43,0.28,1.91,0.34,2 --0.57,-0.57,0.29,2.54,0.82,3.68,3.33,3.68,4.84,3.39,3.08,3.57,1.37,0.08,0.87,1.73,-0.90,-0.75,0.88,-0.35,0.84,1 -2.85,-1.73,1.03,1.57,-0.30,1.99,2.04,-0.15,0.93,2.85,3.39,4.61,5.12,4.87,4.20,2.60,2.15,0.73,1.90,0.42,0.35,2 --0.52,2.01,2.39,4.21,3.57,4.13,6.00,4.77,6.54,3.34,3.17,3.50,1.08,0.19,-0.68,0.07,-1.22,0.03,0.89,0.94,-1.11,1 -0.28,0.42,1.03,1.04,-0.31,1.58,-0.15,-0.18,0.85,2.16,0.90,0.71,3.43,6.82,5.30,4.90,3.87,2.13,1.83,1.05,-1.06,2 --0.08,-0.16,-1.09,0.06,1.86,0.60,0.46,1.78,2.71,4.96,4.94,5.57,3.29,2.61,2.63,2.20,1.76,-0.12,0.64,-0.55,1.07,2 --1.99,-0.94,1.58,1.48,1.66,2.10,2.55,1.89,0.39,1.59,1.27,2.61,-0.66,3.42,2.75,3.11,3.86,2.15,0.60,0.66,-0.59,0 -0.82,1.43,2.18,2.10,3.16,4.66,4.20,5.64,3.15,3.91,1.67,1.06,1.87,0.40,0.62,-0.67,0.99,-0.42,2.06,-0.38,0.97,0 --1.97,0.71,0.46,-0.60,2.79,2.63,2.84,4.40,3.13,1.98,-0.06,0.93,0.58,2.47,-0.27,1.46,0.65,1.65,0.35,-0.21,0.81,0 -0.60,0.20,0.09,0.30,1.46,3.99,4.12,4.03,4.54,4.47,5.10,4.49,1.62,1.23,1.17,0.76,-0.23,-0.80,-1.70,-0.27,1.42,1 -0.57,2.50,0.87,1.84,2.72,4.53,4.27,3.69,2.84,3.13,2.33,-0.15,1.53,1.24,1.77,0.62,1.42,0.42,-0.15,-1.25,0.58,0 --0.53,-1.98,-0.77,-0.18,0.06,0.44,1.75,0.02,1.50,4.72,4.28,4.89,5.50,5.48,4.29,4.76,3.01,3.16,0.91,0.86,-1.24,2 -0.50,-0.73,-1.06,-0.08,1.39,-0.33,1.13,-1.50,-0.49,0.41,3.04,2.40,2.27,3.97,5.83,4.64,5.30,3.02,3.01,1.10,0.70,0 --0.00,1.46,0.17,-0.15,0.89,2.05,2.38,3.30,2.75,1.49,2.89,3.18,2.67,3.87,0.60,2.08,4.81,0.67,0.27,3.19,2.04,0 --0.13,-0.36,2.00,2.33,5.48,2.57,3.24,4.77,4.90,2.15,1.12,3.49,1.72,1.84,0.42,0.25,1.96,2.60,-0.26,-0.44,1.13,0 --0.78,0.84,2.53,1.91,1.02,2.49,3.16,1.95,1.64,-0.14,-1.48,1.69,1.69,2.48,4.23,4.36,1.77,1.99,2.47,-0.75,-1.00,0 -1.04,0.13,2.29,2.31,2.39,1.94,5.73,3.89,2.57,2.48,1.75,2.03,0.14,2.72,2.01,0.76,0.98,1.01,0.04,-0.56,-1.35,0 -0.19,0.38,2.21,1.85,0.35,-0.44,1.83,4.35,2.88,4.04,7.01,4.40,4.65,4.15,3.11,1.09,2.20,0.43,1.45,0.83,0.40,2 -1.14,-0.25,1.49,-0.90,0.16,0.86,1.07,3.43,3.60,5.30,5.80,5.34,5.37,4.44,2.16,1.83,1.79,-0.43,-0.94,-0.60,-0.24,2 --1.20,0.63,1.57,0.58,1.85,-0.18,2.09,1.48,0.68,1.61,2.71,1.12,3.52,3.19,3.93,3.56,2.24,0.79,0.61,2.32,0.52,0 -0.56,-0.31,2.92,-0.29,1.70,2.84,3.88,3.65,4.24,3.65,5.26,3.10,1.85,1.20,0.35,1.51,0.30,0.99,0.47,-0.23,-0.59,1 --0.56,1.25,2.74,1.25,2.76,3.09,3.19,5.03,4.20,5.05,2.69,3.96,1.48,-0.83,-0.73,-0.05,-0.30,-1.30,-0.21,0.19,-0.93,1 -1.48,-0.48,0.15,-0.98,0.56,0.86,0.31,1.95,2.16,3.80,3.61,4.76,3.40,3.28,3.22,4.22,2.30,4.14,0.85,2.83,0.81,2 -0.56,0.18,1.00,0.49,2.49,-0.66,0.36,0.43,0.13,2.01,-0.08,1.67,3.56,3.97,5.59,3.33,2.80,2.36,2.35,-0.29,-0.95,0 --0.63,-0.34,-1.44,0.15,1.04,-0.05,0.12,1.28,2.51,3.33,4.53,3.75,3.59,6.15,4.41,2.66,1.01,0.84,1.25,0.81,0.31,2 -0.89,0.16,0.35,2.58,3.95,3.88,3.00,2.83,2.15,1.46,3.05,3.18,1.91,0.63,0.86,0.41,1.58,2.92,0.57,-0.18,-0.68,0 -1.14,0.62,0.99,0.91,-0.31,3.40,2.77,2.80,4.94,3.13,7.17,3.69,3.55,0.57,2.54,1.10,0.97,-1.90,2.08,0.64,0.75,1 --0.87,0.79,1.40,-0.08,2.37,3.18,2.80,6.67,4.41,3.41,3.34,4.61,2.16,2.12,0.18,2.48,-0.13,1.54,0.45,0.77,1.25,1 --0.36,1.11,1.24,1.45,1.53,3.71,4.97,4.01,2.81,2.50,1.38,2.90,0.53,1.05,1.20,1.57,1.32,-0.92,2.36,0.98,-1.63,0 -1.31,0.71,0.13,-1.85,0.61,1.80,1.65,2.51,2.28,4.06,3.55,5.77,3.48,1.73,4.34,1.65,1.10,0.81,-0.15,0.60,0.60,2 --0.84,-2.25,0.41,-0.70,-0.66,1.37,1.44,1.07,4.63,3.31,3.27,3.58,4.90,3.36,2.97,2.92,-0.60,2.16,0.45,1.26,0.73,2 -1.47,0.24,2.17,0.84,1.73,2.41,4.14,4.43,4.49,4.71,4.63,3.12,1.46,1.11,1.86,-1.35,0.39,-0.07,-0.27,-0.99,0.54,1 -0.69,-0.06,0.69,1.70,1.37,1.11,1.51,0.81,0.32,1.90,3.48,1.40,1.41,1.32,5.20,4.61,1.76,0.17,0.42,2.73,0.56,0 -1.26,0.33,1.46,1.14,3.89,3.51,2.18,1.89,3.55,2.14,2.92,3.52,1.22,1.41,2.60,4.82,1.00,1.45,1.72,0.04,-0.26,0 --1.90,1.48,2.08,3.02,2.17,1.30,2.47,1.78,4.10,2.26,2.46,1.86,2.53,3.75,2.27,1.87,3.95,1.20,3.76,0.11,-1.12,0 --0.66,-0.55,0.02,0.62,-0.50,3.01,1.26,3.24,2.93,5.64,4.59,5.28,5.42,2.80,3.20,3.10,1.84,1.80,0.19,-0.83,-0.71,2 --0.23,-2.67,-2.30,0.64,-1.31,-1.51,1.12,3.11,2.28,4.82,3.94,3.62,4.44,3.16,2.83,3.12,0.29,1.28,2.02,-0.27,1.44,2 --0.41,0.64,0.39,1.16,3.50,1.65,4.49,2.27,1.85,1.99,1.45,1.46,1.36,4.00,4.40,3.35,1.62,0.99,2.05,2.19,0.69,0 -0.92,1.23,4.58,3.71,3.85,5.22,6.01,3.97,4.83,2.15,1.88,-0.05,1.22,0.99,1.33,-1.04,0.16,1.23,-1.16,1.05,0.78,0 --0.54,-0.73,-0.54,1.81,-0.72,1.23,-0.24,0.76,-0.57,3.28,4.52,4.93,3.83,3.41,3.75,4.63,3.19,3.33,0.25,1.36,-0.32,2 -0.43,0.14,2.58,1.75,1.25,3.52,3.61,4.63,5.41,2.38,3.25,2.85,2.28,0.01,-0.33,-0.47,0.89,0.36,1.08,-0.76,0.94,1 --1.22,0.76,0.34,1.19,-0.99,1.20,3.14,4.38,4.34,4.79,4.95,5.06,3.54,2.67,2.34,1.58,0.46,0.29,0.08,-1.80,-1.70,1 -2.23,2.14,-0.08,1.03,2.30,2.88,3.97,3.47,4.59,3.81,6.09,3.31,2.18,2.85,1.11,0.43,0.26,0.21,-2.22,1.04,-1.07,1 -0.07,-0.01,0.58,-1.18,2.74,2.97,3.84,5.57,4.04,4.65,4.59,3.19,1.99,0.57,1.64,0.94,-1.27,-0.12,-1.06,-1.29,2.36,1 -0.28,0.07,1.74,0.11,2.69,3.62,3.18,4.72,2.60,2.92,4.82,2.23,2.10,1.84,1.60,-0.48,-0.47,-1.25,-0.14,1.33,-0.38,1 --0.53,-0.78,0.20,1.76,1.36,0.41,-0.78,1.62,0.59,-0.05,0.26,2.33,4.52,5.08,5.62,3.59,3.43,5.35,3.74,-0.01,-0.02,2 --0.54,0.72,-0.37,-0.23,1.20,2.11,3.16,2.06,2.13,1.76,1.63,1.79,4.00,3.60,4.02,4.53,1.72,1.57,0.83,0.09,1.12,0 --1.03,0.82,1.02,-0.10,-0.91,1.73,0.92,1.60,-1.25,3.59,2.95,3.69,3.40,5.08,5.07,4.12,4.37,2.06,2.25,2.08,0.33,2 --0.58,0.55,1.43,4.31,3.22,3.40,6.88,3.56,4.03,1.80,0.75,4.27,1.51,2.03,1.60,1.07,1.99,1.20,0.21,0.80,0.95,0 -0.84,-0.81,-0.85,1.75,0.80,0.32,2.59,3.71,5.51,3.89,7.69,5.23,3.42,2.12,2.68,1.82,-0.87,-1.64,-0.63,0.18,-1.82,1 -0.13,-0.77,-0.34,0.25,0.76,-1.95,1.43,1.38,1.57,4.16,4.52,3.49,4.48,4.50,4.39,3.98,1.98,0.84,0.32,0.18,-0.45,2 -0.85,0.07,0.28,-1.99,-0.12,-0.31,0.95,1.35,2.71,0.36,2.80,3.92,3.83,4.09,5.55,4.50,3.24,4.19,3.30,1.60,-1.24,2 -1.77,1.21,-0.81,1.49,1.40,0.30,0.77,1.07,-0.30,4.06,2.36,4.13,3.75,3.68,6.34,2.71,2.57,2.63,-0.62,1.11,1.02,2 -1.05,-1.34,0.42,2.75,0.34,2.54,3.86,4.70,4.72,2.45,2.72,3.56,0.57,0.19,0.00,0.70,-0.59,-0.70,-0.55,1.35,-0.36,1 -0.18,-1.31,0.59,2.25,4.42,3.84,3.48,1.81,2.81,3.08,1.63,0.48,2.17,0.99,4.25,3.85,1.16,1.18,1.79,0.53,-0.52,0 -0.79,2.77,1.14,1.63,2.74,4.96,5.70,5.59,3.30,3.34,2.97,2.31,0.35,0.69,-0.98,0.98,2.93,1.33,0.82,-0.04,0.61,0 --0.55,0.55,0.46,0.36,-1.05,-1.40,1.03,0.22,0.93,1.09,2.69,3.61,4.46,4.55,5.38,5.63,5.52,2.15,0.96,0.14,0.41,2 --0.08,2.40,-0.19,-0.48,-2.21,0.92,0.55,1.41,1.75,2.65,4.28,3.29,3.77,1.62,4.41,4.07,3.55,2.52,1.61,0.95,0.43,2 -1.04,1.79,0.88,-0.24,1.06,1.14,0.85,2.31,3.91,4.94,6.60,2.97,4.33,2.39,3.03,3.15,1.60,0.53,-0.08,-0.66,1.37,2 --0.31,0.14,-1.47,-0.30,0.04,1.32,-0.51,1.55,1.74,2.69,3.26,3.75,4.61,5.37,4.25,3.61,2.92,2.92,2.74,-1.01,-1.01,2 --0.32,-1.20,1.36,2.54,3.83,3.44,4.39,3.84,5.33,2.88,2.62,2.46,1.36,1.52,0.23,0.87,-0.49,-1.49,0.87,-0.64,0.96,1 --3.25,1.27,0.88,3.12,2.78,4.03,4.71,3.12,4.15,2.55,1.32,2.71,1.82,1.78,0.77,2.78,1.62,0.24,0.74,-0.60,1.62,0 -1.45,1.20,1.02,1.66,0.53,1.10,3.61,2.23,3.27,5.19,5.95,3.19,4.31,2.18,1.90,2.49,-0.84,-0.34,0.40,-0.40,-1.00,1 --0.56,-0.19,0.99,-0.70,0.36,0.24,1.71,3.07,1.77,3.41,5.85,4.57,3.50,2.00,5.51,0.36,2.50,3.81,1.40,0.65,0.12,2 -0.38,1.31,2.41,1.36,2.16,2.38,5.04,6.97,1.85,2.06,1.78,1.67,2.05,0.17,0.96,1.41,-1.49,1.67,0.32,1.04,-0.42,0 -0.76,-0.86,1.93,0.30,0.46,2.19,-0.75,0.99,0.71,2.15,1.02,2.94,6.06,5.25,4.84,4.45,2.66,4.41,2.87,0.86,-1.20,2 -1.39,0.18,0.45,-0.77,-0.60,-0.20,1.13,1.52,3.59,4.55,6.53,4.61,3.29,2.87,4.24,0.67,0.88,3.54,1.45,0.84,-1.18,2 -1.27,0.82,0.76,1.03,0.19,4.95,3.85,6.06,4.22,4.64,3.75,1.32,1.66,1.87,2.04,-0.61,-0.18,-0.76,-0.27,-0.15,-1.56,1 -0.51,-0.82,-2.37,-2.23,-0.80,-0.13,-0.59,0.68,0.89,1.79,2.36,2.27,2.84,4.55,4.38,5.34,3.58,2.09,1.35,0.16,1.01,2 --1.41,-1.19,0.22,0.68,3.01,3.10,2.45,3.29,2.33,3.41,5.43,3.83,2.58,0.34,1.74,-0.39,1.38,0.80,0.97,0.09,1.22,1 --0.90,0.35,2.71,1.99,2.29,3.76,4.97,5.25,3.71,2.79,2.82,-0.52,-1.27,1.15,-0.09,-0.87,0.71,-0.90,1.63,-0.88,-0.69,0 --0.41,0.63,0.34,0.58,2.88,1.86,2.95,3.81,1.55,2.05,-0.50,1.11,1.84,2.84,3.07,1.13,1.36,-0.42,1.15,1.35,-0.58,0 -0.67,0.49,1.82,1.23,1.72,1.95,4.37,3.92,4.71,5.83,3.02,5.45,1.53,4.66,1.69,1.74,-0.99,0.44,0.63,2.45,-0.31,1 --0.32,2.81,-0.15,1.97,2.64,2.32,3.15,4.03,4.81,3.23,3.62,5.34,1.69,1.73,0.72,-0.01,1.83,0.04,-1.17,-1.44,0.55,1 -0.25,-0.75,0.47,-0.35,1.38,0.25,0.95,1.19,0.67,0.26,3.47,2.76,4.16,4.61,5.35,4.89,2.97,3.79,1.96,-1.50,0.61,2 --1.66,1.30,1.30,0.96,3.39,4.20,3.90,3.98,2.23,1.06,0.94,2.82,2.77,1.55,2.73,4.40,-0.17,2.08,-0.95,0.04,0.64,0 --1.31,1.39,0.01,1.30,1.98,1.71,1.50,2.64,2.27,1.84,1.04,2.24,2.75,3.13,4.30,2.20,3.52,0.52,2.75,0.17,-1.11,0 --1.56,0.51,0.83,-0.20,0.22,-0.52,0.61,2.57,5.65,3.15,7.23,6.81,4.75,4.17,3.15,0.70,0.72,0.12,0.47,-1.67,0.18,2 --0.36,0.17,2.55,1.00,1.55,4.43,5.31,3.62,2.66,4.28,2.87,1.57,0.94,0.36,1.01,0.31,0.70,1.01,0.48,-0.52,-0.25,1 -0.98,1.40,0.07,-0.73,-1.57,-0.68,1.41,2.26,0.09,1.59,3.70,3.64,4.96,3.74,5.91,4.34,4.40,2.20,1.35,0.55,-2.10,2 --1.56,1.57,1.07,3.05,3.79,4.41,7.25,5.77,4.23,4.87,3.43,1.01,1.76,-0.19,1.60,0.16,-0.57,0.60,-0.19,0.98,0.18,1 -0.39,0.33,-0.34,1.96,1.90,3.32,4.35,3.37,4.04,3.57,3.13,0.74,0.72,1.67,1.76,0.00,-0.10,1.38,-0.96,-0.08,-1.22,1 -1.18,0.20,0.40,-1.24,0.60,1.20,1.33,4.27,2.66,5.16,4.33,4.58,4.26,1.96,1.52,-0.84,-1.68,0.94,-0.17,0.38,-1.13,1 --1.16,-0.49,0.83,-0.29,0.79,-0.21,1.02,-0.38,0.05,1.68,1.26,3.70,3.55,3.80,5.50,4.43,4.05,2.94,0.34,-1.31,0.33,2 -1.14,-1.18,1.32,-1.19,0.84,0.08,0.99,1.24,3.40,4.59,5.06,4.69,4.29,2.96,2.27,3.91,1.08,0.37,-1.61,0.60,0.32,2 -0.55,0.74,2.00,2.13,3.74,4.65,4.78,4.13,3.61,2.20,3.87,1.67,0.14,0.66,-1.86,0.81,-1.04,0.98,-0.06,-0.58,0.71,1 -0.37,2.00,1.04,0.65,1.12,1.24,0.99,0.05,0.43,0.89,3.87,3.54,2.43,4.29,5.65,5.83,2.22,1.70,1.21,2.78,-0.83,2 --0.26,-1.00,0.06,1.04,1.22,0.52,-0.03,2.01,0.78,1.79,3.17,0.51,3.35,6.95,5.11,3.25,1.17,2.04,0.75,-0.64,-0.87,0 --1.61,0.87,-0.54,-0.30,1.77,-2.65,-2.11,0.29,0.52,0.82,3.09,1.93,3.91,4.63,5.88,3.90,4.15,3.59,1.98,-1.50,-1.15,0 --0.44,-1.33,0.21,-0.56,1.02,2.03,2.47,2.13,2.03,-0.23,4.15,3.77,3.68,4.80,4.84,5.33,2.93,2.97,0.10,0.70,-0.35,0 -0.17,-1.12,2.29,-0.14,1.52,1.19,4.35,5.48,5.71,6.17,5.43,6.28,2.87,3.63,1.36,0.42,-1.55,1.64,-0.26,-1.54,0.40,1 --0.05,-0.81,0.76,2.55,0.90,2.21,2.27,5.65,4.81,5.72,5.71,4.41,2.00,2.33,1.20,0.57,-1.64,0.47,1.27,-1.57,-1.61,1 -0.21,-0.19,2.27,1.08,-1.18,2.19,-0.04,2.20,3.20,2.40,4.96,2.74,4.83,3.30,2.39,1.33,2.49,1.23,-1.53,-0.01,-0.66,2 -0.34,-0.94,-0.98,0.31,-1.37,1.75,0.28,1.39,3.46,3.73,3.24,2.94,5.66,2.63,3.79,2.60,1.57,3.00,-1.10,2.42,-1.56,2 -0.77,0.73,2.25,3.20,3.14,2.91,2.83,2.36,2.13,3.66,4.20,1.46,0.47,-0.24,1.79,1.18,1.99,1.27,0.10,-0.46,-3.82,0 -0.70,0.76,0.24,0.04,-1.26,-0.45,0.95,0.96,1.47,1.19,3.63,3.81,3.12,4.13,4.57,3.79,3.42,1.52,0.72,1.03,1.30,2 -0.17,0.94,1.10,1.48,2.41,3.73,2.79,1.40,3.64,5.37,5.25,3.97,3.55,0.37,-0.13,0.50,0.55,-1.31,1.66,-1.22,-0.87,1 -1.68,2.26,1.00,-0.16,0.76,2.67,1.79,2.86,4.28,3.07,5.12,4.90,3.13,5.17,2.76,2.44,2.38,0.33,-0.21,-0.65,0.81,2 --0.42,1.09,0.30,2.52,0.91,2.05,2.48,2.11,1.30,1.17,2.56,2.67,3.03,3.56,3.66,1.86,2.08,4.02,1.59,1.92,-0.40,0 -1.11,1.33,3.00,3.37,3.60,3.97,5.93,3.99,6.07,4.01,1.79,2.33,0.74,0.65,-0.24,0.61,-0.09,-0.02,-0.82,-0.17,0.01,1 -0.21,3.04,0.82,1.95,3.97,1.61,2.12,3.18,4.25,4.27,1.09,1.06,2.11,0.74,2.62,2.99,1.23,0.61,1.79,2.76,0.50,0 --0.80,0.19,-0.88,-0.50,1.42,0.07,3.37,1.66,2.35,3.29,2.75,3.11,4.25,3.66,3.14,1.15,1.59,0.65,0.92,1.44,-0.58,2 -0.85,-2.44,1.37,1.24,2.75,3.48,3.97,5.02,2.39,2.88,1.36,2.47,0.10,2.76,2.48,2.31,1.75,0.43,-0.26,0.88,-0.35,0 --1.79,-0.81,1.41,-0.51,-1.75,1.11,2.81,2.19,4.04,3.41,5.77,5.15,5.96,2.22,5.06,2.65,1.75,1.64,-0.94,1.75,-1.17,2 -0.02,0.68,1.61,2.03,1.73,3.55,3.26,4.97,4.77,4.93,3.60,3.40,1.58,0.19,0.21,0.62,-0.81,0.06,0.20,0.98,0.80,1 --0.73,1.43,0.10,-0.22,-1.17,1.96,2.32,1.66,3.46,3.69,5.11,4.93,4.55,1.30,2.60,2.11,-0.17,0.03,1.57,-0.08,0.89,2 --0.91,-1.78,0.30,2.37,2.32,0.29,0.65,-0.60,1.09,4.25,2.95,5.70,4.10,4.49,5.31,4.76,3.90,1.71,2.35,0.22,-1.53,2 -0.28,1.50,-0.11,-0.57,-0.22,0.75,1.56,0.10,2.93,1.50,4.50,3.74,3.30,4.80,3.61,4.17,4.31,1.84,1.15,2.44,0.70,2 -1.41,-0.87,-0.91,-0.79,-1.22,0.17,0.24,-1.38,0.14,3.33,5.98,4.96,4.86,3.45,4.46,1.84,1.92,0.20,1.24,-1.62,-0.21,2 --0.34,1.84,1.28,3.67,5.06,5.60,4.98,6.10,4.12,3.01,2.22,1.45,1.11,1.43,0.57,-0.73,0.09,0.21,-0.15,1.61,0.45,0 --0.95,1.15,0.64,1.76,-0.64,2.97,2.42,2.18,4.21,5.03,5.72,2.01,4.07,2.74,4.34,0.87,-0.17,1.70,-1.53,-0.39,1.18,2 -1.08,-0.68,-1.31,0.12,-0.65,3.19,1.49,3.09,4.32,3.50,5.05,3.58,6.10,2.81,2.27,2.64,0.17,0.54,-0.32,1.38,0.69,2 -1.59,0.32,0.74,-0.68,0.00,-1.30,-0.49,2.47,2.68,3.14,1.88,5.40,3.88,4.55,3.26,3.43,2.03,2.10,0.39,2.27,-1.64,2 --0.58,0.86,1.82,0.40,2.13,1.11,2.59,2.65,2.21,3.43,2.88,1.58,1.84,3.20,1.60,2.89,2.46,2.39,0.48,0.77,0.23,0 --0.81,-0.92,-0.47,-0.03,0.37,1.12,3.56,2.26,5.38,3.90,5.33,5.27,5.25,3.00,0.85,0.27,0.68,1.30,0.33,1.89,2.34,1 -0.53,-0.51,0.46,2.64,1.88,2.81,1.55,2.43,3.74,4.34,2.74,3.06,3.27,1.37,-1.12,1.97,-0.04,-0.85,-0.14,0.25,1.31,1 -0.29,0.70,-0.08,1.40,-1.41,0.83,3.73,1.47,0.50,1.11,3.16,4.45,3.79,3.90,4.68,5.05,0.88,1.71,0.90,-0.12,-0.84,2 --0.70,0.45,0.82,4.32,5.74,2.50,6.80,3.68,2.44,4.57,2.45,2.20,-0.90,-1.10,1.34,1.34,0.90,-1.05,-0.73,-1.14,-2.04,1 --0.66,2.16,1.77,2.34,2.25,2.65,2.79,0.86,3.01,-0.57,-0.41,2.43,3.06,2.90,5.26,2.92,3.23,0.91,1.42,1.76,-0.36,0 --0.30,0.42,-0.13,2.97,-0.51,2.66,3.57,3.02,4.43,4.19,3.64,3.58,2.69,1.77,-0.68,-0.04,-2.71,1.29,0.54,0.83,0.27,1 -0.19,0.62,-1.18,1.24,0.85,0.59,2.18,2.83,4.15,6.74,5.38,5.85,2.69,2.54,2.51,0.87,0.03,-0.32,-0.54,-0.80,1.27,1 -0.61,0.08,-1.08,-1.20,1.43,-0.26,1.31,2.83,1.55,2.65,4.12,4.60,4.05,4.46,3.64,2.37,0.44,-1.49,-0.49,-0.77,0.24,2 -0.94,-1.05,0.05,0.48,0.11,2.61,3.84,3.74,6.13,2.31,5.86,4.38,2.38,1.14,0.32,2.69,0.42,1.55,1.37,-1.10,0.00,1 -0.65,1.01,-1.88,1.78,1.06,1.75,1.47,1.52,2.94,4.56,4.98,3.14,3.95,3.17,3.26,1.34,0.47,0.46,0.99,1.75,-0.75,2 --0.50,1.31,-0.95,-0.39,0.61,1.21,1.14,0.02,1.52,1.79,4.26,3.00,3.18,4.38,4.89,3.85,3.49,3.20,0.67,0.11,1.52,2 -0.68,1.57,0.58,2.63,1.57,3.16,4.90,4.31,1.91,4.01,4.67,2.83,1.44,0.77,1.47,-0.63,-0.80,1.47,0.76,-0.34,0.33,1 --0.83,-0.19,0.48,0.39,0.81,-1.26,0.16,0.32,-0.79,0.04,2.85,4.45,4.77,4.77,6.02,4.45,3.88,3.43,-0.19,0.63,-0.34,0 --0.98,0.14,2.91,0.76,2.79,5.80,4.88,3.43,3.77,4.04,1.27,0.83,0.15,-0.25,1.84,2.05,-0.49,-1.06,0.90,1.07,-0.88,0 -0.17,-2.75,0.36,-0.06,-0.46,-0.35,0.11,0.04,1.42,0.75,2.04,6.11,4.11,4.97,4.38,4.73,3.07,1.81,2.26,-0.52,-1.53,2 -0.49,-0.87,1.25,-1.04,-0.21,1.37,-0.85,1.89,2.34,3.06,3.04,4.59,3.55,4.61,3.87,3.81,2.21,1.92,0.48,0.46,2.54,2 --0.50,-0.21,3.41,-0.24,-0.16,1.62,1.16,2.83,1.60,2.46,5.28,4.29,5.65,4.63,2.93,1.13,1.53,0.74,-1.39,0.07,-0.24,2 -0.72,-1.23,0.01,-1.14,-1.49,-1.55,3.71,4.11,4.65,5.85,6.10,4.50,3.74,3.05,2.11,1.73,0.48,-0.41,-1.11,-0.66,1.69,2 --0.51,0.31,0.98,-0.33,5.28,5.82,4.12,5.50,3.04,3.32,1.49,1.52,0.16,0.15,-0.78,1.22,-0.45,1.02,0.56,0.69,1.05,1 -2.30,-2.02,1.14,0.03,1.03,-0.19,1.47,0.41,2.14,2.34,3.56,3.42,3.60,2.60,3.44,3.73,3.81,2.81,1.35,2.01,-0.90,2 --0.83,0.22,-0.66,1.84,0.95,1.41,0.23,1.52,1.10,1.09,1.92,2.33,4.44,4.79,3.93,3.30,3.70,0.92,2.59,0.44,-0.94,0 -1.64,1.24,2.10,0.46,-1.97,-0.38,-0.73,2.88,1.79,2.28,3.09,3.26,4.78,4.99,5.04,3.71,3.50,3.19,4.11,1.24,-0.18,2 -0.71,-0.85,-0.62,1.41,-1.15,-2.48,1.49,-0.51,0.15,2.16,2.79,1.69,6.05,4.44,5.76,3.84,2.82,2.47,0.91,0.63,-0.04,2 -0.30,2.06,0.37,1.63,0.79,3.18,3.27,4.48,4.61,3.06,3.26,5.22,1.58,1.87,0.63,1.18,-0.33,-1.25,0.93,-0.14,1.99,1 -0.57,-1.04,-1.11,0.57,-0.68,1.23,1.65,1.54,1.65,2.30,5.15,4.44,3.09,2.67,4.34,2.68,2.46,1.37,1.40,1.12,0.18,2 -1.51,-0.26,2.98,1.31,2.31,3.58,2.75,1.39,2.65,2.62,1.41,1.37,2.12,1.95,2.17,2.01,4.44,-0.13,0.42,0.68,1.41,0 -1.70,1.59,1.30,1.86,0.18,0.33,-0.27,0.34,0.49,2.19,1.84,2.64,5.72,5.60,6.19,3.76,3.40,0.13,1.87,0.12,-1.22,2 -0.06,0.15,-1.12,0.95,-2.62,-0.14,1.00,1.36,3.47,3.00,3.73,4.24,3.90,3.34,4.25,3.62,2.76,1.44,3.02,-0.26,-0.07,2 --1.32,-0.16,0.43,-1.17,1.16,1.50,1.26,0.59,1.16,2.19,3.02,5.65,3.86,4.75,3.89,3.10,1.90,-0.00,1.58,-0.97,-1.58,2 --0.57,-1.29,1.25,0.98,-0.68,0.81,0.78,0.58,-0.21,1.41,1.75,1.84,4.21,5.60,4.73,5.56,3.53,1.88,2.36,0.60,-0.69,0 --0.58,-1.94,1.51,2.21,-0.15,1.56,0.60,-1.45,-1.18,2.81,1.64,2.46,3.33,4.48,4.44,2.93,4.01,2.45,0.80,-1.21,-1.33,0 --1.64,-0.27,0.28,-0.83,-2.02,0.00,3.92,2.57,2.28,2.76,5.04,6.52,3.76,4.17,1.50,3.37,1.28,-0.63,-0.44,0.67,1.28,2 --0.76,-0.52,-1.26,0.07,0.61,0.00,0.45,-0.49,-0.48,0.01,1.50,4.40,2.92,3.17,4.86,3.76,2.61,0.74,3.16,0.82,1.40,2 --1.15,1.39,2.78,-0.17,-0.70,-0.38,0.98,-0.27,1.07,2.34,2.70,2.93,4.58,4.17,5.93,5.63,3.74,3.26,2.15,1.69,-1.59,2 --0.13,1.72,0.26,2.37,2.30,3.42,3.19,2.88,2.39,2.21,1.48,3.16,2.13,2.94,2.02,2.56,0.72,1.12,0.31,-0.31,0.70,0 -0.17,-0.70,-0.73,0.71,0.40,0.67,1.74,0.97,1.62,3.55,4.96,4.58,5.87,3.85,3.05,4.13,2.84,2.26,0.45,2.92,2.59,2 --0.38,1.34,1.23,1.89,2.18,1.28,2.88,3.69,1.91,1.32,0.96,0.33,0.91,1.59,2.91,1.93,2.76,0.04,2.06,0.43,2.24,0 --1.71,2.05,0.66,-0.06,-1.05,-1.27,1.83,2.19,1.36,1.91,3.89,3.37,4.63,5.50,4.32,5.57,5.59,3.07,1.49,2.31,2.52,2 --0.05,-0.56,0.65,1.00,-0.54,-0.02,0.31,1.06,0.96,3.00,3.28,3.02,5.49,4.54,7.66,4.09,1.05,2.82,0.94,1.74,1.72,2 --0.83,-0.58,0.00,1.41,-2.40,0.05,2.21,1.96,0.96,4.03,5.02,3.73,4.34,4.37,1.28,3.97,3.57,0.61,1.76,0.27,-0.42,2 -0.77,0.33,2.07,0.26,0.61,2.60,5.44,2.53,3.25,3.71,3.56,2.32,3.53,0.43,1.88,1.09,-0.45,1.00,1.58,0.11,0.84,1 --0.35,0.57,0.91,1.28,-0.01,1.11,2.28,2.30,3.08,4.82,7.28,6.21,4.76,3.18,1.66,0.08,0.66,-1.25,-0.06,-0.81,0.77,1 -1.72,1.33,2.48,1.62,3.76,4.48,5.45,6.05,3.18,2.56,3.83,1.89,-0.14,0.90,-0.47,0.11,1.22,-0.58,-0.99,-0.73,-1.39,1 --2.10,0.67,-0.92,0.73,0.89,-0.60,2.44,3.31,1.93,2.96,4.20,5.22,2.51,4.19,4.35,3.99,0.24,1.60,0.00,1.14,-0.14,2 --0.04,1.43,0.84,-0.63,-0.76,1.06,1.20,0.76,4.39,4.18,4.78,3.13,4.43,5.51,2.77,2.23,3.27,1.16,2.07,0.07,0.49,2 -0.86,0.27,0.13,0.07,-0.67,1.48,2.14,2.88,3.17,3.61,4.08,4.32,3.99,3.92,1.40,2.05,0.91,-1.61,0.79,1.40,0.80,2 --0.56,1.96,1.78,0.60,1.18,-0.33,0.09,3.07,1.92,2.76,2.07,3.02,3.76,2.84,5.70,3.88,3.43,2.08,0.73,0.35,0.91,2 --0.13,-1.82,0.57,0.51,-0.12,2.69,2.98,1.05,4.90,4.55,4.87,5.87,4.20,3.85,3.84,2.18,0.96,0.89,1.03,0.71,-2.72,2 --0.89,-1.06,-0.56,1.66,2.97,3.80,5.21,4.70,3.12,2.99,4.10,1.89,1.36,0.89,0.09,-0.23,-1.40,0.29,0.38,-0.99,0.62,1 --0.98,1.05,-1.22,2.34,-1.89,1.20,-0.62,0.41,-0.58,-1.24,0.75,3.35,4.19,5.91,6.12,5.02,3.93,3.87,0.58,0.47,-0.63,2 --0.99,0.19,3.51,1.51,3.50,3.92,5.31,5.37,3.96,2.13,4.89,1.57,-1.33,3.19,0.60,0.15,0.19,0.92,-0.29,1.16,-0.49,1 --0.30,1.20,0.10,2.85,0.96,3.46,3.87,3.46,4.20,3.50,2.76,0.82,-0.14,0.83,1.98,0.29,-0.19,0.42,0.91,0.89,-1.54,1 -0.71,0.23,-1.21,0.97,1.29,0.96,3.21,1.77,4.70,5.45,5.69,5.30,4.63,4.64,2.64,1.45,-2.88,0.24,0.52,1.01,-1.50,2 --1.18,0.04,0.26,0.99,2.23,3.67,2.15,2.44,2.59,1.87,1.49,1.05,2.95,1.39,3.35,3.35,2.73,1.87,2.29,0.16,0.54,0 -1.48,-0.36,2.30,1.46,1.95,3.71,4.81,4.34,5.64,4.05,3.32,2.35,0.73,-0.03,1.07,0.06,0.60,1.06,-2.36,1.86,2.22,1 -0.47,0.43,2.12,3.17,0.83,2.88,3.70,4.87,1.78,3.10,3.46,2.32,2.46,1.67,-0.46,-0.07,1.38,-1.82,1.67,-0.48,0.09,1 -0.06,1.28,0.74,-0.03,2.52,2.23,3.00,3.74,1.22,1.98,1.55,2.87,1.46,1.91,3.57,3.34,2.72,1.29,0.25,0.58,0.06,0 -0.56,-0.36,-0.46,-0.38,1.12,0.82,0.67,3.41,2.64,5.06,5.37,5.05,3.08,4.44,2.86,3.11,0.73,-0.11,0.60,0.23,0.18,2 --1.00,2.37,1.72,0.08,2.63,2.10,2.69,3.09,2.36,0.25,1.63,1.33,-0.41,1.25,1.69,2.05,1.78,2.04,-1.21,-0.37,0.58,0 -0.14,-0.56,1.45,3.29,4.35,2.11,4.66,4.35,2.66,4.68,2.99,3.21,0.87,-0.59,1.22,1.38,1.51,-0.35,0.61,-0.21,1.11,1 --0.44,0.89,1.12,0.18,2.17,-0.33,-0.75,-0.37,-1.01,2.64,2.08,2.52,4.32,5.49,5.44,5.09,3.74,3.02,1.94,-1.39,-1.96,2 -0.37,1.70,1.11,0.29,0.95,5.10,3.04,2.64,2.64,3.21,0.78,1.07,-0.74,0.87,0.97,1.73,-0.05,-0.02,0.38,1.15,1.07,0 --2.27,0.65,1.45,0.55,2.77,2.70,1.20,4.23,3.60,2.87,6.12,4.69,4.19,2.90,1.93,0.74,-0.92,0.44,1.48,-0.20,0.30,1 -0.10,1.30,1.48,1.75,5.05,4.55,4.00,4.44,3.16,2.76,1.64,0.94,-0.54,-0.04,-0.34,0.24,0.81,-0.17,0.25,2.74,-0.94,0 -1.71,0.99,2.76,2.03,1.69,4.40,2.22,1.38,1.17,1.00,2.93,2.44,3.45,3.47,1.68,4.19,2.86,1.06,1.27,0.99,0.76,0 -1.64,1.74,-0.44,-0.39,1.76,0.24,2.90,2.37,3.03,2.71,2.07,2.44,1.84,3.04,2.09,4.26,2.90,2.42,-0.09,-0.13,0.42,0 -0.65,1.05,3.49,1.82,3.06,2.07,5.74,4.38,2.36,3.65,3.33,3.02,1.24,0.61,0.90,-0.64,-0.24,1.14,0.07,0.21,-1.43,1 -0.03,-0.93,0.67,-1.42,0.21,0.38,2.02,2.42,2.91,2.81,7.30,4.23,4.05,2.52,2.13,0.28,0.43,1.09,1.47,0.21,0.70,2 -0.62,-1.05,0.58,0.92,1.32,1.32,0.16,0.19,-0.27,1.52,1.46,3.25,3.77,4.86,3.82,4.06,1.23,3.87,0.93,2.40,0.36,0 --1.01,-0.68,1.34,-0.68,0.15,0.16,0.45,3.71,2.86,3.17,5.06,4.04,2.77,2.45,1.32,0.74,0.18,0.65,-0.75,0.73,-0.41,1 -2.06,2.38,-1.49,-0.50,-1.03,1.72,2.13,1.56,4.33,2.53,5.44,3.61,4.01,2.22,4.22,2.39,2.47,0.80,-0.14,-0.46,-0.33,2 -0.04,-1.68,-0.13,0.85,0.35,-0.31,-0.32,-1.90,-1.72,3.02,3.27,3.82,3.63,3.79,5.05,3.69,3.74,3.21,3.47,1.21,-0.56,2 -1.40,-1.27,1.87,-0.61,0.29,-0.52,2.16,2.35,3.64,2.22,6.17,4.88,3.36,3.98,3.55,0.64,-1.47,0.15,0.43,0.39,0.67,2 -0.06,-0.34,-1.32,0.13,-0.14,1.59,3.64,2.05,4.21,4.65,5.11,5.43,4.68,4.68,1.18,-0.47,-0.02,0.29,0.29,0.43,-0.55,1 --1.73,-0.14,1.15,1.67,2.61,3.34,3.94,1.82,2.12,2.34,1.88,1.38,2.22,2.91,3.43,2.67,3.42,1.22,-0.55,0.07,-0.02,0 -0.90,0.16,-0.06,1.00,1.55,1.91,5.36,2.74,3.33,4.16,5.47,4.06,1.75,3.22,1.83,1.13,-0.07,-2.39,-0.65,0.53,0.02,1 -0.69,-0.18,-0.40,0.68,1.20,0.10,0.50,1.04,0.30,2.12,1.52,2.24,2.94,4.01,7.02,4.22,3.71,1.48,2.40,1.21,0.60,2 --0.15,2.00,2.49,2.76,3.43,2.76,4.67,4.32,4.01,2.23,1.56,1.85,1.86,1.37,0.69,0.61,2.92,-0.27,1.33,2.05,-1.57,0 -1.93,0.46,1.40,0.39,0.06,0.68,0.55,2.58,2.13,1.32,5.33,4.34,2.94,6.33,4.56,5.55,2.63,1.19,1.65,-0.20,-0.17,2 -1.49,0.46,1.57,1.03,0.95,0.58,3.51,3.61,5.08,3.90,5.37,3.28,4.06,2.40,1.16,-1.72,-0.79,-0.54,-1.34,-0.80,0.91,1 -0.47,0.28,0.93,0.23,-0.82,0.13,1.19,2.74,4.39,5.44,5.50,5.67,2.65,1.80,1.47,1.06,1.15,-0.59,-0.81,-3.11,0.26,1 -0.27,0.40,0.19,0.93,-0.77,0.76,0.07,-0.34,0.22,1.20,1.69,1.46,3.64,4.93,6.38,3.89,4.55,4.08,2.74,0.78,0.67,0 -0.16,0.50,1.65,1.10,2.61,3.18,4.76,3.85,2.88,1.13,1.89,1.10,1.62,1.38,-0.42,1.65,0.62,0.06,-0.77,0.55,0.37,0 --1.43,-0.57,-1.55,-1.64,-1.66,-0.28,-0.49,0.34,1.15,1.24,2.42,3.13,3.92,6.75,4.87,4.81,2.31,2.17,2.27,1.39,0.25,2 -0.49,1.79,0.13,0.05,0.82,2.14,2.40,3.10,4.62,3.91,4.88,4.00,3.35,5.86,2.13,1.23,1.14,-0.54,0.95,0.06,0.73,2 --1.66,0.08,1.64,0.52,2.81,3.68,1.68,2.97,1.92,1.86,3.04,2.36,3.33,4.00,4.07,2.48,2.24,3.32,1.26,-0.36,-0.20,0 --1.92,0.99,1.60,2.04,1.83,3.65,2.62,3.92,3.72,4.06,5.07,4.06,2.02,3.15,1.55,1.12,1.02,-0.80,-0.30,-1.84,1.37,1 -0.85,0.86,2.25,2.51,3.46,4.43,6.33,4.69,4.12,2.97,1.64,0.86,-1.08,0.10,-1.75,0.10,-0.40,1.72,-0.73,0.41,0.12,1 --0.61,0.51,0.90,1.26,0.00,1.06,1.99,-1.20,1.39,0.13,1.21,1.71,3.29,5.85,4.95,5.21,1.36,2.66,1.90,-0.66,-1.81,0 -0.26,1.20,0.27,1.74,-0.87,0.86,0.67,1.86,-0.60,1.40,2.83,2.19,5.45,5.45,5.61,3.82,3.73,4.09,1.99,-0.16,0.05,2 -0.22,0.19,1.71,2.21,0.81,1.93,3.00,3.66,2.34,3.03,1.36,-1.00,1.61,1.18,1.43,2.03,1.86,1.49,0.73,-1.30,-0.40,0 --0.81,-0.14,2.28,4.20,3.35,4.26,4.69,5.36,4.24,1.60,2.52,1.79,-0.13,0.45,0.56,0.11,-0.24,-1.20,-0.65,-1.44,1.83,1 -1.55,1.22,-0.31,-0.95,-0.92,-0.23,1.14,2.42,0.91,2.23,1.31,2.33,3.57,5.04,5.07,4.73,2.01,1.39,0.66,0.33,-0.76,0 -1.49,1.97,-0.15,0.41,0.03,1.19,2.65,3.48,3.36,6.44,6.76,3.25,4.26,0.16,0.88,1.98,0.59,0.00,-0.09,1.86,1.47,1 -0.44,1.91,-0.80,1.39,2.03,3.46,3.54,3.94,3.84,2.33,2.63,4.18,1.36,1.85,0.19,-0.06,0.15,0.72,0.13,-1.82,0.37,1 -0.14,0.19,-0.19,0.65,2.01,2.34,4.12,1.33,3.46,4.17,5.29,3.20,4.01,2.80,2.71,1.07,-0.91,0.07,0.82,0.21,-0.60,1 -0.79,0.97,2.53,2.45,3.64,4.80,3.87,4.78,3.65,1.66,2.04,1.08,1.01,1.54,0.68,-0.58,-0.05,-1.12,0.99,-1.53,-0.65,1 -0.53,-0.99,1.27,0.11,1.29,1.08,1.26,2.05,1.92,2.57,2.88,2.68,2.95,4.98,6.00,3.45,2.50,1.61,2.19,1.99,0.79,0 -1.57,0.53,1.72,0.59,-2.25,0.35,0.32,0.78,0.23,0.65,0.69,3.85,3.61,4.43,6.59,4.78,3.74,2.25,3.15,2.26,0.06,2 -0.31,-0.06,-1.24,-0.43,1.51,-0.40,-0.40,-1.43,-1.88,2.99,2.32,3.94,3.94,5.27,5.47,4.55,3.67,1.92,2.13,0.68,0.27,0 --1.81,1.13,1.23,0.66,1.57,1.92,4.73,3.60,3.50,2.65,2.23,4.32,0.96,1.37,-0.53,0.90,-0.02,-0.72,-1.47,1.00,-0.77,1 -1.76,-0.75,1.38,2.19,0.37,4.26,4.08,4.65,3.83,4.85,4.13,2.53,3.28,2.59,2.41,-0.60,0.75,-0.07,0.60,-0.33,0.26,1 -1.20,-0.78,0.92,3.02,1.71,3.42,3.91,2.37,3.47,2.41,2.31,1.32,1.17,1.65,1.03,0.33,0.30,0.11,0.07,-0.56,-0.51,1 -0.39,-0.25,1.21,0.28,-0.51,0.45,0.23,-0.17,2.05,4.34,2.26,3.87,4.75,4.68,5.15,2.53,1.38,3.05,1.86,1.35,1.10,2 --1.36,0.03,1.46,0.39,0.00,0.36,1.26,3.67,1.38,3.04,2.26,6.67,3.75,2.37,3.27,3.30,0.22,2.40,3.41,1.44,-0.31,2 --0.35,-1.48,1.05,-1.28,0.25,1.59,0.80,3.45,3.74,4.44,5.45,4.05,3.59,3.09,2.16,0.97,0.15,1.74,0.25,0.07,0.87,2 --0.99,0.11,3.23,2.31,1.81,4.27,5.49,6.16,3.90,3.26,1.54,2.27,2.12,0.44,-0.40,-0.42,1.24,-1.61,-0.75,0.63,0.16,1 --0.68,0.62,2.17,1.31,2.38,2.68,3.94,2.98,5.45,3.07,4.87,3.62,1.01,0.93,2.46,-1.02,-0.19,-0.50,-0.36,0.87,-1.73,1 -2.30,-0.16,2.86,1.94,3.03,3.22,4.58,4.81,4.07,4.51,3.89,1.72,4.72,1.25,2.49,1.38,-0.51,-0.91,0.44,-1.70,0.24,1 --0.50,-0.77,3.47,2.56,2.23,3.42,2.94,4.92,4.92,4.85,5.31,2.31,3.28,0.79,0.07,2.13,0.48,-1.53,-1.14,-0.35,-0.47,1 --0.12,1.85,0.36,0.07,2.13,3.67,4.48,2.17,3.84,-0.22,0.77,1.94,1.82,4.10,2.60,3.16,3.86,1.65,1.45,-1.60,1.78,0 --1.69,1.42,2.48,4.40,3.74,3.08,4.81,3.41,3.14,3.28,-0.55,-0.63,1.84,2.02,-0.60,0.43,0.89,0.41,-0.50,0.51,-0.99,0 -0.99,-0.17,0.53,1.31,0.07,-0.45,2.64,1.74,3.17,4.19,3.92,6.55,2.69,3.60,1.94,1.32,0.32,0.32,0.68,-0.59,-1.06,2 -0.27,1.41,0.94,1.45,3.26,2.62,4.68,4.14,4.06,2.35,0.45,2.04,-1.18,2.23,0.49,0.68,2.05,1.46,0.70,0.82,-0.85,0 --2.30,-0.33,2.24,1.49,1.03,5.30,4.96,5.49,3.12,1.02,1.20,1.09,-0.45,1.14,0.56,0.34,-0.09,0.52,-1.97,-0.40,-2.29,0 --0.05,0.62,-0.49,-1.18,0.17,-0.24,0.43,1.56,1.40,2.39,3.53,4.45,4.04,2.82,3.19,4.94,3.33,2.78,0.08,1.65,0.51,2 --1.66,-0.44,-0.90,-1.15,1.11,-2.19,1.61,-1.00,-0.34,1.39,1.87,2.78,3.70,4.09,6.66,5.10,2.48,3.86,3.06,0.41,-0.39,0 -0.57,-1.85,3.55,1.51,3.06,3.09,2.24,4.40,1.58,3.96,2.03,0.25,1.41,1.84,2.01,1.15,0.81,1.19,1.26,-0.91,-2.04,0 -0.40,-1.10,-0.14,0.91,2.54,0.05,3.02,3.24,4.21,4.91,5.51,4.69,2.52,0.62,1.95,-0.25,1.77,-1.07,-0.55,0.62,2.04,1 -0.16,-1.53,0.83,-0.47,3.42,1.48,1.77,2.76,4.35,4.00,4.41,5.03,4.93,3.22,1.41,0.54,-0.21,0.27,0.23,0.61,0.78,1 -1.80,2.14,1.70,3.96,4.01,4.51,4.43,3.86,5.34,3.99,4.10,1.96,-0.80,-0.57,-0.69,-0.69,-1.44,0.87,1.54,-2.18,-1.50,1 --0.74,1.32,1.10,3.35,1.51,2.27,4.85,3.96,3.40,3.79,3.66,4.06,2.79,0.86,1.30,0.68,-0.55,0.76,-0.03,-0.38,-1.68,1 --0.29,0.23,2.21,2.85,4.00,5.47,5.82,1.93,4.70,3.33,1.35,2.50,-0.66,1.74,-1.34,0.17,0.53,-0.58,1.68,1.19,0.44,0 -1.56,0.34,0.72,0.89,1.44,1.85,2.43,3.77,3.95,3.16,4.75,4.01,3.20,2.12,2.65,1.10,0.21,-0.93,0.56,1.13,-1.24,1 -0.90,-0.38,-0.68,-1.56,1.03,-0.26,0.97,-1.09,0.98,0.46,3.34,3.82,3.78,6.31,5.27,5.11,2.33,4.04,2.07,2.13,-0.15,2 -0.30,-1.42,0.37,0.62,1.34,1.39,2.81,1.78,4.81,5.26,6.14,3.56,2.86,2.84,1.52,-0.16,1.32,1.48,0.99,-0.15,0.73,2 --0.29,-1.82,0.01,-1.41,0.53,0.66,1.44,3.63,3.43,4.35,5.23,4.29,3.84,1.90,4.35,2.32,-0.71,1.42,0.19,-0.66,-0.58,2 --1.21,1.69,1.48,2.26,2.66,4.66,6.43,5.20,3.66,2.94,1.26,1.32,-0.93,0.62,-0.19,0.77,-1.32,2.08,0.48,1.48,0.77,1 --0.17,-0.10,0.11,-0.75,1.11,1.26,1.02,0.66,3.97,4.43,5.07,4.11,5.15,3.31,2.60,1.35,-0.20,0.64,-0.95,0.20,1.35,2 -1.17,-0.39,2.93,3.78,3.07,2.58,4.12,4.40,5.86,3.30,2.76,2.52,0.09,1.80,-0.47,0.78,2.54,2.52,-0.12,-1.56,1.55,0 -0.25,0.40,0.89,0.06,0.15,1.39,1.37,3.18,1.48,3.61,2.97,4.12,3.93,5.74,3.54,3.58,1.87,1.57,1.15,-1.45,-1.52,2 --0.98,1.44,0.36,3.40,4.90,6.92,3.71,5.28,4.72,3.15,3.15,1.28,-0.29,0.07,-1.11,0.91,1.40,1.70,0.68,0.10,-1.67,0 -0.65,0.25,1.43,2.58,4.31,3.52,3.13,4.98,2.91,3.64,3.20,2.68,0.64,2.07,1.28,1.12,0.13,1.01,0.09,0.45,1.88,1 --0.97,1.48,2.70,2.17,4.62,4.21,5.94,1.95,3.41,4.52,2.88,2.71,3.06,2.21,-0.42,0.57,-1.28,0.97,-1.46,0.53,0.53,1 -0.25,-0.02,-0.98,0.01,-0.63,-0.97,0.32,0.84,-1.64,0.42,1.41,3.11,3.74,3.82,5.83,5.00,2.80,2.07,2.39,0.51,-2.22,2 -0.86,1.01,1.04,1.64,0.37,2.77,2.45,4.48,2.92,4.11,3.82,4.56,3.34,1.95,1.29,-0.25,1.61,0.40,0.53,-0.61,-0.86,1 --0.10,0.73,0.10,1.25,1.96,4.46,4.93,2.42,4.23,3.50,2.61,1.63,1.10,-0.66,-2.28,0.30,-0.97,1.57,-0.03,-1.75,0.18,1 -2.50,0.46,0.63,-0.98,-0.73,3.69,2.94,3.04,1.57,4.09,5.52,5.02,6.06,2.72,2.31,0.42,-0.36,0.31,-0.30,-0.70,1.01,2 --2.23,0.19,-0.41,-1.31,0.52,1.75,2.03,1.51,4.17,4.09,3.35,5.32,2.86,3.19,2.74,1.90,2.34,0.55,1.30,0.43,-0.58,2 --1.09,-0.07,0.29,1.71,0.61,1.68,3.07,4.16,3.40,5.47,4.08,2.31,4.07,1.85,1.23,-0.74,0.45,-1.09,-0.30,0.84,-0.02,1 --2.69,0.72,2.02,0.20,0.99,0.38,1.04,0.96,0.98,1.56,1.87,2.68,2.76,3.36,6.52,2.58,3.10,2.87,2.14,0.68,0.67,0 --1.22,0.14,1.44,1.02,1.00,2.85,3.55,5.09,3.41,3.72,5.35,3.83,0.89,0.10,2.36,0.81,-0.18,-1.27,-0.85,-1.51,1.11,1 --1.04,-0.47,2.61,0.82,4.07,1.67,4.37,3.64,0.18,2.18,3.07,2.52,1.56,-0.04,0.75,2.69,0.77,1.20,0.26,3.65,0.17,0 -1.41,-0.30,-0.59,1.01,0.70,3.12,2.23,3.99,6.42,4.28,5.25,4.73,3.65,2.08,2.09,0.66,-0.45,2.33,-1.52,-0.69,-0.08,1 --1.61,0.04,-0.24,1.22,-1.98,2.11,1.11,2.12,1.25,2.27,3.95,2.88,4.19,3.23,4.87,2.75,2.85,3.42,1.74,-0.21,-0.46,2 -0.35,2.31,0.90,0.17,1.92,3.51,2.67,3.26,1.04,0.44,1.77,0.15,2.59,1.11,4.15,0.74,1.66,1.68,1.57,1.02,1.12,0 --1.30,-0.00,-0.02,-0.35,0.74,1.53,4.47,5.31,2.54,4.85,4.66,5.58,1.47,0.75,1.49,0.43,0.19,-1.22,2.03,-1.35,-0.92,1 -0.59,-0.31,1.62,-1.87,0.14,-0.43,-1.07,0.55,-0.34,1.58,3.35,1.97,3.64,6.54,5.50,5.87,3.22,3.20,2.11,1.44,-0.06,2 -0.66,0.28,0.81,2.09,0.80,3.28,3.95,1.76,2.71,2.75,2.04,4.27,1.17,0.75,4.21,2.46,0.57,0.43,0.87,-0.55,-0.75,0 -0.16,-0.06,0.87,0.23,4.05,5.32,5.40,4.86,1.47,3.14,2.71,0.57,1.61,-1.97,-0.34,2.02,1.50,0.33,1.16,-1.31,1.33,0 --2.20,-0.90,1.63,3.33,3.58,4.28,5.57,5.47,3.00,6.07,3.64,2.19,-1.06,0.53,1.78,0.90,1.18,1.20,2.23,0.32,2.14,1 -0.77,-1.56,1.95,-0.70,0.49,0.62,1.10,-0.77,1.56,2.83,2.52,3.95,5.20,4.79,7.39,0.91,2.05,2.58,3.12,0.49,0.63,2 -1.75,-0.45,-0.02,1.75,2.18,1.77,3.79,4.00,4.62,4.02,1.35,2.71,2.17,2.55,-1.70,0.27,0.66,0.60,0.51,-0.69,-0.20,1 --0.86,1.03,1.30,1.14,2.72,3.14,3.41,1.74,1.14,0.95,2.21,3.49,3.58,3.65,4.22,2.17,1.01,0.95,1.02,0.33,1.28,0 -0.84,0.34,1.89,0.07,3.53,4.90,5.19,6.45,2.20,1.29,2.32,1.83,-0.04,-0.75,0.02,1.20,1.05,1.95,0.51,0.76,2.20,0 -1.50,0.79,0.31,2.22,3.33,0.99,2.46,3.39,2.00,0.02,3.29,-0.46,2.45,3.25,2.71,2.68,2.24,1.06,1.56,0.69,1.00,0 -0.51,-1.18,2.03,0.69,0.11,1.13,0.63,1.87,2.24,2.08,3.96,3.39,3.15,4.07,3.55,3.54,2.52,0.97,1.12,0.16,0.82,2 -0.35,2.02,2.21,3.53,3.54,5.54,4.95,5.26,2.99,2.25,3.69,0.30,0.69,1.50,0.21,0.25,1.49,0.28,1.46,0.46,0.38,0 -1.18,0.88,-0.28,1.21,-0.33,-0.34,0.57,0.51,2.71,1.99,3.85,3.00,3.11,5.65,3.37,1.67,2.20,1.63,0.18,1.05,0.61,2 --0.11,-1.56,-0.39,0.39,-0.43,0.03,-0.78,-1.52,-0.35,-1.14,0.81,3.85,3.23,5.92,5.81,6.36,3.12,3.02,2.38,-0.01,2.37,2 -1.76,0.42,0.08,-1.12,-0.65,2.14,1.24,3.19,3.36,4.09,4.37,3.20,3.40,2.58,2.92,1.63,0.79,0.80,0.81,-2.52,-1.15,1 -1.56,-1.24,2.88,4.35,3.63,4.87,7.66,5.29,2.64,3.51,2.96,2.14,2.04,0.67,-0.53,1.30,-0.95,-1.09,0.05,-0.33,-1.18,1 --0.39,-0.10,-0.95,-1.62,-0.49,0.19,0.60,2.04,0.50,3.09,4.46,4.74,2.92,3.39,2.68,1.82,1.51,3.32,0.50,0.67,-0.64,2 --1.15,2.43,-0.69,0.44,1.07,2.08,4.74,3.41,3.48,4.75,3.70,3.60,2.64,3.48,0.41,1.11,0.84,0.97,0.40,0.50,0.90,1 --0.93,0.99,3.07,2.22,4.12,5.32,5.10,4.26,6.06,3.67,2.38,-0.73,-0.73,-1.79,0.11,0.93,-0.66,-0.17,-0.42,0.27,-0.06,1 -1.64,-0.49,2.18,1.50,4.45,6.35,4.07,3.36,5.10,2.80,2.16,1.23,1.77,2.55,0.45,-0.74,0.08,0.72,0.12,0.10,0.08,1 --1.21,2.16,1.46,3.01,2.84,3.38,4.26,3.24,1.56,2.45,1.98,-0.18,0.14,0.50,1.34,0.55,-0.25,0.90,0.80,-0.84,1.04,0 --0.26,0.68,2.29,2.37,3.18,5.65,5.39,4.87,3.85,2.80,2.28,0.63,0.59,0.69,-0.98,-0.79,0.84,-0.44,-1.41,-0.19,-1.09,1 -0.16,1.23,0.83,3.02,4.37,2.99,4.47,4.59,4.25,2.44,0.87,1.76,0.51,0.65,-1.82,-1.29,-0.14,1.00,0.03,-0.96,-1.57,0 --0.01,0.78,-0.36,1.67,4.05,3.51,1.19,1.78,0.28,1.83,0.67,1.53,2.47,3.14,4.80,2.41,2.04,1.21,1.57,0.97,-0.30,0 --0.29,0.02,2.39,1.08,4.07,1.70,0.92,0.64,0.14,2.27,2.39,0.42,4.19,3.01,4.04,1.57,4.05,1.64,1.19,1.52,-0.75,0 --2.02,-0.84,-1.20,-0.73,-1.68,-0.24,1.11,4.43,5.19,4.65,3.10,4.84,2.70,2.25,2.22,1.14,0.73,0.05,0.60,0.03,0.03,2 --0.10,-1.74,-0.90,1.21,1.64,0.21,0.94,0.39,-1.12,1.38,-0.47,3.88,3.87,5.93,6.03,4.56,4.65,2.51,1.27,0.39,2.24,0 --2.17,1.33,0.33,-0.50,1.01,1.07,1.06,2.59,1.13,3.50,3.72,3.24,4.86,2.07,3.05,1.50,2.08,2.45,-1.74,2.05,1.72,2 --1.38,0.42,-0.12,1.04,-0.09,-0.32,1.19,0.33,1.10,0.06,4.84,2.20,4.54,4.08,5.89,5.37,1.60,3.39,0.55,1.31,-0.01,2 -1.31,1.36,0.27,2.05,3.74,3.63,4.33,5.01,4.15,4.19,5.45,3.82,2.79,3.03,2.06,1.51,0.74,1.60,0.79,-1.67,1.28,1 --1.56,-0.57,0.80,2.33,1.86,-0.01,3.48,-0.26,0.92,2.16,1.52,1.87,3.08,3.28,2.26,4.48,2.45,2.48,1.14,0.92,1.59,0 --1.03,1.31,2.55,2.31,2.28,2.57,3.20,2.62,4.43,4.82,4.35,3.81,3.19,2.29,1.02,0.83,1.84,1.37,1.95,-0.88,-0.04,1 -0.02,-1.25,0.65,0.76,0.85,2.03,2.62,4.66,3.51,3.82,3.59,4.20,3.24,3.10,2.92,0.45,0.97,0.31,0.81,-0.92,0.00,1 -0.36,2.22,1.88,3.99,2.79,5.01,5.13,5.23,3.97,2.69,1.92,0.43,0.01,0.22,0.07,-0.94,-0.17,-1.17,0.57,0.21,-0.58,1 -0.06,0.90,1.78,1.02,2.13,2.15,3.28,2.62,2.30,2.80,1.34,2.66,0.48,1.41,3.58,2.41,2.09,0.78,2.07,0.97,-0.99,0 -0.02,-1.03,0.20,2.34,0.14,2.77,3.44,3.13,4.87,6.14,3.66,2.25,2.03,1.00,2.02,-0.18,0.17,-0.03,-1.27,0.68,-0.09,1 -1.26,-0.26,-0.01,2.00,2.56,3.32,5.33,4.87,3.58,4.12,4.45,0.09,-0.11,-0.30,-0.31,-0.09,-2.68,-0.28,-1.51,0.65,0.94,1 --0.07,-0.74,-0.33,1.55,1.34,0.54,3.14,3.34,4.71,4.64,5.34,3.96,2.78,2.58,0.67,1.24,0.35,-0.74,-1.15,-1.86,0.30,1 -1.68,0.12,-0.69,-0.84,-0.98,0.38,0.70,2.84,4.17,2.62,3.48,5.62,2.73,5.50,2.74,2.05,0.06,-0.38,-0.25,1.18,0.65,2 --1.54,-2.73,-0.31,-0.19,0.67,1.44,1.87,1.63,4.67,6.08,6.03,2.72,4.70,4.66,3.47,1.81,1.34,1.01,0.85,0.51,-0.53,2 --0.99,-1.13,1.19,-1.38,-0.47,1.02,2.29,4.24,2.94,4.37,5.61,3.92,4.48,1.85,4.05,0.50,2.37,0.92,-1.33,0.80,-0.96,1 --1.37,-1.31,3.26,2.85,2.56,4.55,5.14,4.17,2.61,2.44,3.43,0.62,0.89,0.92,0.05,-0.05,-0.34,0.80,-0.21,-1.68,1.53,0 --0.96,1.24,-1.31,-1.59,0.29,-0.06,1.63,-0.33,0.33,1.30,3.87,5.86,4.25,3.74,6.71,5.18,1.67,2.05,-0.39,2.27,0.71,2 --0.26,-1.00,1.21,-0.47,2.99,3.73,3.39,3.47,2.88,3.87,3.13,3.58,1.92,1.24,1.14,0.52,-0.12,-0.02,-0.53,1.57,0.91,1 --0.07,1.41,0.16,1.05,0.28,3.68,3.55,4.84,4.07,2.70,4.34,2.49,3.71,3.13,3.32,1.25,-0.56,-0.26,1.59,0.87,-0.56,1 --1.78,1.87,0.19,2.33,0.28,2.26,3.97,2.99,3.15,5.00,4.89,3.23,2.46,2.04,3.09,-0.29,0.27,1.14,-0.90,1.93,1.42,1 -0.76,0.57,1.02,3.47,2.30,5.04,1.86,2.16,4.63,5.24,3.96,3.40,2.61,0.75,1.26,-0.36,0.96,1.46,0.10,1.14,-1.11,1 --0.46,0.39,-0.84,-0.82,0.08,-0.03,0.61,-0.50,1.07,1.51,0.94,2.12,6.32,5.00,4.64,5.51,3.11,2.82,1.14,1.85,0.78,2 -1.45,-0.52,0.23,0.23,1.42,0.63,1.97,-0.66,2.72,3.17,0.13,3.72,3.02,4.69,5.69,3.53,1.40,2.38,3.30,0.38,-0.65,0 --0.81,0.20,0.77,-1.25,0.22,0.05,-0.76,1.51,1.14,1.87,1.33,4.59,3.93,4.64,3.90,3.37,2.47,1.23,1.55,-1.75,1.08,2 -0.03,1.51,1.71,1.85,1.31,2.17,1.21,-0.27,3.34,1.22,2.35,2.32,2.09,3.36,5.50,5.06,3.30,2.92,2.40,0.87,0.45,0 -1.75,-0.30,-0.77,0.54,-0.04,0.72,3.00,2.19,4.11,4.22,5.34,2.78,5.34,2.56,3.07,0.52,1.02,0.20,0.91,0.30,1.76,2 --2.03,0.65,0.12,0.23,0.52,0.64,3.38,2.40,5.11,4.91,6.87,2.79,4.74,2.46,2.02,4.40,0.78,0.05,0.46,3.10,-0.64,2 --1.47,-0.18,0.47,1.83,-0.67,-0.01,2.49,0.09,2.53,1.37,3.31,5.45,4.64,3.97,2.59,4.22,1.57,1.67,1.17,1.78,-0.65,2 --0.61,0.97,1.95,1.00,1.23,4.25,4.53,3.33,4.65,2.15,1.17,1.82,1.44,0.70,0.01,-1.39,1.28,1.98,-0.34,-0.25,-0.25,0 -1.43,1.99,3.89,2.19,5.71,4.69,5.55,5.74,4.12,4.38,3.81,1.57,2.28,-0.89,1.44,-1.80,1.06,-0.90,-0.69,-1.27,1.15,1 --1.00,1.02,0.90,-0.26,-1.48,-1.44,1.76,0.44,2.64,2.48,2.94,2.60,3.97,3.99,7.57,4.13,3.42,1.56,1.64,1.29,0.20,0 --1.00,1.59,-0.79,1.62,-0.33,-0.26,1.08,1.55,0.11,0.55,4.66,3.36,3.51,6.92,3.69,4.02,3.45,2.38,0.13,1.55,2.36,2 -1.11,0.21,-1.12,2.13,-1.67,1.94,2.90,4.23,3.43,6.10,5.16,3.05,2.89,3.78,2.20,0.59,-1.12,-1.49,-0.13,0.69,-0.12,1 -0.42,-1.30,1.65,1.33,1.35,1.74,1.08,1.78,1.27,2.56,0.96,2.41,2.66,5.23,6.80,4.41,3.01,1.30,2.25,1.44,0.92,0 -1.13,-0.32,0.04,-0.85,-0.21,-0.10,-1.01,0.69,1.70,3.35,4.01,2.35,3.98,6.02,4.66,3.04,1.86,1.47,1.07,2.71,-1.32,2 -0.17,1.23,1.29,0.89,0.47,4.42,3.73,3.47,4.72,3.68,2.56,5.27,2.10,2.71,-0.10,0.51,-1.61,1.46,-0.51,0.05,-0.45,1 -1.54,0.07,2.57,2.61,2.78,4.56,4.93,4.30,2.91,3.79,3.87,1.02,0.56,-0.01,1.61,1.01,-1.33,0.97,-1.26,-0.40,0.43,1 -0.16,0.35,1.51,1.53,1.83,3.18,4.01,1.96,2.74,1.03,2.94,1.65,0.55,2.80,2.57,1.18,2.20,1.66,1.59,-0.18,-0.70,0 --1.98,0.20,-0.81,-1.05,-0.65,-0.49,-0.23,0.78,2.44,2.69,3.42,4.05,4.09,2.75,6.34,2.93,3.33,0.33,-0.12,1.33,1.46,2 -0.86,0.10,-0.82,2.92,3.27,4.86,2.92,3.63,1.07,1.58,1.96,1.40,0.80,2.46,2.15,2.29,1.71,1.28,2.80,-0.61,0.44,0 -2.05,1.15,-1.01,1.11,-1.17,-0.29,1.11,2.42,1.11,0.60,3.02,1.30,3.20,5.20,6.67,4.10,3.18,2.25,1.28,3.00,-0.67,2 -1.45,1.89,-0.41,1.22,2.48,2.38,7.05,2.90,2.64,1.12,3.76,3.16,3.00,3.20,2.49,2.78,1.86,1.74,-0.13,0.81,-1.84,0 -0.49,0.36,1.61,2.02,-0.76,3.06,2.70,2.50,5.52,4.04,4.02,2.74,2.78,3.68,2.29,-0.38,-0.44,-0.43,-0.09,0.21,0.00,1 -1.26,1.98,0.66,2.98,4.42,2.91,4.09,2.58,2.76,1.78,0.92,1.60,1.20,2.24,2.65,2.24,1.00,2.14,-1.78,0.95,-0.35,0 -2.23,1.12,1.53,2.26,4.33,3.71,6.10,4.21,3.08,3.29,3.46,1.82,0.96,0.23,0.69,0.20,2.30,-0.12,-1.25,-1.40,0.05,1 --0.35,-0.46,-0.40,-0.55,-0.85,0.87,0.71,2.43,1.50,3.34,3.73,3.50,5.18,4.83,4.50,4.51,2.50,0.20,-0.99,-0.57,1.46,2 -1.30,1.17,0.24,2.18,2.33,4.95,4.08,3.59,2.05,1.00,2.71,3.02,1.14,2.57,2.66,3.59,3.31,2.48,0.56,2.27,0.50,0 --2.17,0.54,-0.29,-1.61,0.61,-0.94,2.20,4.01,3.05,5.59,5.29,4.17,5.16,1.54,3.74,2.04,-0.70,1.56,-0.41,-0.43,-0.30,2 -0.41,0.30,2.18,1.89,3.46,3.93,3.58,3.81,1.70,1.88,0.63,0.04,1.93,2.38,2.32,1.34,1.88,1.44,0.22,1.20,-1.01,0 -0.74,1.05,1.06,4.32,3.32,4.50,5.42,4.54,4.53,3.93,2.61,0.97,-1.89,-0.31,1.88,1.46,0.63,-2.64,0.77,-0.18,-0.02,1 --1.48,0.27,-0.54,1.98,1.41,2.39,2.01,3.02,4.92,2.03,6.83,4.17,1.25,3.10,0.28,2.19,-0.06,0.68,-1.25,-0.57,-0.40,1 -0.09,1.64,1.19,3.40,2.10,3.98,4.50,3.54,1.16,1.47,2.15,-1.69,0.75,0.54,0.96,1.41,1.11,0.91,0.95,0.66,-0.50,0 -0.34,0.09,0.33,0.76,0.10,4.11,3.33,5.16,4.26,4.80,3.72,3.72,0.82,1.49,0.56,0.90,-2.70,-0.63,2.50,0.18,-2.44,1 --0.19,-0.07,1.39,0.80,3.41,0.81,3.88,4.25,3.58,5.97,5.33,2.19,2.28,1.05,4.10,0.65,-1.61,0.95,0.29,0.83,1.09,1 --0.98,-0.05,-1.14,1.24,-0.15,0.13,-0.24,0.45,0.63,0.50,0.77,2.31,3.54,4.70,5.71,4.21,4.90,3.84,2.68,1.71,0.88,0 -0.98,-0.14,1.34,1.47,-0.11,4.06,4.15,4.02,4.38,3.34,3.29,2.09,0.82,0.18,0.57,-0.03,1.30,1.92,-0.91,0.12,-0.38,1 -0.70,-1.12,-0.19,-0.34,-0.83,0.09,0.60,1.40,0.10,1.73,3.06,6.31,4.45,4.02,5.75,3.03,1.32,1.42,2.16,-1.46,0.98,2 --0.49,1.04,-0.28,-0.97,1.50,0.57,1.77,1.89,1.50,3.08,2.91,4.22,5.52,4.30,5.16,2.08,4.00,1.84,0.02,-0.63,0.89,2 -0.01,-0.47,-0.20,2.71,3.35,2.47,5.84,5.33,4.46,4.58,2.34,-0.02,-1.51,0.24,-1.62,-1.04,0.61,-0.32,-0.49,0.33,0.78,1 -0.45,1.05,0.45,1.74,0.77,2.17,1.07,0.75,1.82,1.18,1.25,1.61,1.53,3.94,4.25,3.04,3.78,1.46,0.24,-0.85,1.03,0 -0.80,0.86,-0.11,1.46,1.82,3.12,5.01,2.31,2.60,1.99,2.25,1.38,1.62,3.00,1.07,2.16,1.16,1.43,1.02,-1.01,-2.31,0 --0.55,-0.82,-0.43,0.85,1.84,0.80,0.83,1.44,0.37,2.28,1.80,2.85,3.20,4.76,3.30,4.40,4.55,1.61,0.62,-1.04,-0.70,0 --0.50,0.38,0.70,1.15,0.42,0.96,3.44,1.99,2.35,3.97,5.50,3.32,2.21,0.56,1.20,0.44,0.55,1.12,-1.60,-2.06,-1.26,1 -0.07,0.77,-0.73,-1.20,0.98,3.37,2.90,3.95,3.24,4.09,5.78,4.93,3.23,1.68,1.12,3.12,-0.20,2.55,1.05,0.45,-2.03,1 -0.18,0.14,1.97,0.62,2.42,2.72,5.14,2.86,2.20,2.83,4.01,0.96,-0.18,1.36,0.64,2.46,-1.05,0.92,1.95,0.98,0.32,0 --1.00,0.14,2.15,2.55,4.92,5.30,4.32,4.68,5.71,2.40,1.35,1.40,1.80,1.69,-0.23,0.38,1.96,0.17,0.79,2.05,0.41,1 -0.57,1.85,-0.47,1.91,0.38,-0.35,0.86,2.21,-0.66,0.56,1.26,1.61,4.56,5.13,4.92,5.05,3.03,4.95,3.08,0.77,0.82,0 -0.50,0.13,0.73,1.73,2.93,3.55,2.83,3.56,3.60,2.76,4.51,3.13,0.58,1.39,-0.67,1.86,0.33,-0.10,0.15,0.75,-0.39,1 --1.22,-1.18,0.94,0.61,5.57,4.00,6.76,4.78,4.11,3.07,2.35,2.64,-0.08,1.05,0.71,1.01,1.12,1.25,1.00,-0.02,2.19,1 --0.64,-0.40,0.77,0.59,1.09,1.34,1.31,1.60,1.77,1.73,0.38,1.18,1.71,3.10,3.24,3.54,2.60,3.63,1.59,0.88,0.85,0 -0.06,0.16,0.71,1.74,2.24,0.41,3.78,3.69,2.90,2.18,0.92,2.68,3.47,1.09,3.09,1.82,3.27,1.29,0.22,1.65,3.67,0 --0.01,3.20,3.57,2.18,2.42,3.07,5.96,3.05,3.17,1.47,2.19,0.13,0.63,3.39,0.89,-0.46,-0.82,-1.43,-1.03,-1.96,-0.20,0 -0.12,0.15,-0.06,-0.97,0.32,0.86,1.95,3.52,2.07,4.50,8.50,3.12,3.29,3.66,1.65,-0.26,0.48,2.47,2.05,-1.47,1.64,2 -0.45,1.80,1.44,0.06,1.31,-0.25,2.24,2.17,2.83,3.83,5.80,3.25,1.35,1.64,3.53,1.86,-1.23,0.30,-1.34,-0.43,1.48,1 --0.33,-0.15,0.19,1.54,0.70,0.70,2.34,2.24,1.27,1.08,3.15,4.70,1.08,3.45,4.53,3.35,2.24,0.54,1.11,-0.61,-1.34,0 -0.03,0.35,0.78,0.81,-0.65,-0.12,1.96,1.46,2.22,5.78,5.05,3.11,2.26,2.94,1.16,2.33,-0.75,0.99,0.15,-0.94,0.30,2 --0.14,0.63,1.76,1.08,3.94,5.46,7.49,5.07,5.82,2.82,5.07,1.06,2.10,1.89,-0.24,1.02,1.72,-0.10,1.19,0.03,-1.35,1 -0.26,-0.67,0.26,0.94,0.40,3.12,2.03,0.99,1.95,0.85,1.03,0.83,3.27,3.50,3.05,3.37,3.25,1.11,0.76,-1.12,1.58,0 -0.12,-0.33,1.63,1.97,-0.42,3.12,3.23,3.63,3.56,1.44,1.45,1.70,2.66,2.16,3.21,1.39,2.24,1.61,1.50,-0.02,0.31,0 --1.56,-2.15,0.99,-0.28,-1.06,0.99,1.60,2.86,4.20,1.78,3.62,5.14,4.83,4.15,3.39,5.80,0.71,0.12,-0.42,-0.64,-0.28,2 --0.16,-0.45,-1.16,0.50,0.12,-0.43,-0.12,0.98,3.50,2.89,4.11,4.50,3.69,3.83,3.93,3.36,1.90,0.57,1.20,0.86,-1.12,2 --1.28,0.36,1.14,2.87,2.56,3.28,5.61,4.37,2.82,4.35,1.91,2.31,1.02,1.82,3.38,2.80,0.98,0.72,0.31,-0.99,1.02,0 --0.93,0.44,-1.24,-0.56,-1.38,-0.05,3.32,2.86,2.98,4.75,4.93,5.85,4.07,2.09,2.62,3.12,1.17,0.53,0.12,-0.25,-0.29,2 -1.03,1.39,-0.81,1.89,4.47,1.80,5.34,5.82,3.03,4.39,4.12,3.69,2.59,3.60,-0.42,-2.02,2.37,-0.41,0.62,-0.80,0.26,1 -0.33,0.26,-1.46,0.26,-0.45,1.14,2.40,1.37,0.70,1.96,4.74,3.52,3.94,3.65,5.62,6.86,3.20,2.94,3.06,1.73,0.44,2 -0.30,3.18,0.81,2.77,3.33,4.29,6.46,3.08,3.24,1.36,0.75,1.74,0.31,0.92,1.05,1.02,1.18,1.83,-0.58,1.67,0.67,0 -2.01,0.66,-0.31,0.65,1.68,2.95,7.04,5.00,6.20,2.58,2.53,3.21,0.20,-0.06,1.00,-0.01,2.85,0.66,-0.07,0.54,-0.67,1 --1.04,1.48,2.05,0.77,1.10,1.03,1.35,4.66,4.89,5.71,5.87,3.33,1.92,1.46,2.51,0.02,-0.17,1.16,-0.58,0.00,0.45,1 -0.76,0.59,0.77,-2.56,-1.15,-0.89,1.98,2.95,3.03,3.73,6.41,5.91,5.30,3.65,2.08,1.45,0.69,0.86,0.99,-0.03,0.20,2 -0.23,1.26,0.29,0.84,0.58,0.34,0.01,1.78,-0.59,0.91,2.62,2.44,3.56,4.91,5.37,4.04,2.74,3.26,3.00,1.23,1.23,0 --0.41,1.65,3.03,2.08,4.00,3.75,4.85,6.65,2.58,3.76,1.25,1.14,-1.10,0.67,1.32,-1.80,0.13,0.23,0.29,-0.72,-1.67,1 --0.56,-0.63,0.77,0.69,0.83,-0.13,0.04,-1.21,-1.01,-0.16,1.97,1.59,3.44,6.03,6.28,4.21,3.25,3.44,1.68,1.82,1.40,0 -0.46,0.54,0.74,1.01,1.55,2.28,3.09,2.82,1.95,1.84,2.44,0.59,4.53,2.80,4.25,3.77,1.10,1.47,-0.22,2.38,-1.05,0 -0.21,0.84,0.68,2.54,2.90,3.23,3.95,3.66,2.36,2.92,0.79,2.65,2.41,1.22,5.02,2.26,0.08,0.29,0.47,0.10,1.14,0 -1.35,0.45,1.09,2.88,2.56,3.93,1.74,2.30,2.56,2.31,1.65,0.77,2.01,-0.75,2.84,2.37,0.35,1.64,1.72,1.65,-0.97,0 -0.93,-1.73,1.06,0.69,-0.12,3.32,0.78,2.17,2.57,4.26,2.83,2.35,4.36,2.22,3.00,3.01,2.43,2.54,1.73,-0.12,1.42,2 -0.72,0.58,1.48,1.07,2.24,3.43,4.40,2.99,5.64,5.26,6.23,4.13,0.39,0.23,1.98,1.06,1.14,-0.13,1.47,1.39,-0.41,1 --1.38,1.83,0.16,-0.30,0.76,1.56,4.71,4.42,3.24,3.94,6.12,5.07,4.45,3.90,1.10,1.68,-0.60,-1.39,0.78,-1.35,0.35,1 --0.20,0.79,2.22,-0.92,-1.24,-0.09,0.24,2.06,1.67,1.37,5.79,4.91,2.75,3.38,1.43,0.57,-1.15,1.32,-0.08,-1.48,-1.12,2 --0.58,1.11,-0.32,2.15,-0.76,4.37,3.89,4.09,3.39,4.02,5.83,4.77,1.30,0.75,0.21,0.15,-0.91,1.31,-0.10,0.00,-0.61,1 --0.39,-0.65,0.13,-0.87,-2.89,-0.26,0.94,1.96,2.52,4.08,4.52,5.16,2.75,3.69,4.03,2.87,1.31,2.52,2.31,-0.07,-0.69,2 -0.24,0.48,1.91,-0.10,1.06,0.47,1.17,-0.72,-0.81,2.48,1.36,2.00,5.12,6.14,5.04,4.32,3.23,3.66,1.28,2.10,-0.54,0 -1.89,-1.65,3.52,-0.59,0.94,1.54,2.29,3.50,5.07,4.48,5.62,4.17,2.94,5.39,1.83,1.83,-0.38,-0.30,0.48,0.63,1.06,1 -0.55,0.65,0.12,1.20,2.59,1.76,0.65,0.55,-0.18,1.85,1.61,1.85,2.82,2.33,4.94,3.77,3.08,1.83,0.93,2.19,0.08,0 -0.01,-0.66,-0.20,2.22,-0.26,-0.65,-0.34,0.85,-1.29,1.21,1.40,3.50,4.89,6.29,4.63,3.41,3.44,0.74,2.56,1.11,-1.70,2 --1.54,0.83,1.71,2.32,3.39,2.19,4.72,2.72,3.60,1.78,2.13,1.92,2.02,2.40,3.80,1.78,1.92,0.01,1.17,1.52,-0.14,0 -0.04,-1.24,1.82,0.80,0.51,1.58,1.82,3.36,4.32,2.94,5.86,4.58,3.03,1.90,3.05,1.69,0.09,0.90,0.53,0.75,0.76,1 --2.48,0.59,1.00,2.11,-0.28,6.48,4.47,3.57,3.15,3.61,6.02,5.39,2.66,3.01,1.74,3.10,-0.15,-0.18,-1.70,-0.23,0.66,1 --1.61,0.49,0.77,1.26,3.02,5.91,3.72,4.50,4.86,3.98,3.59,1.32,2.16,0.86,1.45,1.05,-0.45,-0.03,-0.58,1.08,0.32,1 --0.66,0.90,2.30,2.65,5.12,5.22,7.24,5.13,5.09,1.31,1.26,-1.43,0.39,1.96,1.48,1.88,2.57,0.82,-0.17,1.43,1.84,0 -0.55,1.79,0.57,-1.30,-0.07,1.58,1.65,2.04,3.22,5.93,6.08,4.15,3.24,2.72,2.24,2.42,1.84,-0.16,1.14,0.83,0.30,2 --0.60,1.26,4.08,4.10,3.00,3.93,7.36,5.57,4.22,1.48,1.56,1.36,-1.06,-0.63,1.48,1.86,1.36,-0.50,0.98,-2.27,-0.30,0 -0.30,-0.17,0.09,0.59,-0.27,2.30,0.72,1.22,1.50,1.78,1.00,3.60,3.47,2.14,3.70,2.92,1.93,1.95,-0.09,3.57,-0.86,0 --0.86,0.01,-1.22,0.53,0.94,1.06,1.78,3.37,4.69,3.26,7.43,5.51,3.11,1.74,1.54,2.26,-0.04,-1.36,-0.54,0.73,-1.77,1 -1.22,-0.80,1.28,0.80,0.35,0.82,4.75,2.34,3.39,4.17,3.61,2.61,5.55,4.92,2.41,2.69,-0.92,-0.14,1.72,0.47,2.23,2 --1.36,-2.60,-0.30,-1.64,0.40,-1.89,1.12,3.11,3.25,5.81,4.53,3.63,4.55,3.65,1.24,0.75,-0.48,-0.94,0.17,-1.84,2.02,1 --0.85,-0.76,-0.47,0.16,0.07,-1.24,0.98,2.08,3.91,6.25,6.50,6.12,3.75,2.99,2.70,2.86,0.39,-0.02,-0.80,0.13,1.20,2 --0.71,-0.82,-1.12,0.63,0.24,0.27,1.17,0.46,1.27,1.62,4.46,1.53,2.74,4.47,5.39,3.77,3.49,2.42,1.12,0.23,-0.49,0 --0.29,-0.38,-0.13,0.01,-1.08,-0.69,2.85,1.21,1.00,0.98,4.27,4.13,4.26,2.68,4.06,2.21,0.01,0.88,-1.00,0.60,0.04,2 --2.41,-1.70,-0.48,1.97,-1.42,-0.01,3.29,1.32,6.72,5.35,4.81,5.73,5.68,4.82,1.96,1.28,-0.17,-0.31,-0.17,-1.00,-0.16,2 --0.63,-0.78,1.64,1.61,1.96,2.96,1.92,3.86,3.63,5.94,6.88,5.73,2.87,4.20,2.86,0.38,-0.75,-0.01,0.90,0.70,1.13,1 -1.05,1.70,-0.73,0.21,1.72,2.77,2.05,1.55,0.42,2.58,0.91,1.96,1.77,3.77,4.06,2.31,1.33,0.76,-0.06,-0.10,1.77,0 -1.29,0.41,1.50,2.03,4.17,5.50,6.15,5.78,3.46,4.47,2.57,2.52,-0.62,0.81,0.21,-2.40,-0.66,-1.26,1.14,0.05,0.78,0 --0.84,0.26,0.02,-0.32,0.38,2.29,0.10,3.69,3.41,6.12,6.00,3.05,3.78,2.39,1.80,1.86,-1.00,-0.44,-0.96,0.37,-0.86,1 -0.99,0.63,0.69,0.49,0.90,0.98,1.18,4.08,4.03,6.24,6.59,4.32,2.69,3.95,2.08,-0.48,-0.49,-0.91,-0.20,0.97,1.31,1 -0.71,-0.86,1.22,0.99,1.33,1.67,2.94,4.75,3.53,1.80,1.60,2.60,2.08,-0.02,2.02,1.16,3.19,1.46,0.80,-0.02,0.32,0 --1.15,-0.41,0.57,-0.18,-0.66,-0.16,2.49,2.63,2.06,3.09,3.08,4.77,3.46,3.14,1.83,1.43,-0.27,0.90,-1.44,-0.56,0.58,2 --0.09,0.60,0.78,-0.23,0.60,-0.13,1.96,1.67,1.40,2.15,4.94,3.66,3.11,3.95,4.20,1.30,2.30,1.09,-0.78,1.09,-0.75,2 --0.03,0.71,1.22,0.40,2.54,2.03,4.57,2.46,1.52,2.42,2.37,2.67,-1.06,2.27,2.58,0.50,3.51,1.13,0.29,0.56,0.75,0 --0.04,0.83,1.42,-0.03,1.19,-0.29,-0.26,0.65,1.53,4.13,5.15,5.10,3.64,3.72,4.38,2.77,2.39,1.84,1.17,-0.00,1.20,2 --0.32,2.45,1.42,1.94,1.75,5.00,4.42,2.81,3.67,3.20,4.63,4.15,1.63,0.51,1.59,1.18,1.36,1.83,-1.15,-1.01,0.61,1 -0.16,-1.65,-0.55,1.54,-0.12,-2.49,-1.30,-1.51,0.69,2.39,2.59,2.15,4.21,4.63,6.21,3.97,4.16,2.87,3.15,3.83,-1.10,2 -0.70,-0.20,2.68,1.97,4.03,3.74,4.60,3.17,6.06,3.05,2.18,2.35,0.78,3.46,-0.68,2.56,-1.06,0.02,0.98,-0.11,0.33,1 -1.24,0.29,1.16,-0.58,-0.25,4.59,2.47,4.38,4.99,4.80,3.82,4.32,1.87,0.90,2.22,1.39,0.97,-0.36,0.35,-0.26,-0.45,1 --0.17,1.14,0.71,3.05,4.96,6.73,5.80,6.51,3.73,2.38,2.36,2.42,0.61,-0.50,-0.94,1.91,1.10,-0.65,-0.07,-0.42,-0.76,1 --0.95,-0.28,0.51,-0.19,0.43,2.19,3.01,0.11,2.24,2.81,4.47,2.67,2.44,3.19,4.44,3.19,2.18,2.58,1.10,1.26,-0.79,0 -1.89,0.68,0.86,3.12,1.62,4.19,5.37,4.63,3.72,2.74,1.93,1.27,2.70,0.45,1.62,1.50,1.55,1.59,-1.16,-2.76,0.44,1 -1.20,0.62,1.85,3.33,3.55,3.65,4.84,3.54,5.24,2.70,1.64,1.81,-1.19,-1.26,2.37,-0.51,2.27,0.91,-0.54,-0.13,0.91,0 --0.54,-0.58,0.76,-0.70,-0.14,0.65,2.26,2.51,3.16,3.01,3.35,5.04,4.92,4.22,2.19,1.27,0.05,-0.27,-0.90,0.01,0.96,2 --0.58,0.88,-0.34,0.41,-0.12,-0.06,-0.15,3.46,0.53,3.24,4.82,3.94,3.53,3.99,6.01,3.06,2.88,0.33,1.84,0.41,1.00,2 -1.21,0.42,0.51,-0.88,-0.02,0.30,-0.17,1.08,0.69,2.50,2.51,2.74,4.50,5.38,8.72,4.34,4.05,2.22,0.54,-0.44,-1.01,2 -0.68,2.87,1.84,2.08,3.00,4.45,4.64,4.72,4.39,2.14,2.03,0.27,0.95,0.50,-0.43,0.10,0.34,1.18,0.82,0.55,-1.32,0 --1.28,0.23,-1.18,0.83,1.96,2.63,2.98,2.45,3.05,4.53,5.99,3.50,4.20,2.86,3.52,0.76,1.56,1.37,0.02,-0.62,1.50,2 --0.17,-0.02,2.03,1.10,0.73,0.34,2.43,1.27,0.98,5.69,6.82,4.21,4.97,2.68,4.06,2.36,1.49,0.88,-0.38,3.11,-2.78,2 --0.98,-1.60,0.12,0.25,-0.23,1.99,2.02,2.52,4.06,5.65,5.10,3.74,3.89,2.43,3.13,0.81,1.44,0.10,-0.09,-1.47,-0.89,2 --0.42,-1.57,0.53,0.19,0.68,-0.08,1.86,2.42,5.16,5.92,6.66,5.05,2.99,1.51,3.06,1.73,0.35,0.19,-2.26,-1.19,-0.89,1 -1.27,0.43,0.39,1.30,2.93,0.23,4.28,4.45,2.39,3.75,5.70,6.58,2.00,0.40,1.28,2.15,-0.10,-0.04,-1.33,-0.50,0.92,1 -0.21,0.13,0.09,2.48,2.25,1.47,4.15,3.34,6.44,3.89,5.56,3.10,1.92,1.62,1.81,0.36,0.43,-0.52,0.26,-0.70,-0.45,1 --1.16,0.56,0.36,-0.93,0.12,0.64,-0.73,0.55,0.10,0.96,1.82,2.56,3.16,6.98,6.74,4.98,4.55,1.27,2.12,1.63,-0.65,2 -0.24,-2.18,-0.03,-1.10,-1.69,1.02,1.07,1.47,3.87,6.01,4.86,4.34,3.24,3.72,2.65,0.31,1.88,0.52,2.19,-0.98,1.22,2 --0.00,2.49,0.16,4.10,4.82,5.20,5.83,3.84,3.80,2.93,0.40,2.87,0.58,1.18,1.44,0.56,-1.35,0.01,0.28,2.05,-1.12,1 -2.42,-0.41,-0.73,-0.28,0.93,-0.35,0.69,1.86,2.14,3.17,5.91,3.44,3.48,5.26,2.84,2.09,1.71,-0.52,0.49,1.44,-0.10,2 -0.73,-0.31,1.97,0.72,4.14,6.60,6.36,3.58,4.14,3.34,0.82,-0.45,-1.36,-0.20,-0.83,0.94,0.21,-0.30,0.47,0.87,-2.23,0 -0.29,0.82,2.47,2.23,4.88,5.53,6.19,4.67,4.83,4.34,2.55,2.42,3.06,0.99,-0.71,1.08,-0.79,-0.44,-0.82,2.42,0.71,1 --1.04,-1.45,0.88,2.24,2.70,4.18,3.70,3.25,4.19,1.88,2.34,1.37,0.61,0.19,1.03,-0.28,-1.08,-0.01,0.32,0.06,0.88,1 -1.46,-2.93,0.83,-1.77,-0.24,-1.03,0.52,1.02,1.14,0.50,0.57,3.26,4.26,4.42,6.95,4.66,3.36,2.76,1.21,1.57,-1.16,2 -0.03,0.50,0.32,-1.68,-0.22,1.70,1.56,2.33,3.02,3.09,5.04,3.84,3.12,2.86,2.21,4.43,2.27,1.40,0.74,1.12,-0.73,2 -0.66,2.13,2.15,2.03,1.56,3.59,3.33,3.74,1.37,4.11,1.76,2.41,1.24,0.58,2.28,2.75,3.05,0.76,2.02,0.37,0.95,0 --0.81,-0.07,0.87,-0.50,1.10,0.37,2.00,0.30,1.06,2.56,5.08,3.81,4.65,6.65,4.08,2.31,1.97,0.52,2.20,2.00,-0.47,2 -0.19,2.18,1.79,1.12,1.78,2.33,3.24,3.04,5.25,4.26,4.27,3.31,2.61,1.87,1.95,0.20,0.25,-0.42,-0.29,-0.30,0.51,1 -0.30,-0.17,1.57,1.70,4.88,2.37,5.05,4.31,2.17,2.87,2.85,1.88,0.85,3.52,0.83,2.31,1.57,1.14,1.11,1.32,-0.15,0 -1.12,0.40,2.27,1.57,2.60,3.44,3.77,2.60,4.09,3.17,4.59,2.41,2.64,1.36,2.98,2.16,1.32,-0.60,-0.86,0.61,0.03,1 -0.18,-0.01,-0.05,0.49,2.58,1.59,2.62,1.16,2.58,3.26,1.91,1.87,2.06,0.93,2.10,3.28,0.24,0.43,1.75,0.94,-0.51,0 -1.98,1.52,2.80,1.54,-0.34,-0.24,1.68,1.54,2.03,3.77,5.17,5.78,3.53,3.28,2.04,0.69,3.32,-0.20,0.85,-0.83,0.48,2 -0.82,0.84,1.33,2.33,1.16,4.25,5.02,2.47,3.92,3.29,3.87,2.23,-0.50,1.32,0.13,1.91,0.07,0.96,2.67,0.36,-0.97,0 --0.15,-1.56,-1.95,-0.06,0.09,-0.63,2.24,1.97,2.47,1.69,4.65,3.70,4.47,2.55,4.58,3.10,1.57,0.15,-0.79,1.01,1.74,2 --1.56,-0.49,1.38,1.79,4.38,3.81,4.85,4.38,4.11,1.87,3.10,2.40,1.23,0.02,0.59,0.65,-0.02,1.46,0.31,0.61,-0.18,1 --0.48,0.29,0.87,2.46,2.34,4.56,4.37,4.44,4.05,2.62,1.08,-0.49,1.30,0.28,2.24,1.05,-0.95,0.11,0.46,-0.21,1.31,0 -1.40,0.98,2.03,2.35,2.35,0.39,2.62,2.60,2.11,0.99,2.27,1.42,0.08,2.61,3.19,3.81,2.26,0.90,2.38,0.23,-0.51,0 --0.26,2.13,-0.27,-0.57,0.65,2.42,3.35,5.24,2.96,3.98,2.92,2.76,3.14,1.86,-0.35,2.13,-1.13,0.83,-0.64,1.01,-0.57,1 --0.09,-0.99,0.50,2.90,2.74,2.56,4.07,2.95,4.34,2.73,1.20,2.34,1.08,0.60,0.56,-0.11,-0.41,-1.36,-1.34,0.16,0.31,1 --0.11,-0.07,2.16,2.33,2.59,2.38,3.99,1.94,4.37,3.59,2.52,2.69,0.49,0.48,1.52,1.14,2.72,-0.13,-0.59,0.38,0.54,0 --0.36,0.10,0.76,-0.13,1.08,0.31,-0.45,1.44,1.84,0.63,0.98,3.12,1.82,4.40,4.77,3.49,3.78,1.02,0.65,0.37,0.10,2 -0.03,1.30,1.66,0.87,2.57,3.98,3.26,3.02,3.28,3.89,4.28,4.06,1.11,2.11,2.38,0.90,1.41,-0.74,0.18,0.08,1.19,1 -0.07,1.29,0.93,0.57,-0.32,2.42,2.54,3.92,5.62,3.01,3.74,4.12,2.95,2.61,1.65,1.41,1.02,-0.35,-0.43,0.57,-0.21,1 --1.92,-1.12,1.81,3.87,2.73,5.58,5.53,3.94,3.44,4.59,1.45,1.48,-1.56,1.08,-0.71,1.38,1.59,0.58,0.28,-0.13,-1.18,1 -1.14,-1.42,-0.28,0.47,0.48,1.29,0.91,2.75,2.18,3.54,4.61,6.29,1.84,1.77,1.29,0.97,0.80,-0.11,0.94,0.86,-0.52,2 --0.59,-0.26,0.15,1.64,1.62,1.95,4.18,3.24,5.52,4.67,5.17,5.83,2.77,2.26,2.80,1.52,1.18,-0.07,-0.90,0.41,-0.31,1 --0.02,1.36,2.41,1.24,2.53,2.28,1.32,1.65,3.96,6.24,6.13,3.22,2.59,1.65,2.45,0.16,-0.63,-0.74,0.51,-2.42,0.40,1 -1.24,0.78,0.51,3.22,3.78,3.53,4.60,4.07,3.94,4.39,3.01,-1.20,0.62,1.76,-0.04,1.14,-0.65,0.51,-0.96,0.06,-0.64,1 -0.09,-2.50,0.58,0.31,-1.28,-0.39,1.05,2.25,2.26,1.87,5.23,4.34,2.62,4.88,4.62,1.73,2.14,0.11,0.48,2.35,-0.71,2 -1.79,-0.76,-0.58,-0.18,-0.13,-0.12,-1.31,0.29,-0.33,2.01,1.38,2.67,5.18,4.78,5.19,4.45,3.33,2.43,0.68,0.44,-0.59,2 -0.05,0.93,1.83,2.15,1.87,3.50,4.32,3.69,3.90,3.43,2.79,1.07,1.05,1.47,0.86,2.10,-0.16,-1.16,-0.82,0.03,-0.77,0 --0.26,1.10,0.98,2.15,0.84,1.67,1.06,2.59,4.01,5.66,6.18,3.10,4.53,2.92,1.92,0.81,0.74,0.05,-0.75,-0.63,0.82,2 -0.46,1.55,1.35,2.48,0.80,1.92,1.53,3.74,2.07,1.68,0.73,3.16,2.40,3.33,1.80,1.44,2.07,2.03,1.06,-1.37,0.41,0 -1.13,-0.24,1.06,2.55,0.26,3.37,2.42,2.87,1.71,4.49,2.00,1.83,3.77,3.18,1.49,3.69,-0.74,1.64,1.49,0.89,-3.88,0 -0.37,1.63,0.92,-0.17,3.30,3.07,3.87,1.82,0.62,2.02,2.67,1.82,1.33,1.02,1.06,1.51,2.11,0.72,2.71,2.13,-1.73,0 --0.84,-1.49,1.01,-2.73,-0.32,-0.83,2.95,0.36,3.45,3.35,2.46,3.30,4.35,2.37,2.89,0.71,1.59,3.24,0.06,1.00,1.11,2 --0.56,0.64,-0.19,0.14,-0.46,0.88,1.66,1.98,1.03,4.77,4.91,5.12,4.58,5.96,5.57,3.13,2.24,1.84,0.32,-1.05,1.36,2 --0.17,-0.85,1.03,0.92,-0.38,0.58,0.05,2.96,1.01,2.59,3.26,3.05,4.49,2.23,4.05,2.51,2.20,0.32,1.71,1.29,-0.59,2 -0.04,-0.03,-0.92,1.49,2.40,3.43,2.76,2.92,2.24,3.04,0.97,2.26,0.59,1.42,2.55,1.51,2.48,2.31,0.40,1.71,-1.23,0 --2.08,0.36,1.52,2.46,2.78,5.65,5.84,5.46,4.63,1.22,2.77,1.69,0.80,1.30,-0.05,0.30,-1.21,0.37,1.61,0.16,-0.54,1 -1.18,1.39,2.02,0.61,1.78,2.07,5.57,3.74,3.55,3.65,4.24,2.40,0.18,1.48,-0.85,1.04,-0.65,0.91,0.72,-0.25,-0.85,1 --0.75,0.92,0.62,1.15,0.36,1.94,3.25,3.61,4.31,3.83,4.96,2.52,1.56,2.65,1.25,0.08,-0.45,-1.01,1.60,-0.56,0.24,1 -0.24,0.37,0.32,2.15,2.72,1.84,3.34,2.15,2.65,2.48,1.50,1.83,1.38,1.69,3.18,0.13,0.09,1.73,-0.20,1.57,0.45,0 --0.90,-1.05,0.51,1.24,1.59,0.14,2.59,2.54,-0.80,-0.35,1.75,3.25,3.70,4.87,3.61,5.16,3.82,0.56,2.03,0.67,-0.27,0 --0.64,-0.05,-0.28,-1.33,0.27,2.16,3.31,3.61,4.95,3.72,5.68,4.98,3.97,2.83,3.02,2.37,-0.22,0.40,2.13,0.24,0.61,1 -0.01,0.51,0.77,0.03,-0.42,2.23,3.90,2.93,3.16,3.11,0.83,2.80,2.59,2.32,3.59,3.68,2.96,-0.18,1.31,0.67,0.63,0 --1.25,1.88,0.35,1.01,-1.52,1.32,3.64,1.57,3.41,3.26,6.04,6.57,3.55,5.68,1.17,1.04,0.50,0.45,2.27,1.60,-0.28,2 --0.52,-0.09,-1.48,-0.27,-0.19,1.35,3.34,1.62,1.58,3.95,3.63,4.49,2.32,3.32,3.35,1.26,-0.07,1.90,-0.15,0.98,-0.65,2 --1.01,-0.33,0.47,1.74,0.07,0.89,1.66,1.81,5.24,4.13,6.05,5.28,4.57,2.29,2.32,2.78,1.59,0.07,0.74,0.27,0.74,2 --0.45,1.82,0.67,3.98,0.87,1.44,1.47,2.73,4.50,2.72,5.33,4.41,2.66,0.63,-0.14,-0.26,0.44,1.86,0.01,2.10,-1.95,1 --0.29,-0.49,1.52,1.60,1.42,2.74,4.30,1.61,3.63,3.31,4.99,4.98,3.44,1.52,0.07,-0.19,-0.28,-0.10,-0.79,1.34,0.27,1 -1.16,0.42,0.42,0.79,1.09,1.82,1.83,2.64,1.30,2.48,2.20,2.20,1.43,4.55,3.76,1.59,3.90,1.35,2.99,1.54,1.09,0 --0.73,2.62,1.46,2.20,1.38,2.85,3.73,2.48,2.84,2.34,0.71,2.75,3.82,2.40,2.35,1.46,0.63,1.95,1.29,-0.83,-0.03,0 -1.30,0.67,0.88,1.35,0.86,2.29,0.66,-0.72,1.81,2.48,0.39,4.33,4.22,5.45,4.77,3.05,3.38,2.52,3.16,-0.27,-0.34,0 -1.21,1.25,-0.20,-0.07,0.61,1.06,1.61,2.77,-0.07,1.83,1.83,2.65,2.98,5.26,5.58,3.15,5.04,3.90,2.50,3.26,0.02,0 --0.61,1.23,0.07,-0.32,0.51,1.69,1.45,1.30,1.43,3.43,4.94,5.39,2.86,3.30,5.37,2.41,2.85,-0.44,-1.23,1.22,0.89,2 --0.27,1.89,-1.32,1.31,-0.08,0.37,0.87,3.23,5.46,6.15,6.44,4.39,2.12,2.57,2.30,1.91,1.27,-1.83,1.16,0.42,-1.49,2 --0.74,0.33,-0.79,0.29,0.09,0.36,-0.20,0.09,0.10,0.27,1.62,3.09,5.59,4.95,5.37,4.17,4.31,2.68,2.38,1.58,0.44,2 -0.11,-1.30,-0.62,-0.15,0.85,1.66,4.18,2.82,5.08,7.63,5.74,4.05,2.66,2.77,1.92,2.73,-0.11,-0.44,1.01,0.84,-0.39,1 -0.78,-1.19,-1.06,1.04,-0.32,0.41,3.27,2.32,5.18,5.02,7.11,4.29,5.08,1.26,2.22,0.15,0.22,-0.83,0.23,-0.99,-1.26,2 -1.30,0.60,0.71,1.23,2.97,3.45,3.38,2.86,4.94,4.46,4.74,3.73,0.42,2.35,0.64,0.22,0.28,-0.69,0.22,0.56,-1.15,1 -0.23,-0.38,-0.03,0.89,1.85,3.81,3.01,1.80,2.47,3.04,0.58,1.60,-0.06,0.54,0.79,-0.63,-0.77,-0.62,-0.40,1.15,0.69,0 -0.64,1.22,2.00,3.77,4.30,3.89,5.08,3.78,6.04,2.73,2.42,0.67,0.40,-0.23,0.58,-1.92,-0.21,-1.27,-0.58,-0.23,-0.01,1 --0.69,-2.10,0.58,1.85,-1.32,0.63,0.53,0.48,-0.21,-0.17,1.75,3.47,5.70,6.93,5.49,4.63,4.46,1.94,4.32,1.34,0.52,2 --0.78,1.72,2.96,1.93,4.84,3.02,4.48,4.12,2.75,3.60,3.95,1.35,1.54,1.08,1.80,3.06,-0.21,-0.93,-0.25,0.36,0.84,1 --1.40,1.29,-0.06,-0.94,2.86,-1.78,-1.84,1.73,-1.04,0.68,1.88,4.69,4.85,6.68,6.28,3.55,4.93,3.28,1.91,3.15,-0.39,0 -0.10,0.12,-0.51,1.19,-1.63,-2.23,-1.51,0.53,1.49,-0.03,3.08,2.48,3.33,4.74,5.25,2.77,3.79,3.09,1.09,2.05,-0.04,0 -1.87,1.16,-1.38,-0.71,-0.97,1.63,1.40,1.82,1.84,3.65,3.89,3.50,3.78,3.20,2.80,2.13,3.11,3.01,1.98,2.13,-0.50,2 --1.32,-0.04,-0.70,1.31,0.80,-1.76,0.82,2.45,1.13,2.63,1.36,3.40,3.84,6.28,4.38,3.25,0.56,2.00,1.56,-0.28,0.20,2 -0.48,0.61,3.33,1.09,3.06,3.98,7.18,4.35,3.76,1.96,2.73,0.42,3.02,2.15,1.72,1.40,-0.41,-0.47,1.35,0.16,-0.73,0 --0.03,0.06,0.83,1.12,2.43,2.54,2.98,4.11,4.14,3.64,6.35,2.63,1.85,1.82,1.44,-0.19,2.34,0.18,-0.51,-2.84,0.93,1 --0.36,0.06,-0.99,0.55,-1.30,1.50,1.49,0.60,0.85,3.06,2.75,2.10,4.05,2.92,5.02,4.31,3.51,2.61,1.06,1.40,-0.77,2 -1.02,-0.22,2.13,3.73,1.96,3.54,6.17,4.13,2.77,4.17,3.83,1.64,1.77,0.83,-0.74,0.33,-0.91,-0.74,-0.12,0.97,-0.66,1 --2.47,0.86,0.46,3.27,2.89,4.21,5.93,5.10,4.19,2.07,3.14,0.98,0.91,0.56,2.51,0.93,1.10,0.56,-0.13,0.90,-0.97,0 -0.29,0.29,0.63,2.20,2.31,2.56,2.24,3.13,1.79,2.19,2.11,1.81,1.23,1.47,3.26,4.32,1.93,-0.86,1.70,1.04,0.64,0 --1.52,-0.81,0.47,2.98,2.61,3.22,4.87,3.69,3.76,3.20,3.69,1.37,2.10,-0.04,1.76,-0.92,-0.58,0.39,0.25,1.57,-0.13,1 --0.54,0.17,1.43,-1.22,-0.74,-0.54,1.69,3.95,3.13,5.30,5.30,4.26,5.26,2.62,1.26,0.10,2.10,0.60,0.18,0.85,-1.82,2 --0.50,-0.26,0.58,0.15,0.39,-0.02,2.13,2.74,5.15,3.12,4.39,6.44,4.49,3.03,2.99,2.22,2.35,-0.98,-0.16,-0.23,0.41,2 -1.35,0.96,-0.85,1.14,0.64,0.80,1.07,2.46,-0.85,0.91,2.53,1.70,3.30,2.78,3.59,2.96,2.84,3.62,0.34,1.73,0.30,0 --2.93,1.04,0.85,0.22,0.35,0.67,-0.22,1.32,0.69,2.24,2.24,4.56,3.51,3.28,7.12,2.33,2.39,2.26,2.90,-0.13,-1.06,2 --0.42,1.65,1.34,1.90,0.73,1.20,2.08,2.59,1.45,2.03,-0.54,1.52,1.44,5.00,3.68,2.10,2.38,3.80,1.95,-0.42,-0.72,0 -1.09,-0.42,2.48,1.50,3.62,6.68,6.54,6.29,3.46,1.78,2.86,0.57,-1.97,1.24,0.05,0.21,0.22,1.08,1.15,-0.17,-0.83,0 --2.82,0.01,1.32,0.02,2.86,2.73,3.38,4.76,5.08,3.67,5.47,3.03,1.62,0.93,-0.03,1.15,-1.37,-0.25,0.04,0.90,-0.40,1 --1.29,-0.26,1.68,0.83,1.65,0.65,0.49,3.11,2.28,4.39,5.89,4.27,3.16,3.32,2.36,0.94,-0.06,0.95,1.46,1.05,0.14,2 -0.27,-0.34,0.11,1.92,1.34,0.41,1.16,1.20,0.99,1.41,1.31,3.70,4.34,4.69,4.71,2.15,1.94,1.70,1.51,2.07,0.13,2 --0.58,-1.20,0.80,-1.95,-0.38,1.02,-0.90,1.31,2.75,3.10,5.39,4.10,3.50,4.20,4.00,2.05,-0.57,1.15,0.52,0.08,-1.72,2 --0.96,1.85,1.67,4.13,2.20,5.20,5.21,5.43,3.42,3.14,3.05,2.44,-0.83,-0.20,2.27,-0.46,-0.14,0.91,1.70,1.42,-0.70,1 --1.32,-0.55,1.72,0.29,0.53,4.14,4.05,5.22,3.30,4.53,4.13,4.56,2.42,1.70,2.65,-0.30,-0.47,-1.88,0.74,0.08,-0.28,1 --0.78,-0.62,-0.05,-0.82,0.40,2.23,0.59,4.10,2.86,3.40,4.84,5.54,4.02,2.88,4.05,1.46,3.37,2.88,0.50,-0.44,-0.34,2 -1.17,-0.21,-2.15,-0.85,0.83,0.91,0.27,1.94,1.08,4.16,4.16,3.22,4.54,3.91,3.21,2.71,1.41,1.37,1.62,0.80,-1.35,2 -0.08,1.33,-0.57,0.44,0.84,5.09,4.89,5.21,4.97,4.09,5.81,3.44,0.63,0.80,1.33,-0.76,0.31,-0.46,-2.67,-0.70,1.03,1 --0.71,0.42,1.37,-0.60,2.28,2.73,3.53,3.61,4.62,4.34,4.38,2.98,3.22,1.25,2.79,0.35,-0.97,-0.24,-1.54,-2.82,1.33,1 --1.75,-0.34,1.55,4.03,5.18,3.45,5.23,4.55,2.39,3.09,1.20,1.08,-1.01,0.78,-2.14,0.59,-0.65,0.08,-0.14,0.71,-1.61,1 -0.48,0.31,-1.16,2.32,1.80,-0.08,0.31,2.58,4.33,4.47,5.52,5.31,4.16,4.25,3.47,3.68,0.66,1.89,0.52,-1.18,-1.57,2 -0.14,1.48,0.68,0.66,2.38,3.68,2.84,2.03,4.61,0.57,3.09,3.00,1.55,3.24,3.14,2.70,0.53,-0.33,1.48,0.12,-0.63,0 --0.63,0.14,1.54,0.37,-2.16,0.16,2.34,3.42,5.65,2.68,6.07,2.75,2.59,3.98,-0.23,0.70,0.87,0.24,0.23,1.23,0.39,2 --0.06,0.63,2.75,0.39,0.88,2.64,5.09,4.32,4.65,4.41,4.11,2.88,1.29,3.08,-0.18,1.10,0.48,-2.22,0.20,0.10,0.76,1 --0.94,0.44,4.50,2.90,4.76,5.26,4.35,3.92,2.56,2.38,1.41,2.43,-1.05,1.36,1.30,-0.33,0.40,-0.82,0.35,0.07,-0.12,0 -0.20,0.93,2.02,1.97,4.08,5.28,5.58,3.88,4.93,4.17,4.65,0.79,1.03,2.25,-1.00,1.06,1.40,-0.89,1.94,0.81,-0.70,0 --0.25,0.43,-0.10,1.80,2.19,2.42,2.21,4.10,4.22,-0.41,0.81,3.22,0.87,1.74,2.22,1.64,2.57,-0.64,1.39,-0.10,-1.58,0 --0.81,-1.78,-0.40,-1.05,-1.71,-0.35,0.59,2.41,2.11,-0.05,1.27,3.07,4.93,5.38,5.53,2.99,0.16,1.75,2.40,1.90,0.53,2 --0.45,1.52,0.51,0.43,0.76,4.24,3.25,1.96,2.07,2.41,1.30,2.78,3.15,2.39,2.56,2.44,0.51,0.54,1.41,-0.40,-0.17,0 -0.42,0.52,-0.90,-0.06,2.06,4.19,2.23,-0.24,1.30,0.25,1.52,1.68,3.64,4.17,3.36,4.88,3.70,1.38,1.08,-1.11,0.83,0 -1.22,2.15,1.53,1.33,1.47,4.57,5.35,3.78,3.21,3.71,3.80,3.47,0.36,1.15,2.84,-2.99,0.53,-1.05,0.59,0.03,1.20,1 -1.43,0.89,1.40,3.69,4.78,3.86,6.47,5.55,5.57,2.51,3.50,2.42,1.56,1.89,0.43,1.14,1.17,-0.66,1.26,-0.42,-1.00,1 --1.12,1.60,1.04,4.10,1.87,4.93,5.13,5.26,4.79,3.18,2.35,3.11,-0.03,-0.03,-0.96,-0.46,-1.14,0.52,-1.96,0.78,-0.69,1 --0.26,-0.15,-2.08,-0.46,-0.46,0.50,2.18,3.47,2.36,3.15,5.95,4.57,3.23,4.51,2.06,1.31,1.24,1.40,-2.22,-0.30,0.00,2 -0.57,-0.21,0.45,1.61,1.27,2.75,4.72,3.77,3.15,2.61,2.00,0.73,0.74,1.16,0.75,0.89,-0.01,0.45,-0.63,-0.47,0.69,1 --0.29,-2.21,0.70,1.92,-0.42,2.13,2.95,3.28,4.81,4.53,4.51,3.35,3.86,1.35,0.63,1.17,-0.51,1.66,-0.41,0.02,0.37,1 --1.60,2.46,2.05,0.76,2.46,3.33,5.72,4.85,4.93,3.81,2.94,1.10,-0.07,-2.31,1.50,-0.80,1.34,0.13,0.56,0.23,-0.81,0 -1.39,-0.93,-1.89,0.87,1.24,2.93,1.92,5.04,3.20,5.69,4.66,5.67,3.32,3.82,2.51,1.24,0.38,-2.09,0.80,0.06,-0.78,1 --2.19,1.16,0.54,1.37,0.57,-0.57,-0.36,0.27,1.78,1.30,2.29,2.91,4.42,6.21,7.72,4.58,3.50,3.50,3.44,1.74,0.40,0 -1.74,0.65,0.94,1.22,-1.34,0.62,2.05,0.41,0.48,0.71,4.54,2.11,3.63,4.70,5.44,4.74,2.52,2.03,2.16,0.46,-0.82,0 -0.44,-0.37,0.06,0.21,-0.22,2.44,1.80,3.58,3.08,4.82,5.24,5.03,3.21,3.14,1.65,-2.70,-0.55,-0.90,0.01,0.35,1.60,1 -1.08,0.95,-0.27,0.88,2.20,1.11,2.43,4.19,0.50,2.79,1.61,1.76,2.44,4.57,2.86,3.19,2.54,2.05,0.76,-0.94,-0.04,0 -1.29,-0.58,1.91,1.24,2.52,1.51,1.23,0.76,1.10,1.09,2.31,2.71,3.61,2.98,3.88,4.41,3.58,1.95,1.26,1.26,0.67,0 -1.48,0.39,1.24,0.41,-0.39,0.95,2.56,0.79,1.67,2.69,1.70,0.57,4.15,2.28,4.50,4.21,3.33,1.51,2.14,0.93,-1.14,0 -1.70,-2.05,1.39,-0.95,0.28,1.24,1.43,2.26,4.91,3.42,5.89,5.27,3.17,2.46,2.43,0.10,0.02,-2.15,0.21,0.39,1.17,2 --0.10,-0.75,-0.05,2.05,-0.92,1.39,3.51,2.60,4.08,4.33,6.36,2.71,2.25,1.12,0.95,1.22,1.50,1.16,-1.19,-0.46,-0.68,1 --1.06,-0.97,-0.94,0.82,-1.31,2.11,4.22,3.34,4.48,5.45,5.48,5.18,4.03,3.17,0.47,-0.21,1.00,0.12,0.53,-0.57,-0.35,1 -0.46,-0.07,1.87,-0.69,-0.04,0.60,1.56,1.97,2.78,4.32,1.62,3.24,4.85,3.72,5.64,3.27,1.78,-0.04,0.70,0.54,-0.22,2 --0.29,-0.84,1.51,1.19,-0.00,0.61,-1.14,-0.62,2.29,0.53,2.97,2.16,3.35,5.32,6.15,5.77,4.12,5.11,1.66,0.13,0.33,2 -0.05,0.18,2.43,1.72,2.67,3.62,4.45,5.05,4.40,4.09,2.22,1.59,0.85,-1.17,2.18,1.00,1.49,-0.07,2.09,-0.38,-0.82,1 --0.06,0.11,3.31,2.88,4.67,3.51,7.53,5.85,4.23,3.97,2.11,2.05,0.08,-0.10,-0.86,-0.68,-1.89,1.27,1.29,0.12,-0.16,0 --1.25,-0.93,1.22,-0.22,2.19,2.75,4.05,1.70,2.65,0.35,2.27,1.11,4.55,2.95,4.39,2.64,3.42,2.28,0.67,-0.47,-2.46,0 --0.16,-0.76,0.00,-0.17,-0.16,0.54,2.33,3.38,4.44,5.86,3.63,4.43,6.37,2.83,1.16,1.55,-1.06,-1.33,0.70,0.78,-0.26,2 --0.13,-1.65,-1.34,-0.84,0.92,-1.11,0.15,1.23,1.41,0.99,1.64,3.16,6.49,3.80,6.13,5.89,3.85,2.57,3.07,1.60,-0.18,2 -1.34,0.55,-1.21,0.86,0.12,1.73,2.52,2.24,1.03,1.44,1.99,1.82,2.08,3.06,2.97,2.68,2.17,1.63,1.40,1.06,-0.37,0 --0.35,-0.40,0.17,0.05,1.05,-0.30,0.68,1.03,0.90,2.15,3.60,4.97,4.51,3.51,2.77,2.67,1.09,2.31,0.24,0.22,-0.62,2 -0.11,0.60,2.07,1.74,3.79,4.81,4.67,4.98,5.01,3.31,0.85,2.27,-0.16,0.56,1.50,-0.12,-1.33,0.94,-0.99,0.11,1.40,1 --1.27,1.01,-0.83,0.50,-0.32,1.63,3.25,0.64,0.97,2.09,4.84,4.44,4.15,4.56,3.22,3.71,3.47,1.88,0.54,1.10,0.02,2 -1.20,0.31,-0.08,-0.66,0.36,0.49,-0.67,0.69,-0.27,1.30,3.91,3.86,6.38,4.32,4.11,5.49,3.68,2.99,1.13,0.03,-0.18,2 --0.66,2.26,-1.35,0.13,-0.94,0.84,1.90,0.79,2.39,3.36,6.05,3.93,3.18,3.01,3.07,1.87,0.86,1.32,-0.56,-0.88,0.26,2 --0.97,-0.76,0.68,1.37,-0.99,-0.32,3.39,3.92,3.22,4.19,6.93,5.21,3.85,5.39,0.92,0.82,0.76,0.33,0.07,1.14,-1.43,1 -0.47,-1.69,0.67,0.25,0.63,2.00,2.60,4.17,2.82,4.06,6.74,4.03,3.26,2.73,1.36,2.49,-0.22,-0.78,-0.92,0.87,1.68,1 -0.29,-1.32,0.28,1.71,0.17,2.39,3.92,1.79,3.53,6.37,4.82,3.79,0.98,2.35,1.68,1.07,1.40,-1.40,0.28,0.00,1.38,1 --0.33,0.83,1.14,-0.11,1.78,1.36,1.11,-0.91,3.43,5.03,3.99,5.31,2.85,4.03,4.36,1.16,2.47,0.93,2.18,1.40,0.85,2 -2.22,0.76,1.58,2.65,2.01,0.79,4.73,1.84,3.18,1.76,1.55,1.98,1.14,0.26,1.76,1.53,1.17,-0.11,-2.12,1.22,0.85,0 --0.48,-1.41,0.02,-1.41,0.35,1.89,0.90,3.05,3.13,5.02,5.52,5.17,3.87,5.06,3.11,1.75,1.35,1.58,-1.68,0.41,-1.62,2 --0.11,0.64,0.90,1.69,1.46,1.90,3.83,1.78,4.60,4.58,3.33,2.57,4.82,2.47,2.13,1.14,-0.43,0.04,-0.32,0.98,1.57,1 --0.35,-0.22,2.21,1.96,1.66,1.33,3.37,2.11,0.13,1.76,3.44,4.63,3.99,3.64,5.74,4.27,2.64,2.38,1.24,0.57,1.75,0 -1.33,1.54,-0.07,1.34,0.33,1.80,-0.36,2.43,2.60,3.52,4.43,2.31,4.55,3.92,2.22,1.81,1.83,-1.21,2.23,-0.86,-0.45,2 -0.39,-0.60,0.42,1.20,-1.95,-1.27,1.79,2.80,4.84,6.82,4.38,6.20,2.49,3.49,1.76,1.08,0.81,-0.58,-1.00,0.83,1.21,2 -0.39,0.28,1.66,1.85,3.92,3.08,5.26,2.87,2.28,2.68,3.67,1.62,0.79,0.81,0.34,1.12,2.00,-1.24,0.12,1.08,-1.30,0 --0.35,-0.70,2.44,3.34,0.91,2.24,3.40,4.41,2.36,1.35,2.09,-0.19,2.56,2.35,3.69,0.07,1.44,2.02,2.03,-0.50,0.09,0 -1.19,1.24,1.59,2.29,3.73,4.34,5.17,3.33,5.72,2.35,1.03,1.59,-1.23,1.82,1.19,1.18,0.81,0.88,0.79,1.39,-0.39,0 --1.32,-0.47,1.28,-0.08,-0.13,0.10,0.76,-1.91,0.77,1.24,3.10,2.90,3.41,4.96,3.83,4.75,4.09,2.89,1.57,2.22,0.71,2 --0.58,-0.46,1.59,1.53,-0.06,0.79,2.02,2.75,-0.11,1.82,1.11,2.02,3.12,5.11,5.93,5.33,3.80,2.71,0.87,0.26,-1.18,0 -2.63,1.01,0.55,-0.78,0.57,1.06,2.51,2.16,4.17,5.68,5.57,4.25,4.00,4.51,1.06,2.47,-0.89,2.20,1.32,-0.74,-0.11,2 --0.80,2.11,0.79,1.22,0.01,1.21,2.55,2.51,2.75,2.98,3.03,4.21,3.73,4.11,3.50,3.31,1.25,-0.73,0.09,0.19,-0.50,2 -1.59,1.11,1.08,1.44,3.62,3.47,5.19,3.72,2.85,4.31,2.73,1.58,-0.56,0.80,1.44,1.33,1.28,1.24,-0.98,1.80,0.67,1 -0.81,0.47,-0.57,-0.62,1.01,1.48,-1.10,3.65,2.34,1.74,6.49,4.74,4.44,5.20,2.34,2.37,2.19,2.05,-0.40,1.08,-0.07,2 -1.62,-1.62,0.18,-0.27,0.08,0.22,-1.49,-0.19,-0.50,0.89,2.05,3.87,4.28,5.29,5.80,5.84,1.71,1.95,0.62,0.07,0.75,2 --0.33,0.25,-0.40,0.95,0.14,-0.37,2.29,3.07,1.35,2.59,3.69,4.63,3.02,4.45,3.46,3.65,0.95,1.46,1.11,0.63,-0.65,2 --0.96,0.58,-0.56,0.77,-1.37,1.27,2.24,0.80,1.55,4.77,4.97,6.79,2.95,3.33,5.00,3.65,0.44,1.74,2.17,0.68,0.16,2 -1.40,-1.40,-1.14,0.59,3.32,2.39,5.17,4.21,3.93,3.78,6.74,3.39,3.40,2.20,1.81,1.60,-0.82,1.86,-0.63,0.89,-0.92,1 -0.25,-0.12,0.49,-0.41,1.14,3.71,2.93,3.02,3.83,4.31,6.17,3.59,1.81,2.13,0.57,-0.89,0.69,0.53,-0.01,-1.49,0.88,1 -2.29,-0.95,3.49,0.52,3.69,4.83,7.13,5.08,4.45,4.56,3.84,0.65,1.15,-0.64,0.69,-1.73,2.48,-0.85,1.09,-1.48,-0.11,0 -2.49,-0.10,1.53,1.29,0.20,2.62,1.83,3.67,4.44,5.51,6.99,4.24,3.78,3.60,1.07,-0.42,-0.50,-1.36,-1.44,1.63,-0.03,1 --0.36,0.32,2.74,1.60,-0.29,1.46,2.63,2.47,3.74,0.94,0.98,3.59,1.67,3.43,5.21,3.85,2.12,1.46,1.06,1.76,0.62,0 -0.37,1.04,1.41,4.83,4.08,5.62,5.18,5.86,3.47,0.57,1.94,1.46,0.05,-1.27,1.73,0.62,-0.91,0.40,0.96,-0.10,-0.53,0 --1.55,-0.76,-0.35,-0.79,0.37,0.29,3.91,2.57,2.15,3.85,7.17,4.69,3.97,3.72,1.83,0.28,-0.02,0.62,1.00,-0.19,-0.43,2 --1.73,0.78,2.13,2.81,2.91,6.26,5.62,3.51,3.90,1.97,1.43,1.65,-0.06,1.31,-0.92,-1.51,-0.76,-0.14,0.50,-0.76,0.17,0 --1.94,-1.14,0.61,-0.13,1.22,-1.30,1.37,0.57,0.18,2.04,3.06,2.65,3.73,2.84,6.26,5.58,4.65,3.86,2.15,2.41,-0.10,0 --0.89,-0.29,1.47,0.28,-1.24,-0.61,2.55,2.23,2.09,1.52,4.07,3.99,4.68,1.83,6.37,3.83,0.43,0.18,1.59,-1.19,-0.14,2 -1.82,1.66,1.57,1.89,3.12,2.25,5.83,2.69,4.06,3.66,4.19,3.80,2.37,1.66,2.64,1.74,0.05,-0.09,-0.32,0.93,0.97,1 --0.64,-1.71,1.96,2.72,1.52,1.72,3.45,3.57,4.00,3.78,3.77,3.05,3.07,1.07,0.37,-0.23,0.70,1.20,-2.33,-1.47,0.89,1 --0.62,0.84,1.23,-0.55,0.09,-0.25,0.48,2.04,1.61,2.62,4.86,2.69,4.86,3.17,3.03,2.40,0.73,2.93,-0.37,0.51,-0.99,2 --0.58,1.23,1.18,0.87,0.25,-0.90,0.21,1.70,1.64,3.31,2.29,3.20,4.40,4.04,5.05,4.52,2.31,1.25,2.97,-1.32,-0.20,2 --0.17,-1.75,-0.67,1.15,1.55,0.84,2.38,2.26,2.71,3.38,5.70,5.91,4.99,3.33,3.21,0.42,1.00,-0.04,0.05,-0.90,0.82,2 --0.47,1.25,1.50,1.48,4.03,0.17,3.80,1.37,0.31,0.91,1.90,2.37,2.69,2.88,3.15,1.91,1.77,1.27,-0.34,1.00,0.21,0 -0.93,0.76,2.22,2.64,5.79,3.75,4.29,5.76,3.96,2.80,2.41,1.28,2.40,-0.82,0.28,-2.11,-2.82,-0.12,0.30,-0.39,-0.38,1 --0.26,0.32,0.07,0.86,1.09,-0.56,1.79,0.19,-0.67,0.84,2.51,3.56,3.99,3.09,5.16,4.50,4.98,2.42,1.51,0.26,-0.73,2 --2.62,0.78,-0.24,2.02,0.61,-0.66,0.25,0.64,1.18,0.93,2.44,4.48,4.18,4.25,5.20,3.04,3.36,1.95,0.79,0.21,-0.20,2 -0.65,0.14,2.98,1.43,2.63,4.94,3.95,1.72,2.60,3.51,0.85,2.11,1.40,2.50,0.70,1.20,1.39,1.29,0.65,0.48,1.39,0 -1.59,-0.04,1.33,2.76,1.66,4.61,4.61,2.28,5.21,3.87,2.66,2.56,0.95,-0.49,-1.49,0.28,-0.06,0.46,0.84,0.54,-2.96,1 -0.64,0.14,-1.23,-0.70,0.34,2.17,3.45,3.93,3.68,4.08,3.66,3.38,4.27,2.39,3.66,2.51,1.62,0.85,-0.43,-0.35,-0.19,1 --1.29,2.48,-0.40,-0.36,-0.35,0.47,2.86,1.29,3.63,3.94,3.69,3.21,4.51,4.47,2.83,3.05,0.86,1.10,-0.09,0.05,-0.06,2 --0.16,1.67,-1.36,2.23,1.81,2.86,3.75,3.53,4.80,5.65,4.25,4.40,1.75,0.95,2.09,2.43,0.08,-0.66,0.37,-1.76,-2.18,1 --0.12,0.86,0.51,1.26,0.79,2.69,3.08,3.57,6.49,3.06,4.46,3.04,0.82,1.46,0.12,1.77,0.41,-0.69,1.47,2.66,-1.49,1 -1.52,-0.84,3.01,1.83,4.08,5.78,3.92,4.79,3.34,2.89,2.61,2.46,-1.23,0.80,0.55,1.74,-0.70,2.24,-0.67,-1.38,0.31,0 --0.52,-0.76,1.23,-0.39,1.14,2.08,1.03,2.58,0.75,1.79,1.98,0.83,2.59,2.23,4.59,4.28,3.84,2.12,1.43,1.46,-0.70,0 -1.22,-0.76,1.02,1.53,3.10,3.09,2.66,4.03,1.36,2.01,0.24,0.70,1.02,3.46,2.94,0.84,3.54,2.71,2.01,0.62,0.15,0 --1.17,0.73,-1.44,-0.05,0.28,0.81,1.55,3.74,2.67,4.96,3.84,4.09,3.68,2.34,3.88,0.11,3.33,0.19,1.15,0.80,0.47,2 --1.63,0.25,2.00,1.77,2.07,2.71,3.03,4.80,4.47,3.56,4.75,2.26,4.50,4.58,1.49,0.23,0.47,0.24,-1.03,1.84,-0.36,1 -1.44,-0.48,0.97,-1.82,1.05,-0.01,1.02,1.20,2.49,1.40,2.74,4.05,5.72,2.42,4.99,3.50,3.71,2.17,1.59,-0.06,1.30,2 -0.61,1.30,0.55,1.42,1.35,3.23,3.57,0.87,2.57,2.08,1.63,2.50,3.92,2.07,2.28,2.73,2.61,2.67,0.66,-1.49,-1.03,0 --0.81,-1.26,1.03,1.19,-0.45,-0.20,2.32,0.56,2.47,4.82,4.80,2.76,4.83,3.51,2.05,1.49,-0.63,1.95,0.24,0.27,-0.43,2 --0.34,-0.83,1.72,0.28,3.78,2.24,1.48,1.96,0.85,1.15,0.55,1.77,0.99,3.51,3.83,3.02,3.58,1.00,1.37,-1.90,-1.10,0 --0.08,0.78,1.61,1.01,0.01,0.91,1.47,-0.04,0.29,0.11,2.65,3.69,1.56,6.08,5.38,3.42,4.76,3.58,0.33,0.42,-0.31,0 -1.11,-0.59,0.50,1.34,1.29,0.83,1.14,3.54,2.48,1.57,2.38,4.35,6.75,2.72,3.15,2.25,2.77,3.31,0.73,0.01,0.07,2 --0.01,-0.88,-0.29,-0.08,2.06,0.79,2.57,2.79,3.01,3.01,5.07,2.92,2.43,1.56,2.57,2.06,0.44,1.06,0.58,-0.27,1.37,1 -1.46,-0.28,-0.72,0.41,-1.23,0.07,0.16,-0.50,0.68,0.59,3.23,3.27,3.74,4.80,4.20,4.37,2.82,1.77,2.54,2.19,-0.71,2 --1.59,0.89,-2.32,-0.76,0.14,-0.15,0.56,1.47,1.58,3.03,4.47,3.95,4.02,5.00,1.78,2.19,1.21,1.18,-0.32,-0.98,-0.69,2 -1.45,1.42,0.24,-0.06,-0.44,0.51,-0.51,0.70,1.42,2.82,3.30,2.62,4.91,4.70,6.81,4.91,3.58,1.52,1.78,-0.33,0.88,2 -0.39,0.62,0.83,2.07,4.08,3.89,3.12,3.19,2.36,2.70,1.35,0.70,-0.16,1.72,2.73,1.60,1.52,0.32,1.24,2.03,1.38,0 --0.48,0.70,-0.22,-1.91,0.30,-0.43,1.12,0.65,1.83,1.43,3.91,4.50,3.94,4.09,4.87,2.34,2.74,0.60,0.43,-1.13,-0.74,2 --0.09,1.49,1.26,0.15,1.32,3.82,2.41,4.43,0.67,3.53,3.93,1.68,1.42,2.34,3.42,0.68,2.09,0.74,2.15,0.95,1.02,0 --0.76,-1.55,-0.48,0.48,0.64,3.72,4.15,3.82,4.65,3.59,3.97,3.65,1.75,0.96,1.42,-0.10,-1.53,1.64,-1.22,0.14,-0.02,1 --0.56,0.60,2.21,2.82,3.33,3.72,5.93,3.98,3.01,3.41,3.20,1.64,0.18,0.41,0.44,1.66,0.42,-0.30,0.46,-0.55,0.49,0 -0.27,1.43,2.63,3.65,2.83,3.59,4.17,2.25,4.36,2.74,2.04,1.04,1.13,1.47,2.47,2.07,1.69,-0.07,3.19,-0.43,0.24,0 -0.84,0.29,0.21,1.37,2.44,2.25,2.88,3.02,3.87,4.74,5.49,2.98,3.29,1.68,-0.43,2.81,0.03,1.26,0.25,1.73,-1.11,1 -1.78,0.46,0.85,0.10,0.80,2.30,0.73,3.31,3.03,4.64,6.79,3.72,1.84,2.79,2.88,1.34,-0.25,0.13,1.19,-0.46,-0.33,2 -0.17,0.01,-0.18,-0.74,1.60,-0.45,1.95,3.52,1.12,1.67,3.94,5.26,3.44,3.03,3.56,4.12,3.47,1.73,1.38,-0.02,-1.68,2 --2.34,0.39,-1.42,2.09,3.15,3.31,3.78,4.24,3.70,1.81,2.18,-0.51,0.52,1.55,1.14,0.86,2.59,2.16,1.29,-0.39,0.13,0 --0.13,-0.10,-0.72,-0.38,0.06,2.40,2.03,3.12,5.08,4.91,5.33,4.70,6.14,4.13,1.71,1.35,1.24,0.21,-0.61,0.49,-0.30,2 -1.31,1.34,2.30,1.98,3.54,3.15,3.82,4.04,1.74,4.91,3.90,1.17,1.81,1.35,1.81,0.58,-0.21,-1.09,0.97,0.40,-0.84,1 -0.37,-0.13,1.35,2.55,3.34,4.09,3.69,3.93,3.30,1.32,2.68,1.82,1.93,0.24,2.75,1.66,0.44,-0.69,-0.32,2.01,-1.21,0 --1.23,2.15,0.16,0.30,-0.35,-0.11,0.44,2.35,1.33,2.92,4.63,4.75,3.72,3.07,5.56,3.44,3.03,2.67,1.50,0.24,-0.23,2 --0.28,1.09,1.51,2.20,3.03,5.17,4.46,4.41,3.30,3.61,2.63,1.82,1.20,1.98,0.14,1.53,-2.43,0.26,0.66,-1.29,-0.35,1 --0.82,1.61,2.02,1.01,2.15,2.57,1.46,2.25,0.47,1.47,2.73,1.54,1.93,2.70,4.42,3.17,1.62,2.17,1.22,1.01,-0.93,0 -1.04,0.62,2.56,2.58,5.92,5.29,4.94,4.11,3.12,2.68,1.20,1.75,1.03,-0.32,0.39,1.63,-1.96,1.17,1.86,0.67,0.56,0 --0.74,-0.26,1.25,-1.29,0.52,-0.26,-0.20,1.89,3.62,5.97,9.06,5.57,5.97,3.59,2.40,1.61,0.29,-0.55,-1.21,0.34,0.13,2 --0.13,0.24,-0.06,1.49,1.31,1.65,5.75,6.48,5.98,2.70,4.07,2.89,1.86,2.08,1.01,1.49,-0.42,-0.10,0.43,1.55,-1.64,1 -0.42,0.40,0.07,-1.03,-0.16,1.97,0.28,0.92,0.96,-0.55,1.01,3.71,4.91,4.15,4.98,3.62,4.90,2.25,3.41,2.35,-1.34,2 -1.54,1.51,3.19,1.49,3.39,3.25,3.30,1.79,3.94,2.47,4.03,2.71,0.59,1.81,-0.16,0.58,-0.34,-1.15,1.66,-1.19,-0.99,1 -1.06,-1.40,-1.09,-1.16,-0.44,2.86,-1.29,-1.15,0.14,1.40,1.77,1.37,3.40,4.22,6.18,5.12,3.33,1.26,1.04,2.97,-0.21,0 -0.28,-0.98,-0.79,-0.42,-0.69,1.93,2.29,3.44,2.55,5.49,5.21,2.82,2.93,3.00,3.37,2.10,1.88,1.36,1.33,1.86,-0.08,2 --1.62,-1.29,0.78,0.71,2.31,4.37,5.03,4.37,4.09,4.89,3.99,2.81,1.55,2.73,2.31,0.58,-0.24,-0.87,-1.77,1.82,-0.53,1 --0.79,0.02,3.42,3.18,3.40,3.56,7.45,5.44,4.35,3.35,0.98,-0.44,-1.39,0.18,0.96,0.52,-1.68,0.23,-0.46,0.86,0.94,0 -0.25,-1.10,1.55,0.77,-1.91,1.26,1.60,5.06,5.20,4.57,4.63,3.97,2.63,4.38,0.73,0.52,-0.04,-0.27,-0.76,0.31,-0.02,1 -1.72,0.23,0.10,0.48,0.51,0.11,2.09,3.82,3.93,4.93,4.05,6.53,5.26,3.68,0.51,2.20,-0.46,0.70,0.60,-0.06,0.76,2 -0.97,-0.99,-0.99,-0.98,-0.63,0.47,0.68,0.95,1.16,2.45,4.23,4.15,5.02,2.54,5.20,3.65,2.43,1.11,1.96,-0.43,-0.73,2 -1.54,0.69,1.77,1.59,2.49,1.95,4.66,4.16,4.80,4.18,4.11,3.19,2.11,2.72,-0.65,0.44,0.51,-0.48,1.12,-0.45,-0.64,1 -0.43,-0.20,-0.01,1.39,2.84,2.89,4.10,2.89,3.99,3.38,3.40,4.01,1.86,-0.20,2.17,1.93,-0.02,0.40,1.10,-0.03,0.85,1 --0.43,-0.25,1.16,2.24,-0.12,-0.21,-0.01,2.60,1.85,4.62,5.35,4.46,4.18,4.93,3.45,0.73,1.21,0.40,-1.01,0.26,-0.95,2 -1.16,0.06,-1.23,0.10,0.40,1.49,1.21,3.46,3.57,5.19,6.68,5.68,2.51,3.44,4.59,2.78,-1.21,1.83,-0.67,1.71,0.55,2 -0.84,-1.48,0.51,0.60,-0.35,0.65,0.20,1.70,3.53,4.85,4.63,3.62,5.75,2.97,3.03,0.60,1.52,0.48,0.34,0.68,-0.61,2 --0.55,-1.31,-0.90,0.66,-0.43,2.95,2.77,3.75,3.04,4.96,4.25,5.87,3.22,2.12,0.62,1.25,-1.97,-0.59,1.12,0.46,0.87,1 --0.33,0.32,-0.51,-0.85,-0.06,1.30,1.11,5.17,3.89,4.70,5.55,3.68,2.78,1.77,2.80,3.98,-0.73,-0.95,-0.05,-0.14,0.59,2 --0.03,0.86,0.85,-1.01,0.64,0.12,3.20,3.15,1.81,4.88,6.55,4.09,3.62,5.01,2.09,2.78,1.00,0.08,0.47,2.00,0.50,2 -1.02,-0.15,3.22,1.00,0.25,-0.47,-0.18,-0.92,-1.87,1.56,2.34,3.19,4.64,2.74,4.43,4.70,2.97,2.19,0.74,1.73,0.78,2 --1.13,0.22,2.61,2.20,2.98,3.72,5.76,3.93,3.67,2.43,2.76,3.14,0.41,1.62,2.08,1.23,1.01,0.48,0.40,0.24,-0.68,1 -1.17,0.35,1.47,2.76,6.32,3.82,6.17,5.85,5.35,2.78,1.82,2.04,1.43,0.73,0.85,1.34,-1.65,0.18,-0.92,-0.71,0.54,1 --0.29,0.30,-0.47,0.02,0.17,1.86,1.87,3.48,4.02,4.54,5.59,4.83,3.74,1.33,1.46,1.40,1.67,1.96,0.03,0.48,0.83,2 -0.43,0.12,-2.17,0.04,0.90,-0.00,2.02,4.01,4.15,3.74,6.57,5.35,4.26,2.59,1.39,1.54,1.30,1.76,-0.97,0.81,0.88,2 --1.56,0.40,-0.30,2.49,0.19,-0.06,1.68,1.72,0.83,2.06,2.27,2.88,2.49,2.26,6.58,4.76,0.91,3.81,1.23,0.86,1.04,0 --0.49,1.04,1.81,2.72,3.81,2.88,5.31,4.57,2.57,3.90,4.29,1.36,0.43,0.29,2.19,-0.43,0.16,-0.53,-0.03,-0.70,0.14,1 -1.66,-0.50,2.17,1.25,5.51,4.72,6.84,5.83,3.16,3.72,2.99,0.09,-1.51,-0.58,-0.05,0.99,-0.76,-0.69,-1.20,1.37,-0.80,0 --0.77,1.16,-0.40,0.98,0.53,0.52,1.69,1.89,2.54,2.48,4.58,4.31,3.25,5.25,3.01,2.28,1.17,-0.63,-0.49,-0.54,-0.25,2 --0.39,-1.70,0.85,2.35,-0.19,2.32,2.20,2.02,1.18,0.94,2.13,3.29,3.83,3.65,2.89,2.83,0.05,2.92,1.64,-0.16,-0.32,0 --0.56,1.62,0.84,1.82,2.92,2.37,3.69,4.18,2.72,2.55,0.38,2.60,2.86,0.94,2.48,1.16,3.11,2.26,-0.10,1.20,-2.23,0 --0.45,-0.12,-0.64,0.07,-0.07,0.36,2.42,4.08,6.55,5.52,5.96,5.72,3.87,4.81,1.03,-0.66,-0.40,-0.27,0.75,-0.11,-0.63,1 --1.12,-0.26,1.21,0.46,2.57,3.17,4.52,3.86,3.05,4.18,5.11,1.98,2.23,0.45,-0.30,0.29,0.44,-1.59,1.06,-1.22,1.22,1 -0.51,0.82,0.74,3.12,1.28,3.17,2.32,1.55,1.10,3.85,3.71,2.68,2.24,3.43,2.73,1.58,3.13,1.39,0.19,0.79,-2.14,0 -1.00,1.09,-0.01,-1.52,-0.17,0.14,0.93,3.16,2.97,3.78,4.44,3.44,5.35,3.62,3.47,2.73,2.82,0.43,-0.01,0.80,0.19,2 -0.61,1.26,1.30,1.28,3.57,3.21,7.43,2.37,2.13,3.05,2.91,1.05,0.08,0.22,-1.16,-0.64,0.88,0.78,1.31,0.60,-0.40,0 -0.73,0.91,2.51,1.16,1.96,3.01,2.66,4.05,3.15,4.28,5.02,2.36,1.93,1.74,1.20,3.07,-0.56,-0.45,-0.46,1.20,-0.50,1 --1.50,0.38,0.38,0.87,5.05,4.45,6.67,6.39,4.59,2.71,0.38,3.27,-0.13,1.61,0.06,0.41,0.55,0.02,0.21,-0.89,0.11,1 --0.10,-1.77,0.03,-0.19,0.14,-0.78,1.47,0.15,3.46,3.13,6.59,3.25,3.13,4.01,4.32,3.09,1.36,0.41,0.28,-1.04,0.93,2 -0.19,0.36,-0.95,2.03,0.24,0.68,1.58,3.77,2.09,4.37,5.83,5.94,4.94,3.49,1.95,2.66,1.91,1.62,-0.56,-0.27,-0.19,2 --2.17,1.28,1.10,0.86,-0.89,1.24,-0.44,0.57,1.39,1.22,3.12,1.21,4.09,4.53,5.42,4.45,5.85,5.06,1.17,1.19,-0.53,0 -0.95,1.19,0.86,2.70,2.73,6.65,5.74,3.20,4.66,3.13,1.84,1.25,0.06,0.73,1.45,-0.46,1.71,0.23,-1.93,0.84,-0.70,1 -0.04,0.65,2.01,2.39,1.31,3.81,2.69,2.21,1.59,3.59,2.10,0.86,0.76,1.22,2.80,1.57,1.93,0.47,-0.19,0.02,0.64,0 -0.68,1.01,1.34,-0.34,-0.84,-0.14,-0.35,1.30,0.93,2.09,2.36,2.70,3.13,4.70,6.60,4.42,3.80,2.90,0.87,1.85,1.19,2 --2.36,0.36,-0.08,2.38,1.72,3.04,3.65,2.99,4.11,4.08,4.25,2.17,2.25,0.89,0.27,-0.83,-1.56,-1.38,0.01,0.77,-0.40,1 --1.03,-0.45,-0.34,2.08,-0.81,0.12,3.35,2.78,3.53,5.27,5.78,5.88,2.35,3.46,2.84,2.43,1.66,-0.39,0.03,0.60,-1.71,2 --0.96,-0.56,-0.20,-1.93,-0.57,-0.77,2.18,0.60,2.99,3.17,3.98,2.96,1.89,4.07,2.85,2.81,2.68,2.63,2.16,0.70,0.25,2 -0.28,-0.57,0.26,-0.39,-0.08,-0.09,0.45,-0.03,1.70,1.34,3.38,2.87,2.37,4.97,4.56,4.43,4.41,4.25,2.70,0.94,0.97,2 -0.64,-0.16,1.42,3.68,3.56,3.21,5.33,4.61,3.42,3.94,1.16,1.30,2.18,0.13,0.68,-0.24,3.21,1.26,1.83,0.95,0.58,0 --1.25,1.10,1.89,1.34,0.71,1.37,3.26,2.54,3.61,5.15,6.58,3.68,4.32,3.61,1.01,0.77,1.07,1.87,-0.34,0.79,1.14,1 --0.38,0.49,1.66,1.75,2.68,2.15,4.67,3.80,2.23,3.39,2.54,2.60,-0.24,2.52,1.98,1.89,1.60,2.76,-0.02,0.10,0.09,0 --1.61,-0.21,-0.71,0.23,0.30,0.56,1.60,2.86,2.14,3.93,1.61,2.24,2.91,2.44,4.41,3.28,3.37,0.82,0.53,2.44,0.56,0 -0.92,1.09,-0.03,-0.80,0.92,1.63,2.10,1.66,4.12,4.84,6.09,5.02,3.27,3.41,0.02,0.93,-1.08,-0.38,-0.96,-1.21,1.65,1 --0.05,-0.32,-0.14,1.29,-2.11,1.62,1.12,2.67,1.75,2.20,3.61,4.67,4.79,3.64,1.39,1.99,2.03,0.26,-0.27,1.67,0.38,2 -1.52,1.82,2.83,2.35,1.94,2.52,4.83,4.64,4.44,2.04,1.63,2.01,0.06,0.16,-0.78,-1.08,0.98,-1.03,1.70,0.95,-0.35,1 --0.43,-0.26,0.15,1.32,4.11,2.95,4.23,2.32,1.64,1.92,0.77,2.90,-0.48,1.80,0.98,1.85,1.92,0.12,2.09,-0.37,-0.47,0 --0.50,-1.10,-0.10,-0.39,0.46,0.65,1.71,1.23,2.50,2.75,5.32,6.25,3.57,2.76,2.71,1.28,0.85,0.01,0.78,-0.20,-1.07,2 -0.68,0.27,1.73,0.35,0.45,0.09,1.07,0.80,0.59,3.00,3.96,2.35,4.62,4.76,4.91,2.67,2.25,1.53,1.61,1.15,1.35,2 -0.35,0.03,1.33,1.40,4.14,4.14,3.92,3.80,5.25,4.46,3.75,1.65,0.39,2.25,-0.88,0.91,0.69,1.10,-1.30,-0.65,0.70,1 -0.81,-0.03,-0.45,2.35,0.75,2.90,0.89,1.02,0.42,0.99,0.90,1.39,2.20,1.25,3.00,2.55,2.76,1.61,-0.77,-0.64,-1.89,0 -1.09,-0.04,1.56,1.13,0.11,0.52,0.61,1.82,-1.00,1.63,3.06,5.24,4.33,3.33,3.63,0.61,4.08,1.99,0.70,2.77,-1.71,2 --0.93,0.88,0.37,1.25,2.29,1.83,1.28,2.83,2.42,5.00,4.97,4.02,3.71,3.28,1.23,0.66,0.15,-0.08,-0.27,1.34,0.14,1 -0.86,0.94,-1.31,-0.69,0.02,1.61,3.36,2.57,2.86,4.62,5.26,4.72,3.52,2.96,4.23,2.16,0.58,2.17,-0.47,-0.13,-0.26,2 --0.50,0.14,-0.43,2.15,1.40,3.07,3.00,2.42,1.41,2.94,1.12,1.20,3.89,3.44,4.37,3.58,3.58,2.22,0.97,0.61,-0.25,0 --0.99,1.84,0.83,3.07,4.12,4.35,2.44,5.06,3.05,4.11,2.78,1.45,0.25,-0.95,0.04,2.08,1.21,-0.20,-1.14,-0.43,-1.02,0 -0.01,1.99,-0.11,-1.06,2.02,1.73,1.23,3.34,3.07,1.99,1.84,1.35,4.12,3.02,5.04,3.83,2.82,1.82,0.02,2.10,0.33,0 -0.36,0.45,0.22,-0.31,0.39,2.64,1.70,3.24,3.43,5.07,5.29,5.91,4.81,2.44,1.94,0.93,-1.39,-0.80,-1.86,1.20,-1.13,1 -0.35,1.10,1.30,-1.65,-0.10,3.45,2.69,3.65,5.02,4.65,3.71,2.65,2.43,0.27,3.46,0.29,0.28,-0.52,0.75,-0.29,1.42,1 -1.05,0.01,0.45,1.05,0.98,2.61,4.17,1.38,1.46,1.86,3.49,1.13,2.09,1.40,5.28,1.22,3.33,1.59,-0.48,-0.72,0.64,0 --0.71,0.81,0.55,3.19,3.39,3.57,4.52,3.91,0.52,3.89,1.26,2.67,2.48,2.61,-0.77,1.67,1.61,1.76,0.07,-0.43,0.47,0 -1.91,2.25,3.53,3.26,3.28,5.33,3.80,4.46,2.98,2.45,2.48,-0.05,1.02,0.70,2.45,1.27,0.27,-0.06,0.33,1.34,0.86,0 --0.42,0.94,2.03,2.13,4.36,5.81,5.89,5.14,4.18,4.48,2.90,0.60,-0.13,-1.26,0.17,0.15,-0.27,1.04,-0.22,0.16,-1.64,1 -1.36,1.10,-0.30,0.43,2.36,1.61,1.35,3.67,2.42,1.26,2.22,1.47,1.32,1.41,5.60,3.61,3.37,2.86,0.37,0.08,-1.23,0 -1.49,0.15,-0.65,2.12,1.26,4.88,4.11,2.92,1.96,2.00,2.35,1.71,1.68,1.62,-0.04,0.85,0.49,2.02,1.55,0.71,0.21,0 --0.94,1.85,-0.68,0.58,-0.62,-0.31,1.04,1.06,3.58,2.96,3.85,3.84,3.42,5.37,6.61,1.68,1.67,1.05,0.35,0.78,0.91,2 -0.18,-0.48,-0.35,-0.72,1.87,3.33,0.35,1.30,3.65,5.21,4.80,6.50,4.61,3.91,0.92,2.21,0.47,0.22,-0.85,0.31,-0.40,2 -0.70,-0.56,1.28,-0.84,0.56,1.58,2.38,2.95,4.85,7.06,6.75,5.61,4.74,4.35,1.96,0.78,-0.75,1.75,0.83,2.05,1.76,1 -0.06,1.51,1.68,1.42,1.12,2.57,1.40,0.87,1.20,2.32,1.73,1.67,0.42,3.72,2.93,2.34,2.06,1.55,1.62,1.46,-0.35,0 --0.52,1.86,1.10,2.90,4.87,5.30,4.37,4.59,4.24,4.36,2.40,1.75,-0.17,0.51,1.66,-0.17,-0.32,0.23,0.36,0.34,2.20,1 --0.18,1.54,0.92,1.84,-1.49,1.90,0.18,1.21,2.41,3.56,4.65,2.41,5.17,4.74,3.81,3.39,3.16,1.61,0.63,-0.14,1.02,2 -1.63,1.15,1.21,0.25,0.99,1.39,1.86,2.87,2.74,2.07,3.11,2.40,2.97,3.45,5.12,1.82,2.90,2.45,2.85,2.09,-0.91,0 --1.29,2.14,1.14,2.22,3.51,4.25,4.73,3.18,2.82,1.78,1.48,2.27,2.18,3.34,3.45,2.67,3.81,2.97,0.82,0.31,1.80,0 --1.56,1.74,1.47,-0.21,0.31,-1.37,3.02,1.92,2.13,6.24,6.36,6.13,3.95,1.92,2.82,1.83,-1.26,-2.24,-1.19,-0.51,0.98,1 --1.89,0.90,2.79,-0.28,1.07,2.18,4.59,3.20,3.55,3.88,4.60,4.03,3.41,0.51,0.78,1.88,1.75,0.46,1.06,-0.91,-0.12,1 -0.91,1.47,-0.73,1.49,-1.16,1.26,0.97,2.41,2.43,4.17,2.60,3.99,3.77,4.95,4.83,3.90,2.56,0.78,1.19,0.08,1.36,2 --1.11,1.13,1.26,0.07,1.23,0.51,1.98,0.90,2.28,1.08,1.24,1.89,2.62,2.55,6.90,3.43,3.79,4.19,0.73,1.21,-0.24,0 -0.54,0.81,1.39,0.41,2.59,2.26,3.34,4.49,3.26,4.89,4.47,1.99,1.56,0.21,0.39,-0.08,1.29,0.07,1.69,-0.21,1.51,1 --1.13,1.37,1.79,1.61,4.15,4.00,5.42,3.47,3.51,4.60,2.80,0.60,-0.88,-1.09,-0.40,-1.52,-0.04,0.04,-0.62,-0.54,0.02,0 -1.31,0.47,0.80,-0.41,-0.47,0.32,0.06,0.00,0.13,2.92,3.41,2.08,4.31,4.06,6.56,4.31,4.52,1.35,2.12,0.16,-0.63,2 -0.34,0.62,0.76,0.41,-0.05,2.97,4.28,2.72,5.12,5.21,1.48,4.18,0.78,1.10,-0.01,1.97,0.35,-0.27,0.78,-0.25,-0.37,1 --0.16,-0.56,-1.50,0.40,1.85,1.46,1.41,2.12,6.07,3.65,6.27,4.71,4.42,3.97,2.31,0.61,0.21,-0.97,2.18,-0.30,-0.57,2 --0.20,0.52,0.73,-1.32,0.79,2.53,2.25,2.61,4.92,4.31,6.56,4.34,3.94,1.06,1.49,-0.41,-0.26,-0.35,-0.93,2.02,-0.48,1 --0.06,-0.02,-0.45,-1.20,-0.38,0.56,0.43,2.72,1.64,2.46,3.50,3.50,3.98,5.54,4.01,1.48,2.90,1.41,0.89,-0.24,-0.13,2 --1.03,-0.21,0.71,2.15,-0.89,1.64,3.22,1.87,3.33,4.96,3.93,3.32,1.53,5.04,2.44,4.17,1.40,1.72,-1.00,2.37,0.04,2 --0.22,-0.87,1.44,0.81,-0.45,2.48,4.00,3.23,3.57,3.83,5.04,2.08,4.22,2.75,1.04,0.28,0.41,-0.08,0.32,1.77,-0.12,1 --0.66,-0.25,2.23,1.07,0.54,0.99,1.17,1.69,4.02,2.59,2.93,3.78,4.25,4.12,2.88,1.20,1.54,1.03,1.73,0.13,0.83,2 --1.80,0.76,-1.21,1.21,0.85,-0.43,0.65,2.94,4.78,4.45,7.09,3.36,3.08,2.61,2.33,2.05,-0.46,0.34,-2.02,1.67,0.77,2 --0.97,-2.31,-0.76,0.82,-0.03,-1.53,3.03,2.44,1.74,3.13,5.58,4.68,1.90,3.98,3.69,0.84,0.36,0.45,0.05,0.59,1.05,1 -1.88,-0.43,0.46,0.50,-0.52,0.36,2.05,3.68,3.12,5.58,3.75,6.35,3.94,0.92,2.01,0.56,0.25,0.25,1.01,2.10,-0.02,1 --1.76,0.29,0.62,-0.55,0.15,0.01,1.71,0.98,-0.77,1.13,1.93,3.66,4.55,3.68,5.86,4.31,3.42,3.14,0.29,1.77,-2.26,0 --1.01,-0.66,1.26,0.52,-0.88,1.42,0.03,0.04,0.24,2.64,1.67,3.42,3.58,3.37,6.73,3.23,2.00,2.96,2.59,2.86,-0.57,2 -0.72,1.62,-0.63,-0.63,-0.21,-0.69,0.81,3.56,1.49,3.59,5.38,5.26,4.94,4.44,2.43,1.73,-0.27,-1.32,-0.71,0.45,-1.23,2 --1.22,1.50,-1.37,1.54,-1.27,1.68,-0.34,1.01,-0.37,3.03,2.72,3.10,4.06,5.55,6.69,4.74,4.37,2.26,3.30,0.80,-0.76,0 -1.82,-0.28,-0.74,-0.26,-1.04,0.14,2.29,0.42,3.44,3.20,4.97,4.93,3.38,5.59,2.12,1.71,1.72,1.48,0.78,0.20,0.78,2 --0.17,-0.39,1.20,2.25,4.60,5.49,5.42,5.50,3.72,3.18,1.78,1.52,-0.29,1.61,-0.28,-0.71,0.74,0.57,-0.61,1.59,-0.42,1 --1.13,0.38,3.45,3.96,4.82,4.11,2.95,4.01,3.16,3.35,2.69,1.28,1.56,-1.06,-0.73,0.46,-0.18,0.29,-0.10,-0.03,0.15,1 -1.42,-1.90,-0.06,-1.01,0.74,1.73,3.31,3.16,2.19,0.23,0.96,2.75,3.87,1.23,4.18,1.90,4.73,2.04,1.18,-0.45,-1.75,0 --0.40,0.79,0.82,-0.08,-0.18,0.52,2.44,0.06,1.56,1.27,3.48,3.89,4.64,2.18,5.59,3.40,1.00,2.39,0.35,0.89,-1.36,2 -1.68,-0.07,0.42,-0.92,2.82,0.84,-0.17,-0.82,0.98,0.65,0.64,2.30,0.77,2.73,4.97,4.23,3.19,1.23,1.45,0.19,-1.17,0 -0.72,2.40,1.11,-1.63,-1.27,-1.21,1.20,0.61,0.68,2.97,4.47,2.11,4.11,4.36,4.25,3.46,3.31,1.40,-0.01,1.28,0.02,2 -1.53,0.48,0.37,-0.04,0.52,1.61,3.12,0.42,0.32,2.41,2.63,2.73,2.42,4.47,3.83,4.56,2.12,1.76,0.42,0.25,0.69,0 --0.71,1.86,1.76,2.40,2.36,2.49,1.87,1.40,3.00,1.82,2.12,3.15,3.38,2.68,3.37,2.57,3.05,1.82,1.95,2.18,0.02,0 --1.14,1.26,-1.73,0.62,0.09,0.63,1.49,2.30,2.33,3.31,3.84,4.67,3.64,1.94,2.81,2.08,-0.14,0.44,0.88,-1.44,-0.57,2 -1.65,1.51,3.30,0.67,2.15,3.22,5.96,3.00,4.48,3.44,6.17,1.35,3.17,1.06,0.46,-0.16,-0.07,-0.53,0.67,0.82,-0.11,1 --1.28,0.11,-0.65,1.01,1.22,-0.60,-0.25,0.63,0.07,4.32,2.12,2.12,2.86,3.16,5.45,3.15,3.77,1.78,1.83,-0.44,0.35,2 -0.27,0.25,0.97,1.27,2.46,6.47,4.48,4.69,3.00,3.82,3.59,0.35,2.06,1.65,0.46,0.27,0.80,0.16,-1.42,-0.75,-0.25,1 --1.00,0.35,2.97,2.64,4.77,4.88,5.65,4.56,4.09,3.80,2.40,0.38,1.70,1.29,-0.69,-0.62,-0.30,-1.02,1.03,0.64,0.29,0 --0.23,0.62,2.10,2.24,2.68,4.19,5.57,5.21,2.78,2.58,0.02,1.91,0.65,-0.85,2.64,1.70,1.65,0.41,-0.23,-0.74,-0.06,0 --0.29,-0.24,2.78,1.06,-2.29,1.63,0.46,3.04,2.71,2.79,4.80,4.41,3.24,3.56,3.69,1.76,2.12,1.61,0.53,0.43,-0.82,2 -0.54,-1.53,1.48,1.78,0.86,1.00,2.62,-0.33,2.72,1.80,2.30,2.93,1.74,2.45,5.13,3.75,1.41,2.81,1.10,0.22,-2.07,0 --1.35,0.55,3.42,2.69,2.23,3.66,4.00,3.68,3.78,3.88,2.37,1.83,0.67,1.88,-1.48,0.55,-0.19,-1.34,0.81,-0.46,-1.22,1 -0.25,0.98,1.00,4.55,4.39,4.39,8.03,3.91,3.11,2.90,0.53,0.89,1.30,1.30,-0.03,0.85,0.95,1.10,-0.27,0.41,0.39,0 -0.49,-1.55,-1.62,-0.48,0.74,1.24,1.87,2.36,6.05,5.40,5.93,5.23,4.67,4.66,2.12,-0.01,1.17,0.30,0.78,0.13,1.19,2 -1.50,-0.80,-0.44,0.24,-0.35,0.49,0.97,0.80,2.65,3.92,3.58,3.95,5.18,5.01,3.37,3.92,1.41,-0.08,-2.55,-0.37,-0.42,2 -0.48,0.79,-1.04,-0.88,0.98,1.04,3.25,0.95,4.04,2.76,5.40,4.92,3.17,2.85,2.42,0.21,0.21,-1.49,-1.19,0.50,-0.72,1 -0.46,-0.82,-1.19,1.83,-0.05,1.99,3.53,2.45,3.16,5.31,5.30,4.52,4.02,1.94,0.43,1.85,-0.92,-1.74,0.14,0.64,-0.94,1 --1.55,-0.62,-0.04,-0.31,0.16,1.24,1.68,0.84,2.44,1.41,5.38,4.35,5.22,5.07,1.26,0.85,1.49,0.99,1.09,-0.23,-1.32,2 -1.10,1.46,1.88,1.84,2.21,4.45,4.54,3.90,4.19,3.85,1.03,2.48,1.75,0.25,0.40,0.91,0.89,0.58,1.17,-0.62,0.68,1 --1.54,0.14,1.36,2.46,2.75,2.45,3.81,4.52,3.79,4.79,3.15,3.41,1.67,1.82,1.25,1.48,1.12,-1.03,-1.18,0.03,0.71,1 -0.07,2.29,1.05,3.53,2.64,4.42,5.07,5.06,2.54,4.40,3.81,0.99,1.50,1.49,-0.33,0.06,0.03,-1.00,-0.46,-0.31,2.26,1 -1.47,1.45,0.38,0.06,-1.18,0.72,1.47,3.64,5.09,5.91,6.09,4.58,5.83,2.75,2.90,1.98,-0.99,-0.85,-1.28,0.44,1.35,2 -0.46,-0.32,1.69,0.98,2.22,0.29,2.64,2.46,2.04,2.82,0.72,4.52,1.10,2.17,3.34,2.74,3.19,2.12,1.63,0.48,-0.26,0 --0.37,-0.53,-1.26,1.48,1.95,1.32,1.33,4.10,3.61,4.28,5.09,5.08,2.98,2.37,0.86,0.05,0.23,-0.87,0.81,0.68,2.65,1 -1.22,1.63,-1.71,-0.78,-0.82,2.32,0.94,3.05,2.81,5.46,6.00,5.82,4.27,3.46,3.50,2.18,0.25,1.28,-0.97,-0.24,-0.11,2 --0.48,0.04,1.67,3.92,4.16,3.39,4.43,4.16,1.83,4.11,2.31,1.08,1.25,1.39,0.08,-0.39,0.56,1.69,0.44,0.79,1.05,0 -0.47,0.14,0.40,0.27,-0.41,0.47,0.93,-2.95,-0.33,-0.31,2.39,3.91,5.28,4.74,7.19,5.61,4.32,2.75,2.31,0.21,-0.47,2 --0.51,-0.48,2.40,1.50,3.82,5.35,5.26,4.23,5.03,3.36,3.30,1.23,2.93,0.94,0.21,-0.08,-0.75,-3.15,-0.09,-1.02,0.78,1 -2.18,-0.70,0.20,1.59,0.79,2.84,1.61,3.12,3.87,5.62,5.36,4.02,4.55,1.56,3.27,2.86,0.12,1.65,2.14,1.38,-1.53,2 -0.59,-0.20,1.77,0.37,-0.55,1.17,1.78,1.05,0.65,0.63,3.23,2.65,1.71,4.25,5.04,3.50,3.78,3.75,0.92,1.98,1.23,0 --0.81,0.78,0.18,1.56,-0.59,1.65,3.10,3.84,3.60,4.81,5.16,3.17,1.39,1.44,1.93,1.25,0.02,-0.19,0.35,-1.20,-0.98,1 --1.42,-0.39,1.67,0.09,-0.46,0.08,0.64,5.01,5.94,5.17,6.21,6.03,2.62,2.74,2.70,2.15,0.02,1.71,-0.23,3.09,-1.57,2 -0.52,1.33,0.70,-0.31,-0.10,0.01,-0.22,0.13,2.07,2.67,4.03,2.33,1.66,4.00,6.18,5.44,3.87,1.61,3.24,-0.03,0.15,2 -0.70,-0.53,3.67,2.78,2.62,3.76,5.97,5.56,3.61,3.91,1.98,2.50,1.02,1.31,1.52,-0.79,0.65,0.12,-1.01,1.13,-0.53,0 -0.09,-0.11,-0.95,-0.79,-0.47,1.78,1.40,2.95,2.00,4.32,4.64,5.67,5.87,3.25,1.91,0.67,-0.18,-0.26,0.04,1.25,0.44,2 --0.86,-0.68,0.71,1.93,0.15,0.92,0.30,-0.83,-0.61,3.42,1.61,4.47,2.56,4.14,5.41,4.51,2.52,4.34,2.61,1.93,-0.30,2 -0.49,-0.45,-0.72,0.70,1.53,2.29,5.03,3.52,3.43,4.29,5.31,3.08,2.89,2.49,1.43,-0.15,1.46,0.82,-0.55,-0.20,0.21,1 --1.58,0.01,2.33,3.23,3.43,5.42,4.58,6.79,3.86,4.02,0.99,0.37,0.42,1.30,0.78,2.00,0.08,-0.82,1.37,-0.92,-0.20,1 --1.44,0.98,0.88,-1.07,-0.21,0.80,1.76,1.85,4.77,4.29,4.46,5.79,4.19,4.44,1.79,-0.73,1.61,0.47,-0.28,0.56,0.35,2 -1.18,1.02,-0.27,-1.52,-0.27,2.53,2.42,3.21,3.96,5.00,5.38,5.92,4.81,4.41,2.87,2.01,1.20,-0.03,0.69,0.21,-0.78,2 --0.09,2.03,0.81,2.38,1.22,4.49,4.83,3.51,3.44,2.95,5.66,4.99,1.38,2.83,-0.33,0.43,-0.70,-2.70,-0.37,-0.25,-1.01,1 -0.39,1.69,-0.22,4.44,2.72,2.29,5.25,3.84,2.84,3.53,3.83,2.71,0.24,-0.16,0.88,-0.12,-0.42,0.66,0.94,0.08,1.57,1 -0.19,-0.65,0.60,2.93,1.07,5.29,6.11,4.45,2.47,4.52,3.11,0.73,0.30,0.11,1.95,-0.39,-0.32,0.81,0.88,-0.17,0.25,0 -0.54,0.26,2.76,0.14,1.69,1.32,2.85,3.55,3.26,2.64,5.40,3.82,5.12,3.67,2.10,0.62,0.53,0.09,0.19,-2.25,-0.41,1 -1.19,0.88,-1.00,0.68,2.46,1.43,1.51,-0.04,0.76,1.28,1.37,1.85,2.94,1.94,3.60,4.19,2.51,1.88,1.57,0.45,-1.25,0 --0.42,0.10,1.04,-1.62,0.87,0.73,0.46,-0.31,0.23,0.34,2.90,1.73,5.47,3.88,4.86,4.18,4.47,2.16,2.61,-0.36,0.79,0 -0.04,0.35,-0.72,0.67,-1.73,1.23,1.11,2.82,0.36,6.66,5.46,4.79,5.29,4.18,2.65,2.38,0.16,-0.94,0.89,0.51,1.62,2 -0.98,0.55,1.08,2.29,4.89,3.07,5.43,3.66,3.01,2.21,1.93,3.20,0.32,2.44,1.28,-0.34,-0.04,1.43,1.23,-0.15,-0.68,0 --3.34,-0.36,2.71,3.07,4.40,4.45,4.92,3.57,3.26,1.57,2.11,-0.29,-0.69,0.62,-0.12,-1.19,-0.22,-0.14,-0.19,-0.78,0.81,0 --1.01,1.23,-0.27,1.09,0.13,1.35,0.17,0.55,0.75,-0.94,1.35,1.74,3.51,3.87,5.40,3.01,3.14,3.96,2.56,0.40,-0.86,0 --0.17,0.35,-0.40,0.94,2.69,1.18,3.03,2.34,0.68,1.49,1.79,2.29,3.89,2.19,3.89,5.79,2.09,2.21,1.30,0.74,0.43,0 -0.73,1.08,2.74,0.95,1.50,3.78,4.01,3.58,3.62,5.08,4.95,1.53,0.45,0.90,0.54,1.50,-0.55,1.59,0.65,1.28,0.87,1 -0.82,-0.41,0.38,-0.47,-0.17,-0.79,1.19,1.97,1.51,2.01,5.12,3.50,4.13,3.82,3.92,1.91,2.63,0.61,0.61,0.32,-0.92,2 -0.21,-0.24,0.53,0.22,2.54,1.30,2.16,1.88,3.83,0.82,2.87,1.80,1.19,4.45,2.14,4.25,1.06,0.44,2.09,1.66,-1.25,0 --0.30,2.01,0.33,0.83,1.61,2.26,1.98,2.69,1.49,2.74,2.84,0.35,1.26,2.25,1.60,1.57,-0.72,1.36,0.39,1.52,-0.10,0 -1.04,0.89,1.99,2.26,1.63,4.03,4.44,4.56,4.29,5.07,3.10,0.39,1.27,-0.06,-0.64,0.21,0.12,-0.04,-0.11,0.76,-1.06,1 -0.50,0.68,0.36,-1.76,1.28,0.10,-0.17,0.77,-1.25,1.35,2.50,3.52,3.77,4.63,5.32,3.78,4.02,4.62,4.04,0.36,0.51,2 --0.03,-1.44,-0.63,2.02,0.85,1.98,2.62,3.12,5.55,4.06,5.91,2.72,2.37,2.39,0.79,0.52,0.91,0.60,-0.10,0.18,-0.16,1 --0.52,-1.12,2.50,1.90,-0.11,0.58,1.85,2.62,1.95,4.76,4.91,5.38,2.45,3.15,1.78,-1.11,0.54,-0.41,-0.18,0.66,-0.09,1 --0.02,1.23,-0.31,1.04,2.09,2.02,2.01,1.10,1.94,1.88,2.28,2.11,2.08,1.84,4.43,4.07,3.23,3.47,1.88,-0.51,1.72,0 --0.24,-0.59,0.66,-0.02,1.50,2.01,0.58,-1.49,0.96,2.53,1.23,2.36,3.57,5.04,3.56,4.41,2.94,3.41,1.26,0.95,0.93,0 -0.03,-1.17,1.22,0.19,0.10,1.41,-0.66,-0.47,0.54,3.91,4.01,2.22,4.88,4.76,6.17,5.72,1.77,1.71,2.15,0.68,-0.44,2 --0.26,0.35,1.21,0.28,0.87,1.48,0.93,1.45,3.08,3.80,5.64,3.03,3.43,2.44,4.00,2.20,2.33,-0.49,1.28,-0.13,-0.74,2 --0.42,1.23,-0.45,0.34,1.38,0.10,0.42,1.62,0.58,2.21,1.42,3.22,2.45,3.91,3.84,4.89,1.07,1.75,1.04,1.33,-0.77,2 -2.71,0.57,-1.10,1.55,-0.71,-0.70,-1.49,-0.20,-0.58,1.78,2.66,4.69,3.36,5.17,7.04,5.25,5.69,4.42,3.23,0.84,1.69,2 -1.36,-1.48,1.13,4.24,4.36,5.30,6.00,4.85,6.08,2.42,1.73,0.87,-0.54,1.56,-0.43,-1.35,-1.49,-1.01,-0.06,-0.48,2.04,0 --0.23,0.03,0.71,0.48,-0.38,3.57,3.86,2.90,1.91,4.14,2.63,4.73,4.11,1.44,3.15,0.93,0.04,-0.13,-0.68,1.00,-0.60,1 --0.56,0.53,0.34,0.40,2.83,3.20,3.76,3.35,2.43,3.65,2.77,0.92,1.41,2.59,1.37,1.78,1.20,0.02,0.42,0.42,0.12,0 -0.46,1.04,0.31,1.06,1.40,2.03,2.93,3.88,3.67,4.33,3.50,4.30,2.17,0.15,2.30,-1.19,-0.94,0.07,2.62,2.06,-0.25,1 --0.05,0.48,2.10,2.01,2.96,4.49,6.31,3.89,1.93,4.69,1.89,1.87,-0.46,0.44,1.39,0.57,0.70,-1.75,-1.02,-0.72,-1.10,1 -0.90,-1.57,-2.25,-0.16,-1.41,0.91,0.43,3.54,2.74,5.42,5.65,5.85,5.01,4.11,2.25,1.94,2.51,0.68,1.15,-1.41,0.96,2 -0.65,2.50,1.16,2.14,3.09,4.51,4.46,2.07,3.29,1.23,3.40,1.40,-0.08,2.71,2.72,0.32,1.89,1.48,0.46,-0.56,-1.31,0 --0.50,-0.46,0.00,3.00,1.92,3.11,3.98,2.31,3.09,0.40,3.16,1.97,2.27,2.52,2.54,1.36,0.59,1.99,2.52,-2.77,-1.34,0 -0.36,0.88,0.14,-0.81,1.51,3.51,1.64,3.93,4.89,5.10,6.06,2.95,1.19,2.12,1.45,-0.07,-1.24,1.03,1.04,0.40,1.12,1 -1.07,-0.94,0.32,-1.04,0.41,-1.39,2.39,0.44,0.58,1.54,0.96,4.25,4.42,5.19,5.79,4.92,2.99,3.34,0.29,-1.39,-1.33,2 -0.93,1.41,1.59,1.19,2.47,2.70,1.91,1.31,3.04,3.03,4.64,2.43,3.54,3.11,2.53,3.00,1.85,1.84,0.93,0.03,-0.43,0 --1.50,0.17,2.93,2.51,3.28,4.39,6.34,3.07,2.55,2.58,1.55,1.18,0.19,1.62,0.26,0.93,0.77,-0.67,-0.25,-0.67,1.16,1 --0.52,-0.04,1.59,4.75,3.83,3.33,4.89,4.71,1.55,3.72,2.66,1.39,0.01,1.25,0.70,1.62,0.09,1.63,-1.08,0.77,0.48,0 --0.11,0.41,-0.71,0.25,-0.26,-0.66,1.44,2.37,0.67,3.35,4.12,2.90,4.20,4.80,4.03,2.31,2.90,1.55,1.24,1.43,0.24,2 -2.48,2.22,1.12,2.71,2.32,4.02,6.51,4.35,4.51,4.25,2.69,0.10,0.97,-0.25,0.30,1.23,-0.22,-0.60,-0.26,-0.30,0.10,1 --0.79,-0.38,1.55,1.08,1.14,0.07,0.06,-0.96,2.20,3.40,5.02,3.73,4.45,2.10,3.50,4.08,3.51,-0.43,1.39,-0.68,1.88,2 -0.21,0.25,0.27,-0.43,-0.02,0.58,0.22,-0.35,0.06,2.71,-0.99,2.74,3.21,4.92,4.23,5.47,3.97,3.60,1.86,0.40,0.26,2 -1.01,0.28,2.87,3.04,4.06,5.27,2.47,4.86,5.93,4.35,3.70,1.15,0.77,-0.34,-0.59,-0.40,1.22,0.23,-0.44,-0.48,-1.84,1 -1.28,1.46,0.40,1.03,2.26,1.25,1.47,1.82,-0.30,0.20,2.40,1.91,3.48,4.43,6.99,4.34,2.95,2.88,0.84,1.17,-0.38,0 --0.00,-0.43,-0.19,-0.62,0.26,2.12,2.42,4.62,4.95,4.67,5.71,5.35,2.34,2.44,2.57,0.01,0.30,1.00,0.86,0.78,-0.20,1 -1.82,1.08,0.77,3.48,1.24,5.78,4.92,4.24,4.21,1.88,2.37,0.98,1.53,1.49,0.44,-0.05,0.11,0.44,-1.54,-1.35,-0.64,0 --1.33,-2.15,0.37,0.58,-0.12,1.42,2.64,2.04,0.35,0.88,1.73,3.04,4.03,2.99,1.26,2.55,2.28,1.48,-0.83,1.00,-0.94,2 -0.71,-0.01,1.10,1.52,-0.50,-0.42,-0.65,0.64,2.04,1.52,0.93,3.97,4.07,4.04,4.66,2.90,1.08,2.17,2.59,0.69,-0.78,2 --1.26,0.21,0.91,1.04,0.94,2.15,2.31,3.96,3.96,5.78,5.14,2.25,4.45,2.43,1.79,-0.24,-1.03,-0.34,-0.82,1.92,-1.11,2 --2.52,1.83,0.55,3.47,4.00,6.24,5.37,4.49,4.21,3.01,1.60,-0.03,0.49,-0.34,1.73,0.45,-0.41,-0.02,1.29,0.17,0.50,0 --0.73,1.52,0.99,2.14,0.45,2.34,1.80,4.73,3.91,6.08,5.45,3.89,4.41,0.82,0.33,1.37,-0.83,-1.36,0.73,-0.72,-1.26,1 --0.94,-1.60,1.50,0.45,1.68,3.69,4.44,2.95,1.78,3.01,0.22,3.22,0.61,-0.14,2.90,1.99,1.37,1.70,-0.31,0.95,-1.28,0 -0.38,1.23,1.97,1.78,2.08,2.76,0.69,1.43,1.30,0.86,3.55,1.34,3.80,5.00,2.28,3.80,1.65,1.95,2.19,0.67,-0.21,0 --0.88,-0.57,0.73,-0.96,-0.11,0.36,2.01,1.68,2.38,2.20,1.52,3.26,2.39,3.16,6.43,4.72,3.68,2.10,0.40,1.23,0.80,2 --0.71,1.03,1.44,3.57,3.63,5.23,6.82,5.20,3.12,4.01,3.47,2.55,-0.22,1.39,-0.11,-2.15,-0.22,-0.91,0.24,-0.24,0.08,0 -0.38,-0.70,-0.16,0.31,-0.64,-1.13,0.33,1.98,3.13,3.93,3.91,5.14,2.94,2.80,3.54,2.28,1.61,1.28,0.47,-1.09,-0.59,2 --0.94,0.98,1.35,4.28,4.46,3.68,6.12,6.07,4.25,2.84,2.37,3.23,0.06,-1.18,-1.31,-2.04,-0.21,1.68,-0.08,0.48,-0.08,1 --2.21,-1.07,0.75,0.95,-0.36,0.37,2.79,1.95,1.60,0.75,1.87,2.21,3.62,3.53,4.84,3.22,3.37,2.42,1.80,1.55,-1.13,0 -0.10,-0.43,-1.65,-1.04,0.58,0.35,1.48,3.11,3.89,5.33,7.11,3.87,2.65,2.73,1.71,0.04,0.26,1.33,-0.66,-1.56,-0.35,2 -0.72,1.53,-0.00,0.50,-0.31,0.41,2.53,1.75,1.07,1.79,2.55,3.29,3.23,5.60,5.18,3.38,3.39,1.82,2.70,2.28,0.18,2 -0.34,1.32,0.16,0.50,0.17,1.09,2.20,1.12,-1.00,0.56,1.92,2.12,4.11,4.50,5.94,4.30,2.81,1.01,2.94,0.46,0.96,0 -1.20,-0.37,1.18,2.78,3.57,3.57,6.11,4.47,2.78,2.14,2.36,0.96,0.64,0.25,1.53,1.09,0.78,0.67,-2.15,-0.21,-0.82,0 --0.50,-1.94,-0.51,0.06,-0.08,0.87,0.26,1.47,2.83,1.22,2.97,4.32,6.32,4.77,2.58,2.75,3.76,0.15,1.85,1.90,-0.64,2 --0.76,-0.63,0.78,-0.73,-0.86,1.26,2.94,2.30,1.88,3.34,4.43,3.87,3.65,4.28,2.25,3.18,1.41,0.31,-1.79,-0.64,1.05,2 -0.82,0.55,-0.85,-0.06,-0.45,-0.28,-0.05,2.83,-1.12,1.64,1.52,4.41,4.78,4.19,7.88,5.42,4.76,2.05,1.44,0.74,-0.64,2 -1.73,-1.60,1.08,0.83,1.36,0.41,3.23,0.85,-0.58,0.73,2.86,1.09,2.53,1.84,5.88,3.94,4.32,1.28,0.98,2.28,0.48,0 --0.65,0.11,1.51,0.60,-0.38,1.83,0.26,0.75,1.65,2.09,4.66,4.68,3.49,4.43,2.09,1.17,1.38,1.18,0.08,-0.87,-0.16,2 -0.61,-0.04,0.60,1.45,4.46,4.33,6.63,3.05,3.63,3.04,-0.07,2.78,-0.47,1.20,0.63,2.38,0.52,-0.06,1.35,1.06,-0.92,0 --1.45,2.41,0.36,2.60,3.74,4.05,4.43,3.49,4.02,3.63,1.85,0.37,0.41,-0.38,2.51,2.79,1.06,-0.06,0.25,0.76,1.73,0 --0.07,-0.44,1.94,1.16,-0.23,3.14,3.63,2.83,3.20,4.58,4.56,4.52,4.55,1.45,1.61,-0.32,-0.87,0.24,-0.18,-0.25,0.65,1 --1.17,-0.66,-1.56,-0.75,1.08,-0.06,1.24,2.15,1.12,3.27,2.17,3.49,3.42,3.64,4.22,0.91,-0.93,3.77,0.56,0.05,-0.47,2 -1.53,-0.50,-0.20,1.00,0.75,1.64,3.67,1.92,3.64,4.85,4.65,2.63,1.79,2.60,0.34,2.07,-1.45,-1.09,-1.63,0.82,-0.27,1 --0.66,3.50,-0.62,0.43,0.23,5.29,3.44,4.70,3.51,6.09,4.92,2.33,0.99,4.57,1.80,1.36,0.32,-1.60,-1.21,1.89,0.40,1 -0.51,-0.00,-0.01,2.90,1.84,2.90,3.82,3.30,1.11,2.29,2.63,2.04,3.39,4.46,3.24,2.27,3.69,1.87,2.53,-1.67,-1.12,0 -0.20,0.80,1.14,0.79,0.16,1.48,1.88,3.43,5.44,4.28,7.46,4.96,4.33,1.10,0.25,2.16,-0.40,-0.40,2.14,2.21,-0.16,1 --0.19,1.73,1.68,1.40,1.82,3.96,5.95,4.81,3.83,4.40,2.61,2.60,0.18,0.23,-0.43,-0.95,-0.38,2.17,1.14,1.17,0.11,1 -0.08,-0.42,0.43,0.94,1.44,-0.34,2.83,2.95,4.48,2.67,5.70,3.53,4.35,4.23,0.07,0.71,-0.69,-0.72,0.29,-0.36,0.10,1 --1.41,1.08,-0.65,-0.52,-0.65,0.19,-0.19,0.68,2.31,2.70,3.04,3.36,2.94,5.11,2.99,3.74,1.53,2.76,0.28,2.23,-1.82,2 -0.92,-0.77,-1.21,0.56,-0.96,-1.26,1.05,-0.52,0.05,0.77,0.73,2.93,3.52,4.53,7.77,4.93,3.83,3.29,0.43,0.32,-1.28,2 -1.43,1.82,-0.22,-2.34,0.60,0.40,1.08,0.85,1.63,4.19,5.41,5.82,4.89,2.08,4.25,0.96,2.49,1.84,1.00,0.34,1.43,2 -1.25,0.32,1.51,0.00,0.41,0.78,0.16,1.16,3.07,2.87,4.25,4.37,3.13,3.67,2.97,3.70,2.84,1.52,1.28,0.91,-0.17,2 -0.55,2.53,2.52,1.73,4.94,4.99,6.82,5.52,2.84,3.30,0.83,1.59,-1.45,0.22,1.75,0.02,-0.87,2.78,-0.26,-0.83,-0.52,1 --0.04,0.07,0.44,0.59,0.04,1.94,3.38,3.75,5.12,4.80,5.73,3.94,2.95,1.95,0.25,1.07,-0.64,-1.28,1.24,-0.25,-0.76,1 -0.65,0.03,0.62,-1.25,-1.09,1.05,3.39,4.64,4.62,4.12,6.16,5.41,3.95,4.07,1.73,-0.84,-1.67,-1.09,-0.04,-0.63,-0.98,1 --0.52,-1.25,0.88,1.81,2.43,4.08,3.12,2.60,3.01,1.58,2.03,1.37,1.81,2.98,1.77,1.47,0.40,0.01,0.86,1.96,-0.64,0 -0.32,-0.20,1.63,2.34,3.29,4.38,3.63,4.86,2.49,3.71,3.56,4.85,1.92,2.53,0.53,-0.33,0.87,-1.48,0.40,0.67,-0.98,1 --1.01,-0.17,-0.72,0.51,-1.60,-0.43,1.74,2.86,2.40,3.77,3.12,5.43,6.15,3.77,1.56,3.02,0.16,0.40,1.94,-0.05,1.31,2 -0.42,2.38,1.73,3.62,2.04,4.83,4.98,3.47,3.43,2.46,3.62,1.11,1.23,-1.48,0.23,1.57,1.83,2.10,1.67,0.61,-1.19,0 -0.21,0.22,-0.13,1.13,2.75,3.39,2.38,6.66,3.44,1.81,3.59,3.26,0.15,1.23,0.36,-1.68,2.09,-0.55,0.31,0.59,-0.80,1 --1.05,-0.43,-0.65,0.85,1.12,0.91,2.04,3.93,3.41,3.94,6.22,3.58,3.63,2.85,2.16,2.30,0.55,-2.57,0.76,2.54,-1.68,1 --0.81,0.48,-0.49,-0.69,-0.67,1.05,3.05,4.01,4.28,5.25,6.30,4.00,1.81,4.41,1.98,1.59,-0.23,-0.21,1.30,-0.73,-1.52,1 --0.86,-2.03,-1.80,-0.82,0.32,0.76,1.23,0.71,-0.86,2.12,4.86,4.33,3.40,5.63,5.23,3.59,3.59,2.68,1.67,0.72,1.75,2 -0.28,-1.61,1.45,-0.15,-0.43,0.83,-0.57,0.60,1.75,1.43,3.60,3.01,4.64,5.01,6.08,3.69,1.73,2.23,0.60,1.36,0.32,2 -0.71,-0.47,-1.69,0.07,-0.13,-1.10,2.67,0.71,4.23,3.27,2.99,5.05,4.88,4.22,4.10,2.44,2.43,2.67,2.47,1.54,0.06,2 --1.18,-2.60,2.61,2.75,1.95,2.66,4.57,3.33,4.79,4.32,3.62,3.95,3.21,1.19,0.68,2.06,0.38,-0.78,-1.50,0.48,0.80,1 -0.04,0.71,-1.35,-1.14,0.08,-2.32,-1.77,-0.64,-0.64,-0.27,2.22,2.61,2.47,4.52,6.50,3.03,5.32,4.70,2.10,0.06,-0.52,0 -0.27,-0.45,1.18,-0.34,0.68,-0.01,-0.66,0.27,2.41,2.25,1.89,5.34,3.08,4.37,5.79,7.08,5.21,2.23,0.52,1.50,-2.65,2 -0.49,1.06,1.98,0.38,1.54,3.40,4.94,3.11,4.22,2.45,4.72,3.86,1.83,1.40,1.42,0.32,-0.56,-0.23,0.22,-0.45,-1.57,1 --1.46,-1.46,2.14,2.03,-0.02,2.28,0.95,2.97,0.06,2.82,3.65,1.44,2.30,3.90,5.71,2.39,1.24,2.56,-0.77,-0.02,0.42,0 -1.43,-0.75,-1.80,-1.68,0.15,-0.35,1.01,0.85,2.23,2.69,3.03,4.39,3.61,5.18,4.47,3.34,1.35,2.20,0.58,1.36,0.50,2 --0.95,-0.73,0.24,1.59,-0.08,3.43,5.45,4.54,5.92,3.32,4.93,2.82,1.81,1.55,0.10,0.48,1.60,1.28,-0.24,0.14,-0.86,1 -0.51,-0.16,0.58,-1.54,0.91,-0.08,2.23,0.87,2.37,3.46,2.40,4.87,5.29,2.44,4.34,1.09,1.63,0.77,0.38,0.40,0.22,2 -2.07,0.28,-0.61,0.48,-0.10,-0.89,2.56,0.17,1.73,2.71,1.78,4.44,5.73,3.40,3.45,3.98,2.03,1.67,-0.59,1.78,0.72,2 --0.96,1.21,2.43,2.95,3.63,4.70,5.66,4.41,4.22,4.05,-0.22,-0.03,0.06,1.73,0.88,0.22,-0.72,0.41,0.17,1.16,-0.50,0 -1.28,-1.42,-0.10,-0.96,-0.36,0.54,1.56,3.34,5.08,5.35,5.49,4.70,3.95,3.79,3.92,1.54,2.27,0.93,2.24,1.60,-1.07,2 --0.52,1.84,1.74,-1.00,1.42,1.62,4.78,2.77,3.51,3.32,4.23,4.69,3.42,0.93,-0.41,0.85,-1.38,-1.32,0.39,-0.75,0.17,1 -0.56,2.51,-2.11,0.80,1.38,-0.85,0.45,0.46,0.07,2.01,1.47,2.15,4.15,4.12,5.70,4.27,3.88,3.10,2.37,1.04,0.14,0 -0.07,-0.98,-0.89,-0.72,0.15,1.45,3.70,1.37,2.84,4.47,5.22,3.96,3.35,3.47,1.68,0.82,0.07,-0.47,1.83,-0.43,-0.68,2 --1.19,-0.21,0.96,0.49,-0.58,-0.03,-1.18,0.20,1.22,0.39,3.57,3.66,4.28,4.46,4.88,5.36,3.72,2.27,0.23,0.80,-0.78,2 -1.25,0.64,0.82,1.76,1.13,2.18,3.05,4.15,2.56,4.97,3.45,2.65,2.74,0.70,0.57,0.03,-0.17,-0.57,0.51,0.22,0.12,1 -0.50,-0.26,-0.80,0.02,-0.41,0.56,0.52,0.23,1.10,2.24,2.72,5.07,4.29,2.71,3.64,3.86,2.10,1.45,2.38,-0.57,-0.25,2 -1.24,-0.54,1.29,1.82,2.70,2.69,4.35,2.08,3.88,1.90,1.85,2.79,2.07,1.48,2.57,1.49,1.59,2.12,1.31,0.16,-0.88,0 -0.46,-0.92,3.08,2.48,2.94,4.56,3.96,4.49,4.42,4.02,3.67,3.07,-0.41,1.04,0.22,1.98,0.44,-0.22,1.51,-0.31,0.25,1 -1.34,-1.59,1.10,1.97,-0.45,3.13,1.87,1.09,0.48,3.92,1.72,3.00,2.93,2.55,3.99,4.20,5.11,0.82,1.64,1.48,1.35,0 -0.39,1.48,0.32,1.47,0.41,1.82,3.68,0.32,-0.96,1.66,2.12,3.64,2.33,3.75,3.94,3.10,2.79,2.06,1.02,0.44,1.28,0 -0.87,1.64,2.29,3.41,3.54,4.39,6.18,3.72,2.37,3.45,1.61,2.10,1.08,1.34,-1.27,-0.01,-1.89,-1.36,0.58,0.85,0.91,1 --0.51,-0.25,0.95,-0.16,-1.26,-0.43,0.16,0.16,0.22,1.54,2.64,1.60,2.94,3.75,4.42,3.45,3.58,3.28,0.58,0.39,0.31,0 -0.41,-1.89,0.55,-0.03,-0.17,0.51,-2.06,-0.17,1.06,2.11,1.30,3.91,3.07,5.14,6.22,3.74,0.96,1.98,0.68,-0.08,0.92,2 -0.42,0.41,-1.05,2.07,0.19,-0.58,1.30,3.26,3.68,5.01,5.85,4.96,3.78,2.08,4.53,1.25,1.89,1.33,0.68,0.00,0.80,2 -0.61,1.01,-0.88,0.60,-0.55,1.31,-0.79,3.33,0.48,1.18,5.13,3.72,4.14,5.13,3.48,2.53,0.15,1.65,3.82,0.24,1.01,2 --0.18,-0.16,3.83,1.60,2.97,4.25,3.16,1.49,2.42,3.08,1.55,2.11,-0.19,1.40,3.50,3.31,1.88,-1.07,2.33,-0.90,0.41,0 -1.11,0.05,0.93,3.06,1.58,1.41,2.71,2.22,3.10,2.63,1.01,1.17,3.24,4.94,4.33,2.80,4.15,2.09,2.10,1.07,-3.45,0 --0.57,0.46,2.81,1.61,2.20,4.96,4.90,2.92,3.31,6.24,1.73,1.64,0.34,-0.09,0.34,-0.60,-0.13,-0.12,-2.47,0.08,0.27,1 --0.31,1.31,2.74,1.02,1.57,2.47,2.43,-0.63,0.46,1.91,1.49,2.51,2.92,3.57,4.34,2.53,2.59,3.33,1.90,-0.10,1.56,0 --2.34,-1.95,0.01,-0.75,2.83,2.31,2.86,1.31,-0.11,1.55,2.67,3.19,3.90,3.07,2.41,3.69,2.25,2.03,0.34,0.53,-0.30,0 -0.16,-0.74,-0.14,0.26,0.50,0.94,-0.74,-0.72,-0.53,0.66,1.37,3.98,4.94,5.23,5.46,5.06,2.39,0.55,-0.44,0.86,-0.14,0 -1.37,0.76,3.25,3.29,1.51,3.40,6.09,5.04,4.70,2.34,1.69,-0.07,-0.12,1.19,0.58,0.37,-0.37,1.23,0.46,1.14,1.11,0 -0.10,0.75,-0.77,1.62,1.03,0.12,0.27,3.74,3.07,5.52,5.03,4.51,2.57,4.88,1.63,2.88,1.66,-1.59,0.87,0.73,-0.04,1 --0.56,0.62,1.81,2.52,0.39,2.98,1.60,2.01,1.20,2.55,2.30,2.58,2.35,3.90,5.62,1.13,2.74,1.88,2.08,1.58,2.27,0 --0.34,2.00,0.31,1.55,4.39,3.31,4.71,3.47,3.61,3.39,0.59,0.72,1.29,1.64,2.84,2.40,2.73,1.56,1.41,0.41,0.32,0 --0.84,0.45,4.30,4.16,4.17,4.38,5.37,5.28,4.68,1.51,1.80,1.28,-1.94,1.13,0.77,0.81,-0.15,1.00,1.18,-1.07,1.25,0 --1.11,-0.06,-0.28,0.03,2.10,0.65,2.08,0.95,0.41,1.02,0.90,2.37,1.00,3.42,5.81,4.38,3.55,3.83,2.65,1.87,-0.25,0 -1.87,0.72,2.28,0.60,2.35,4.06,4.97,3.99,2.61,4.02,1.07,0.89,1.24,-0.06,2.14,0.43,0.83,-0.01,-0.25,1.21,-0.61,0 -0.84,-1.58,-1.16,-0.65,-1.77,2.08,0.39,1.15,0.72,3.73,2.95,3.43,4.03,4.68,4.38,5.69,1.53,2.17,-0.64,1.29,-0.45,2 -0.25,-0.55,0.44,3.81,2.94,2.40,3.21,3.97,3.59,1.04,2.76,1.98,0.98,1.91,1.57,1.77,1.66,-0.26,-0.10,2.28,-1.02,0 -1.33,-0.10,-0.45,1.55,-1.10,1.59,0.01,0.67,0.10,0.79,2.13,3.37,4.35,4.70,6.33,5.44,3.90,2.49,0.82,2.72,2.46,0 -0.74,1.06,2.36,2.22,3.59,2.86,4.25,4.57,4.34,2.29,3.31,3.97,0.78,0.20,0.35,-0.02,-1.39,0.17,-1.32,0.99,-1.54,1 -0.53,0.20,1.45,2.67,2.54,1.99,2.71,4.65,3.85,4.19,5.25,3.50,3.91,-0.03,1.44,0.98,-1.10,-0.96,-0.13,0.06,0.41,1 -1.33,1.74,2.32,-0.05,2.04,0.12,4.48,5.88,5.05,3.42,4.11,4.54,2.72,-0.15,2.96,0.86,0.02,0.07,0.81,-0.50,-0.96,1 -0.27,0.99,2.64,2.02,2.50,5.41,7.99,6.17,3.71,3.28,2.96,-0.02,-0.84,1.40,-2.06,0.08,-0.30,1.29,0.64,-0.55,-1.62,1 -0.95,-0.53,1.49,3.08,4.73,4.04,4.45,4.63,4.95,2.39,2.37,1.43,1.37,1.67,0.52,0.13,-0.80,-0.99,-0.30,-0.13,2.02,1 --0.38,2.19,1.97,2.79,3.87,5.16,6.59,4.73,3.57,3.85,-0.31,1.91,-0.15,0.99,1.50,0.42,-0.53,-0.09,-0.07,-0.31,-0.27,1 -1.37,0.63,0.41,0.83,1.40,2.17,3.09,2.66,3.53,4.46,3.82,3.89,3.50,3.07,1.16,1.89,-1.40,-1.78,0.77,0.61,0.96,1 -1.56,0.59,2.25,1.16,2.22,2.78,4.57,3.08,4.82,2.91,1.63,1.23,1.78,0.90,1.53,2.67,0.37,1.31,0.72,1.99,-0.99,0 -1.37,1.79,-0.36,-0.58,-0.10,1.00,2.45,3.86,4.25,4.10,7.66,6.21,5.19,2.68,2.85,1.23,0.02,0.58,-0.51,0.96,1.88,2 --0.28,1.37,1.78,1.01,3.63,5.64,5.59,4.61,3.85,1.63,2.58,1.12,1.72,0.71,0.09,-0.20,1.45,-1.63,0.78,0.29,-1.06,0 -1.43,-0.58,1.43,0.55,0.62,-0.55,0.31,-0.26,-0.20,2.68,1.23,4.02,4.39,5.88,4.72,5.37,3.47,2.18,0.94,2.42,-0.51,2 --0.81,-0.69,1.34,-1.27,-0.45,-2.38,2.31,1.37,0.68,1.79,2.47,3.06,4.03,4.22,3.46,5.16,4.45,1.58,2.20,2.22,-0.10,2 -1.62,1.48,1.15,0.85,1.91,2.40,4.07,5.18,2.67,4.67,3.65,2.35,0.64,0.09,-0.96,-0.07,-1.25,-0.66,0.57,-0.92,0.27,1 --1.32,-0.35,0.11,1.06,-0.37,1.46,2.22,1.78,-0.02,2.00,3.49,1.45,3.60,2.14,4.87,3.53,2.35,2.35,-0.04,1.46,0.24,0 --0.33,0.58,-0.30,-1.22,-0.30,-0.19,1.23,2.73,3.17,2.16,5.05,3.81,3.99,4.73,3.41,3.61,2.27,1.15,-0.58,0.45,-0.83,2 -1.52,-0.87,0.46,0.80,-1.54,1.39,0.10,3.65,1.40,4.31,5.54,3.44,3.72,3.26,4.05,1.21,0.40,0.21,-1.26,-1.79,0.79,2 -0.70,-0.91,-1.28,1.58,0.13,1.54,2.56,2.57,2.55,5.28,3.66,3.98,3.85,4.82,3.86,0.98,3.93,-0.16,0.78,-1.31,0.28,2 --0.86,0.59,0.29,0.47,3.92,3.90,1.14,1.10,2.93,1.86,3.54,1.38,2.79,2.28,2.97,3.06,0.18,3.53,1.05,-0.05,-0.75,0 --0.74,-0.89,-1.40,-0.01,0.23,-0.60,0.58,1.96,3.40,3.99,7.89,4.48,2.97,2.39,5.27,1.98,2.12,0.16,1.20,0.58,-0.48,2 --0.45,-0.35,0.04,-1.26,-0.47,-0.67,-0.01,0.23,1.10,3.28,4.37,3.84,4.85,2.87,4.14,2.95,0.29,2.12,0.96,1.07,-0.10,2 -0.19,1.59,1.04,-1.24,-0.76,0.03,-0.82,0.42,0.07,0.64,3.83,2.84,4.72,7.00,3.92,6.50,2.52,3.91,0.27,-1.05,0.12,2 -0.58,0.86,1.46,1.48,1.41,2.68,4.60,3.47,2.95,4.97,4.05,1.39,2.15,0.92,0.74,1.78,-0.83,0.18,-0.81,-0.22,0.81,1 --0.12,-1.05,-0.30,0.99,0.57,0.12,0.25,2.44,0.05,3.32,2.80,3.32,5.43,4.42,6.26,4.52,3.65,2.86,2.99,1.66,0.12,0 -1.45,2.00,0.10,0.30,0.62,-0.08,2.89,2.22,2.58,1.68,4.10,4.55,3.93,2.62,4.48,4.16,1.56,2.64,2.76,1.13,0.38,2 --0.78,-0.49,0.57,0.26,1.66,1.04,0.08,2.15,2.25,0.82,1.82,1.33,3.98,2.47,5.36,4.44,4.48,2.66,0.62,0.03,-0.73,0 --2.11,0.84,1.80,1.01,1.08,2.33,-1.04,0.54,1.07,0.33,2.64,2.18,3.65,5.10,4.65,4.83,2.05,2.83,1.51,-0.29,2.20,2 --1.14,0.99,1.76,1.24,3.73,3.35,5.48,4.13,4.92,4.74,4.00,2.48,2.10,2.00,0.22,1.88,-0.43,0.73,-2.63,-0.46,-0.38,1 --0.52,-1.41,0.69,1.09,1.50,3.35,2.30,3.13,1.90,4.87,5.65,3.96,2.68,2.92,-0.49,-1.33,0.54,-1.32,-0.99,0.16,0.16,1 --0.19,-0.12,0.95,1.64,4.79,4.47,5.87,4.25,3.67,3.55,1.80,0.29,-1.21,-0.94,-2.19,0.27,0.47,-1.84,-1.13,1.17,0.57,0 -0.19,-1.65,-0.98,1.06,0.21,1.65,1.10,2.00,1.41,3.04,4.35,4.48,4.09,2.45,3.89,1.34,2.37,0.38,0.55,-0.89,0.06,2 -0.34,0.01,-0.27,-0.95,-0.82,2.08,1.52,1.85,2.76,3.11,5.10,4.67,2.05,2.79,3.21,2.20,-0.03,1.91,-0.88,-1.16,-0.48,1 --1.32,0.65,0.34,-1.27,0.25,2.07,4.13,3.25,4.96,4.05,8.05,6.52,3.95,3.29,2.89,1.67,-0.68,-1.54,-0.12,-0.06,-0.29,1 --0.42,0.10,-0.26,0.66,-0.08,2.26,1.99,1.82,2.28,3.31,5.27,2.50,6.62,2.84,3.02,1.23,0.76,-0.36,-2.38,-0.06,-0.27,2 -0.37,1.73,-0.07,2.41,1.79,2.78,5.15,4.00,5.29,4.89,4.08,3.10,2.24,1.03,1.46,3.06,0.36,0.73,-0.49,-0.44,-1.11,1 --0.17,-1.05,-0.16,-0.59,-0.61,0.05,0.23,0.86,0.88,2.64,1.39,4.83,4.44,3.84,5.23,3.69,3.06,2.13,0.96,0.15,-1.10,2 --0.55,-0.32,0.44,1.90,-1.08,2.80,3.90,2.53,1.57,1.89,4.06,1.48,2.55,4.62,3.47,3.78,3.36,3.47,0.99,1.11,-0.63,0 -0.21,-0.60,2.07,1.43,1.65,0.29,0.69,1.99,3.59,4.24,5.55,2.85,6.19,4.00,1.39,-0.67,-2.52,0.52,-1.94,-1.29,-0.91,1 --0.35,0.13,0.73,0.22,1.17,0.23,2.07,0.43,1.77,1.78,3.03,3.53,5.50,2.61,4.22,3.47,2.43,2.74,0.89,-0.72,0.33,0 -0.81,-0.69,-1.10,-2.00,-0.80,-1.04,0.85,1.56,2.12,0.76,4.77,3.12,4.25,5.00,6.96,3.22,4.60,3.79,2.22,0.61,0.63,2 --1.53,1.94,1.58,1.48,3.77,3.71,6.22,3.85,4.66,2.48,0.85,1.04,0.27,0.83,0.74,-0.96,1.21,0.53,-1.61,1.78,-0.84,0 -1.32,0.30,0.32,1.56,1.39,1.04,2.12,1.62,2.09,2.59,2.50,2.52,2.22,5.29,3.81,1.75,1.92,2.34,0.55,0.24,-0.71,0 --0.27,0.86,0.58,0.48,-0.91,2.09,3.95,3.29,3.16,4.48,5.32,3.26,3.21,1.74,1.31,-0.73,-0.74,0.37,0.33,-0.07,0.23,1 --1.36,-0.27,1.93,1.58,0.16,3.43,2.38,4.58,4.18,3.61,4.26,2.66,4.06,1.85,2.95,0.31,0.93,-2.91,0.23,-1.46,0.54,1 -2.66,-0.92,0.51,0.68,-0.11,1.39,1.25,1.11,0.64,1.36,4.58,3.28,3.39,2.96,4.89,3.64,3.12,3.91,1.20,1.72,-0.85,0 -1.04,0.80,0.15,0.11,-0.42,0.11,0.57,3.20,2.99,3.19,5.38,4.69,3.38,2.55,1.74,2.81,2.27,1.38,3.22,0.25,-0.97,2 -0.55,-0.82,-1.80,1.89,-0.27,0.22,1.00,1.04,2.57,1.36,2.61,3.55,2.76,3.73,4.85,4.75,2.82,2.33,2.53,1.64,0.80,2 -2.05,0.07,-0.30,1.48,1.76,3.75,3.03,1.21,2.84,2.18,2.12,3.34,2.67,4.18,4.42,2.87,1.49,2.41,2.00,0.97,0.76,0 --1.43,0.27,0.54,0.89,1.38,1.05,0.69,0.79,0.47,-0.90,4.47,4.16,2.95,4.10,6.06,3.20,2.16,1.12,-1.71,1.10,-0.05,0 --0.12,-0.40,-0.41,2.54,2.88,4.18,5.24,4.28,4.57,3.68,4.38,2.88,2.70,1.80,0.68,0.21,1.04,0.60,-0.44,0.21,-0.79,1 -0.31,1.63,0.39,-0.18,-0.36,-0.26,0.04,1.35,1.86,0.86,2.27,5.36,4.27,4.14,4.67,2.84,1.83,1.33,2.34,-0.42,1.51,2 --1.23,1.35,1.53,0.71,3.91,4.95,5.68,3.46,2.36,2.42,0.94,0.72,1.96,2.75,0.77,2.01,-0.73,0.65,0.27,0.26,0.24,0 --0.62,0.70,2.59,1.28,3.63,3.87,3.83,4.51,3.61,2.48,1.42,1.70,-0.32,-1.97,1.93,-1.11,1.49,0.90,-0.94,-0.78,-0.91,1 --0.26,0.07,-0.56,0.70,-0.64,1.00,-1.12,1.48,3.14,1.53,2.88,3.68,4.38,4.89,3.66,2.07,1.50,0.99,0.91,0.02,-0.24,2 -0.29,-0.93,-0.60,-0.93,1.36,2.02,1.26,-1.52,0.67,3.13,3.05,3.29,5.41,3.43,3.88,2.26,3.24,2.36,0.05,2.84,1.11,2 -0.20,1.70,1.60,3.63,1.54,3.86,2.97,3.45,0.97,2.55,1.97,1.47,3.07,1.42,2.41,1.76,0.77,2.29,1.11,1.90,-0.06,0 --1.94,0.76,3.69,1.97,2.21,4.24,6.78,4.34,5.19,2.85,0.56,1.90,0.04,-2.82,0.03,0.62,0.80,-1.40,0.64,-1.61,-0.61,0 -0.30,0.67,1.15,0.06,1.19,0.78,0.64,2.27,2.21,4.76,5.67,5.55,4.21,2.19,2.93,-0.32,1.34,-1.58,1.64,-0.53,-1.29,2 --1.18,0.45,1.10,-0.39,0.15,-1.37,1.56,0.43,-0.60,1.72,3.45,3.15,4.85,3.88,2.55,4.56,3.36,0.34,1.37,0.94,0.58,2 -1.51,-1.47,2.21,2.87,1.81,3.09,4.70,3.79,2.86,3.71,3.44,2.15,1.85,1.10,1.88,-0.23,-1.95,-0.43,1.10,0.28,-0.39,1 -0.22,0.41,2.89,2.82,3.85,3.40,5.13,4.34,4.74,2.26,2.58,0.01,-0.96,-1.28,1.11,1.20,-0.28,0.27,0.18,1.15,-1.06,0 -0.96,2.38,1.69,2.03,5.80,5.58,4.84,5.34,3.64,2.42,2.25,0.95,1.95,1.78,-0.60,1.14,1.33,1.75,1.23,2.44,1.29,0 -0.77,1.50,0.17,0.69,0.51,1.11,-0.49,4.01,0.77,-0.66,1.68,3.61,3.31,6.34,4.30,4.24,2.67,4.35,0.35,-1.47,-0.78,2 -0.95,0.77,1.86,0.93,2.71,4.17,4.65,3.96,4.91,4.86,2.15,1.55,0.19,0.16,0.40,0.21,-0.48,0.82,0.05,1.13,0.42,1 --0.31,0.85,0.60,0.04,2.03,2.37,3.24,2.46,-0.09,1.83,3.54,2.22,1.81,2.20,3.30,3.86,2.76,0.48,1.78,2.30,0.36,0 -1.33,1.92,1.27,2.87,4.12,4.23,5.16,3.80,3.67,3.57,3.79,0.37,-0.67,1.24,1.48,-0.89,2.29,-0.29,0.87,1.28,-0.11,0 --0.36,0.71,1.63,2.94,3.27,2.61,6.64,4.54,3.87,3.21,4.13,2.20,1.40,2.63,0.62,0.25,0.30,1.48,-0.14,1.39,0.46,1 --1.08,-1.74,0.46,-0.47,-0.63,-0.13,0.17,2.72,1.19,5.20,5.47,3.57,4.44,3.96,2.97,2.23,1.48,1.77,-0.45,0.76,-0.20,2 --0.21,0.89,0.16,1.48,2.25,4.13,4.24,3.61,1.32,5.07,3.70,2.66,1.80,2.56,0.14,0.33,1.03,-0.19,-0.93,-1.79,1.32,1 -0.36,-0.02,-0.96,0.83,0.77,1.50,3.09,2.40,4.08,4.09,5.00,4.71,1.38,2.04,2.90,0.26,0.13,-1.40,-0.10,-0.61,-1.75,1 -0.85,0.10,0.58,-0.52,0.42,2.62,1.56,2.54,4.09,6.11,6.06,5.34,3.75,3.04,1.94,-0.11,1.78,1.82,0.32,0.78,0.82,2 -0.59,1.25,1.11,1.51,4.51,1.83,4.30,4.81,2.57,3.36,3.07,2.43,2.27,1.50,-0.23,0.71,0.94,0.98,0.78,0.39,-1.56,1 -1.89,0.48,-0.70,1.13,1.88,2.45,4.60,3.11,5.98,4.22,5.27,2.00,2.41,2.58,0.44,2.57,0.82,-0.86,0.28,-0.45,1.25,1 -0.84,0.43,0.39,0.08,0.24,-0.06,2.99,2.01,5.59,5.04,4.45,4.69,4.40,4.77,2.65,0.46,1.37,-0.57,-0.50,-1.00,-0.15,1 -0.36,1.02,0.21,0.03,1.24,0.73,2.77,-0.30,4.02,6.63,5.27,3.98,3.96,1.63,1.18,1.98,0.02,-0.11,1.43,-0.08,0.87,2 -0.05,-0.37,-0.00,0.71,-1.07,-0.50,-0.37,1.66,2.05,2.54,4.97,2.73,4.00,4.32,3.36,3.36,0.82,2.96,0.09,0.26,-0.10,2 --0.16,0.27,-0.94,0.54,2.63,2.06,1.14,2.45,-0.64,-0.76,2.30,1.89,4.06,3.73,3.77,5.45,2.81,2.78,0.95,0.04,1.06,2 -2.24,-0.83,-0.57,-0.39,-1.01,0.38,2.25,3.43,4.54,4.69,6.17,4.95,2.71,3.21,2.44,0.92,0.26,2.06,0.36,-0.76,-1.31,2 --0.67,0.68,1.66,1.17,0.86,1.27,0.82,-0.06,0.20,2.31,1.65,5.05,3.76,6.47,2.73,3.58,1.51,3.59,1.07,1.62,-0.95,0 --0.56,0.10,-0.25,0.81,0.17,0.55,2.25,2.99,2.57,5.07,4.99,6.48,5.78,2.74,2.35,-0.10,-0.62,0.05,-1.40,1.34,0.58,1 -0.43,0.91,2.61,-1.67,2.35,0.10,1.55,1.63,-0.90,-1.15,1.68,2.55,4.35,4.40,5.93,5.22,3.08,2.98,1.15,0.05,0.52,0 --0.68,-0.59,0.24,2.74,1.86,1.71,4.51,4.03,2.29,2.46,2.69,2.39,0.10,1.12,1.18,1.94,1.30,1.34,0.62,-0.07,1.84,0 --1.24,0.64,-0.58,0.04,-0.40,-0.11,2.24,1.73,0.16,1.46,4.08,3.78,4.30,3.10,3.77,3.68,2.44,2.35,1.00,0.73,-0.54,2 -0.17,-1.07,1.74,-0.38,2.27,3.99,3.69,2.20,-0.39,3.13,1.01,1.47,2.46,4.19,2.49,2.46,2.19,0.54,-0.02,1.96,1.75,0 -0.40,0.53,1.51,-1.06,0.55,-0.09,2.40,3.39,3.42,3.89,4.79,6.74,5.19,0.74,2.58,2.35,0.99,0.26,1.37,0.10,-0.02,2 -1.29,1.38,-0.71,-0.46,1.55,-0.07,2.15,-0.36,1.77,2.23,5.08,5.09,4.48,5.66,4.59,3.09,2.21,1.70,1.68,-0.14,-1.35,2 -0.31,1.60,3.22,0.55,2.57,3.90,2.32,2.29,5.54,3.70,4.05,2.90,3.14,2.85,1.43,0.86,-0.35,0.63,1.59,2.15,-0.18,1 --0.68,1.17,0.85,1.22,-0.10,-0.80,-0.96,1.27,1.03,2.62,1.30,2.97,3.45,4.09,5.54,4.28,2.11,2.96,3.16,1.06,1.21,2 -1.35,-0.11,0.83,0.58,0.78,-0.88,1.75,2.18,2.08,4.20,4.85,4.27,4.14,4.24,3.84,2.49,2.16,0.64,-0.27,0.57,-1.68,2 -0.16,0.47,-0.53,1.55,-1.12,0.30,1.24,3.40,4.05,3.28,5.01,4.56,2.73,4.42,3.53,2.56,1.03,1.94,-0.47,1.54,-0.55,2 -0.31,1.38,0.48,-0.25,0.15,-0.46,1.30,1.63,2.20,0.49,2.66,2.73,3.78,3.34,4.68,4.62,1.69,2.50,2.87,0.05,-0.36,2 --0.52,-0.56,1.64,-0.12,0.26,0.11,2.24,2.82,1.32,4.26,6.57,3.52,3.71,4.21,2.39,1.59,0.52,0.01,-0.13,-0.18,-0.56,2 --0.34,0.19,2.58,4.61,4.76,5.52,4.84,4.44,3.72,2.66,4.09,1.15,1.87,0.33,0.57,1.19,-1.15,-0.93,-2.19,-0.62,0.96,1 -0.98,1.46,-0.08,1.71,1.72,-0.69,0.42,3.19,2.11,1.55,2.94,3.17,4.38,4.06,4.39,4.17,2.42,2.34,2.25,2.71,-1.71,0 --1.05,0.91,0.76,-0.85,-1.39,1.22,2.06,1.03,1.25,2.58,4.00,4.78,3.66,5.17,2.80,3.29,2.98,0.73,1.52,-0.15,1.38,2 --1.84,-0.93,1.22,0.51,0.10,-0.03,0.33,1.63,4.56,4.92,5.05,3.95,3.66,3.00,2.39,2.16,1.48,0.30,0.17,0.78,-0.79,2 --1.06,2.02,0.62,2.14,4.10,6.39,7.27,4.58,3.15,1.85,2.05,2.19,-0.11,0.57,-0.42,0.23,0.03,1.90,0.23,3.70,-1.15,0 -0.35,-0.15,-1.89,-1.85,0.05,-0.10,1.20,0.20,0.01,1.41,1.39,4.04,3.97,5.40,4.69,4.22,3.49,3.85,3.85,0.52,1.41,2 -0.09,1.22,3.67,3.55,4.18,3.42,3.43,4.56,3.01,2.34,1.67,2.64,1.27,1.65,2.80,-0.57,0.62,1.20,-0.37,-0.13,1.67,0 --0.06,1.25,0.77,3.22,3.02,3.31,4.10,4.10,2.42,2.46,1.03,-0.05,0.89,0.24,2.29,0.15,2.18,-0.32,1.99,-0.23,-1.43,0 --1.73,0.59,-0.76,-2.23,-0.82,0.75,0.42,0.26,0.99,0.83,1.75,3.69,2.96,4.22,5.68,2.19,3.97,1.61,0.81,0.67,0.59,2 -0.26,-0.15,0.71,2.17,2.84,3.02,2.93,3.03,3.17,0.51,3.50,1.38,2.30,0.62,3.61,0.40,3.55,3.62,0.34,-0.91,0.27,0 -0.04,-1.40,0.58,2.40,0.30,-0.21,0.95,1.10,0.90,0.87,4.95,4.81,2.74,3.20,4.05,4.18,1.84,1.72,1.06,1.81,1.17,2 --0.85,1.31,0.07,2.00,-0.37,2.13,-0.10,0.89,1.07,2.92,3.88,3.98,3.07,2.70,3.72,2.85,2.43,2.05,1.36,1.04,-0.43,2 --1.32,2.33,2.06,1.20,0.70,3.02,6.09,4.46,2.54,2.70,1.07,2.03,0.71,1.38,0.46,0.35,1.40,0.98,-0.74,-1.10,-1.76,0 -0.21,1.09,2.11,2.01,2.50,3.79,5.38,4.41,4.22,4.65,3.14,1.43,-0.31,1.27,-0.38,0.13,0.03,-1.71,-0.26,-1.23,1.61,0 --0.47,-1.10,0.10,1.28,1.19,0.63,2.53,3.67,5.17,3.22,3.93,4.32,2.44,3.54,0.49,-1.64,-0.60,-1.35,1.86,-2.03,-0.48,1 --0.85,0.19,-1.02,1.18,-1.03,1.20,0.88,-1.24,-0.24,-0.52,1.59,3.13,3.03,4.58,5.76,3.96,3.42,1.56,3.28,3.41,-2.06,0 --1.99,0.05,0.58,1.37,-0.22,1.63,1.11,2.85,2.61,2.68,6.28,6.79,6.10,0.60,1.35,2.28,0.66,-0.93,-0.72,-0.04,2.24,1 -0.44,-0.18,-1.90,0.56,0.49,1.23,2.21,0.29,0.93,3.42,2.80,4.73,2.37,4.77,4.87,3.58,2.71,4.39,0.50,1.26,-1.87,2 --0.17,2.76,1.92,3.56,2.93,3.16,5.17,4.32,3.55,2.80,0.96,1.89,2.27,0.71,0.22,0.51,0.03,0.25,0.30,0.80,2.34,0 --0.90,0.66,-0.33,1.56,3.94,3.04,5.49,3.06,5.46,3.16,3.19,0.93,-1.47,2.64,-0.70,0.81,0.39,0.24,2.03,-0.77,0.99,0 -1.58,-0.77,-0.06,0.58,0.07,2.92,0.72,2.63,2.48,2.74,4.27,2.57,2.52,4.22,4.69,2.64,1.85,0.02,1.32,2.07,-0.22,2 -0.59,1.47,-0.66,0.07,0.51,1.15,3.17,2.50,4.12,3.02,3.26,1.27,3.10,1.18,3.98,-0.02,0.21,-1.53,-0.90,1.00,0.54,1 --1.39,0.15,-0.07,1.70,3.07,4.58,5.06,5.32,3.89,3.49,1.37,-0.16,1.48,0.58,1.35,1.45,1.55,-0.22,0.50,0.05,-0.12,0 -1.07,-0.12,0.77,1.49,2.82,1.90,5.91,4.85,3.00,1.92,3.06,2.00,1.23,0.63,-0.48,3.54,0.19,0.45,1.98,1.16,-2.36,0 --1.02,0.83,-1.34,1.13,-0.83,0.44,-0.18,0.16,0.75,0.50,0.27,0.42,2.92,2.86,4.82,3.74,2.03,4.44,2.05,2.43,-0.03,0 -1.12,0.58,-0.07,-0.37,-3.48,-1.00,2.19,-0.00,1.88,3.21,3.22,4.47,5.06,4.61,4.01,3.73,3.63,2.94,1.14,-1.06,0.18,2 --1.54,0.42,1.02,2.64,3.71,4.36,5.61,3.21,3.17,5.03,2.90,3.00,1.38,2.48,1.20,1.22,-0.64,-0.39,0.96,0.07,0.57,1 --0.02,0.84,0.12,3.21,4.41,1.80,5.79,6.28,2.82,4.74,4.70,0.60,-1.02,-0.09,0.76,0.86,1.53,0.78,-0.98,-1.13,0.30,1 --0.33,1.35,2.05,1.35,1.03,2.42,3.81,1.62,4.32,5.21,4.77,2.92,1.88,0.51,2.32,0.44,-0.58,1.72,1.47,-0.14,1.18,1 -1.74,0.17,1.96,1.51,0.34,-0.13,-0.07,0.35,-1.81,3.39,3.35,2.43,6.57,4.07,4.61,4.69,3.75,4.47,1.55,1.78,1.06,2 -1.66,-3.12,-0.08,-0.29,-0.46,1.00,0.81,0.18,0.54,1.41,2.65,3.07,4.90,4.26,4.67,3.58,3.93,3.94,2.51,-0.57,-0.19,2 --0.02,1.25,0.21,1.55,-0.30,2.03,2.68,3.30,3.65,2.88,5.26,4.07,3.83,2.11,2.04,1.72,0.33,1.09,-0.37,-0.59,0.43,2 --0.68,1.15,-0.52,2.18,3.01,5.19,6.11,4.52,2.06,2.14,4.66,2.62,-0.10,1.37,1.09,1.60,0.72,-0.24,-1.37,-2.98,-1.81,1 --0.19,0.46,0.48,0.55,1.00,1.65,4.61,1.97,4.52,5.59,5.40,3.57,2.99,3.46,1.79,1.60,0.46,0.12,-1.65,0.51,-0.82,1 --0.32,0.08,2.34,1.62,2.59,3.14,1.34,2.22,1.79,2.01,2.74,2.49,1.59,2.61,3.01,2.47,2.11,1.73,2.21,1.30,0.24,0 --0.91,2.05,0.32,4.06,0.83,5.94,6.80,6.23,4.13,2.28,3.41,2.86,-0.75,-0.60,0.09,-0.03,-1.76,-0.56,0.23,2.01,0.17,1 --0.04,-0.05,1.28,0.48,1.53,4.88,3.70,3.90,4.99,2.82,2.85,2.65,0.29,1.35,-0.18,0.55,0.96,0.04,1.05,-0.43,-0.16,1 -0.06,-0.82,0.60,1.98,-0.14,-0.20,0.48,3.01,2.63,2.85,4.56,4.15,5.53,4.63,2.48,2.40,0.15,-0.58,3.09,0.98,0.82,2 --0.41,1.02,0.31,2.56,3.46,5.44,5.34,3.74,2.58,2.53,1.66,1.46,0.50,0.17,2.62,0.50,0.15,0.53,0.01,0.72,0.21,0 --0.03,0.79,0.89,0.18,-0.36,0.16,1.34,1.27,0.67,3.16,1.71,2.74,4.14,4.75,4.77,1.92,2.52,4.07,1.65,1.01,-0.66,2 --0.13,0.58,1.55,1.06,3.30,2.32,5.56,3.38,4.17,2.31,4.57,4.39,2.97,2.67,2.31,1.74,0.62,0.81,0.04,0.05,-0.95,1 --0.21,-0.17,1.52,1.08,0.24,4.02,2.27,5.72,3.10,3.02,3.51,4.86,4.30,2.13,1.19,0.55,0.25,0.13,-1.32,1.08,0.74,1 --0.46,0.99,-0.09,1.61,3.69,3.39,5.75,2.61,3.49,3.88,2.45,-0.51,-1.28,3.02,-0.73,-1.24,0.49,2.15,-0.91,-0.46,-0.37,0 -0.85,0.44,-1.16,1.69,-0.42,1.90,-3.28,-0.35,1.02,1.44,1.49,3.77,4.52,4.85,4.96,3.82,2.60,2.80,2.72,1.96,0.49,2 -0.21,-1.90,0.84,-0.01,-0.06,-0.48,0.66,1.87,0.42,0.17,1.60,3.65,3.79,4.55,6.26,3.63,3.74,2.04,3.34,0.52,0.41,2 --1.33,-0.46,3.63,3.13,3.62,4.12,5.06,3.99,4.72,3.44,2.88,1.65,0.45,2.06,-0.26,0.26,-1.23,-0.05,-2.27,0.74,-0.05,1 --1.39,-0.07,0.08,1.06,0.97,0.93,-0.52,0.28,0.02,1.75,3.23,2.98,6.48,3.08,6.32,3.45,3.31,2.97,2.74,2.26,0.30,2 -0.48,1.10,1.47,2.32,3.06,4.11,4.11,5.71,4.01,4.39,3.26,3.97,3.44,-0.13,0.52,1.64,-0.05,-0.30,-1.01,-0.36,1.50,1 --0.10,0.42,-0.06,0.63,-0.26,0.88,0.01,-0.49,0.45,1.45,0.15,0.87,3.33,4.38,4.87,2.62,3.19,4.53,0.84,1.27,1.06,0 -0.15,0.38,1.05,4.52,3.92,4.41,7.63,3.06,4.29,3.08,0.68,1.80,0.20,1.33,0.80,0.58,0.09,1.32,0.58,0.10,-0.11,0 -1.49,-0.17,1.85,1.85,1.65,4.76,3.59,2.84,4.16,3.22,3.22,1.59,2.50,-0.04,2.75,1.93,2.03,0.00,1.12,1.24,1.66,0 -0.40,0.31,1.86,-0.03,2.74,4.40,3.64,4.74,2.56,4.45,3.84,-0.24,0.17,2.66,2.02,0.33,0.68,0.54,-0.23,-0.18,0.10,1 -1.07,0.22,-0.63,1.76,1.73,0.85,3.62,3.02,1.72,1.68,4.74,2.62,0.73,1.72,3.55,1.30,0.08,0.48,0.99,-0.66,0.95,0 --0.55,-0.23,0.06,0.20,0.85,0.57,1.67,3.06,2.18,4.24,5.37,7.32,4.38,3.03,3.92,0.30,1.46,0.49,0.84,-1.16,0.29,1 --0.15,2.54,-0.55,1.16,1.83,3.71,3.56,2.69,2.19,3.77,0.82,1.68,2.83,2.78,2.91,1.56,3.11,0.64,3.39,1.11,0.04,0 -0.89,0.65,-0.30,0.95,0.23,1.25,2.65,1.67,0.81,2.44,2.83,4.94,4.61,4.03,4.98,5.25,2.48,1.47,0.90,1.30,-0.16,2 -0.39,0.74,-1.17,-0.72,-0.36,1.01,-0.38,0.31,-0.84,1.17,3.90,4.32,4.75,4.18,4.75,4.26,3.26,2.18,2.84,1.00,2.95,2 --0.22,-1.42,2.10,1.98,0.26,3.77,4.67,4.49,3.68,2.93,5.26,1.97,3.97,0.08,1.91,1.16,-0.23,-0.01,0.17,-0.76,0.44,1 --0.71,-1.15,1.97,-0.28,0.38,0.36,0.33,1.39,-0.42,1.63,2.26,2.55,3.59,5.80,5.58,5.28,3.04,2.43,1.96,-0.53,-0.18,2 --0.14,-0.62,0.63,0.56,0.36,2.44,0.55,1.56,-0.31,3.05,3.10,2.89,4.58,4.35,3.35,2.42,1.43,3.10,0.91,1.62,-1.34,2 -1.39,0.05,-0.24,0.41,0.47,0.10,-1.19,0.93,0.56,1.28,3.93,3.47,2.34,3.48,5.29,1.74,3.87,2.41,0.21,1.61,1.32,2 -0.16,1.24,0.30,0.06,0.85,-1.58,1.66,2.08,2.91,3.21,2.83,4.63,3.44,4.63,2.76,3.00,0.56,1.82,0.87,0.73,-0.89,2 -2.48,-0.00,-0.05,0.10,-0.59,0.04,1.00,0.48,0.64,0.66,1.99,5.20,4.21,6.18,5.63,5.31,4.15,1.33,1.89,-0.26,-0.28,2 --0.32,-1.60,1.12,1.48,0.58,0.77,0.54,1.15,0.16,2.90,1.11,0.47,0.73,3.05,5.49,4.19,2.96,1.12,1.31,1.04,-1.36,0 --1.77,-0.09,1.02,4.04,4.34,4.28,7.06,4.46,4.24,2.56,2.34,1.55,2.85,1.59,-1.56,-0.30,0.26,-1.72,1.24,0.88,1.16,1 -1.45,-0.51,-0.07,0.27,-1.81,-0.17,0.81,-0.59,-0.24,1.77,1.86,3.65,2.57,4.54,7.21,5.97,4.03,3.13,0.97,0.39,-0.56,2 --1.15,-1.79,-2.66,0.26,1.74,1.35,2.01,2.02,3.80,3.12,3.56,5.20,2.24,3.61,2.37,1.32,-2.13,-1.02,0.31,-2.47,0.51,1 --0.51,-1.20,0.90,0.43,-0.70,2.45,2.96,5.10,4.12,3.70,3.78,5.75,5.73,3.71,0.89,1.77,0.60,-1.13,-0.66,-0.82,1.45,2 --0.82,-1.79,0.67,0.61,-0.11,0.47,-0.05,0.73,2.93,3.41,2.67,3.86,4.87,5.79,5.00,3.71,2.84,0.85,1.23,1.39,-0.31,2 --0.24,2.61,-1.12,1.96,-0.40,1.61,1.56,1.86,2.53,4.02,4.23,3.95,4.59,3.53,2.96,1.96,2.66,1.14,1.00,-0.36,-0.18,2 --0.24,0.63,-1.10,-0.68,1.15,-0.52,0.19,2.14,0.64,4.25,4.82,4.60,4.57,4.18,5.16,3.26,2.58,2.15,1.99,1.17,-0.96,2 -0.88,1.93,1.87,0.89,1.13,2.82,6.55,3.84,4.22,4.08,4.99,3.67,2.34,0.25,-1.34,1.42,-1.85,1.54,-0.79,-0.82,-0.87,1 --1.12,0.62,-0.03,-0.59,0.28,1.17,0.05,0.57,1.35,1.60,3.88,2.41,3.02,6.54,5.33,5.26,4.13,3.77,1.27,1.25,-0.16,2 --0.33,0.17,0.38,2.21,3.34,2.76,5.67,4.86,4.29,4.73,2.60,2.59,1.03,0.49,0.74,1.09,-0.51,-0.24,0.62,-0.99,-0.58,1 --2.81,2.79,2.20,3.03,1.07,1.73,2.83,4.57,5.42,5.47,3.37,3.53,1.98,0.73,2.91,0.16,-0.98,0.01,1.00,-2.53,-1.00,1 --0.77,-0.01,3.93,2.41,3.05,2.10,5.12,4.59,1.82,1.63,1.89,2.54,1.23,2.41,-0.38,0.96,1.15,1.51,1.64,0.08,1.02,0 --0.51,-2.00,0.00,1.50,-0.00,-0.55,0.67,3.05,2.74,2.12,2.95,2.05,4.94,3.68,3.64,3.84,2.00,3.18,2.23,0.27,2.32,2 --2.69,0.25,1.14,1.40,2.82,2.82,4.02,5.76,3.73,3.71,4.21,1.72,1.87,1.40,0.62,-1.07,0.31,-1.24,-0.58,-0.16,-1.23,1 --1.60,-1.03,1.84,0.96,2.28,2.62,5.51,3.48,4.55,4.72,3.95,2.49,3.95,1.32,1.49,1.99,1.11,-0.88,-0.18,-0.14,-0.94,1 --1.10,0.18,-0.29,1.79,3.12,2.40,3.95,3.83,2.57,2.34,0.74,2.43,1.40,2.20,2.96,3.43,1.71,0.25,0.87,0.41,1.00,0 -0.46,0.80,1.03,2.67,1.76,4.34,3.41,3.94,4.78,3.95,2.40,2.90,0.84,1.75,2.86,0.73,0.41,0.55,0.56,-0.67,-0.13,1 -0.40,-0.97,0.05,0.57,0.66,-2.59,-0.45,0.14,0.17,0.54,1.19,2.41,2.78,3.72,6.42,7.39,2.85,1.45,2.90,0.38,0.51,0 --0.24,2.72,1.85,3.00,3.18,2.70,3.56,3.19,2.53,2.59,1.78,-0.81,0.47,1.54,-0.39,1.69,2.02,0.99,1.68,0.38,-0.73,0 -0.76,-0.50,0.52,3.37,4.97,5.36,5.46,4.82,2.09,4.69,1.15,1.86,2.09,0.19,-0.89,0.61,1.98,-0.01,-0.84,0.04,0.90,1 --1.37,-0.03,0.43,2.35,3.79,2.17,5.14,3.94,3.56,3.95,3.21,1.47,2.37,0.54,1.76,0.52,-1.23,0.56,0.27,-1.46,-0.34,1 --0.77,-0.03,-0.43,0.33,0.56,2.06,0.47,-0.32,1.84,2.91,2.61,2.39,3.57,5.33,3.70,4.62,4.25,2.86,2.02,-0.53,-0.79,0 -0.12,-0.29,0.38,-0.20,0.96,0.21,-0.99,1.10,3.27,1.45,0.74,1.91,4.51,3.96,6.43,3.84,5.40,-0.07,2.88,-0.14,0.18,0 -1.13,-1.47,-1.29,0.12,0.05,0.24,1.47,1.53,1.28,4.77,4.79,6.21,3.53,4.09,3.68,3.04,-1.12,0.43,-0.92,0.40,-1.82,2 --0.64,-0.78,0.11,1.46,1.18,0.68,0.32,2.37,3.37,2.36,2.70,3.99,2.93,1.58,4.13,3.98,5.07,2.65,0.99,2.64,0.14,0 --2.95,-0.11,-0.15,-0.60,0.59,3.37,2.63,2.77,4.50,4.01,4.02,4.80,3.93,2.21,2.30,0.11,1.16,0.39,0.73,-0.24,-1.68,1 --0.19,1.42,1.36,2.29,3.19,1.79,5.16,4.52,3.92,4.32,5.24,4.05,2.89,0.78,-0.36,-1.41,1.46,-1.58,-0.26,-0.26,0.63,1 --0.44,-1.31,4.09,1.04,4.26,4.02,5.80,3.88,2.26,3.47,3.57,3.22,0.34,0.73,0.32,1.29,-1.30,0.72,-0.93,1.32,-0.46,1 -0.75,3.83,0.84,3.24,5.45,1.35,5.38,4.25,3.20,5.37,3.33,2.31,0.59,-0.51,0.59,-0.49,-1.22,0.46,-1.17,0.93,-0.07,1 -1.95,-0.44,1.66,2.20,2.83,3.95,4.26,4.31,4.72,4.29,2.65,1.84,0.49,0.06,1.60,0.85,-1.65,0.47,0.82,-0.67,-1.98,1 --1.24,-1.43,-0.85,1.54,0.94,-0.06,0.93,0.66,0.66,-0.45,0.44,4.87,3.39,4.91,5.50,4.72,3.13,2.40,0.82,0.32,0.54,2 --0.25,1.15,2.44,3.95,3.08,2.64,4.26,2.66,2.22,2.05,3.61,1.10,0.63,1.74,0.37,2.97,2.30,-0.64,0.32,-0.79,-0.74,0 -0.77,-0.11,-0.90,-0.14,0.73,0.70,-1.02,-0.22,0.38,3.76,4.01,5.03,5.71,5.78,5.70,3.51,1.91,2.83,1.47,-1.11,-0.82,2 --2.18,0.38,2.65,3.27,3.02,4.61,4.07,1.72,3.49,3.80,1.97,3.33,1.15,0.02,1.99,0.31,1.01,0.53,0.63,-1.20,-1.74,0 --1.80,0.10,0.00,-0.26,-1.92,0.38,1.95,2.62,3.70,3.37,4.03,3.91,4.20,4.11,3.30,2.18,1.64,1.07,0.90,1.20,-1.11,2 -0.08,0.42,0.55,1.20,0.78,0.68,1.59,2.60,0.84,1.77,2.47,3.80,1.99,3.74,4.53,5.75,2.54,0.70,2.75,1.23,-1.39,0 -1.03,1.27,0.62,1.49,0.65,2.16,2.96,-0.48,-0.58,-0.69,0.30,3.20,3.06,3.72,4.33,3.98,2.93,2.11,1.04,-0.10,2.02,0 -1.89,0.34,0.20,-0.47,-0.16,0.18,0.43,2.03,1.78,2.21,2.05,3.75,3.80,3.41,3.75,4.60,2.77,0.95,0.54,0.07,0.06,2 -0.95,1.02,0.73,1.30,-0.06,2.36,0.79,2.29,2.03,1.68,0.94,2.43,1.91,4.64,5.11,3.28,2.00,2.26,1.49,-1.03,-0.61,0 -0.45,-0.15,1.20,1.65,2.24,2.56,4.36,4.22,4.39,4.57,3.58,3.53,1.87,1.84,0.88,1.37,0.70,0.67,-0.36,-0.44,-0.74,1 -0.86,-1.86,0.61,1.03,-0.05,1.75,0.51,0.70,1.28,2.33,1.50,4.31,1.75,6.48,5.91,4.22,3.87,3.49,2.16,1.35,-0.21,2 --1.26,1.21,2.07,1.76,2.58,5.33,6.48,4.67,4.44,1.87,1.25,0.74,1.46,-0.56,1.30,0.76,-0.94,0.33,-1.82,0.69,0.57,1 --0.50,-0.38,0.39,3.44,3.42,4.39,6.94,6.41,4.24,2.80,2.65,1.68,0.97,1.73,0.88,1.07,0.78,0.18,-1.66,0.12,0.50,1 --0.77,2.46,1.06,-0.80,0.19,2.58,1.71,1.62,2.37,1.74,1.54,3.02,3.36,5.16,3.37,3.85,4.37,-0.36,0.03,1.13,-1.17,0 -1.01,0.56,0.46,2.82,3.45,2.33,4.91,3.65,5.07,4.05,3.54,2.80,1.61,0.66,1.78,-1.25,-0.35,-0.11,-1.13,-0.28,-0.02,1 -0.99,-0.03,0.26,1.77,2.24,4.13,5.14,3.15,3.29,2.93,2.45,2.33,2.35,-1.50,-0.54,-0.03,0.86,-0.20,1.36,-1.12,-0.72,1 -0.95,-1.15,-0.11,1.58,1.00,2.33,3.46,1.99,4.24,3.67,5.33,5.45,2.46,6.08,1.44,2.30,0.91,0.22,-1.29,1.16,-0.22,2 --0.49,1.39,-0.24,0.10,1.30,1.00,4.51,2.05,2.02,1.73,2.72,1.01,1.83,1.69,2.57,3.41,1.66,1.88,2.74,1.56,-0.06,0 -0.90,1.05,1.71,-2.40,0.92,1.90,2.18,3.11,4.23,5.29,5.48,5.33,3.61,1.62,1.59,0.33,-0.22,-1.38,-0.00,-0.19,-0.09,1 --0.52,1.10,0.65,1.61,0.94,3.56,4.88,3.98,4.27,6.00,3.46,2.26,1.74,3.72,2.43,-0.73,-0.80,0.89,0.85,-2.06,1.42,1 --0.08,-0.09,-0.96,1.80,2.86,2.44,2.46,1.30,3.13,5.90,5.01,5.54,5.21,4.19,2.10,-0.22,0.27,-0.45,-0.86,2.29,-0.04,1 -0.59,-0.37,0.18,0.99,0.09,-0.29,3.39,2.43,3.83,4.55,7.40,5.27,5.52,1.41,1.28,1.67,-0.54,-0.15,2.01,-0.40,-0.65,2 --2.13,-0.84,2.69,-0.21,1.19,1.67,1.05,1.31,0.10,2.26,2.82,1.31,2.07,3.73,4.53,4.70,2.84,0.53,0.77,0.02,0.41,0 -0.30,1.54,-0.82,-1.61,-0.10,0.54,1.17,3.01,3.80,4.10,4.67,3.71,5.03,1.63,3.30,0.93,0.15,-0.57,-1.18,-0.69,-0.31,1 --0.70,-1.30,-0.15,0.91,2.40,4.27,2.73,3.97,4.61,2.65,3.94,2.30,3.02,0.91,0.01,-0.86,0.48,-1.01,-0.82,-0.68,0.44,1 --1.57,-0.13,1.31,1.67,2.73,2.55,2.96,3.52,1.81,2.27,1.21,0.91,2.40,2.42,3.86,2.78,3.89,2.16,1.25,2.16,0.47,0 --0.53,0.83,-0.22,0.78,-0.41,0.28,1.54,0.67,2.22,3.33,5.77,4.61,3.27,4.30,3.86,3.34,4.72,2.37,0.53,-0.02,-0.19,2 --0.16,0.91,1.30,-1.60,0.07,0.20,-0.73,0.37,1.70,0.68,3.02,4.92,4.38,4.88,4.52,3.21,3.20,1.19,3.38,0.68,-0.81,2 -1.03,1.86,-1.07,-1.37,1.29,-0.59,0.45,1.51,1.96,0.62,2.67,2.16,4.00,2.86,4.56,4.40,2.23,2.63,2.00,1.12,-0.59,2 --0.07,1.62,2.76,0.58,5.30,4.24,5.62,5.26,4.07,2.20,2.80,1.14,0.49,-0.33,-1.05,-0.96,0.77,1.04,0.23,0.42,1.50,0 -1.21,2.28,-0.20,-0.87,1.81,-1.04,1.21,0.78,3.06,3.99,4.42,2.74,3.08,4.75,4.33,4.78,1.73,2.63,-0.40,2.03,-1.07,2 -0.35,0.58,0.74,-0.46,0.72,-0.21,-1.11,2.17,2.94,2.43,1.48,1.65,4.48,4.80,6.07,4.73,2.96,1.43,0.31,1.39,-0.15,0 --1.18,-0.03,-0.46,-0.00,-0.41,1.77,2.06,2.17,0.87,3.60,3.59,4.05,3.74,2.36,3.02,4.11,3.00,0.79,-0.61,-1.25,0.79,2 -0.31,0.02,0.78,2.40,1.97,3.12,0.91,2.95,0.17,2.98,2.68,2.98,1.36,0.10,1.31,0.70,0.18,0.88,1.40,-0.77,1.15,0 -0.59,0.92,-0.33,-0.79,-0.71,-0.95,0.64,-0.67,0.89,0.34,1.73,3.02,4.32,5.54,5.60,4.40,5.19,2.77,1.72,1.35,0.21,2 -0.54,1.11,-1.36,0.96,-0.77,0.77,0.78,3.31,4.30,1.74,3.35,4.24,3.62,3.91,2.08,2.21,0.79,0.13,1.03,0.57,-1.59,2 -0.56,0.20,1.43,0.57,3.63,1.17,-0.06,2.44,0.74,2.62,3.14,1.24,1.17,3.36,1.98,3.88,3.14,0.38,2.82,-0.08,-0.56,0 --1.45,-0.21,1.34,2.69,2.04,4.63,7.07,4.58,3.22,3.58,4.31,3.51,1.16,1.33,-0.07,0.26,-0.97,0.83,-0.92,0.87,-0.20,1 -0.41,1.38,1.40,1.35,3.45,4.98,3.70,3.55,3.25,3.09,2.01,1.94,2.23,0.59,2.12,-0.04,1.48,-1.89,1.04,0.32,-0.03,0 -0.67,1.57,2.71,-1.44,0.30,2.24,1.37,2.49,0.40,0.88,1.79,1.52,4.79,4.74,3.21,3.11,2.09,3.29,2.74,1.33,-1.17,0 --0.91,0.12,-0.26,0.33,1.46,2.18,2.45,3.77,3.93,2.53,5.06,3.51,2.34,0.89,0.64,-0.01,-0.70,-0.08,0.64,-1.13,-0.19,1 -1.29,0.88,-0.64,-0.88,-2.07,0.03,0.77,-0.25,0.98,2.58,1.31,3.78,5.08,6.11,5.39,6.89,5.93,3.54,3.17,1.40,0.82,0 --0.24,1.12,-0.36,-0.44,-1.02,2.15,0.84,2.00,1.04,4.34,3.19,2.00,3.25,4.89,3.96,2.85,1.83,2.19,1.09,-1.34,0.61,2 -0.24,1.14,1.95,-0.31,-0.61,0.76,1.16,1.50,2.30,3.32,4.54,4.72,4.17,3.66,1.91,-0.80,1.29,1.38,2.08,0.54,0.01,2 -1.84,-0.95,-0.01,0.63,2.48,2.04,3.03,3.61,4.28,5.49,6.50,4.24,3.90,2.82,0.42,-1.16,0.38,-1.75,0.85,0.61,0.96,1 -0.45,0.17,0.39,0.14,-1.50,2.08,2.71,3.83,4.70,3.17,6.52,3.93,3.92,2.05,1.78,-1.17,0.06,-1.99,0.18,0.70,-0.18,1 -0.02,-0.42,1.56,0.78,0.16,-0.24,1.27,-3.52,0.09,2.53,2.22,4.06,3.67,3.91,6.19,3.80,4.26,2.09,1.67,1.65,1.00,2 -1.78,0.26,0.27,-1.28,-0.64,-0.71,-0.81,1.58,1.67,0.51,1.47,3.84,2.14,5.41,5.90,5.47,2.99,3.85,1.06,1.13,0.29,2 --0.09,1.44,0.38,0.80,-0.16,0.09,0.81,2.04,3.64,3.08,2.80,6.00,3.67,1.43,3.31,2.24,0.36,-0.35,-0.23,-0.50,0.65,2 -0.14,-0.79,1.27,1.63,0.80,3.69,3.10,2.64,4.84,4.73,2.53,4.01,0.29,2.00,-0.11,-1.90,-0.08,0.59,1.09,-0.35,0.43,1 --0.69,0.61,3.51,0.21,0.61,1.76,2.02,1.35,1.35,1.42,2.42,1.18,2.44,4.46,4.83,4.64,3.72,2.79,0.76,2.27,-0.43,0 --0.88,0.50,2.62,3.71,3.71,4.70,5.65,2.61,3.54,2.08,2.50,2.90,0.48,0.27,-0.05,0.36,-0.84,0.24,0.37,1.22,-1.05,1 -0.57,-0.33,2.15,1.36,-2.66,0.47,-0.87,1.50,0.54,2.78,3.16,3.29,3.78,3.82,5.89,4.16,3.37,1.02,0.59,0.42,0.92,2 -0.69,-0.58,-0.15,0.19,2.44,1.13,3.98,2.52,3.92,5.68,5.91,2.94,2.25,2.50,2.47,0.35,0.12,2.77,-0.89,0.41,-1.63,1 -0.71,1.08,2.34,0.23,4.40,4.72,6.31,6.00,3.46,2.63,1.52,2.33,1.98,2.10,0.15,1.54,0.71,0.77,-0.89,-0.91,0.16,1 --0.17,0.56,0.49,0.68,2.20,2.73,3.54,4.79,1.52,3.16,3.28,2.00,3.08,3.81,3.40,2.77,1.80,3.08,2.32,2.17,-0.48,0 -0.93,1.52,2.10,4.53,2.94,4.06,6.15,5.04,2.61,2.54,2.25,1.21,-0.62,1.14,0.87,0.54,-0.59,-0.56,0.30,0.03,0.92,0 -2.44,-1.34,-0.15,-0.28,0.93,1.00,-0.41,1.14,-1.68,2.32,2.78,3.33,3.49,4.93,3.95,4.75,2.92,1.53,1.24,1.26,-0.37,2 --0.49,0.48,0.16,-0.29,-0.33,0.69,4.03,2.35,4.54,6.29,6.03,7.30,2.38,3.03,2.98,0.47,-0.40,-1.35,0.32,-0.48,0.20,2 -1.14,1.52,1.96,2.80,2.09,4.86,2.24,4.55,1.10,1.24,3.03,2.50,0.01,3.19,2.22,2.23,0.53,0.57,-0.12,0.45,0.01,0 -0.59,0.38,-1.84,1.14,0.22,2.00,0.05,-0.83,-0.04,2.87,2.49,1.11,3.72,3.11,4.21,4.15,1.71,4.09,1.56,0.53,-0.99,2 --0.57,1.14,-1.48,2.26,-0.10,3.29,4.23,2.75,4.02,3.51,3.04,2.04,2.37,2.51,0.38,-0.45,0.49,-0.35,1.91,-0.78,-1.16,1 -1.43,0.19,0.74,0.19,0.68,1.02,-0.19,0.67,0.32,2.37,2.55,4.42,4.34,3.44,5.39,2.91,1.53,1.97,0.93,0.66,0.54,2 -0.98,2.21,1.61,3.62,3.72,3.26,6.17,6.28,4.06,1.38,1.61,0.79,2.34,0.28,0.01,-2.44,0.31,2.70,-0.13,0.21,1.11,1 --0.46,0.21,0.76,2.16,-0.99,-0.47,2.48,1.32,2.31,2.54,4.20,5.20,3.86,3.81,1.81,3.55,1.91,2.42,1.33,-1.28,-2.14,2 -0.49,0.36,1.28,0.73,2.04,3.80,4.05,4.41,1.80,3.90,4.54,1.12,0.66,0.16,2.23,1.42,1.56,-0.49,0.84,-0.87,1.30,0 --0.41,0.02,-0.19,-0.86,-1.05,1.11,0.98,3.65,5.70,3.90,7.00,2.69,3.04,2.27,0.45,0.74,-0.04,-0.34,-0.07,-0.87,-0.56,1 --0.35,-0.39,0.01,-0.70,1.31,3.32,2.06,4.43,3.71,4.16,5.83,5.40,2.75,3.09,2.17,1.95,0.68,-2.24,-0.46,0.58,0.73,1 -0.61,1.40,2.06,0.48,2.66,2.52,2.97,1.25,3.25,0.82,4.01,2.15,2.63,2.48,2.85,3.22,3.15,3.13,1.38,1.11,-2.23,0 --0.68,-0.94,-1.80,0.81,-0.37,-0.30,0.89,1.45,1.40,3.40,3.05,3.31,5.04,5.20,3.09,3.85,1.82,0.54,1.00,1.71,1.42,2 -0.27,1.55,1.52,0.87,2.78,3.56,2.75,2.09,2.96,1.38,0.82,2.77,0.98,3.88,2.84,2.59,1.68,1.56,2.54,-2.34,-0.33,0 --1.22,0.31,1.36,1.09,1.02,0.83,2.92,4.08,2.90,4.64,5.64,6.79,3.90,3.04,1.87,0.24,-1.81,-0.20,-0.57,-0.74,0.25,1 --0.00,-1.03,-0.12,-0.06,-1.34,1.71,2.38,2.49,3.11,3.31,6.22,4.43,3.35,4.40,2.89,1.88,1.70,0.06,-0.81,-0.16,-1.10,2 -1.34,-0.45,2.28,2.38,2.19,2.70,3.66,2.66,3.33,3.14,0.95,4.05,2.16,1.40,2.26,1.67,2.06,-0.41,-0.82,0.12,-0.23,0 --1.36,0.80,0.88,2.47,0.97,3.90,4.10,2.71,1.80,2.72,0.32,1.17,0.84,1.67,0.22,1.64,0.30,0.93,1.33,1.27,0.55,0 --1.00,-0.05,0.85,2.04,0.48,2.07,3.69,-0.44,0.53,2.37,2.35,2.90,1.82,3.45,4.83,4.55,3.43,3.46,1.66,3.29,1.39,0 -0.42,1.68,2.26,0.25,2.04,0.54,2.09,-0.52,-0.75,1.66,1.60,3.19,3.08,3.75,6.03,3.74,5.99,1.99,2.66,1.30,1.40,0 -0.09,1.53,-0.13,1.09,2.86,1.88,3.78,6.88,3.91,2.50,2.97,4.04,-0.01,1.78,2.41,-0.20,0.39,0.94,-0.44,1.35,-0.63,1 --0.46,1.40,-0.95,0.92,2.72,2.79,1.44,2.87,2.45,0.35,2.77,1.70,2.66,3.84,3.09,1.12,2.77,1.16,0.18,-0.88,1.49,0 -0.21,0.57,1.06,3.12,4.50,4.21,4.24,5.02,4.54,2.81,1.17,1.18,-0.26,1.18,-0.34,1.69,0.27,1.53,-1.01,-0.55,-0.42,0 --0.02,1.13,1.70,-1.12,1.11,0.17,1.50,2.11,2.39,4.99,4.09,3.98,4.97,5.12,4.60,2.19,1.34,2.59,1.17,0.38,0.07,2 -0.89,1.18,0.42,-0.33,-0.17,2.15,-0.44,0.49,0.53,-0.15,1.32,1.51,3.61,3.36,6.92,7.11,5.15,1.22,3.02,0.69,-0.43,0 -0.11,-0.49,0.83,0.77,0.31,1.21,4.52,3.50,3.35,4.47,3.83,4.67,4.01,2.07,0.96,1.20,0.47,0.61,-0.26,-1.34,-0.88,1 --0.38,0.72,0.46,1.00,1.97,2.10,1.85,1.34,0.97,2.56,3.78,2.62,2.80,4.25,3.02,1.95,1.46,1.78,1.42,0.04,-0.75,0 -0.52,-0.93,0.19,0.82,-0.46,1.95,1.16,1.98,3.51,2.36,5.16,2.70,2.63,1.82,4.42,1.41,0.29,0.72,-1.16,-0.39,0.94,2 --0.72,2.24,0.84,1.93,2.02,3.40,3.29,3.36,2.87,3.50,2.95,1.85,0.90,0.85,1.53,0.78,0.92,0.90,-0.12,0.01,1.88,0 --1.04,0.59,0.25,1.13,1.96,1.54,2.29,3.59,5.81,4.88,5.08,2.77,2.78,3.43,1.85,-1.02,-1.24,1.00,0.20,0.02,-1.01,1 --0.10,-1.16,1.51,1.42,2.63,2.25,3.80,2.50,2.90,3.66,0.30,3.91,0.20,1.54,4.55,2.48,1.57,0.16,1.43,-0.57,0.21,0 --1.49,0.16,2.73,3.81,3.61,4.14,6.25,6.85,2.77,1.70,2.67,1.61,-0.62,-1.57,-0.87,0.07,1.40,0.67,-0.17,-1.68,-2.06,1 -1.23,-0.87,0.98,0.60,1.85,3.97,4.79,4.85,2.45,5.70,4.90,2.79,2.56,1.16,-0.46,0.39,1.67,0.37,-1.05,-1.14,-1.13,1 --1.52,0.05,0.35,0.48,-0.77,-1.77,2.06,-0.48,-0.18,0.50,2.61,2.02,4.02,5.15,5.84,3.94,4.69,1.56,1.30,0.63,0.56,2 -0.84,0.22,0.24,0.70,4.55,1.64,4.21,5.12,4.19,3.76,4.92,2.12,0.64,0.09,0.89,2.13,0.10,0.69,-0.06,1.11,-1.14,1 --0.78,0.00,-0.01,1.85,-0.87,0.38,-0.86,1.38,-0.24,2.56,1.63,2.34,2.50,3.78,4.12,3.77,4.54,4.24,0.06,0.35,1.84,2 --0.60,-0.51,-0.67,-1.17,0.67,-0.13,1.25,2.64,2.98,4.32,3.29,4.74,4.85,3.65,1.83,0.12,2.34,-0.88,1.57,1.12,0.51,2 --0.63,-0.63,0.19,0.87,1.39,2.13,-1.00,2.14,0.65,0.70,1.72,3.13,3.49,4.54,4.58,4.10,4.86,3.72,0.62,-0.02,-0.97,0 -0.54,-0.58,1.93,-0.01,0.10,2.41,3.57,3.30,3.33,4.99,4.61,3.00,6.12,1.71,2.99,-0.17,-1.27,-1.32,0.13,-1.00,-1.52,1 --0.03,0.28,2.02,-0.31,3.27,3.95,5.02,3.22,4.25,4.38,2.81,0.60,2.10,2.27,1.22,0.88,-0.79,0.79,-1.01,0.13,0.68,1 -0.96,3.32,1.94,2.28,2.98,4.46,6.14,3.83,4.40,4.49,2.31,3.83,1.03,0.14,0.59,-0.65,0.71,-0.73,1.10,-0.58,-0.59,1 --0.44,0.84,2.39,3.15,0.73,3.45,2.62,4.88,3.77,3.82,4.01,0.13,1.47,1.78,1.21,0.38,-0.30,0.85,0.88,0.78,-0.46,1 -0.49,0.70,-0.23,1.58,2.33,3.39,2.26,5.13,6.11,4.08,2.83,2.70,3.06,3.10,2.59,0.35,-0.96,1.14,-1.07,-0.38,-0.12,1 -0.32,0.13,1.11,0.88,-0.87,3.93,3.19,4.35,6.21,4.48,3.87,2.05,3.44,1.31,1.16,0.14,0.38,1.55,-0.54,-1.59,0.32,1 --0.10,1.40,-2.28,0.66,1.09,2.50,3.77,3.42,3.26,5.22,5.38,4.79,2.87,4.61,1.63,-1.40,-0.89,-1.05,-2.46,-0.91,-0.98,1 --0.30,1.46,0.33,-1.94,0.35,0.11,0.10,-0.41,0.94,1.71,3.50,0.91,4.67,4.44,6.56,4.93,2.74,2.56,1.03,1.36,-0.50,2 --0.59,0.68,1.57,1.55,2.57,4.68,4.20,7.10,5.38,2.47,1.04,1.34,1.95,-0.21,2.77,0.77,-1.54,0.54,0.38,-0.86,0.51,0 --0.55,-1.18,1.31,1.77,1.56,1.62,3.20,1.36,6.09,5.54,3.57,3.10,3.16,2.54,0.88,-1.24,-1.31,0.23,-0.47,1.15,1.14,1 -0.56,0.62,-1.40,0.57,2.15,0.36,0.75,0.80,-0.55,1.39,2.47,2.01,3.42,3.60,4.36,3.43,3.69,2.39,1.43,-0.27,0.50,0 --0.78,-0.70,0.12,-0.12,-0.56,0.00,0.57,0.65,0.84,2.19,3.48,4.85,3.93,5.39,5.81,2.38,4.05,1.63,1.63,1.31,-0.21,2 --0.08,1.87,2.91,2.43,2.50,5.06,4.87,4.43,3.93,1.89,2.39,0.84,-0.50,0.72,1.78,2.29,-0.40,0.28,1.73,-0.41,-1.47,0 --1.59,1.70,-1.70,0.79,0.41,-0.29,0.91,2.45,4.30,3.46,5.43,5.37,3.18,3.14,2.92,2.54,-0.17,1.52,1.41,2.34,0.72,2 -1.10,1.62,0.38,1.20,4.10,3.93,7.06,4.02,4.79,3.11,3.16,2.33,-0.63,0.89,-0.10,0.58,0.96,0.66,-0.71,-0.53,0.62,0 --1.88,0.83,1.01,1.29,1.32,2.30,5.65,5.23,4.20,4.59,2.54,0.61,2.14,1.71,1.63,0.45,0.49,-0.11,1.00,0.91,1.17,1 -0.69,-0.25,1.35,0.97,-0.22,1.66,0.99,-0.18,0.77,2.09,3.49,3.28,2.52,4.38,4.07,3.54,3.05,3.15,-0.10,0.20,1.04,2 -1.37,0.31,-0.29,-1.54,1.51,3.05,4.22,2.46,4.10,5.01,3.54,4.28,2.04,2.25,0.51,-0.05,-0.96,0.25,-1.29,-0.40,-1.24,1 -0.29,0.44,1.16,0.88,3.02,0.76,3.73,5.48,3.64,3.65,4.89,3.39,0.66,1.95,0.30,-0.44,-0.18,-1.56,-1.29,1.36,-0.02,1 -0.03,0.72,-0.44,0.20,3.14,2.92,3.42,3.04,1.76,2.20,0.82,0.98,1.80,3.06,2.83,4.49,3.48,1.79,1.53,1.55,1.27,0 --0.97,1.84,0.82,-0.56,3.96,4.42,4.74,4.75,3.61,2.48,0.95,0.97,1.69,-0.18,1.88,1.91,0.34,1.40,1.21,0.92,1.10,0 -1.61,1.87,-0.15,1.36,3.04,4.33,5.58,5.75,5.69,3.76,0.66,2.16,0.77,-1.23,0.91,0.81,-1.47,-0.71,1.42,0.30,0.13,1 -0.29,-1.24,1.49,1.96,1.82,2.78,4.71,4.91,3.25,4.18,3.76,3.29,1.72,2.23,1.67,1.46,0.21,0.35,-1.31,-1.08,-0.29,1 -0.60,0.13,-0.46,-0.38,0.17,0.95,0.57,2.85,1.57,5.68,5.95,4.32,4.34,4.10,2.64,0.77,0.59,0.49,-0.97,1.82,0.61,2 --0.41,-1.09,-0.52,1.65,-0.45,-0.47,-0.14,2.17,3.18,2.51,3.68,2.83,2.70,4.77,2.62,2.97,1.66,2.15,0.14,0.80,-1.40,2 --0.80,0.09,1.96,2.44,2.05,2.99,3.01,2.65,2.70,2.01,1.26,3.01,2.78,3.39,3.39,2.81,0.14,1.89,1.82,-0.82,-0.78,0 -0.16,0.01,-1.09,0.28,0.36,0.94,0.46,4.14,3.02,5.28,6.16,4.81,3.49,2.28,1.20,1.37,-0.33,1.40,-0.34,-0.74,-0.99,2 -0.09,1.77,1.36,1.95,2.21,4.02,4.07,4.46,4.20,2.74,2.80,1.67,1.96,0.19,1.42,2.36,0.62,-0.87,-0.57,-0.09,-0.69,1 --1.58,1.79,1.33,3.23,1.98,3.38,5.54,3.94,2.84,2.46,2.12,2.64,-1.51,0.80,1.88,1.57,-0.37,1.72,-1.15,-1.43,-1.21,0 --0.06,1.44,1.23,2.17,2.63,2.88,1.94,3.71,2.69,5.13,2.01,1.28,1.44,1.55,2.28,2.25,1.21,1.36,3.21,0.77,0.64,0 --1.72,-0.64,-1.44,0.16,0.05,1.20,1.36,-0.07,0.53,2.68,2.00,3.29,2.27,5.99,5.65,6.08,3.20,3.34,1.68,1.01,-1.69,0 --2.21,0.29,1.25,1.47,-0.57,-0.72,3.10,-0.53,-1.42,2.46,1.74,3.58,3.46,3.88,5.61,5.91,3.16,3.77,2.03,0.90,0.66,2 --0.79,2.19,2.29,0.64,3.15,1.64,2.29,4.56,5.22,5.12,5.58,3.37,2.90,0.40,1.95,-0.68,-1.76,-0.44,0.52,-0.06,-1.05,1 -1.01,0.56,-0.19,-2.36,1.33,1.05,1.55,0.89,3.55,4.97,6.28,4.93,2.75,2.70,1.09,2.14,-0.30,0.37,-1.68,0.76,-0.47,2 -1.20,1.26,-0.41,-0.40,0.38,-0.92,-0.66,-0.18,1.06,1.04,0.63,3.91,4.00,5.58,5.33,2.87,4.22,3.16,2.99,0.22,-1.53,0 -0.25,2.37,1.01,2.47,2.79,5.82,5.27,3.76,5.37,1.43,1.73,1.23,0.07,-1.25,1.37,0.87,-0.39,1.94,0.27,-0.89,-0.22,0 -0.62,-0.10,2.55,1.52,3.02,3.04,5.89,4.25,4.62,3.87,0.66,0.45,0.33,2.01,0.07,0.44,1.00,0.52,2.78,0.75,-0.71,0 -1.34,0.20,0.79,1.35,2.88,4.04,5.49,5.41,4.29,3.35,4.07,0.82,2.29,1.69,-0.65,0.57,0.52,-0.09,-0.26,-0.27,1.35,1 --0.81,1.08,-0.55,-0.56,-1.14,2.52,1.57,2.25,2.54,2.98,6.25,3.41,5.69,3.06,2.55,3.33,3.37,-0.33,1.85,2.19,-0.50,2 --0.28,1.54,1.08,-0.16,1.66,-0.29,3.53,3.12,3.00,5.13,7.42,5.05,4.10,1.62,3.09,0.66,-0.81,1.28,0.25,1.35,-0.81,1 --0.52,-1.24,0.33,0.63,4.30,3.43,4.24,1.56,2.00,1.95,2.92,0.97,3.71,0.43,1.04,2.09,3.26,0.42,1.15,0.74,-0.07,0 -0.08,-1.87,-0.25,1.52,1.28,1.61,3.39,3.77,3.78,3.19,6.53,4.85,3.81,3.34,2.64,0.77,1.46,-0.74,-0.41,0.60,-1.43,1 -1.37,0.38,1.42,1.10,0.24,2.97,3.38,2.44,2.39,-0.45,3.21,1.38,3.58,2.79,4.63,2.62,3.83,1.75,2.25,2.35,-0.38,0 --0.28,1.47,1.34,0.80,0.62,0.06,0.99,1.12,-0.44,0.03,2.90,3.43,4.42,5.24,7.67,2.24,2.86,3.67,2.85,2.67,0.30,0 -0.08,0.30,-0.59,0.22,2.38,2.76,2.68,2.08,1.26,0.72,2.64,1.95,0.47,3.57,1.80,1.72,2.48,0.91,0.51,-0.74,1.43,0 -0.76,-0.67,-0.39,0.54,-0.55,-1.25,0.25,1.31,0.12,0.24,0.66,4.80,4.42,3.86,5.46,4.07,5.21,2.61,2.05,0.62,0.39,2 -0.87,0.96,0.99,0.54,4.22,1.18,3.53,3.12,5.68,4.25,4.91,3.82,4.05,1.72,0.18,0.19,-0.69,1.55,0.84,1.60,0.06,1 --1.34,0.75,1.10,1.74,1.22,2.48,3.85,2.27,3.69,3.49,1.82,2.19,0.59,0.89,1.05,1.60,0.19,0.12,0.95,0.80,-2.15,0 --0.32,0.32,-0.62,-1.15,2.25,3.48,4.94,5.38,4.18,3.74,4.28,4.32,2.48,3.59,0.88,0.24,1.11,-1.14,-0.91,0.35,1.48,1 --0.86,-0.63,-1.12,-0.60,-0.32,-0.28,1.87,5.23,2.83,2.91,6.70,4.44,5.74,2.36,2.42,1.42,0.98,-0.24,1.46,0.10,0.82,2 --1.35,-0.08,1.79,1.69,1.27,1.44,1.92,0.51,1.83,5.40,2.71,2.81,3.44,4.82,2.41,4.04,1.54,2.59,2.26,-0.36,-0.66,0 --0.93,0.90,0.67,3.31,2.35,4.74,5.23,5.55,4.54,2.10,1.63,-0.22,-0.41,0.58,-0.97,0.55,-1.32,-0.45,0.36,0.63,-1.81,1 --0.38,1.18,1.07,1.23,3.57,6.10,3.73,3.47,3.81,4.56,3.52,1.08,0.58,0.35,0.06,1.44,0.51,0.66,0.97,-0.72,0.26,0 -1.67,1.97,0.75,2.76,3.25,4.51,6.99,3.68,3.87,3.21,1.14,1.55,0.74,-0.81,0.53,0.40,1.31,-0.15,0.19,0.94,0.06,1 --0.14,-0.68,-0.70,-0.96,1.49,1.85,3.62,2.77,3.08,5.83,4.65,4.94,2.35,4.50,0.79,1.65,2.22,-0.94,1.65,0.78,-0.64,1 -0.70,-1.91,-0.30,0.39,-0.15,-1.10,-0.27,-0.89,0.04,1.56,3.68,4.18,4.08,5.65,4.39,1.90,3.13,1.98,2.69,0.24,0.83,2 -0.13,0.58,1.12,2.35,3.71,2.68,4.38,3.46,1.06,1.64,1.77,2.88,1.56,2.48,3.02,0.85,2.46,1.93,1.18,1.71,-1.61,0 -1.88,-0.91,-0.64,1.10,-0.38,1.41,0.51,1.13,-0.11,2.33,5.47,4.62,3.51,6.24,6.25,2.38,3.90,1.78,1.30,0.61,-0.41,2 --0.23,-0.61,1.00,0.14,-1.56,1.55,2.34,3.92,5.61,4.71,6.14,4.36,1.95,4.85,1.95,0.68,-0.64,-0.69,-0.27,-0.74,0.56,2 -1.44,-0.87,-0.91,-0.12,-1.16,-0.10,1.28,4.12,5.13,3.60,5.36,5.57,3.30,3.46,0.51,0.04,-0.25,-0.02,0.10,-1.17,-0.50,1 -0.94,-0.90,1.28,1.47,-0.13,-0.15,0.52,0.37,0.22,0.90,4.33,2.24,3.98,4.53,4.79,4.31,2.41,1.16,0.37,1.53,-0.40,2 -0.30,-0.48,0.11,-0.94,0.34,0.35,1.90,0.39,1.02,1.98,3.99,4.57,3.61,2.73,2.90,4.43,1.97,1.40,0.49,2.76,2.25,2 --0.57,-0.12,1.06,1.49,2.68,0.69,2.01,3.06,4.76,4.26,8.56,4.82,3.91,2.59,3.66,1.31,1.22,-0.38,0.72,-0.03,-1.00,1 -2.41,2.48,1.17,2.32,2.62,3.37,5.51,4.64,4.02,2.32,2.06,1.93,1.64,1.19,1.34,1.40,0.99,-0.03,1.18,-0.52,1.22,0 --0.89,0.06,0.97,-0.86,2.56,1.89,1.23,0.57,3.61,2.67,1.81,1.49,1.80,4.34,4.46,5.17,2.72,2.21,2.13,0.12,0.18,0 --1.32,2.23,1.85,2.03,3.06,4.86,3.92,5.17,3.40,4.17,3.73,1.24,0.66,-0.24,-0.11,0.33,1.81,1.02,-1.32,0.59,-2.70,1 --0.60,0.93,2.12,1.32,2.72,2.66,4.69,4.16,5.08,3.25,3.09,0.99,1.56,-0.63,0.16,-0.88,0.48,0.16,-1.62,-2.07,-0.22,1 --0.59,0.14,3.44,1.66,2.75,2.49,1.67,2.79,2.73,1.31,1.06,0.84,3.63,0.50,1.56,3.01,2.54,2.17,1.29,0.84,2.21,0 -1.21,1.49,1.94,-0.92,-2.85,1.41,0.53,3.86,3.83,6.84,5.68,5.82,3.35,2.41,2.44,1.84,0.85,-0.40,1.01,-0.42,-1.34,2 --1.50,0.41,-0.06,-0.55,2.86,1.96,1.48,0.69,2.66,2.44,1.56,2.75,4.30,4.27,4.49,2.39,2.89,2.08,-0.38,-0.13,-1.13,0 --1.36,2.84,1.14,0.40,2.01,0.68,2.86,3.67,2.41,3.13,1.43,3.15,1.08,3.33,4.50,1.97,1.34,1.51,3.61,0.45,-1.18,0 -0.70,0.13,1.71,2.53,4.21,5.74,5.91,4.94,3.72,4.24,1.74,2.09,1.46,-0.80,-0.71,1.69,0.75,-2.21,-0.42,-2.33,-0.88,1 --1.32,-0.54,1.09,1.81,1.02,1.65,3.06,3.21,1.96,2.86,1.84,3.16,4.48,3.02,3.69,2.29,2.06,3.45,2.27,0.40,-0.39,0 -0.42,-1.72,0.06,-0.68,-0.63,-1.05,-0.27,3.26,3.93,5.37,5.58,3.61,2.75,3.93,3.64,2.45,0.86,-0.86,-0.00,0.93,-1.01,2 -0.57,0.62,0.86,3.38,2.65,4.10,6.40,4.78,3.17,4.03,0.96,2.36,0.85,0.89,0.69,1.39,0.49,0.03,0.74,0.07,-0.86,0 --0.21,0.59,0.76,1.89,4.43,5.73,4.39,3.39,3.92,4.57,0.76,-0.32,1.30,-0.81,0.17,0.26,1.35,-0.13,-0.37,-0.31,0.90,1 -0.53,1.48,2.16,4.09,2.41,3.07,5.76,3.52,5.43,3.11,1.81,0.77,-0.37,0.59,0.73,-0.80,-0.64,-1.63,-1.18,-0.29,-0.59,0 --0.21,-0.08,-0.24,-0.42,-0.62,1.26,0.25,-0.05,-0.26,0.98,1.38,2.30,2.54,4.54,3.16,6.22,4.92,1.62,1.62,-0.16,-0.46,0 -0.27,-0.94,-0.23,1.10,0.49,1.67,2.38,4.14,4.40,6.72,7.88,6.12,3.45,2.98,3.04,1.76,1.14,-0.16,0.63,-1.77,1.40,2 -0.48,1.59,0.83,0.03,0.12,0.06,1.70,-0.46,0.94,2.46,4.83,3.58,2.59,4.75,5.07,3.24,1.48,1.38,0.27,0.47,1.24,2 --0.93,-0.23,1.06,-0.22,-1.21,1.75,0.61,0.74,2.32,2.31,6.38,4.65,4.48,3.93,2.61,4.84,0.97,-0.35,-0.24,1.46,0.55,2 --0.62,2.72,0.37,2.55,4.39,3.69,4.22,3.49,2.94,3.04,3.11,1.98,0.94,1.05,-0.30,0.91,1.06,0.78,-0.65,-0.56,1.07,1 -1.76,-0.84,0.54,0.10,1.16,2.94,4.63,2.43,2.05,3.15,5.45,2.22,0.96,1.05,3.80,1.30,2.92,2.33,1.64,2.03,0.92,0 -0.74,0.42,1.01,1.85,1.56,2.91,2.88,3.05,4.88,1.25,6.60,4.09,5.19,2.34,4.90,1.85,-1.31,0.86,0.68,1.11,1.28,1 -1.91,-1.85,0.14,0.07,-0.10,2.27,-0.05,-0.40,1.71,2.73,2.33,3.70,2.44,6.33,5.24,5.03,4.16,2.11,4.54,1.12,0.96,2 --0.91,0.12,0.48,0.31,-0.99,0.32,0.78,2.69,2.38,1.94,3.95,1.70,3.04,5.80,4.78,4.66,2.01,1.57,1.50,0.79,0.63,0 --0.37,0.01,0.10,1.62,0.51,1.88,1.91,0.20,1.86,1.12,1.58,2.41,1.50,3.04,4.69,4.25,4.45,2.29,1.63,2.72,-0.99,0 --0.73,-1.60,1.17,-1.44,2.58,0.52,2.70,0.92,1.88,2.26,5.72,4.06,3.78,3.52,4.03,3.47,0.15,2.17,1.30,0.71,-1.34,2 --0.19,1.11,1.22,-1.57,-0.10,1.49,0.08,3.21,1.88,3.09,4.51,2.62,4.92,3.27,2.31,3.02,2.56,0.71,0.32,2.21,-1.34,2 -0.04,1.59,2.10,2.39,5.42,5.41,3.49,3.84,5.53,0.90,4.15,0.90,1.12,0.56,0.50,0.55,0.56,0.22,-0.90,-0.99,-0.57,1 --0.20,-0.79,1.58,2.23,3.50,4.37,3.06,4.01,2.36,5.54,5.02,2.12,1.45,1.22,-0.77,0.09,0.08,0.88,-0.49,2.08,-1.10,1 -0.39,0.69,-0.10,-0.09,0.21,0.49,3.70,1.68,2.07,1.12,0.47,1.64,1.54,3.13,4.83,3.85,2.74,-0.24,2.91,0.71,0.68,0 -0.33,1.14,0.02,2.30,1.81,3.11,2.21,5.02,4.15,4.34,4.40,3.26,1.67,2.30,1.21,-0.63,0.64,-1.15,-0.56,-0.99,0.11,1 -0.57,0.13,-1.13,0.51,-0.32,0.02,0.36,1.57,0.08,2.38,3.79,4.09,3.76,3.96,4.40,4.78,3.31,2.16,2.30,-0.49,0.53,2 -0.79,2.02,1.95,1.63,4.06,6.13,5.53,4.13,1.50,1.08,2.66,1.88,0.03,1.10,1.24,1.33,2.17,0.22,1.47,0.98,0.30,0 -0.64,0.79,0.26,0.39,2.25,2.86,2.54,2.26,3.99,1.25,3.01,3.73,2.72,1.32,-0.01,-0.34,0.22,0.90,1.02,-1.28,-0.66,1 --0.58,0.99,1.74,0.60,-1.72,-0.25,1.54,2.63,5.82,5.95,5.99,4.74,4.63,2.85,0.73,-0.67,-0.41,0.20,-0.65,-1.57,-1.12,1 --0.23,-0.40,2.44,4.46,1.57,4.35,6.21,6.20,3.34,2.73,2.12,3.35,1.46,1.58,0.02,0.90,0.18,-1.39,-0.58,-0.56,-1.48,1 --2.05,-0.45,-0.44,0.99,-0.43,-0.42,2.73,1.20,2.56,4.53,4.01,4.54,5.19,3.45,2.74,3.13,-0.26,0.42,0.26,-0.54,0.21,2 -0.57,-0.22,0.34,-0.02,-0.57,0.50,1.15,1.30,1.86,0.48,1.86,1.95,3.80,3.92,4.59,2.88,2.41,1.97,1.06,0.01,-0.82,0 -1.22,-0.71,-0.44,-1.03,0.77,1.24,0.33,-0.65,1.97,-0.46,2.24,4.89,3.71,4.41,4.89,5.18,4.70,2.76,1.85,1.40,0.90,2 -0.10,0.07,-0.21,-1.14,-1.23,1.49,0.16,-1.07,-1.36,-0.11,0.73,3.16,2.77,5.53,6.56,4.61,3.92,2.89,0.10,0.41,-2.56,2 -0.79,-0.45,0.12,0.83,0.64,-0.02,0.14,0.72,1.06,1.62,-0.23,2.46,4.23,3.08,7.06,5.02,3.24,4.03,0.72,1.89,1.68,0 --0.45,0.26,2.08,3.34,3.01,3.49,4.71,5.27,6.42,3.12,3.68,1.98,0.26,1.88,1.36,0.15,-0.77,0.03,-0.47,-0.12,0.24,1 --0.25,-0.21,-0.07,-0.20,-1.05,0.48,-0.35,0.11,2.87,-1.12,2.81,2.37,4.26,3.00,5.17,4.01,5.70,2.44,1.02,-0.54,-1.35,2 -0.25,-0.23,0.10,1.23,0.23,1.61,3.44,2.23,3.91,4.08,2.76,4.29,2.66,1.74,1.56,-0.85,0.28,-1.23,0.61,0.56,-0.03,1 -1.31,-1.75,-0.22,0.96,0.75,1.94,3.03,2.43,1.77,2.29,1.14,2.47,1.45,2.66,3.37,1.17,1.73,2.70,0.60,0.79,-1.17,0 --0.47,0.23,0.22,1.07,0.03,3.46,2.37,1.24,4.16,5.21,5.79,5.76,3.14,3.11,0.99,1.49,-0.20,0.84,-1.29,-0.16,-0.79,1 -0.45,1.83,0.40,2.34,1.65,4.35,5.97,5.80,3.97,2.35,1.54,0.65,2.29,0.69,-2.10,1.00,1.08,0.09,0.50,-1.03,0.76,0 -0.12,1.67,1.37,1.44,3.17,4.32,6.48,3.90,4.17,1.83,2.19,1.25,-0.37,-0.22,1.35,-0.02,1.72,0.15,0.86,0.76,-2.77,0 -0.24,1.29,-0.49,1.86,1.27,0.90,2.15,2.11,0.90,1.56,3.91,1.99,3.21,4.17,4.73,2.47,1.67,2.99,0.61,0.93,0.84,0 -0.56,-0.02,1.58,0.64,0.48,-1.06,0.56,1.65,0.89,3.63,2.94,2.06,3.17,3.36,4.71,3.11,2.97,0.24,1.46,3.08,-0.58,2 -0.67,2.02,2.24,3.24,3.33,1.89,3.01,6.03,5.25,2.98,3.76,3.74,1.32,0.27,0.56,1.11,0.19,1.53,-0.73,-0.56,0.39,1 -0.11,0.43,1.73,2.91,2.58,4.59,4.35,4.37,3.54,0.15,4.21,2.75,1.17,2.04,1.22,1.88,1.26,0.53,1.52,-1.07,0.11,0 -0.12,0.32,1.36,3.10,2.39,2.93,3.98,6.30,6.00,5.11,3.74,1.50,2.35,1.85,1.09,1.03,-1.12,1.87,-1.70,0.17,-0.02,1 -0.69,1.04,0.31,4.29,4.87,4.36,4.49,5.05,4.14,4.23,1.10,0.75,1.74,-0.05,-1.01,0.48,-1.27,1.03,0.16,1.79,0.02,0 --0.16,0.62,-0.17,-0.02,-0.55,-0.98,1.00,-1.22,-0.41,1.68,0.80,2.94,3.01,5.17,6.96,4.27,4.20,0.90,4.04,0.53,0.77,2 --1.51,0.68,1.73,1.67,4.86,4.74,4.39,4.85,1.73,2.54,2.28,0.11,-0.10,0.20,1.26,-0.91,-0.85,-0.24,0.78,0.32,0.35,1 --1.32,1.21,1.58,3.18,2.11,4.15,3.24,3.86,1.98,2.42,1.94,1.90,0.41,2.79,2.58,0.09,-0.29,1.32,1.15,0.05,-0.74,0 -1.05,2.29,0.83,0.30,-1.51,1.62,1.66,3.56,3.20,6.18,5.49,3.33,3.52,3.54,-0.50,1.74,0.39,0.16,-0.62,0.46,0.15,1 --1.16,1.08,0.81,1.60,0.93,2.51,0.80,0.10,1.15,0.33,0.44,1.91,3.66,3.33,3.26,3.35,3.79,1.59,2.00,1.45,-1.18,0 -0.00,-0.65,0.75,0.90,0.99,1.50,2.64,2.39,3.23,4.52,5.84,3.76,4.70,1.21,1.27,0.48,0.60,0.55,-1.49,0.29,1.33,1 --0.85,-0.55,0.39,0.31,1.19,-0.75,2.25,2.10,2.22,3.62,6.30,4.14,5.07,2.63,3.42,-0.03,-0.11,0.09,-0.20,0.73,1.13,2 --0.37,0.41,1.59,1.89,1.75,2.33,4.09,3.21,1.54,3.72,1.23,1.00,0.51,4.62,5.17,3.83,2.32,1.76,0.52,0.02,-1.03,0 --0.41,-0.08,1.53,2.50,1.04,2.46,2.18,2.35,2.37,2.75,4.36,3.69,1.79,2.77,1.00,-0.52,-0.97,-1.36,0.77,-0.66,-0.58,1 -0.92,0.83,1.07,2.04,4.27,4.76,3.37,5.60,3.28,2.51,3.00,0.65,-0.30,0.62,2.35,-0.33,0.52,-0.06,1.78,-0.53,-0.44,0 --0.17,-0.98,2.27,2.97,2.00,4.39,5.72,3.27,4.02,3.58,2.76,3.25,2.18,1.55,-0.67,0.25,0.50,-1.02,0.02,-0.09,0.25,0 -0.03,0.96,2.71,1.57,0.62,3.80,5.65,4.40,2.24,2.81,2.66,1.88,0.14,3.14,2.22,3.84,2.51,3.12,1.29,-1.10,0.59,0 --2.65,-0.09,-0.38,1.11,0.12,1.11,1.57,2.59,-1.27,-0.96,3.52,3.29,3.69,5.96,4.08,6.31,3.31,1.91,1.11,3.01,1.92,0 --0.19,0.61,-0.25,-1.28,-0.02,0.68,-0.13,2.07,4.59,4.22,6.09,6.02,3.71,2.71,1.90,0.67,-1.35,2.54,0.80,-0.89,0.66,1 -0.63,-1.62,1.06,0.26,1.14,0.07,3.43,3.67,5.02,5.51,5.41,4.09,2.83,1.65,2.06,0.46,-0.03,0.43,2.11,0.72,1.34,1 --0.06,0.18,0.13,-0.74,-0.44,1.21,0.53,1.72,0.80,2.49,3.53,3.39,4.12,2.89,4.47,3.79,2.13,2.52,-0.07,-0.15,1.64,2 -0.90,1.36,0.30,0.68,0.16,2.40,2.44,3.64,1.57,4.33,5.28,4.39,4.62,1.55,3.86,0.66,0.62,1.51,0.40,1.26,-1.46,2 -0.67,-0.21,0.32,-0.53,1.10,1.42,3.69,3.92,2.14,6.01,5.24,4.51,3.60,1.22,2.17,2.48,-0.43,0.83,1.80,1.05,0.62,1 --1.41,-2.23,-0.62,-0.10,-0.15,1.07,1.32,0.05,0.30,2.58,2.13,2.76,2.55,5.77,3.85,3.73,2.23,2.27,3.12,0.22,0.70,2 -0.43,0.21,-0.60,0.37,2.00,1.45,1.46,1.93,3.67,5.26,6.85,3.32,3.72,2.41,3.07,0.11,0.11,-0.26,1.04,0.82,2.05,1 -0.88,0.51,1.11,2.64,2.65,3.30,6.28,6.09,4.45,2.47,2.89,2.28,1.95,2.74,-0.06,-0.01,1.24,-0.30,-0.34,0.90,0.81,1 -0.59,1.22,-0.45,1.18,1.69,0.80,1.78,1.55,2.25,2.30,2.77,5.03,5.91,5.04,3.71,0.96,1.17,0.95,-0.46,-0.86,-0.20,2 -1.14,0.52,0.78,0.62,1.30,2.52,4.52,4.50,3.82,3.08,2.37,3.11,0.37,2.66,0.91,0.66,1.38,1.47,1.31,1.62,-1.19,1 --0.39,1.22,1.01,2.74,3.81,2.52,5.65,3.76,3.78,3.88,1.65,-0.34,0.51,0.88,0.76,-0.45,-1.05,-1.21,1.32,-0.89,0.66,0 --0.03,0.09,0.10,3.18,2.89,2.93,5.16,1.93,5.16,3.32,2.59,4.29,0.19,2.37,-0.16,-2.15,-1.48,-1.61,0.11,0.60,1.37,1 -0.51,-1.40,-0.80,-1.65,-1.12,-1.22,1.50,2.05,3.56,4.51,6.06,5.10,2.83,5.13,2.74,-0.32,-0.59,1.33,-2.23,-1.21,-0.32,2 --0.82,0.89,0.35,0.51,3.15,2.03,3.98,3.01,0.75,2.43,2.20,2.24,0.67,1.37,3.66,2.93,4.20,1.18,1.15,0.85,0.35,0 -0.81,-0.46,1.44,0.79,3.32,3.17,3.49,3.72,1.57,1.28,3.85,2.86,3.02,2.07,2.77,2.42,0.29,1.62,0.42,-0.37,-0.97,0 -0.05,1.69,1.67,2.11,5.00,3.39,7.36,5.93,3.81,2.97,2.31,1.60,-0.28,-1.10,1.09,-0.35,0.11,-1.72,-0.40,2.33,0.19,0 -1.24,0.23,-0.11,3.43,3.44,5.38,4.21,1.98,1.75,3.78,2.84,2.17,0.52,0.89,1.63,0.61,-0.55,0.44,0.36,-1.59,-1.47,0 -0.69,0.21,0.38,-0.56,1.57,1.20,1.89,1.16,1.13,0.55,2.34,3.81,2.32,5.22,3.81,4.15,4.08,1.64,4.70,1.44,0.38,0 -0.85,0.63,1.69,0.88,1.26,2.29,2.11,1.51,1.32,1.79,2.33,1.90,2.03,3.08,4.92,1.84,1.97,3.07,0.87,0.11,0.24,0 --0.01,1.39,0.29,1.36,2.07,4.22,5.23,2.13,2.79,1.38,2.25,0.61,2.03,1.33,0.20,1.00,1.43,1.69,0.45,0.97,0.07,0 --2.50,1.96,1.07,0.38,1.68,-1.11,1.42,1.01,-0.53,2.06,1.84,1.89,2.73,5.80,5.36,5.12,3.95,2.78,1.73,1.06,-0.97,0 --0.05,0.77,0.90,2.22,5.21,5.58,4.91,5.71,5.56,2.81,1.92,1.95,-0.70,0.83,-0.12,0.03,-1.86,-0.04,1.04,0.52,-0.78,1 --1.73,-0.01,0.77,2.31,0.02,1.50,0.07,2.43,2.50,5.37,5.98,5.16,3.37,3.00,1.11,2.73,-0.23,0.40,-0.17,0.63,-0.33,1 -0.43,0.87,-0.69,-0.31,-0.71,1.27,0.54,2.63,2.76,2.95,6.22,6.75,2.93,2.52,2.93,0.94,1.15,0.70,1.53,2.19,-0.20,2 --1.77,1.58,1.02,0.26,3.20,3.06,4.21,2.87,1.83,3.64,4.17,4.55,1.88,1.54,1.30,2.17,1.36,-1.65,1.74,-0.36,-1.73,1 -1.37,-1.04,1.76,0.92,2.78,3.22,5.24,3.74,2.96,3.44,2.45,2.11,2.40,0.76,0.64,1.01,-0.28,0.26,-1.19,-0.73,-0.09,1 -1.23,0.11,-0.44,-1.74,-1.01,1.05,1.11,0.97,2.79,5.13,5.63,2.90,3.32,3.44,1.93,0.62,2.70,2.03,0.52,1.61,0.82,2 --0.95,-0.14,0.81,-0.31,1.62,3.05,2.61,1.14,0.11,1.98,0.31,3.26,2.26,3.16,3.87,5.40,2.75,1.40,0.69,0.73,1.82,0 -1.68,1.28,1.78,1.76,2.16,1.36,2.13,4.44,2.57,3.01,5.10,3.11,2.23,2.44,-0.38,0.65,-0.20,-1.31,1.44,1.43,0.82,1 --0.84,-0.35,0.72,1.51,-0.49,0.86,0.58,1.46,2.62,1.57,5.40,4.11,4.81,3.49,4.45,3.16,1.49,1.62,0.19,0.50,1.14,2 --0.55,1.25,0.19,0.86,-0.23,-0.36,0.76,0.56,0.08,2.98,1.05,3.44,3.88,1.79,4.18,6.23,3.07,2.33,2.40,-0.15,-0.27,0 -0.54,0.33,1.55,-0.18,1.95,2.22,1.90,1.49,1.21,1.51,1.45,1.92,1.72,4.90,3.07,2.83,1.02,0.76,0.83,2.38,0.20,0 --0.66,-1.47,-0.40,-0.20,-0.06,0.91,-0.45,3.76,3.60,5.00,5.92,4.09,3.93,3.57,2.12,-0.18,1.97,0.05,-1.87,2.04,-0.74,2 -0.32,-0.30,-1.28,-0.06,1.71,1.93,2.34,0.24,2.57,0.55,4.04,3.13,3.11,2.96,6.34,2.91,3.03,2.04,1.84,0.06,0.97,2 --0.39,-0.39,0.66,1.78,1.78,3.35,5.55,4.20,2.83,3.84,2.56,0.55,1.63,2.15,1.19,1.74,-0.77,-1.26,-0.11,1.56,0.87,0 --1.32,-0.67,0.48,1.25,-1.18,-0.15,0.98,1.41,1.64,2.80,3.09,3.48,2.37,4.39,5.13,3.87,2.91,1.67,1.88,1.46,-0.37,2 --1.44,-0.02,-0.08,1.37,0.63,0.59,1.44,2.31,3.61,3.92,4.87,5.27,5.66,4.49,4.75,4.10,1.01,-0.65,-0.51,0.11,1.93,2 -1.03,0.33,-0.75,-1.74,-1.39,0.41,0.99,0.89,1.78,3.60,6.95,1.90,6.24,3.41,3.33,2.91,1.44,0.51,1.93,1.75,-1.43,2 --1.63,2.46,2.61,0.75,2.55,4.65,3.01,1.50,2.70,3.20,0.50,1.14,1.46,0.93,2.79,2.44,1.49,-1.03,1.39,0.89,-1.15,0 -0.71,0.79,0.01,0.61,2.17,0.43,-0.44,-0.39,1.06,1.42,2.67,1.73,4.73,3.75,3.98,3.57,2.61,1.92,1.33,1.01,1.30,0 -1.19,-0.70,2.09,0.22,0.44,0.77,0.49,-0.41,-1.10,1.20,3.58,5.03,4.80,3.64,4.76,4.31,2.74,1.25,1.01,0.37,-0.61,2 -0.25,1.30,0.19,2.84,0.70,2.86,4.06,4.84,5.01,4.00,3.43,2.56,0.56,0.63,1.79,-1.14,0.38,1.03,0.38,-0.13,-0.61,1 -1.87,-0.12,1.35,2.36,4.04,3.01,5.07,5.25,4.47,2.10,2.30,1.81,0.80,2.50,0.21,-0.81,0.01,-0.38,-0.08,-0.91,-1.53,1 -0.08,-0.67,0.18,0.39,-0.74,-0.49,4.22,3.75,2.60,3.59,5.84,2.52,3.82,1.08,4.07,1.26,1.51,0.58,-0.12,0.52,-1.99,2 --0.33,1.29,1.51,1.41,2.09,3.82,3.07,5.84,4.44,3.47,2.89,1.19,1.57,0.19,1.31,1.21,0.26,-0.43,-0.57,-0.26,0.23,1 -1.77,0.68,-1.70,0.75,0.40,-0.43,-0.87,-0.16,0.35,1.76,3.41,2.98,3.31,3.32,4.01,4.64,2.24,2.00,2.34,-0.18,-0.01,2 --0.66,-0.82,1.32,1.19,-0.27,0.69,1.45,0.24,1.93,1.72,3.29,2.10,4.76,5.08,4.22,4.83,3.84,1.19,1.78,0.03,0.71,2 -0.71,1.24,1.39,3.11,3.34,5.95,5.37,4.79,4.62,2.25,2.40,0.99,2.36,-0.52,-0.10,0.21,0.11,0.36,1.15,0.63,0.35,0 -0.41,1.13,0.70,1.06,0.90,2.46,3.47,5.41,1.96,4.72,4.05,3.64,1.75,0.97,1.65,0.16,0.90,1.47,-1.97,-1.41,0.30,1 --1.35,0.45,0.76,0.71,2.82,3.05,1.54,6.58,4.49,2.78,5.35,3.13,0.74,1.86,0.77,-0.27,0.66,0.76,-0.27,0.63,0.79,1 -0.89,1.90,1.44,0.10,-0.33,1.46,2.18,2.53,3.15,3.69,5.41,3.59,2.77,2.18,2.44,2.63,0.43,0.47,0.96,1.12,0.29,2 --0.69,0.42,-1.21,-0.31,0.29,0.17,1.00,4.13,2.17,5.30,6.61,5.60,4.03,2.86,3.44,2.52,1.61,0.70,-1.24,0.46,2.53,2 --0.33,0.00,1.88,4.81,5.18,4.09,6.16,5.56,2.45,2.70,3.29,0.43,0.92,-1.42,1.61,1.43,0.53,0.05,-1.32,1.66,0.57,1 --0.16,0.13,0.87,1.63,0.61,4.82,3.37,3.14,3.85,4.52,5.18,3.73,3.21,2.66,0.74,2.39,0.29,-0.59,-0.29,-0.06,-0.09,1 -1.54,0.37,-1.01,-1.35,0.59,2.06,1.97,4.55,4.05,1.72,5.07,2.70,5.23,3.37,0.86,2.45,1.09,-1.87,-1.18,1.68,1.35,1 -1.33,0.33,0.16,0.58,0.56,0.52,1.82,3.47,1.76,0.08,1.58,3.90,3.62,4.20,5.29,3.36,4.32,2.58,0.60,1.84,0.27,0 -0.57,-0.39,2.22,4.44,4.90,4.80,4.00,3.77,5.48,3.22,3.45,1.44,0.40,1.97,0.07,0.33,0.39,0.94,0.84,0.59,-0.03,1 --0.38,-0.11,2.05,0.89,1.99,4.53,4.95,3.47,5.88,4.45,3.50,0.06,0.81,0.49,0.30,0.81,-1.08,0.26,0.15,0.42,0.10,1 --0.44,0.60,1.10,-0.90,0.44,2.23,2.42,3.45,3.96,6.39,5.77,5.99,2.94,2.83,1.78,-0.53,0.59,-0.14,-0.66,-0.79,0.49,1 -0.45,0.21,-0.02,0.46,0.06,3.49,2.30,2.38,2.17,0.99,1.16,1.10,1.05,3.15,4.32,3.47,3.08,0.88,0.78,0.79,1.06,0 --1.29,1.36,1.20,3.15,5.33,3.57,2.67,3.65,4.51,3.80,1.98,2.10,0.93,2.36,-0.99,0.38,-0.66,0.92,0.74,-1.50,-0.04,0 --0.99,1.26,2.09,1.61,4.57,4.41,4.92,4.49,2.66,2.67,0.98,2.25,-0.72,1.83,-0.07,-1.22,-1.10,-1.21,-0.16,0.87,0.84,1 -0.75,1.97,-1.47,0.53,-0.76,-0.42,0.76,-0.74,0.22,1.99,1.85,3.71,2.28,5.09,5.87,4.71,3.48,4.12,1.98,0.67,0.21,2 -0.19,-0.86,-1.16,1.51,1.55,2.81,2.82,2.03,2.38,0.28,1.44,1.50,2.60,2.57,4.35,2.96,4.38,0.85,2.43,0.95,0.79,0 --0.07,0.48,-0.93,0.37,-0.59,2.24,1.04,0.14,1.37,3.37,3.46,4.85,6.85,2.96,4.71,2.51,3.08,-0.67,0.95,-1.28,0.49,2 --0.03,0.73,1.02,-0.32,2.35,-0.50,0.40,0.57,-0.28,0.85,0.86,3.74,4.07,5.15,6.25,3.16,3.42,2.52,2.98,0.81,1.21,0 --0.42,-0.15,2.51,2.73,2.92,4.62,4.15,5.17,2.11,2.08,1.37,1.93,0.72,-2.05,-0.25,-0.90,2.14,0.39,1.18,1.95,-1.32,0 --0.03,-1.78,0.68,1.70,-0.15,1.85,1.94,3.84,3.86,5.60,3.34,2.97,4.11,1.56,0.35,2.38,-0.81,-0.29,0.09,0.96,-2.48,1 -1.16,0.41,2.32,0.60,2.78,7.04,4.81,3.90,4.42,3.03,2.18,1.88,2.07,3.23,0.40,-0.02,0.59,0.18,-0.24,0.59,1.08,1 --1.57,1.07,-0.03,2.84,-1.33,1.43,-1.17,-0.62,-1.64,-0.10,0.15,1.34,5.17,3.73,6.32,3.40,3.89,2.60,0.64,1.72,-1.69,0 --0.03,0.51,-1.20,1.81,3.01,4.31,5.33,4.16,4.34,3.48,3.48,1.47,1.25,0.37,0.48,0.01,-0.44,-1.66,-1.00,1.10,-1.90,1 -0.08,1.07,-2.12,0.09,1.74,-1.71,-0.33,0.69,0.88,1.38,4.45,4.97,4.52,3.19,4.79,3.95,2.30,4.13,0.57,-0.50,-0.78,2 --0.26,1.24,1.45,2.20,4.33,3.51,2.70,5.66,2.65,2.89,3.30,0.41,2.04,0.53,1.47,-1.59,1.05,0.26,-0.28,0.47,-0.48,1 -0.39,1.06,0.99,2.95,3.57,3.63,5.76,3.99,3.23,4.26,1.96,1.68,0.75,-0.51,2.78,1.00,1.92,1.60,-0.25,0.42,0.72,0 -1.11,-0.38,0.29,0.06,-1.07,-0.02,0.22,0.69,0.59,1.30,2.07,3.04,2.80,4.10,5.40,3.28,2.99,2.39,1.88,1.28,0.07,2 -0.08,-0.84,-0.34,0.89,1.15,1.32,1.74,1.12,0.24,0.14,3.19,2.66,3.57,5.35,4.69,2.33,2.19,1.44,2.04,1.03,-0.58,0 --1.75,1.71,3.11,2.64,3.05,4.61,3.95,5.09,5.67,2.31,2.21,1.63,0.54,0.11,0.50,2.07,-0.37,0.25,-0.34,-0.73,-0.59,1 --0.05,0.47,1.30,1.52,1.54,1.98,3.91,2.59,3.09,4.67,4.95,4.81,1.91,3.16,1.19,0.09,1.46,-0.07,0.92,-0.92,-1.73,1 --0.97,-0.36,0.37,-0.63,-0.68,0.34,2.12,0.95,3.71,1.91,3.77,2.18,3.83,3.16,6.90,2.75,2.72,1.84,1.74,-0.58,-0.02,2 -0.21,-0.64,-0.96,0.43,2.57,0.53,1.68,3.31,0.94,1.86,1.93,-0.65,3.58,3.38,-0.18,2.37,3.24,2.32,2.33,2.32,-0.42,0 -0.39,0.66,0.53,-0.61,1.15,2.49,0.23,2.77,3.70,4.40,6.37,4.42,3.94,2.43,3.58,1.46,-2.21,0.30,1.19,-1.45,-0.43,2 -0.37,-0.72,2.98,0.01,2.73,4.92,4.77,1.90,4.79,2.37,1.17,2.31,-0.17,0.34,0.80,0.32,1.52,-1.41,-0.48,-0.97,-0.07,1 -1.27,0.88,-0.24,0.21,1.27,0.12,1.74,0.23,-0.42,0.89,3.04,3.64,3.84,4.60,4.29,3.30,2.71,0.83,0.25,-0.96,0.64,0 --1.14,-0.21,0.86,0.18,-0.46,1.62,1.26,0.84,2.00,2.61,4.28,2.87,5.77,3.01,4.49,1.61,1.80,1.10,1.39,1.14,1.56,2 -0.01,0.30,1.28,1.95,2.13,3.08,1.61,0.42,-0.39,2.19,3.83,3.72,4.92,3.02,4.26,3.12,4.15,0.89,-0.13,1.73,-1.03,0 -2.02,-0.02,1.45,2.61,2.53,3.52,5.13,4.58,2.56,3.38,1.83,0.75,-1.22,2.12,0.85,0.73,1.32,0.65,0.51,-0.27,1.28,0 --0.24,0.61,1.00,-0.25,0.92,1.01,1.76,2.02,4.12,6.26,5.31,4.22,4.98,0.92,1.02,1.14,0.04,-1.20,1.18,0.44,0.81,2 -0.13,0.11,-1.91,-0.76,-0.36,-1.38,0.37,-0.55,1.15,2.14,3.19,3.97,4.51,4.43,7.86,4.23,4.50,3.72,2.25,0.79,0.37,2 -0.20,-0.39,-0.31,1.28,1.30,2.33,2.35,2.90,2.29,3.72,4.53,4.31,2.92,1.71,0.57,1.48,0.83,-0.39,0.67,1.07,-2.28,1 -1.18,0.05,2.68,3.36,4.58,5.16,4.99,4.50,4.84,2.88,2.49,2.59,-0.10,0.47,-0.04,0.01,0.27,-0.17,2.21,0.56,0.95,0 -1.92,-0.02,0.89,-0.76,-1.57,0.01,1.73,1.66,4.93,5.42,6.24,4.59,4.52,3.95,1.56,-0.48,0.01,0.60,-0.13,0.74,0.15,2 -0.68,1.31,0.33,0.06,0.13,-1.12,1.07,2.86,0.96,1.20,3.32,2.26,4.23,1.53,2.01,3.71,1.34,2.64,1.73,-0.14,-1.66,2 --0.79,1.91,2.26,1.95,2.14,4.06,4.97,1.65,2.72,1.79,2.00,1.08,2.07,1.66,1.64,1.35,0.34,1.44,-1.38,1.46,-0.66,0 --0.06,1.18,1.18,-0.87,0.22,-0.47,0.12,1.97,0.80,0.34,2.29,2.64,5.53,3.41,4.51,5.70,2.25,2.78,2.30,0.91,-0.42,0 --0.34,1.40,-0.00,2.50,3.67,4.46,2.33,3.33,0.64,1.50,2.17,1.15,1.71,2.27,0.18,2.18,1.52,3.16,0.51,-1.41,0.93,0 -0.39,-0.07,-0.54,-0.18,-0.74,-0.65,-0.10,-0.07,0.03,0.61,1.65,3.34,3.16,5.74,4.93,3.26,2.53,3.66,2.01,0.29,0.70,2 --1.16,-0.83,0.39,-0.23,2.32,2.04,0.41,2.19,-0.29,0.69,2.87,3.33,2.74,4.88,6.66,6.58,3.53,-0.96,1.35,1.32,-0.65,0 -0.60,-0.58,0.68,0.31,0.25,0.18,-0.35,1.54,2.03,1.47,1.34,1.20,4.93,2.94,5.39,4.81,2.74,0.54,1.26,2.26,0.50,0 -0.43,0.77,1.43,-1.43,1.91,1.68,4.10,3.27,5.07,4.39,4.84,4.02,3.07,1.16,0.89,1.47,0.79,-1.09,-0.33,0.36,1.00,1 --1.21,0.83,0.08,3.17,4.82,3.41,6.92,4.70,4.71,2.37,0.39,1.29,1.12,2.42,-0.59,0.58,-0.35,-0.28,-0.29,0.06,-0.80,0 --0.06,1.00,-0.43,0.13,0.71,2.84,1.67,3.59,0.83,1.02,0.62,2.65,2.27,3.85,3.40,2.72,1.39,1.63,1.62,-0.70,2.43,0 -0.75,1.06,2.59,3.88,3.72,4.04,5.86,3.08,3.29,3.77,-0.12,2.08,2.11,-0.33,0.03,0.63,-2.31,1.30,1.88,-1.83,-0.27,0 -0.50,2.31,2.30,2.35,0.38,2.15,5.49,3.63,5.35,4.18,4.01,3.44,0.25,0.58,3.10,1.12,-0.35,0.10,1.30,-0.96,1.31,1 --0.69,0.31,1.93,1.70,1.96,4.04,6.41,5.59,4.59,3.52,4.15,1.63,-0.18,2.29,-0.17,-0.20,0.65,0.84,-1.24,0.74,1.12,1 --1.56,1.01,0.50,0.87,0.08,0.01,-0.43,0.90,1.81,1.56,2.87,3.44,3.67,5.31,3.24,6.13,3.31,1.64,2.18,0.04,0.90,2 --0.81,0.18,1.32,0.75,0.24,1.11,0.69,0.05,1.39,2.82,2.94,2.75,4.63,3.26,5.49,1.55,4.30,1.94,1.38,-0.45,1.12,0 -1.57,-0.17,1.45,1.62,3.76,2.59,3.74,2.48,3.98,2.40,3.86,2.13,1.65,3.20,2.95,1.49,1.51,1.78,0.27,0.70,-0.73,0 -0.16,1.82,2.27,2.04,1.01,1.39,1.82,0.90,1.80,1.20,2.48,3.49,2.83,3.47,3.12,2.90,4.14,3.45,1.45,1.00,0.55,0 --1.06,1.06,-0.68,0.28,2.00,0.30,2.93,3.54,3.30,6.25,7.32,6.44,4.12,2.16,2.83,1.91,-0.34,0.92,0.73,0.01,0.08,2 --0.08,0.49,-0.25,1.20,1.17,1.51,4.96,4.87,3.98,5.79,4.36,2.20,1.61,1.86,1.57,1.13,-1.56,-0.62,-0.45,0.15,0.06,1 --0.55,1.21,3.48,3.17,3.26,5.01,5.99,4.48,4.94,2.99,2.05,0.30,1.33,0.06,-0.55,0.30,-0.39,-0.51,0.50,-1.05,2.94,0 -1.63,2.44,2.09,3.07,5.21,4.59,6.99,5.75,4.73,2.03,2.47,3.18,-0.61,0.52,1.34,-0.03,1.58,0.94,-1.14,1.48,0.07,1 --1.02,-0.12,-0.81,0.08,1.14,0.15,-0.34,0.95,1.07,4.11,4.71,2.86,3.77,3.88,4.17,3.21,0.83,1.70,0.48,0.81,-0.40,2 --1.18,0.68,1.93,1.63,-2.20,1.25,-1.85,0.90,0.72,0.76,3.16,2.10,3.49,5.85,5.47,5.80,3.05,3.01,1.01,0.10,-0.29,0 --0.28,1.74,1.95,1.79,3.90,5.12,5.66,5.58,3.93,5.02,1.32,1.70,0.92,-0.22,-0.11,0.97,0.92,0.09,0.52,2.37,1.08,1 -1.41,0.90,2.72,3.60,3.00,5.24,5.48,6.00,3.19,3.72,1.97,1.17,0.30,-0.55,-0.19,-2.48,1.66,0.30,-0.05,-0.03,1.97,0 -0.54,-1.38,0.91,-1.59,-0.89,0.62,1.14,1.54,2.21,1.55,3.58,4.86,4.58,2.40,4.50,3.02,2.40,1.72,0.92,0.84,0.88,2 --0.78,1.42,0.71,-1.18,-1.99,-0.18,2.55,3.23,2.62,4.44,5.47,1.86,3.20,3.84,1.48,1.89,-0.71,1.29,-0.29,0.76,-1.60,1 --2.05,0.16,0.22,-1.62,0.87,1.98,3.94,3.54,3.85,5.59,7.82,4.12,3.60,3.71,4.57,1.07,1.23,0.32,0.26,-1.07,0.97,2 --1.09,-0.66,0.33,-0.41,0.98,0.55,0.42,0.79,2.34,4.12,2.21,2.81,1.68,4.96,4.10,3.07,2.82,3.00,3.65,0.58,0.99,2 --0.99,-1.69,-0.87,0.23,0.81,1.24,2.31,2.07,4.00,3.24,4.57,4.66,3.22,4.42,2.50,1.27,1.71,-0.96,-0.24,1.07,-0.38,2 --0.09,-0.31,1.00,1.43,-1.06,-0.94,-0.10,1.32,1.15,2.58,4.57,1.92,3.69,4.82,4.71,2.43,2.34,2.80,-0.32,0.77,-1.03,2 --0.45,-0.02,-1.28,-0.09,0.20,1.35,1.07,3.83,2.49,4.47,5.34,4.55,3.89,3.85,3.63,1.01,1.67,1.52,0.96,0.62,1.07,2 -0.39,0.68,2.43,1.99,4.08,4.52,5.42,4.70,5.36,4.28,3.18,1.54,1.64,0.85,0.40,0.91,1.23,1.40,-0.10,0.47,-0.03,1 --0.76,1.94,1.40,2.79,3.34,4.32,4.13,2.62,4.36,3.35,0.77,0.10,-1.62,0.69,-0.44,1.10,-1.47,2.70,-0.63,2.13,-0.16,0 --0.25,-0.71,1.21,1.02,0.82,0.08,1.76,1.64,2.11,3.20,2.44,4.17,5.48,3.74,2.79,1.45,1.70,1.99,2.15,0.06,-1.79,2 --0.80,0.30,0.94,3.16,-0.17,2.55,1.92,2.88,1.95,3.23,3.34,2.21,0.81,1.97,2.35,1.66,4.34,0.46,-0.17,-0.01,1.16,0 -0.91,0.48,-0.22,-1.54,-0.50,1.85,0.71,-1.17,0.87,3.03,4.11,2.35,3.69,3.29,4.11,1.96,0.89,0.02,0.11,-0.81,-2.05,2 -0.59,-0.76,-0.30,0.44,0.25,-0.13,1.49,0.16,0.15,1.69,4.02,3.92,3.60,2.90,5.98,5.19,2.56,1.54,0.99,2.11,-1.75,2 --0.47,0.58,1.11,-0.76,-0.33,0.62,2.23,4.61,4.09,5.61,6.73,4.43,3.81,2.86,2.83,1.64,1.14,1.73,-0.32,-0.05,1.86,1 -0.75,0.72,1.27,2.44,3.29,3.71,2.20,5.02,3.82,3.55,1.61,2.39,1.63,1.67,3.12,2.16,2.39,0.34,2.09,1.42,0.84,0 --0.20,-0.35,0.75,-0.34,2.10,3.88,1.81,3.08,0.69,1.08,2.33,1.08,0.91,3.77,3.31,4.76,2.25,1.38,1.79,0.83,-2.97,0 --0.98,-1.62,2.31,-0.34,0.04,0.58,2.50,1.93,3.84,4.54,6.76,5.59,4.72,4.12,2.21,1.46,1.46,2.28,-0.56,-2.15,-0.15,2 --1.04,1.13,1.88,-1.57,-2.54,0.38,-0.26,0.25,-0.11,2.49,2.00,3.64,4.66,6.24,4.74,6.80,3.93,2.26,1.55,1.35,-0.13,2 --1.26,2.31,1.27,2.64,2.08,3.88,3.87,4.34,4.67,1.62,1.21,3.70,1.24,0.23,1.32,0.85,-0.27,1.09,-1.12,0.07,-0.89,1 -1.11,0.56,-0.46,-0.77,0.72,1.08,0.62,3.04,2.15,3.92,7.68,4.54,3.75,2.80,2.90,0.62,0.04,0.11,-1.06,0.61,-0.43,2 --1.17,-0.45,-0.07,2.47,0.25,3.84,6.20,1.88,3.66,3.06,3.96,2.34,1.70,1.40,-0.01,-0.18,1.03,-1.05,-0.05,0.80,2.25,1 --1.99,-0.37,0.85,1.60,-0.62,1.12,0.24,0.88,1.95,1.50,3.89,3.58,3.75,3.99,3.88,2.51,3.05,1.87,2.33,0.87,1.65,2 --0.47,0.66,-0.98,0.56,-1.59,0.14,-0.06,3.29,2.36,4.16,3.28,3.82,3.75,4.01,4.09,3.05,0.77,-0.06,2.14,-0.35,2.04,2 --1.79,-1.30,1.14,-1.02,0.06,1.18,0.24,1.69,-0.47,-1.10,2.04,3.07,2.90,4.21,3.40,4.37,3.79,3.30,1.84,1.69,-0.95,2 --1.32,-0.62,1.10,2.90,2.58,1.51,5.87,2.59,2.38,1.62,2.31,2.31,2.11,1.42,1.08,1.37,1.47,1.79,1.20,0.21,1.31,0 -0.62,0.86,0.46,1.24,1.15,2.44,4.09,1.59,2.35,2.10,3.45,1.42,1.28,2.59,4.07,3.60,3.26,2.63,2.48,-0.17,0.80,0 --1.13,0.43,1.69,2.79,4.63,5.17,4.48,4.18,4.06,2.68,1.96,-0.81,-0.61,1.06,0.82,0.43,-0.38,-0.38,1.41,0.36,-1.04,0 -0.41,1.03,1.86,2.21,1.79,4.26,5.22,5.72,4.46,3.01,4.75,2.71,3.39,1.93,-0.40,-1.06,0.44,1.01,0.72,0.09,-0.28,1 -1.35,-1.22,-0.17,1.46,-0.81,1.06,1.51,2.84,3.31,5.30,3.89,3.45,4.95,5.73,3.60,4.47,1.60,3.13,0.14,0.09,0.62,2 -0.81,1.21,2.72,3.13,4.82,4.67,5.70,3.74,4.18,2.43,1.95,0.91,1.06,1.72,2.83,0.31,-0.68,0.28,1.24,0.08,-0.55,0 -1.00,1.75,1.52,0.63,2.01,2.31,1.06,2.11,1.36,0.68,1.57,2.51,2.97,4.39,5.20,1.82,1.72,3.64,2.67,0.33,0.22,0 -0.69,1.02,0.95,-0.56,-0.90,-0.45,1.91,-0.32,2.24,3.21,2.77,5.08,3.27,6.20,4.35,3.62,4.13,3.43,0.52,2.75,0.13,2 --0.65,0.80,0.89,2.17,-0.03,2.21,4.19,3.58,3.18,4.13,4.74,2.17,2.70,1.98,1.73,0.12,-1.26,0.38,-2.03,2.10,-0.01,1 --0.38,1.36,-0.02,1.03,0.14,2.08,3.90,3.35,2.86,3.53,1.87,0.76,1.35,1.65,2.08,3.09,1.03,0.73,1.72,0.03,-1.66,0 --1.40,-0.84,0.09,-0.92,0.09,0.91,1.33,3.54,6.44,4.80,5.14,5.97,2.09,3.58,3.66,0.88,0.89,-0.89,-0.01,1.30,-1.39,1 --1.56,-1.00,-0.29,-0.20,-1.93,4.43,2.61,2.92,1.92,2.18,5.46,3.51,4.30,3.51,2.64,1.83,0.81,-0.31,0.16,0.06,1.00,2 --0.13,1.85,-0.50,1.19,-1.48,-0.03,1.79,1.89,2.18,2.27,2.63,5.63,5.05,2.86,2.73,0.53,0.16,1.03,1.50,-0.01,-0.79,2 -0.42,1.62,2.81,1.45,4.59,4.98,4.90,6.15,5.30,1.99,1.54,-0.32,1.69,0.73,-0.41,0.99,-0.80,0.78,0.45,0.30,-0.20,1 --1.16,2.83,0.10,0.69,0.53,2.35,3.53,3.05,5.88,3.87,4.85,3.11,2.56,4.01,1.79,0.83,-0.23,0.54,0.39,0.11,0.66,1 -1.68,-0.01,2.11,1.39,2.23,1.80,3.46,5.33,2.36,4.47,2.22,1.89,1.48,-0.84,2.37,0.77,0.27,-0.72,-0.54,-1.34,1.78,1 --2.04,0.31,0.75,-0.70,-0.32,2.04,2.04,2.86,3.91,3.07,4.23,4.93,2.25,2.55,3.82,3.09,3.21,-0.17,-0.06,-0.33,0.94,2 --0.55,-0.02,3.63,1.00,4.34,4.97,4.50,4.81,4.66,3.19,2.19,-0.10,-0.55,0.31,0.21,-1.24,-0.77,0.43,-0.74,-0.40,-1.74,0 --1.00,0.63,1.59,1.23,2.81,4.22,4.99,3.59,3.15,3.20,2.56,1.74,-0.24,0.14,1.29,0.54,-0.38,0.67,0.95,0.52,0.55,0 -0.83,1.78,2.61,3.86,3.74,4.83,5.10,5.70,2.33,2.42,3.69,2.13,0.79,0.09,-0.01,2.08,0.06,-0.57,-0.06,0.69,-0.18,1 --0.65,0.73,1.45,-0.65,0.75,2.34,1.95,3.08,1.97,1.88,1.74,2.50,2.53,0.84,0.69,2.11,4.03,0.32,2.33,1.25,-1.22,0 -1.05,0.42,0.70,1.11,0.01,1.18,1.65,0.40,-0.22,0.96,2.40,2.28,5.18,4.55,5.71,5.27,2.68,3.22,0.58,0.96,0.07,0 --0.46,-0.36,-0.94,0.41,-0.38,0.74,1.42,1.03,3.29,1.40,3.02,3.12,5.27,3.11,4.90,2.05,1.58,1.72,0.31,-1.03,-0.15,2 --0.81,0.83,-0.18,3.75,3.81,2.65,3.70,2.68,3.02,3.08,1.70,2.77,1.74,0.10,2.18,1.86,0.60,1.54,-0.41,-1.82,-0.69,0 --0.84,-0.10,1.04,-1.23,3.30,0.30,3.62,4.24,5.18,3.12,3.00,4.37,3.37,0.47,1.38,-0.02,1.76,-0.11,-0.82,-0.32,0.65,1 --0.17,-0.10,2.13,1.24,1.35,5.03,4.45,4.84,3.79,3.32,2.46,-0.26,0.68,-0.45,0.53,0.55,0.06,0.80,-0.88,0.54,-1.16,0 -1.18,-0.50,2.60,2.88,2.76,4.13,6.21,3.18,2.89,3.16,3.72,2.06,-0.92,0.99,0.53,1.24,-2.65,0.63,-0.00,1.80,0.07,1 --0.81,0.29,0.70,3.58,3.70,4.48,4.90,3.51,5.01,1.57,3.62,2.47,1.06,0.31,-0.82,2.06,-0.16,-1.24,0.51,0.41,-0.17,1 --0.50,-0.17,-1.99,-0.46,-0.91,-0.15,0.72,0.57,1.47,2.23,3.08,1.38,2.64,3.53,6.22,3.27,4.50,1.39,1.89,0.06,-2.00,2 --0.11,-0.06,0.50,3.43,2.39,6.10,5.62,4.82,5.64,3.66,0.80,1.32,-1.62,0.01,0.84,-0.60,0.62,-2.00,1.34,0.60,-0.07,1 --0.42,0.26,0.73,3.48,-1.59,0.17,2.27,1.87,2.74,3.14,4.36,4.43,4.86,2.43,4.48,0.79,0.31,0.08,-0.38,0.29,-0.54,2 -0.57,0.10,-1.36,-1.20,-0.48,0.89,1.94,2.29,5.24,4.91,6.15,5.54,4.90,2.52,1.83,1.13,-2.37,0.57,-2.85,0.31,-0.32,1 --0.63,0.06,2.32,2.17,2.06,3.07,3.71,2.70,2.47,3.62,4.92,3.43,2.51,2.82,2.20,1.10,1.55,1.67,-0.93,0.50,-0.16,1 --0.95,1.16,1.29,-0.82,-0.25,1.72,2.14,2.38,2.93,3.36,4.57,5.31,3.55,2.28,3.36,3.57,1.46,0.61,2.81,-1.27,-0.58,2 -1.22,-0.63,0.01,0.88,0.46,0.69,1.86,2.59,0.07,1.77,0.97,1.29,3.32,2.88,3.30,4.19,2.97,2.56,0.88,2.41,-1.93,0 --0.36,0.81,-0.01,-1.01,1.84,0.80,0.80,1.85,2.89,4.15,3.59,3.16,2.45,3.16,2.65,1.48,3.48,3.04,1.34,0.29,-0.10,2 --1.06,-1.01,-0.19,0.38,3.61,3.73,4.28,3.29,1.66,1.01,1.49,3.14,1.40,0.23,1.69,3.01,1.00,-0.06,0.42,0.54,0.14,0 -0.11,1.49,1.01,3.39,1.73,4.38,6.65,3.40,2.93,3.82,1.75,2.48,2.35,-0.11,0.18,1.80,0.25,-0.08,-0.36,-1.88,-1.69,0 --1.99,1.14,1.68,1.76,3.36,3.87,4.70,6.51,3.43,3.88,3.35,0.89,1.31,0.06,2.55,1.41,1.51,-1.05,-1.55,-0.03,-0.68,1 --1.30,1.09,0.28,-0.26,0.30,0.68,3.15,2.01,1.43,2.44,3.30,4.34,3.51,3.74,3.95,3.16,2.38,0.23,-1.29,1.83,1.72,2 --0.25,0.77,1.42,2.79,3.89,5.02,5.13,3.05,3.17,3.12,4.17,1.51,1.50,0.56,0.46,1.81,0.43,0.87,-0.54,2.00,-0.06,1 -0.48,-0.72,-1.34,1.10,-0.40,-0.49,2.35,0.88,3.41,3.35,4.33,2.73,2.00,5.61,2.44,2.80,-0.02,2.85,1.09,0.55,0.24,2 -0.26,2.32,-0.76,1.67,1.62,1.91,2.80,3.04,5.88,5.16,4.20,2.93,3.77,2.13,0.12,0.25,-1.56,0.65,0.82,0.18,0.84,1 -0.12,1.17,-0.25,2.67,2.57,2.09,5.28,3.75,4.94,3.94,3.66,2.10,2.51,-0.12,1.43,1.22,1.36,0.22,-1.42,0.43,0.37,1 -1.26,0.86,0.79,-0.99,0.69,-0.62,1.85,0.70,3.19,2.95,5.87,3.40,4.54,2.50,4.39,2.19,-0.41,1.90,-0.81,-0.77,-0.60,2 -0.33,1.76,2.64,1.24,-0.82,0.24,-0.91,-0.47,0.63,1.40,2.62,1.06,4.15,5.21,5.62,3.18,3.55,4.32,1.25,0.07,0.37,2 --0.48,-0.19,-0.45,1.54,5.00,6.51,6.92,4.27,4.71,3.60,4.44,2.96,0.00,0.07,0.89,0.95,0.71,0.02,-1.14,0.88,-1.23,1 -0.24,2.57,1.74,0.62,2.20,2.80,2.61,4.74,4.98,4.34,3.95,4.92,1.83,-0.37,2.02,-0.03,1.06,-0.58,-0.48,-2.85,-1.28,1 --0.08,0.61,-0.57,0.05,0.61,1.25,2.20,2.24,2.02,3.16,5.87,2.99,3.07,4.13,3.54,4.18,1.40,0.63,-0.89,2.72,0.48,2 -0.23,-0.61,-0.94,0.04,0.75,0.74,2.59,4.63,2.39,3.24,3.90,3.31,4.71,4.36,3.48,2.23,3.29,2.54,0.68,-0.17,-1.34,2 -0.76,0.38,1.59,0.53,1.25,-0.31,0.19,2.62,1.54,3.07,4.18,4.04,5.16,2.80,5.79,2.70,3.83,2.38,3.14,0.68,0.05,2 --1.01,1.69,0.37,-1.33,0.34,1.84,3.66,4.50,3.50,3.85,4.33,5.42,3.75,2.91,0.71,0.80,-0.84,-1.16,-1.03,0.78,-0.87,1 --0.94,-0.59,2.09,-0.23,0.76,2.30,1.21,1.74,5.42,3.67,4.55,5.39,5.75,3.99,1.61,3.09,1.53,0.53,0.01,1.45,0.03,2 -0.00,-0.46,-1.14,-0.06,0.97,-0.36,1.30,1.12,0.96,5.66,5.40,5.07,4.74,4.16,2.60,3.22,1.43,0.99,1.67,1.39,-0.59,2 --0.86,0.66,3.17,0.14,0.36,0.33,0.58,1.88,1.89,0.89,1.29,2.18,3.56,2.85,5.01,2.56,3.36,2.94,-0.16,0.29,1.64,0 -0.31,-0.90,0.24,1.86,2.62,5.69,5.05,4.53,3.21,2.52,4.14,0.24,1.36,-0.18,1.10,-0.14,-2.51,0.09,-0.33,2.08,0.42,1 -0.91,-0.46,2.61,3.01,3.42,2.33,3.57,2.66,2.99,0.97,2.11,2.26,2.14,2.26,2.00,1.43,-1.05,1.25,0.89,0.11,1.29,0 -1.90,-1.87,-0.39,-0.20,-0.22,0.27,1.90,2.11,4.09,5.96,7.14,4.03,2.00,3.38,2.32,1.39,-0.22,-1.03,1.39,2.24,1.49,2 -1.26,0.08,-0.92,1.00,-0.26,0.28,0.72,0.61,2.14,4.11,3.49,4.49,5.81,6.19,4.98,2.75,2.61,1.21,0.20,0.90,0.85,2 -1.42,0.46,0.14,-0.97,-1.17,0.60,-0.31,2.87,0.14,2.95,3.86,3.57,3.13,3.34,3.04,3.90,2.50,1.72,-0.14,-0.03,-0.42,2 -0.89,0.32,1.33,2.06,2.59,2.54,2.53,4.19,2.23,2.38,0.52,0.85,0.63,1.25,3.18,2.52,1.80,-0.65,-0.24,-0.40,-1.40,0 --0.12,-0.08,0.48,1.92,1.58,-0.46,0.60,1.45,1.25,2.43,4.26,3.09,3.53,2.90,4.52,2.76,4.01,1.37,2.01,2.01,2.17,2 -0.14,-0.23,-1.44,1.11,-0.60,1.25,-2.30,1.72,0.63,2.72,5.99,4.31,1.96,5.01,3.66,1.99,4.07,2.97,-0.57,-0.09,-0.21,2 -0.52,0.71,1.62,1.63,0.03,1.13,3.34,3.16,2.87,4.67,3.30,4.65,2.82,0.42,-0.54,0.00,-0.66,0.57,0.68,0.35,1.16,1 --2.50,1.39,-2.54,-0.45,-0.49,0.08,-0.18,1.30,1.80,3.00,5.48,5.61,3.52,3.68,1.84,2.07,0.50,0.09,1.36,-0.81,0.30,2 -0.76,0.05,0.08,0.68,1.31,2.33,0.26,2.11,-0.56,1.36,1.37,2.32,2.53,4.18,5.03,4.56,2.67,1.18,2.42,1.88,-1.86,0 -0.00,-0.84,1.32,-1.83,1.86,-0.49,0.89,4.75,2.87,3.92,4.65,3.68,3.28,3.14,1.77,2.94,1.23,0.26,0.40,0.97,1.49,2 -0.11,1.81,1.63,0.48,0.38,2.38,1.99,4.01,4.85,5.27,6.16,3.25,2.61,3.38,0.25,0.49,-0.02,-0.76,-0.73,1.78,0.29,1 -0.09,0.56,-1.27,-0.09,1.31,2.23,-0.63,3.04,0.23,1.82,1.93,1.58,4.69,5.21,5.85,3.14,3.34,3.34,2.38,0.54,1.02,2 -1.01,1.03,-0.23,3.20,3.14,4.21,5.64,4.05,4.49,4.41,2.52,0.76,0.74,0.53,0.14,0.93,1.02,1.61,-1.54,-0.14,0.26,1 -1.42,-0.30,0.10,-0.58,1.01,1.13,2.13,2.28,3.05,3.67,5.04,2.44,3.13,3.21,3.85,4.22,1.12,1.25,0.06,-0.73,1.25,2 -0.72,0.14,-1.20,1.74,3.38,3.20,3.20,4.17,4.48,5.65,3.59,4.44,2.92,1.77,2.11,0.88,-0.24,0.16,-0.53,-1.52,-0.42,1 --0.38,0.74,-0.43,2.02,1.67,2.60,3.20,4.07,5.90,4.72,5.49,4.66,4.53,3.31,2.05,-0.09,0.19,-1.49,-0.01,-2.26,-0.01,1 -0.26,2.58,-0.73,3.47,2.34,2.31,3.18,-0.02,4.08,2.68,5.66,1.30,1.33,2.21,0.88,0.75,0.69,-1.23,-0.28,1.05,-2.58,1 --0.45,1.00,0.91,1.15,0.38,2.93,2.66,2.68,4.55,2.34,2.87,2.13,2.35,1.57,0.71,0.96,0.25,0.94,0.58,0.78,-0.09,1 -0.45,-0.71,2.02,-0.57,1.54,1.94,0.86,2.05,2.85,4.14,5.42,5.57,4.13,4.38,3.11,0.79,-1.43,-0.80,-0.99,1.36,0.21,2 --0.15,-0.29,2.27,0.59,1.59,-0.68,-0.70,0.45,0.50,1.19,4.69,3.61,3.39,4.92,5.48,3.57,4.23,2.34,1.69,2.21,-0.94,2 --1.26,0.07,-0.88,0.81,-0.02,0.20,1.14,0.66,0.87,2.28,1.61,2.48,4.13,5.50,4.79,5.45,2.21,4.05,1.60,1.49,1.42,0 --1.49,-1.89,1.12,0.57,-0.03,2.06,2.24,2.72,1.87,3.89,5.21,3.89,5.75,2.41,3.09,1.18,-0.48,2.00,1.06,-0.20,0.12,2 -1.03,0.60,-1.11,-0.50,-1.63,0.35,-0.51,-0.71,1.88,1.03,1.19,4.68,4.39,4.06,3.45,3.28,3.22,4.43,2.12,-0.21,-0.31,2 --0.27,-0.33,-1.68,-1.32,-2.03,-0.63,-1.11,1.25,1.63,4.53,2.32,3.40,2.86,2.46,3.68,5.05,0.86,2.11,0.52,1.57,0.66,2 -0.98,0.36,1.04,0.25,1.69,3.42,5.22,2.79,2.26,1.15,1.43,2.35,2.85,3.04,2.63,3.28,2.27,1.57,0.20,2.76,0.03,0 --0.37,0.21,0.57,1.67,3.06,2.32,4.36,5.02,4.37,5.19,4.09,3.62,1.10,2.92,1.08,0.75,-1.43,0.87,0.85,-0.30,0.56,1 --0.50,-1.61,-0.82,-0.61,-0.62,0.03,0.34,0.80,-0.68,1.66,3.98,3.63,4.42,5.99,4.58,4.70,3.97,1.27,1.39,0.52,1.07,2 --0.27,-0.77,0.94,1.40,0.63,2.49,2.45,2.56,2.05,1.79,3.08,3.52,3.32,2.57,2.82,4.17,2.38,0.91,1.86,-1.00,-0.67,0 --1.80,0.60,-0.77,0.34,0.61,1.51,1.52,-0.46,1.18,2.12,2.12,3.91,4.61,4.97,5.74,3.45,1.64,2.85,2.90,1.17,-0.78,2 --0.03,1.66,1.16,3.00,5.08,5.74,4.66,5.77,3.81,2.86,1.84,0.33,1.71,0.83,-2.12,0.27,1.77,0.43,-0.77,-0.34,-0.72,1 --1.05,0.91,1.67,-0.75,0.56,-0.50,0.45,-0.33,0.63,1.09,-0.76,2.01,2.24,5.11,3.78,4.83,2.47,1.71,0.80,2.19,0.90,0 --0.80,0.58,0.16,1.84,0.40,0.35,0.79,0.35,2.98,2.73,2.66,5.98,3.60,4.79,4.29,1.54,0.83,1.93,2.28,0.98,-0.26,2 --0.84,-0.18,0.49,1.55,2.88,1.27,3.01,4.00,2.32,3.64,0.61,1.41,2.34,0.53,1.36,0.58,0.95,0.79,0.24,0.70,2.03,0 -0.67,1.23,1.98,3.56,2.49,2.72,4.66,4.51,2.05,1.91,1.55,1.85,1.10,-0.31,1.38,0.91,1.89,1.21,0.69,0.54,-1.29,0 -0.02,-0.65,2.48,1.23,2.93,4.03,4.58,3.65,2.98,3.44,2.92,0.86,0.12,0.59,1.94,3.13,0.50,-0.03,-0.54,1.36,0.12,0 --0.51,1.21,-1.09,0.83,0.36,0.97,1.58,3.24,4.22,3.18,5.67,5.08,2.95,3.58,1.56,2.15,0.48,0.07,-1.10,-0.92,-0.56,2 -0.14,0.73,2.70,0.06,0.77,2.58,1.91,3.53,2.52,1.17,2.40,1.17,2.66,0.98,3.04,1.76,0.57,1.67,1.01,1.56,-1.08,0 -0.68,0.25,0.41,-0.26,0.67,1.73,-0.65,1.07,1.85,2.97,5.70,5.27,3.06,4.99,5.46,3.11,3.31,3.04,2.46,0.72,-0.49,2 --0.15,-0.77,-0.44,-2.43,2.11,0.66,1.58,1.81,1.19,5.52,3.61,6.03,4.03,3.20,2.45,2.94,1.38,1.16,-1.06,0.91,-1.46,2 -0.33,1.10,0.50,1.41,0.27,-0.68,1.64,1.51,3.17,6.79,7.24,5.34,6.37,2.87,1.81,0.95,0.26,-0.44,-2.04,-1.26,-0.20,2 -0.34,1.75,0.39,1.62,3.96,4.56,6.52,6.29,4.83,3.82,3.74,0.68,-0.44,1.38,0.64,0.81,1.34,1.93,0.03,-0.03,0.44,1 -0.29,0.87,-0.07,-1.40,-1.46,1.21,-0.95,1.53,1.68,1.47,2.96,2.99,3.70,3.76,5.51,4.13,4.10,2.01,2.05,0.64,-0.29,2 -0.10,0.71,0.14,2.42,1.13,2.62,1.11,1.24,1.63,0.07,2.23,1.79,1.60,2.40,3.27,1.80,3.10,2.01,1.02,-0.29,-1.43,0 --0.69,0.27,0.35,-0.31,-0.87,0.24,0.95,3.74,3.27,4.34,6.63,4.78,3.96,3.77,2.47,0.31,2.28,-1.11,1.58,-2.68,0.24,2 -0.72,0.05,0.24,1.20,-0.87,-0.60,2.67,3.32,2.72,3.90,6.46,2.05,4.38,2.35,1.68,4.52,0.91,0.56,2.23,0.88,-2.37,2 -0.67,0.25,0.85,0.56,3.36,2.35,1.97,2.10,1.52,1.49,1.86,1.79,1.89,3.28,3.46,2.61,1.82,1.36,0.11,2.06,-0.56,0 -1.36,1.11,-1.65,-0.73,0.03,-0.78,1.24,0.69,-0.59,2.37,2.13,1.68,5.05,4.88,2.66,3.33,1.32,2.84,0.81,0.52,0.45,2 --0.55,0.07,-0.35,-0.48,1.05,-0.45,-0.19,-0.82,1.26,0.36,1.24,1.86,5.27,2.92,7.16,5.87,2.09,1.05,2.05,1.89,0.72,0 -0.22,2.10,0.64,2.06,2.77,4.70,6.49,4.10,4.95,2.53,2.72,1.58,1.36,0.69,0.31,0.96,0.58,-0.36,0.12,0.34,-0.92,1 -0.51,0.69,0.86,1.95,0.68,5.36,5.21,5.53,7.90,2.24,3.74,0.33,1.17,0.68,0.98,-1.86,-0.50,0.04,-1.29,-0.57,0.77,1 --0.34,-0.40,-0.29,2.22,2.52,6.25,3.17,3.77,3.01,4.42,5.12,2.88,2.45,-1.53,1.53,2.13,0.63,-0.32,0.48,0.92,-0.39,1 --0.07,0.83,0.99,2.06,2.51,2.21,2.48,4.33,0.51,1.71,0.88,3.12,-0.24,2.39,3.07,2.79,1.02,2.00,-0.32,1.72,0.06,0 --0.17,-0.24,-0.81,-1.56,0.83,1.64,0.80,-1.27,-1.08,1.63,0.68,2.68,3.10,4.52,5.80,4.07,2.57,1.97,0.99,0.19,-0.12,2 -0.74,0.17,0.39,0.38,0.41,2.15,4.40,4.27,4.65,7.49,4.19,2.56,3.36,2.11,1.23,0.30,1.07,-0.23,1.70,0.14,-0.30,1 --0.43,-0.50,0.43,3.24,3.64,4.18,5.77,4.02,3.39,3.52,1.81,3.05,2.02,-0.22,-0.61,-0.07,-0.45,0.45,0.02,-0.14,-1.22,1 -0.25,-0.44,1.22,1.48,-1.00,1.12,1.52,1.41,5.25,2.40,5.70,4.53,2.52,2.53,3.65,-0.79,1.35,1.26,1.08,0.41,-0.79,2 -0.42,1.48,2.35,2.63,2.66,3.97,5.05,3.81,4.87,-0.39,1.59,1.19,0.36,0.11,0.12,-1.29,-0.62,1.06,-1.14,-0.61,-0.71,1 -1.32,-1.22,-0.62,-0.46,1.50,-0.89,-0.03,-0.28,-0.09,2.06,2.84,2.76,4.65,4.43,6.73,7.86,4.96,2.40,3.17,3.35,1.41,0 -0.02,-0.13,-0.23,1.50,1.91,3.36,6.34,4.16,3.04,3.24,1.03,1.86,-0.26,0.86,0.32,-0.80,1.59,1.72,-0.66,0.23,-0.47,0 --0.50,-0.54,-0.07,0.30,0.44,1.40,1.90,4.16,3.43,2.82,5.77,5.56,5.03,3.40,0.44,0.95,-1.18,-0.97,0.32,0.30,-0.50,1 -0.91,0.13,-0.01,-0.66,-0.46,0.98,1.74,2.37,3.56,5.37,4.91,5.05,4.23,0.58,3.69,-0.34,-0.74,0.65,0.53,1.13,-0.16,2 -0.04,1.83,3.30,1.13,2.97,3.69,6.38,5.99,3.23,3.89,4.34,1.63,3.26,0.12,2.50,-0.06,2.31,0.10,-0.22,-0.24,1.42,1 -0.28,0.12,-0.37,0.14,2.20,1.04,2.18,0.86,3.43,-0.67,1.75,3.38,2.18,3.30,3.74,5.84,2.45,1.83,0.93,0.37,-1.27,0 -0.12,1.15,1.84,0.86,0.65,0.59,-0.66,0.70,1.69,3.16,3.32,3.86,4.44,3.94,4.55,2.52,1.83,1.63,0.75,-0.70,-0.95,2 -0.39,0.61,-0.08,-0.37,1.09,-0.81,0.56,-0.10,3.50,4.20,2.40,4.86,4.85,4.64,4.25,3.49,1.99,3.30,1.61,0.56,1.80,2 -0.66,0.08,-0.80,2.80,4.80,5.23,5.68,2.99,2.41,1.38,2.49,1.58,0.73,1.71,2.61,-0.71,2.20,-1.24,-1.45,-0.04,0.60,0 --0.51,2.58,1.41,1.63,3.92,5.27,5.60,4.61,4.38,2.37,3.36,1.46,2.12,0.01,0.30,0.94,-3.56,-0.84,2.04,-0.54,1.46,1 -1.33,1.51,0.14,-1.23,-1.26,0.90,-0.32,-2.15,0.71,0.93,-0.17,2.66,3.64,4.84,6.12,3.97,1.80,3.71,2.58,0.39,0.65,2 -1.29,0.13,0.97,2.67,2.62,4.04,4.18,4.59,3.69,2.86,3.48,2.03,1.93,2.62,1.23,1.89,-0.21,1.55,-0.60,1.37,0.46,1 -1.45,0.25,-0.83,0.48,0.76,3.89,2.23,2.07,2.26,2.96,1.62,2.73,1.30,3.37,4.60,3.78,3.52,0.89,0.69,-0.75,0.41,0 -0.60,0.36,-1.35,-0.00,-1.48,0.68,0.21,1.12,2.62,2.91,4.02,3.77,2.94,3.82,3.63,1.74,2.16,0.01,-0.53,1.38,-0.85,2 --0.20,1.36,1.81,1.12,2.91,4.44,5.78,3.88,2.21,4.47,1.36,2.86,1.54,1.20,0.54,-1.94,0.25,-0.44,1.34,-0.87,-0.57,1 -1.44,0.36,-0.61,0.83,-0.62,1.94,3.33,2.45,3.67,4.36,4.00,5.54,1.18,3.34,2.35,2.67,1.92,1.49,-1.25,0.84,-0.19,2 -0.24,0.87,0.47,0.69,1.32,0.40,1.44,1.44,-0.09,2.29,2.40,4.50,2.10,1.72,3.39,2.24,3.00,2.80,2.28,2.16,-1.16,0 -0.08,-0.12,1.60,3.66,2.96,4.54,4.49,2.45,3.95,2.33,2.84,2.51,1.18,-0.13,0.55,-0.47,0.82,0.44,-0.65,2.93,-0.24,0 -1.24,-0.29,-1.43,2.34,0.73,-0.10,4.00,2.22,3.07,2.65,4.77,5.28,2.67,2.31,0.42,0.98,-0.60,1.23,-0.54,-0.84,0.72,1 -1.75,1.07,1.69,3.47,3.49,2.83,4.60,5.45,6.38,0.77,1.16,1.59,1.28,2.20,4.48,1.49,0.47,2.21,-0.51,0.09,-0.24,0 -1.45,1.88,-0.30,1.48,3.20,-0.43,3.06,0.43,1.16,1.43,3.30,0.08,3.85,2.96,5.10,4.37,3.63,0.94,1.35,1.44,1.40,0 --1.67,-2.47,0.59,1.08,-0.49,1.11,2.28,2.30,2.62,2.92,6.99,3.17,4.34,1.90,4.41,3.16,0.32,2.33,0.38,-0.33,0.80,2 --0.33,-1.03,0.86,0.15,-1.39,0.15,1.25,1.25,1.34,3.15,4.56,4.80,4.93,3.76,3.15,2.43,0.89,2.53,-0.17,0.41,1.75,2 --0.77,-0.57,1.29,0.17,1.76,2.36,3.56,5.45,5.00,3.34,2.46,2.00,2.31,2.40,1.64,0.84,-0.25,-0.02,-0.27,-0.50,0.28,1 -1.23,1.13,0.65,0.73,1.13,2.29,2.07,4.89,1.48,3.55,1.63,1.20,1.23,4.15,0.72,2.73,2.92,0.88,0.31,2.07,0.42,0 --0.30,1.11,1.71,0.34,-0.53,0.77,3.27,2.94,2.12,2.11,4.81,4.03,4.34,2.47,4.44,4.29,1.60,1.68,0.60,1.22,1.68,2 -1.08,0.26,-0.95,-0.75,-1.06,5.58,2.40,4.76,3.27,6.07,5.20,3.37,3.18,2.62,0.04,0.54,0.97,0.01,-0.44,-0.46,1.34,1 -0.11,0.34,0.35,-0.51,0.50,1.65,0.36,1.40,2.94,3.24,4.63,5.78,4.18,3.98,1.77,4.34,1.65,1.21,-0.47,-0.12,0.05,2 --1.86,-0.42,0.72,3.90,2.87,2.16,5.70,3.13,3.60,3.70,2.62,1.22,-0.48,1.27,-0.35,1.73,1.59,0.09,-0.04,0.27,0.39,1 --2.20,-1.42,-1.36,0.69,0.67,1.22,1.12,-0.26,0.74,2.98,2.47,1.77,3.70,2.16,4.98,2.90,1.24,1.25,0.47,-0.77,-0.09,2 -1.04,2.57,1.00,1.65,2.77,3.15,6.23,5.05,4.29,4.09,3.69,3.25,1.67,1.07,1.46,1.24,-0.59,-0.10,1.81,0.76,0.70,1 -0.83,-0.17,-0.02,-0.11,0.65,1.39,0.04,-0.18,0.14,1.55,3.15,2.64,3.22,3.00,6.23,2.88,4.72,1.85,1.67,2.02,0.79,2 --1.01,1.68,0.37,5.19,3.56,3.37,5.58,5.70,5.03,4.44,2.55,3.29,-1.31,-0.52,-0.29,1.67,0.96,-0.09,-0.64,-1.44,2.47,0 -1.06,-0.92,0.81,0.78,-2.55,-0.56,0.72,-1.08,0.88,2.20,2.99,5.12,3.50,5.40,4.30,3.52,4.61,4.46,2.90,2.28,0.87,2 -0.75,1.19,-0.17,0.54,0.72,-0.27,2.71,2.63,1.72,1.89,3.95,5.94,3.98,2.85,1.94,1.46,0.36,-0.16,0.13,1.73,0.34,2 -0.86,-0.81,0.80,0.74,1.60,2.34,0.50,2.05,2.14,2.25,3.45,2.93,3.28,4.82,3.93,3.61,1.91,1.15,0.23,0.70,-1.13,2 -0.91,-1.74,-0.01,-0.03,-0.84,0.61,1.98,2.80,4.38,5.08,6.14,5.55,2.53,2.50,2.32,0.93,2.90,0.49,-0.46,-0.51,-0.37,1 --0.89,2.01,-0.28,-1.34,-0.44,-0.24,2.46,0.45,-0.18,1.20,0.39,4.30,4.77,5.64,7.19,5.28,4.88,3.10,2.87,0.20,0.75,2 -1.78,2.86,-0.78,-1.09,0.39,-0.23,2.61,1.35,4.22,4.26,7.28,3.37,3.75,2.62,0.24,1.35,0.36,2.39,-0.33,2.49,0.35,2 -1.63,1.75,0.04,3.15,4.12,3.37,4.77,3.23,5.00,2.20,3.41,3.23,0.84,-0.45,1.47,1.43,0.97,0.50,-1.41,-0.32,-0.91,1 -1.43,-0.09,0.24,0.18,2.24,0.45,-0.20,1.23,-0.41,2.40,2.37,3.20,4.27,2.82,6.34,5.05,5.24,1.74,2.93,0.17,-0.80,0 -0.01,0.96,0.55,0.73,2.50,3.87,3.40,4.18,2.97,1.45,1.36,1.33,1.27,1.16,4.05,-0.11,0.05,-0.06,1.16,-0.02,0.43,0 --0.75,0.20,0.51,-0.24,-0.19,-0.58,3.27,2.58,2.09,4.26,6.51,5.53,3.35,1.48,4.31,0.54,-1.13,0.36,1.03,1.08,0.01,2 --0.76,0.90,0.84,3.95,1.96,0.80,2.90,2.07,1.28,0.50,2.96,0.33,2.88,2.28,1.53,1.16,3.63,-0.49,1.80,1.16,-0.16,0 --0.55,-1.01,1.39,1.53,0.42,1.74,1.02,1.20,0.47,1.42,1.23,3.15,2.54,3.25,4.02,4.10,3.37,2.72,2.54,0.31,1.07,0 -0.49,0.66,0.58,1.25,-0.17,2.46,2.62,2.98,3.39,5.22,6.31,4.02,2.17,2.46,3.46,0.73,1.98,-0.54,-0.38,-0.33,-0.41,1 -0.34,0.53,-0.65,2.01,0.23,-0.61,-0.07,0.66,1.72,2.93,4.02,3.96,4.68,3.59,3.09,2.54,0.45,-0.52,0.31,0.09,-1.25,2 -1.40,1.59,-1.23,0.34,1.25,1.75,1.66,1.24,0.91,0.45,2.95,2.42,4.01,2.76,5.57,3.20,2.22,1.45,0.29,-0.15,-1.26,0 -0.09,2.86,0.92,2.10,0.59,2.20,1.15,2.05,4.06,3.91,6.61,4.65,2.26,1.90,1.25,-0.60,-0.21,0.47,-0.36,1.24,-1.24,1 -0.08,-0.85,-0.16,0.72,1.11,2.66,2.16,5.62,3.69,5.50,5.93,4.82,3.27,2.52,2.25,0.82,0.46,-0.24,-0.45,0.88,0.03,1 -0.18,0.88,2.58,0.67,0.92,2.60,2.28,2.68,1.44,1.02,2.65,1.96,1.77,2.09,5.01,4.41,3.43,0.92,1.48,1.23,-0.56,0 -0.49,0.62,-1.50,2.11,0.18,2.38,2.65,3.99,3.03,3.92,4.81,4.25,4.13,2.37,1.76,0.60,-0.30,1.65,-1.37,-0.16,-1.97,1 --1.26,0.95,-1.43,0.26,0.50,1.20,1.05,4.02,3.59,4.99,6.73,4.97,4.12,3.49,4.66,1.43,0.50,-0.14,0.46,-0.26,2.21,1 --2.31,-1.15,-0.86,1.40,-0.49,0.53,0.74,2.77,2.09,3.53,5.29,1.95,3.69,2.63,3.73,2.68,1.54,1.03,-0.22,-2.08,-0.38,2 -0.55,-0.50,-1.38,0.68,1.53,1.03,1.52,1.61,-0.30,3.34,3.66,2.97,3.97,3.40,5.18,3.55,2.58,2.07,1.92,0.69,-0.74,2 --0.94,2.52,-0.46,1.73,3.58,0.86,1.17,3.08,2.41,0.98,1.09,3.27,1.69,1.96,3.25,2.10,1.98,1.86,-0.41,-0.11,-0.27,0 -0.85,-0.66,-0.60,-0.08,0.56,-1.09,-0.91,0.39,2.86,-0.53,3.29,5.50,3.42,4.38,5.02,5.64,3.08,3.32,2.86,1.35,-0.66,2 --0.45,0.60,1.21,-1.07,1.73,0.50,2.88,3.55,1.40,0.35,0.54,2.14,1.69,2.35,3.52,3.38,3.10,1.75,1.47,1.89,0.75,0 -1.55,-0.00,2.34,2.70,0.57,4.43,4.46,1.76,1.76,2.22,1.00,1.64,2.16,0.57,1.37,1.66,4.06,2.39,2.25,-0.16,1.16,0 -1.84,1.11,-0.14,-0.21,4.18,3.31,2.03,0.48,1.44,-0.21,2.27,1.98,2.63,2.28,2.97,2.22,2.70,0.84,1.21,1.09,0.03,0 -0.44,0.24,0.46,3.07,0.12,0.93,0.40,0.53,3.54,0.77,1.75,1.99,4.89,4.93,4.55,4.57,2.72,2.50,2.53,-0.28,-1.17,0 --0.86,-0.62,0.65,-0.29,1.01,0.31,-0.14,1.85,1.69,4.27,3.86,3.19,5.29,4.85,2.62,2.38,2.26,-0.24,0.15,0.37,-0.15,2 -1.23,0.16,2.17,5.12,4.67,4.60,2.99,3.72,2.80,3.76,1.24,-0.09,3.34,0.04,2.24,1.08,1.15,1.97,-0.09,1.43,0.04,0 --1.58,-1.45,-0.60,0.35,2.00,-1.06,1.88,1.50,0.17,1.54,2.59,2.12,3.54,5.19,3.67,2.93,3.38,1.92,1.55,0.79,-0.63,2 -0.12,0.84,1.01,1.88,2.85,3.75,5.68,5.99,3.92,4.50,1.94,0.99,-0.18,1.59,1.76,0.64,-0.65,1.34,-0.39,-0.11,2.63,1 --0.54,-1.02,2.28,0.60,2.38,3.90,1.71,3.65,1.27,2.91,1.03,2.24,4.28,2.12,4.78,2.59,2.41,2.10,0.69,1.45,1.32,0 --1.18,-0.26,2.03,1.81,2.64,4.19,3.27,3.82,1.93,1.09,1.38,2.54,1.65,2.11,1.51,3.33,1.64,2.38,0.32,-0.65,-1.07,0 -0.12,1.58,0.62,0.39,0.31,2.88,2.66,4.93,2.73,2.82,5.29,1.90,1.97,1.44,0.37,-0.10,0.49,1.26,-0.51,0.10,0.18,1 --1.04,-0.37,2.04,0.91,2.37,4.70,5.28,4.19,3.79,5.11,3.84,2.02,0.68,0.57,0.88,-0.76,-0.22,-0.76,0.29,0.03,0.26,1 --0.26,1.67,-0.25,0.78,0.51,0.45,0.59,-0.20,0.71,0.93,3.34,2.58,1.83,2.38,3.46,1.94,2.41,2.75,2.41,0.94,1.42,0 -0.15,-0.96,-0.10,0.08,1.91,1.57,2.85,2.57,-2.05,3.04,1.72,2.15,2.38,2.31,2.94,-0.03,0.13,2.26,-0.10,1.64,0.46,0 -0.88,1.16,0.69,0.34,-0.15,-0.33,2.17,-2.16,1.43,2.92,3.08,4.20,4.29,4.81,6.69,3.43,3.59,3.46,2.34,0.05,0.03,2 --1.86,0.66,1.70,0.04,2.29,3.40,2.36,1.85,1.18,-0.04,2.44,2.37,2.77,3.42,5.88,1.85,1.97,2.26,0.32,1.13,-0.51,0 --1.15,-0.54,-0.19,-1.26,-0.50,-0.37,0.26,1.23,3.37,-0.36,5.02,2.74,4.20,5.80,2.57,4.72,2.50,1.96,2.47,0.78,-0.49,2 --0.44,2.37,1.24,1.00,0.22,1.19,2.93,4.23,4.10,3.93,4.04,3.53,1.72,3.41,1.39,0.78,-0.53,-0.33,1.97,0.69,0.30,1 -1.00,2.44,1.27,1.84,2.67,3.65,5.14,4.16,2.75,2.38,3.22,1.62,0.67,1.65,0.49,0.44,0.62,1.22,-0.12,0.03,-0.41,0 --0.58,0.34,0.29,1.61,2.74,3.29,4.05,4.22,3.22,5.27,5.09,4.23,1.97,1.95,0.15,0.66,1.54,-0.67,-1.02,-0.57,-1.96,1 -0.88,0.20,-0.33,0.14,1.93,1.76,1.37,1.66,2.58,2.13,4.14,2.83,5.76,4.79,3.69,2.70,3.82,3.47,0.30,1.23,-0.19,2 --0.03,0.78,1.90,2.88,4.78,3.40,4.11,5.25,3.95,3.96,3.98,3.86,-0.42,-1.00,2.55,2.98,1.49,0.98,0.72,2.03,-0.63,1 -2.17,1.10,0.63,0.91,2.56,2.38,5.00,3.29,2.39,2.59,5.32,1.78,3.21,2.05,1.72,-1.38,1.44,-0.07,0.72,1.06,-1.17,0 --0.72,-1.21,-2.31,1.70,-1.68,1.81,1.38,1.16,0.83,2.13,2.55,2.68,2.26,5.27,4.52,5.62,1.75,0.90,1.72,0.05,0.03,0 --0.21,-2.78,-0.57,-0.17,2.30,2.74,4.69,4.00,3.42,5.19,4.25,1.39,2.74,1.01,1.10,-0.15,-0.15,0.10,1.09,1.26,0.38,1 -1.01,-0.33,-0.99,-1.21,0.66,1.91,0.56,2.42,4.69,4.81,7.70,5.99,3.66,4.05,3.34,1.54,0.34,-0.68,1.41,-0.83,-1.52,1 -0.82,0.02,1.39,3.43,4.13,2.87,5.28,4.34,4.98,4.70,1.46,2.15,0.59,-0.98,2.22,0.05,1.09,-4.08,0.34,-0.81,-0.86,0 --1.07,1.54,1.60,1.05,1.26,1.40,2.39,1.94,1.41,2.48,1.01,4.88,3.49,1.62,2.33,0.92,2.35,1.35,2.16,-1.37,-0.22,0 -2.42,1.84,0.56,1.36,-0.55,0.24,-0.22,-0.18,0.43,1.07,2.21,4.98,3.63,5.28,4.60,3.34,3.24,2.92,0.85,0.36,1.17,2 --0.26,-0.17,0.53,0.26,0.94,2.29,1.58,0.76,3.15,1.06,1.60,3.53,1.48,4.81,3.74,0.67,2.69,0.90,0.49,0.72,-0.88,0 --0.80,-1.73,1.19,0.63,2.05,3.92,4.59,5.19,1.96,5.86,4.04,2.61,2.50,0.93,0.67,1.13,-1.17,0.39,0.01,0.68,-0.81,1 --1.78,-1.07,1.25,0.75,0.37,0.53,1.01,-0.59,2.76,1.03,2.83,5.11,4.44,5.37,4.18,2.94,4.86,0.83,0.50,0.73,1.31,2 -0.40,1.15,3.60,3.26,4.15,4.45,6.13,3.96,5.08,1.74,1.21,-0.78,0.71,1.93,1.65,-0.02,0.13,1.93,3.17,1.33,0.06,1 -0.03,2.35,2.97,0.81,1.55,2.79,2.28,3.80,5.81,5.91,3.84,4.29,2.54,1.02,1.52,1.64,-0.73,1.21,0.84,0.53,1.59,1 -0.93,2.08,0.61,-0.27,0.81,0.15,-1.25,-0.25,0.56,1.48,2.39,2.54,4.36,5.54,5.37,6.22,5.48,2.78,2.84,-1.26,1.28,2 -0.63,-0.90,-0.83,1.93,-0.96,-1.09,1.09,0.75,2.54,3.11,0.23,2.93,4.50,3.67,4.30,3.84,2.21,2.45,1.54,0.62,-0.64,0 -0.07,1.21,2.21,2.52,3.02,4.14,6.94,5.03,2.11,2.99,3.11,-0.35,0.19,-0.61,1.01,0.50,0.43,0.77,1.09,-1.47,1.23,1 --0.20,0.71,1.77,1.21,0.59,0.92,1.18,3.09,4.42,3.43,5.78,5.37,4.46,3.06,1.84,0.48,-0.72,-0.12,-0.49,1.78,-1.30,2 --0.37,0.34,1.08,2.49,2.64,2.46,6.29,5.39,4.02,2.93,2.20,2.73,1.47,1.08,0.61,0.39,-1.11,-0.21,-0.13,2.25,-0.30,1 --0.68,-0.97,0.02,1.99,-0.50,0.64,0.88,2.03,3.85,4.38,4.16,4.26,4.59,2.78,1.20,2.04,-0.31,1.17,-0.75,-1.31,-0.79,1 -0.28,0.60,-0.21,-0.85,-0.70,0.70,-0.42,-1.63,1.05,2.00,1.98,3.41,4.97,3.13,5.51,5.86,2.23,2.04,0.85,0.36,0.10,2 --1.08,0.11,1.19,-1.39,0.68,0.77,0.49,-0.04,0.41,3.80,2.77,3.70,3.00,6.11,6.24,3.25,6.71,4.00,0.35,0.24,0.59,2 --0.89,-0.08,0.98,1.60,0.40,3.92,2.87,2.15,5.21,3.97,2.57,2.40,3.21,0.62,0.36,1.16,-1.27,-1.63,1.38,1.31,-1.08,1 --0.05,2.12,3.05,3.10,3.24,5.92,5.32,4.66,3.91,2.21,1.57,1.96,0.08,1.09,1.00,0.24,1.19,-1.25,1.32,-1.44,-0.16,1 --1.30,0.12,1.59,3.03,2.17,2.72,3.14,4.18,3.36,2.64,1.96,3.74,0.73,0.59,0.41,-0.42,-0.68,0.79,-0.44,0.33,-0.04,1 --0.21,0.47,-0.65,-1.32,0.66,0.26,2.00,1.26,0.80,-0.06,0.68,3.40,6.09,4.92,6.34,5.47,3.53,3.59,1.84,1.59,0.36,2 --1.65,0.28,-0.57,0.01,1.88,0.94,0.40,1.35,0.97,2.36,0.97,3.45,3.79,6.62,6.39,4.23,2.59,3.01,1.77,1.70,-0.14,2 -0.10,0.33,-1.00,-1.56,-0.70,0.71,0.44,1.71,1.63,3.65,5.14,4.80,5.18,3.55,3.71,1.62,2.17,0.23,0.42,-0.08,1.91,2 --1.67,-0.52,-0.87,0.22,-1.91,0.18,0.92,-1.03,-0.33,1.36,2.13,1.81,4.74,5.01,5.44,6.17,2.30,1.42,1.72,1.89,0.64,2 -0.69,0.48,2.66,3.26,3.32,3.17,3.84,4.07,2.94,3.64,3.53,3.11,1.17,0.40,0.34,0.95,-1.24,0.20,-0.35,1.29,-1.44,1 -0.46,-0.51,0.57,1.63,-0.78,1.05,3.18,1.32,-0.20,2.38,1.43,1.57,1.76,4.20,6.17,4.90,4.97,3.93,2.97,1.82,-0.21,0 -0.12,-0.14,-1.20,0.16,-0.95,2.06,3.13,2.29,2.45,4.63,7.50,5.76,4.96,3.58,3.45,1.19,-0.19,-0.46,0.40,-0.06,2.92,2 -1.36,-0.79,0.33,3.82,0.47,3.48,4.17,3.17,3.23,0.93,1.67,1.64,2.56,2.61,1.53,1.83,3.99,1.58,-0.05,0.86,-0.75,0 --0.94,1.03,2.43,1.72,2.71,4.32,5.11,4.18,3.47,3.47,0.91,0.63,1.91,1.74,1.59,0.38,0.74,0.46,0.11,0.39,0.26,1 -0.21,-0.53,0.38,-1.37,-1.17,-0.10,0.70,-0.36,-0.10,0.93,0.49,2.45,4.68,3.73,4.52,4.20,2.57,3.25,2.10,-0.79,-0.05,2 --0.76,1.25,3.06,5.27,2.24,5.44,5.33,3.48,3.82,1.10,3.72,2.26,1.20,1.60,-1.28,3.33,-0.01,0.12,-0.10,2.53,0.63,0 -1.20,-2.29,-0.43,-0.00,0.40,-0.98,2.11,1.09,1.09,2.41,4.42,4.39,4.16,3.78,5.22,3.76,3.40,2.82,0.35,-0.14,-0.23,2 -0.65,0.45,2.25,1.67,5.32,5.24,4.93,2.95,4.08,3.01,2.51,0.52,2.37,-0.28,-0.12,-0.07,1.25,-0.62,-0.32,-2.82,1.86,1 -0.57,-0.57,2.84,-1.02,1.26,0.27,0.48,2.45,3.70,2.93,6.45,4.66,2.62,3.10,2.86,2.53,-0.04,-0.34,2.13,0.52,-0.41,2 --1.15,0.80,-2.65,0.83,0.45,-0.49,0.49,1.26,2.09,1.61,5.38,1.88,4.04,5.87,4.56,1.80,2.41,1.44,3.01,0.48,1.02,2 -0.06,0.68,0.27,0.14,1.14,1.64,0.69,2.87,2.90,0.91,4.42,2.95,4.48,4.50,8.04,4.10,2.81,3.49,0.66,-0.49,0.61,2 --0.02,1.17,-0.10,-0.54,-1.56,0.25,0.85,1.54,2.81,2.63,2.81,3.31,6.18,6.61,4.27,2.62,1.20,0.20,1.63,1.58,1.43,2 --0.87,2.31,-0.09,-1.01,-0.22,1.76,-0.08,2.36,1.98,2.18,1.59,2.04,3.42,3.81,5.49,3.74,3.43,2.16,1.87,-0.18,-0.43,0 -1.46,1.21,0.39,1.61,-0.17,-0.22,1.10,1.29,1.08,0.58,2.16,3.38,3.90,4.82,4.51,5.24,3.30,4.27,0.27,1.33,-0.87,2 -0.42,-0.75,-0.93,0.07,0.06,0.65,1.75,2.21,3.98,3.59,3.65,3.70,5.53,2.65,3.87,1.11,-1.32,0.98,-0.83,-0.12,-0.66,2 -1.05,2.56,2.77,1.84,2.87,2.76,2.55,3.64,2.91,0.85,1.85,2.56,2.85,1.31,2.84,1.29,1.81,1.55,-0.71,-0.11,0.25,0 -0.95,-0.20,1.13,1.65,-0.46,-0.05,1.46,2.63,2.63,3.96,4.83,3.33,3.34,3.02,3.31,2.29,0.79,1.08,-0.20,-1.47,-0.65,2 --0.03,-1.01,-0.59,-0.48,0.76,-0.60,1.76,0.24,2.76,1.35,3.39,4.35,1.82,5.74,3.32,1.57,3.53,1.29,2.44,0.03,-0.62,2 --2.75,0.32,0.28,-1.29,0.24,1.13,1.61,0.88,2.55,4.46,2.86,6.76,4.10,4.06,3.69,2.42,-0.69,1.28,1.65,1.19,0.02,2 --1.20,0.89,1.97,1.40,2.78,2.20,3.19,4.10,2.21,2.03,2.41,2.36,2.33,3.28,2.98,2.83,-0.03,1.36,2.28,-0.11,0.20,0 -0.54,0.11,-0.26,1.32,2.66,5.24,2.17,3.71,3.49,2.85,2.21,2.38,0.64,2.26,-0.34,0.96,0.89,0.03,2.45,1.34,-0.14,0 --1.06,0.09,2.16,1.01,-0.06,1.81,1.70,1.27,1.99,2.46,1.58,1.91,2.76,2.54,3.08,2.17,4.36,2.67,0.86,-1.55,-1.02,0 --0.17,2.86,1.75,3.80,2.02,1.23,2.50,2.57,1.11,1.00,0.96,1.91,3.38,3.43,4.11,1.73,4.02,3.29,3.19,0.42,1.94,0 --1.29,-0.03,0.19,1.20,0.20,1.74,2.60,3.97,4.18,4.25,6.05,4.35,2.12,4.25,-0.04,-0.10,-1.17,-1.30,-0.19,-1.11,-0.76,1 --0.08,-0.46,0.93,5.22,3.33,2.05,5.75,1.52,2.47,3.52,3.27,0.18,-0.07,1.49,2.56,2.82,1.21,0.35,0.32,-0.24,-0.52,0 --2.77,1.16,-1.86,-0.91,0.04,2.05,3.04,1.41,5.23,4.72,6.60,4.54,4.06,2.67,2.46,-0.86,-0.28,-0.84,1.02,0.41,-0.35,2 --0.01,0.24,-0.22,-0.19,3.17,3.46,2.82,4.59,2.62,3.92,5.85,4.63,2.99,3.50,0.52,0.04,-1.11,0.75,0.49,1.57,-0.73,1 -0.17,2.72,1.03,2.24,0.01,0.19,0.92,0.88,2.07,0.98,3.07,3.74,3.89,2.55,3.78,1.99,2.58,0.84,1.08,1.63,-0.40,2 -0.18,1.44,-0.67,0.77,1.61,1.47,1.96,4.90,4.06,5.19,4.43,3.87,3.00,2.52,1.16,-0.35,-0.35,0.47,-1.34,1.25,-1.71,1 -0.35,0.48,-0.77,0.61,0.33,0.11,0.64,3.17,0.97,1.64,1.07,3.25,4.19,4.10,3.45,4.75,1.01,4.51,1.49,1.79,-0.27,0 -2.21,1.86,0.37,2.30,2.56,4.53,5.90,5.59,4.30,3.74,4.30,4.04,0.06,0.89,-0.48,2.39,1.90,0.30,-0.53,-0.74,-0.90,1 -0.02,-0.84,1.45,2.76,0.55,1.33,4.25,3.53,3.82,4.28,5.17,2.45,3.57,1.50,1.30,0.68,-0.59,-0.51,-0.95,1.58,1.05,1 --0.71,1.03,1.98,3.95,2.47,3.84,4.74,3.17,3.94,2.98,1.72,-0.53,-0.56,1.00,-1.38,-0.68,-1.22,0.17,-0.36,1.36,0.79,1 -1.85,0.30,0.20,-0.22,0.48,0.37,-0.38,-0.24,1.06,1.79,5.33,3.90,4.56,5.84,3.60,2.78,5.55,1.19,2.03,-1.18,-0.43,2 --0.99,0.12,1.65,0.71,2.34,2.94,4.28,2.66,3.15,5.46,5.22,3.33,3.93,0.41,-0.23,0.62,0.78,-0.16,-2.08,-1.20,-0.37,1 -1.04,0.63,2.33,-0.89,-0.74,0.54,1.69,1.31,1.43,3.21,4.16,3.64,3.01,4.22,4.55,1.98,1.55,0.33,1.31,0.23,-0.18,2 --0.62,-0.39,1.04,0.55,1.86,0.93,1.38,1.22,2.40,3.59,6.86,5.13,3.80,2.71,2.47,1.44,0.05,1.76,1.49,0.84,0.76,2 -0.63,1.67,2.55,0.84,-0.74,-0.54,0.71,3.48,3.47,3.59,5.14,3.95,5.67,2.95,1.62,2.38,1.15,1.29,0.44,-0.75,-0.29,2 --0.02,0.56,0.97,0.59,2.04,3.90,2.34,0.80,1.91,1.96,1.90,3.13,4.22,2.74,2.50,3.09,2.10,-0.26,0.36,0.37,0.62,0 -0.70,0.96,2.36,4.00,4.15,4.18,6.74,4.94,4.03,5.66,2.63,1.50,0.32,-0.77,0.13,-1.63,-0.13,0.30,-0.23,-0.24,0.98,1 --0.01,2.38,0.25,3.27,-0.20,1.55,2.54,2.06,2.68,0.64,3.26,1.82,2.34,3.36,2.64,1.71,2.59,1.36,1.35,-0.81,1.93,0 --0.37,-1.38,0.47,1.53,2.25,4.70,5.11,4.06,2.91,2.40,0.69,3.04,0.99,0.71,-0.64,-0.11,-0.03,0.84,-0.54,-0.69,0.35,1 --0.03,-0.36,0.72,2.59,2.49,3.76,4.92,4.73,4.04,3.15,4.76,3.67,1.11,2.31,-1.77,-0.61,1.57,-2.14,0.92,-0.17,-1.29,1 --2.09,0.38,-1.48,-0.65,-0.32,1.48,1.06,2.56,2.05,3.71,4.80,3.57,5.34,2.93,2.26,0.56,1.58,0.66,0.30,0.90,2.18,2 --1.48,1.56,-0.77,0.31,1.87,1.28,3.73,4.31,0.73,3.42,6.04,3.15,6.25,1.87,2.69,-0.47,-0.56,-0.68,1.26,0.54,0.36,1 -0.05,0.22,1.31,3.30,3.54,5.39,6.25,4.57,4.50,3.93,2.02,1.92,3.20,0.26,0.48,1.16,-0.35,1.37,0.10,-0.45,1.35,1 --0.03,0.26,-0.89,0.14,0.41,1.21,1.60,2.29,2.15,2.81,3.35,2.19,3.47,4.00,4.37,3.83,4.11,1.42,2.13,0.33,-0.34,2 -0.52,1.22,1.39,2.19,2.25,4.66,3.00,3.73,2.08,3.75,4.23,0.45,0.35,0.94,1.62,1.04,1.16,0.40,-0.99,0.75,-0.53,0 --0.56,0.92,-0.21,1.28,1.89,-0.13,1.87,0.81,2.36,-0.79,3.05,2.48,3.87,2.56,6.39,3.45,4.34,2.94,1.57,-0.17,-0.68,0 --0.23,0.43,-0.15,0.20,-0.09,0.54,-0.36,0.14,1.90,1.77,2.41,3.69,5.02,4.10,3.89,5.00,2.96,1.79,2.07,0.40,-1.55,2 -1.77,-0.72,0.09,1.06,-1.37,1.42,5.34,1.87,4.86,4.39,5.91,5.67,4.52,0.51,2.37,0.43,0.14,0.58,1.89,0.76,0.94,1 -0.30,0.21,0.30,-1.26,-2.44,0.98,0.78,1.48,3.57,3.39,3.80,3.81,4.66,0.59,4.26,0.97,1.81,2.37,-0.08,0.69,0.02,2 --0.83,2.20,-0.72,1.27,0.77,0.01,2.41,1.17,1.68,5.59,4.18,2.93,3.70,4.43,3.93,2.33,2.94,0.08,2.22,1.20,-0.42,2 -0.96,0.31,1.18,-0.09,-0.90,0.96,-0.10,0.63,0.75,4.40,2.35,2.17,4.77,3.77,3.65,2.83,2.20,0.85,1.10,0.14,0.10,2 --0.71,1.20,1.10,2.66,3.67,2.89,5.26,5.64,2.54,1.19,1.83,2.51,-0.10,1.30,1.55,-0.40,0.02,0.41,-0.49,0.23,0.92,0 -0.61,-0.51,-0.84,-0.53,0.94,-0.12,0.08,2.13,1.54,2.03,3.02,4.15,3.97,2.95,5.42,3.29,3.90,0.81,0.58,0.23,-0.07,2 -0.57,0.76,2.20,1.91,1.80,3.31,3.87,2.96,3.90,4.56,1.43,1.08,2.62,2.88,0.97,1.18,-0.13,1.28,-0.05,0.96,0.31,1 --1.12,-0.01,-1.16,-0.82,-0.15,-0.37,1.28,2.67,1.14,2.15,4.29,2.91,2.26,3.31,5.11,5.17,2.49,3.38,2.15,0.27,0.27,2 --1.09,-0.10,-0.94,-1.19,-0.13,1.20,3.55,2.91,4.15,4.67,5.52,5.60,4.28,3.66,1.14,1.58,-0.14,0.99,-0.81,-0.80,0.83,2 --1.90,0.81,1.17,1.35,-0.71,1.76,2.16,1.81,3.32,2.95,4.69,5.07,4.21,4.36,-0.26,1.82,0.99,1.72,1.83,1.23,-1.40,2 --0.31,1.25,1.16,2.48,2.57,2.27,2.94,2.17,3.55,4.84,4.02,3.20,3.19,1.08,1.70,0.68,-1.97,0.61,-1.28,-0.61,2.14,1 --0.75,-1.60,1.01,1.40,-0.55,1.71,-0.02,2.28,3.30,5.79,7.27,4.55,5.20,3.63,2.80,-0.83,-0.07,0.14,0.91,2.19,1.97,2 -0.00,-0.99,-0.24,-0.10,-0.92,0.04,-1.98,0.05,0.87,2.03,3.79,4.56,3.58,4.35,3.76,2.70,1.08,0.49,1.40,-0.13,-0.78,2 --1.53,0.41,-0.54,-0.86,0.19,1.41,2.49,3.15,3.51,4.68,6.44,3.75,5.90,4.84,0.63,2.01,-1.17,1.17,1.20,-0.20,1.23,2 -0.34,0.61,1.90,2.57,2.40,5.04,6.49,4.30,3.01,2.20,1.21,1.18,-1.03,-0.97,3.24,1.02,1.66,1.54,-0.51,-0.29,0.38,0 -0.33,0.94,0.56,3.99,4.49,5.41,5.25,3.81,1.96,2.91,2.99,1.18,-0.00,0.73,0.99,-1.11,-0.81,-0.54,1.81,0.77,-0.52,0 --1.52,-0.34,-0.19,3.86,2.89,3.80,5.96,4.01,3.64,4.31,0.17,2.49,-0.40,-0.31,1.04,0.70,-0.21,0.73,-0.21,-0.84,-0.60,0 -0.38,1.25,2.50,2.01,3.99,2.41,4.76,6.41,5.41,3.10,1.88,2.13,2.46,0.53,-0.67,-0.33,-0.47,-0.43,0.61,0.17,0.06,1 -0.49,0.90,0.72,2.13,1.13,4.30,4.06,4.15,2.93,3.93,4.30,2.36,2.07,2.10,1.80,0.43,-0.36,-0.66,-0.87,-0.42,-0.83,1 -0.65,0.27,-0.44,2.24,2.28,2.92,4.00,2.76,2.14,2.31,1.78,0.96,0.86,2.76,2.20,1.73,1.33,0.98,-1.00,-2.46,-0.52,0 -0.35,2.37,1.87,1.40,4.43,4.26,3.16,4.23,3.87,3.92,3.92,0.09,1.04,-0.03,2.14,1.56,-2.02,-1.17,0.26,1.36,1.29,1 -1.11,-1.33,0.93,0.87,0.93,-0.31,1.27,1.49,2.39,3.97,1.41,3.72,3.13,4.62,6.50,4.83,3.23,2.98,1.96,0.81,-0.06,2 -0.70,1.96,1.35,1.31,3.55,4.62,4.43,2.11,2.80,2.81,3.25,0.74,2.71,2.56,1.80,0.04,1.14,-0.99,-0.19,-0.26,0.54,1 --0.38,1.29,0.66,-0.81,0.57,0.17,-0.03,1.65,1.71,3.32,3.81,3.83,3.55,1.35,5.55,2.08,0.28,2.24,1.74,-0.05,1.14,2 --1.29,-0.34,-0.39,0.64,0.14,0.84,1.00,2.70,3.50,4.39,4.33,3.89,2.49,4.11,4.72,3.94,1.74,1.50,-0.61,0.78,-1.80,2 -1.90,0.32,0.02,-0.44,-0.43,1.14,4.05,3.83,4.29,5.70,5.88,5.23,4.83,2.68,3.06,1.22,1.26,1.81,1.73,-0.88,-0.26,2 -1.22,1.68,2.00,-0.19,1.03,-0.75,1.49,2.35,4.83,5.21,6.65,5.09,4.22,4.08,2.31,-0.33,-0.01,-0.45,-2.55,0.46,0.23,2 -0.20,0.49,0.92,1.09,1.04,2.63,2.11,4.30,2.87,4.11,4.32,3.58,3.22,2.85,-0.63,0.28,0.62,-0.96,-0.67,0.72,-1.44,1 --1.24,1.50,0.03,1.22,-0.07,1.59,1.80,1.02,0.62,3.35,3.55,2.13,4.57,4.61,2.20,2.81,1.09,2.51,2.48,-0.85,0.28,2 --0.63,-0.04,-0.74,-0.59,1.42,2.23,3.03,2.67,3.59,4.05,4.72,4.52,3.06,3.82,2.54,-0.49,0.41,0.72,0.07,-0.19,-0.09,2 --1.25,-0.01,-1.32,-0.24,1.17,2.11,0.70,0.81,1.80,5.45,5.25,6.51,3.16,2.60,1.15,-1.61,2.12,0.56,0.53,-0.79,0.32,2 --0.85,0.98,3.43,2.68,3.99,4.72,4.88,3.46,3.08,2.43,1.24,2.95,1.42,0.82,1.72,0.88,-0.07,0.39,-1.67,0.07,-0.62,0 --1.37,1.29,2.97,3.20,3.69,4.52,4.17,4.18,4.81,2.98,2.71,3.14,1.96,0.51,1.14,2.45,-0.63,0.94,1.03,-1.15,-0.73,1 -0.11,2.41,0.24,-1.02,-0.08,0.56,0.35,0.32,1.30,2.46,1.01,3.10,4.37,4.41,4.42,4.37,3.76,1.58,1.69,1.90,1.26,2 --1.71,1.93,2.64,1.79,4.09,4.71,6.25,5.71,4.75,3.75,4.82,1.45,0.50,-0.09,1.09,1.14,-0.97,0.55,0.89,-0.44,0.14,1 -0.35,-0.24,1.27,-1.16,0.84,1.42,1.91,3.99,1.32,5.21,6.82,4.45,3.57,2.69,1.74,0.36,-0.42,0.07,-0.80,-0.48,-0.50,2 --0.40,0.54,1.44,-0.17,0.58,2.00,1.51,3.17,4.72,5.57,6.05,5.93,3.05,2.81,3.60,0.79,-0.41,1.17,-1.17,0.66,-1.83,1 --0.72,1.76,0.74,2.04,1.43,4.64,5.53,3.53,3.74,2.83,4.33,2.02,0.19,1.36,-0.08,0.73,-1.37,0.12,-0.81,0.40,-0.65,1 -1.07,1.01,1.23,0.17,0.05,1.76,0.47,-0.90,4.18,5.84,4.58,5.56,4.53,3.66,2.52,3.98,2.01,1.33,-0.51,-1.31,0.68,2 --0.02,-2.28,-0.33,2.92,1.79,3.17,3.99,3.85,5.27,3.66,4.77,2.47,3.34,0.37,-0.45,2.42,-0.41,-1.42,0.33,-0.78,-1.31,1 -1.40,0.26,0.02,-0.06,-0.27,-0.43,3.89,1.47,4.46,4.98,3.82,5.72,3.35,4.69,3.39,2.79,2.00,0.59,-0.36,-0.27,0.36,2 -0.76,0.56,-0.21,1.84,4.26,2.17,3.24,4.37,5.71,3.14,3.90,0.50,0.66,0.99,-0.36,-1.31,-0.09,-0.40,0.22,0.57,0.27,1 -0.15,0.44,-4.20,0.83,1.09,-0.16,2.40,2.98,3.28,3.65,5.42,5.45,5.56,2.93,1.47,-0.08,-1.20,0.76,1.73,0.38,0.06,2 -1.55,0.77,1.21,0.78,0.18,2.07,0.63,-0.22,3.32,1.72,2.97,3.56,4.56,4.51,5.12,4.76,3.52,1.85,0.56,1.02,-0.42,2 -2.87,-0.03,1.65,2.15,0.04,1.78,0.53,-0.27,1.34,2.53,0.77,2.69,4.71,1.31,4.48,2.76,1.29,0.60,1.58,0.18,0.68,0 --0.34,0.02,-0.42,0.30,1.13,1.29,1.74,2.31,2.97,3.12,3.09,5.70,3.92,3.48,2.99,0.32,0.41,0.99,-0.69,0.62,-1.29,2 -0.15,-0.98,0.09,0.57,-0.59,1.69,3.30,3.45,2.20,5.38,4.23,5.69,0.85,2.77,0.70,0.20,-0.12,-0.01,-0.93,-1.12,-0.47,1 -0.99,-0.13,-1.86,-0.77,0.13,-1.82,1.91,1.29,2.82,3.29,3.26,3.41,6.29,4.54,7.48,4.98,2.12,1.99,1.77,2.74,1.29,2 --0.06,-0.19,1.30,-0.00,0.37,-0.66,-0.47,1.01,0.57,2.79,4.50,2.43,4.01,4.79,5.16,4.46,4.22,1.93,-0.08,0.04,-0.57,2 -0.41,-0.28,2.12,1.93,-0.21,-0.13,0.35,0.26,1.08,2.75,1.51,2.55,2.48,5.01,5.11,4.95,3.18,0.98,1.16,1.89,-1.09,0 -0.22,-1.72,-0.77,-0.74,-1.23,1.01,0.80,1.72,1.16,3.13,3.81,4.17,2.52,1.90,4.48,4.08,-0.19,0.71,1.74,0.54,0.11,2 -1.40,0.19,-0.37,0.11,0.38,0.50,-0.32,2.18,1.87,4.08,6.33,4.48,3.64,2.12,2.31,1.74,0.63,1.78,1.81,0.74,0.08,2 -0.15,0.44,0.69,0.96,1.19,3.15,4.26,3.12,3.87,3.57,4.27,4.14,1.99,1.15,-0.10,-0.28,-1.37,1.35,0.07,0.88,0.11,1 --0.00,-0.90,0.39,-1.75,1.74,1.34,1.77,4.49,4.00,4.69,5.92,4.10,4.23,2.45,1.49,0.32,1.70,-0.89,2.32,-0.57,0.42,1 -0.59,0.54,0.98,1.77,3.97,5.13,5.54,3.80,6.08,3.30,3.02,2.16,-0.29,-0.66,-0.55,-0.01,-0.84,0.80,0.35,1.13,-0.72,1 -1.05,1.28,1.35,3.65,4.06,5.04,5.72,4.01,3.19,3.47,2.81,-0.77,-1.02,-0.79,-0.36,-0.39,0.98,1.53,0.09,-0.50,-0.40,0 -1.41,2.11,-0.12,1.33,-0.56,2.10,2.06,2.97,2.62,5.24,6.93,5.56,3.55,2.14,3.08,2.54,1.20,0.55,1.61,-0.42,-0.18,1 --0.48,0.73,2.52,1.46,3.52,3.59,4.93,4.73,6.07,2.31,3.75,1.66,1.89,-0.35,0.08,0.76,-1.54,1.39,2.76,-0.96,0.39,1 -0.82,0.21,-1.08,-0.92,1.65,0.50,1.33,0.46,1.11,2.35,3.91,3.48,2.94,3.98,2.76,2.82,2.88,1.44,0.34,-0.35,-0.68,2 -0.23,-1.21,1.10,1.02,-0.44,0.42,2.02,2.45,4.75,5.20,5.19,5.17,4.17,3.56,2.09,-0.03,0.06,-0.80,-0.44,-0.18,1.34,1 --0.38,0.64,1.25,2.27,4.01,5.17,5.77,4.93,2.65,2.19,2.11,1.25,0.57,-0.27,1.36,0.12,-1.04,2.23,0.03,-2.17,-1.50,1 --0.76,-1.52,0.23,-0.61,1.11,1.95,0.25,1.04,0.87,1.74,2.99,3.83,4.00,3.31,5.82,3.27,3.26,2.92,2.90,1.03,-0.02,2 -0.76,0.78,0.68,1.14,1.06,0.03,2.23,3.35,2.46,4.21,7.01,6.58,1.83,2.79,2.53,1.66,0.95,-1.17,-0.72,-0.11,-0.69,1 -0.76,1.28,0.86,0.46,2.74,3.17,6.28,3.57,4.22,3.22,1.31,0.62,0.83,0.94,0.74,-0.22,0.11,-0.05,-0.16,-0.46,-0.68,1 --0.26,-1.05,0.75,1.56,3.44,4.01,4.57,4.11,4.20,2.71,3.37,1.05,1.41,0.60,0.62,1.79,0.57,0.68,-0.22,-0.36,1.60,1 --0.08,0.91,0.48,1.63,-0.16,0.13,1.38,3.88,3.27,5.64,7.24,4.93,4.80,4.01,1.62,2.04,0.82,-0.94,-0.42,-0.08,-0.74,1 -0.05,0.83,1.60,2.95,2.70,5.11,7.45,3.56,3.54,3.10,1.96,1.34,1.55,0.63,0.65,1.75,-1.33,1.44,-0.64,-0.92,-0.92,0 -0.25,0.92,-1.09,2.74,1.10,1.63,2.67,0.27,1.12,1.50,2.94,1.76,1.52,2.56,4.73,4.10,1.56,2.94,0.45,-0.29,0.33,0 -1.36,0.41,0.40,-0.67,-0.65,1.77,2.96,2.50,2.39,5.40,4.27,4.90,3.55,4.24,3.29,0.66,-0.81,-0.93,2.15,-0.51,1.35,2 --0.57,1.08,-1.20,-0.44,-1.48,1.37,0.45,2.27,1.22,2.30,2.36,3.41,4.66,4.73,3.59,2.97,2.48,3.39,1.04,-0.09,-0.41,2 --0.22,0.67,0.37,2.75,2.86,4.04,4.91,5.52,4.69,3.77,1.69,3.07,2.02,0.25,0.96,0.25,-0.25,-0.08,1.05,-1.85,-0.14,1 -1.53,0.60,-0.05,1.21,2.32,5.01,5.26,5.88,4.75,3.65,3.18,-0.18,0.78,1.60,2.50,0.57,1.02,0.88,0.24,-0.01,-0.02,1 --1.45,1.45,1.17,1.40,2.64,3.22,3.98,2.79,1.38,2.84,1.66,0.70,-0.55,1.50,0.84,-0.65,2.95,0.32,0.50,0.39,-1.44,0 -0.71,1.10,0.73,-0.96,1.55,0.18,0.78,2.09,1.89,2.78,3.26,4.85,3.13,3.14,2.32,4.52,1.40,1.91,1.64,1.24,-1.07,2 --0.51,-1.33,0.44,1.29,0.90,3.28,4.44,2.28,4.09,3.37,4.82,2.03,0.51,1.39,2.33,2.06,0.40,-2.40,1.47,0.54,0.05,1 --1.19,2.52,1.03,2.86,4.09,3.12,5.43,4.26,3.36,1.44,1.44,2.63,0.02,1.61,0.75,1.73,-0.18,-0.91,-0.68,0.89,-0.46,0 -0.59,0.89,2.19,2.91,3.55,1.99,4.39,2.40,3.04,2.21,1.67,4.91,1.12,1.50,3.47,1.45,1.52,1.03,0.63,-0.07,-1.63,0 -0.96,-0.53,-1.00,-0.79,-0.05,2.83,0.60,2.45,4.34,4.43,6.27,3.55,3.98,3.00,2.65,-0.97,-1.77,-2.39,0.99,1.16,-0.38,2 --0.49,1.48,0.33,0.90,5.13,4.58,6.93,3.87,2.86,3.28,1.55,1.19,0.11,-0.48,-0.62,1.00,1.31,1.85,-0.13,1.15,-0.88,0 --1.14,0.35,0.52,-0.68,0.72,2.40,1.84,3.10,3.29,2.56,3.60,5.89,3.79,3.90,3.38,1.05,-1.52,1.16,-0.66,0.47,0.99,2 -0.23,2.04,1.06,0.20,3.55,5.37,3.69,3.80,4.87,4.15,4.19,1.66,1.54,1.69,1.38,0.02,-0.74,1.22,-1.76,1.20,0.08,1 -1.64,0.52,0.09,0.27,0.91,2.17,2.45,2.26,3.17,3.33,8.53,3.94,4.29,2.85,1.88,1.04,-1.72,0.25,-0.31,-0.65,2.29,1 -0.83,2.20,2.68,1.90,3.35,5.42,5.09,4.04,5.14,3.71,4.31,3.10,-0.13,-0.30,-1.11,0.08,-0.18,-0.22,0.27,1.42,-0.91,0 -0.43,1.15,0.92,0.04,-1.82,1.09,3.88,5.13,2.73,3.59,7.91,3.72,3.14,2.72,2.15,2.01,0.40,-0.30,0.64,0.48,-0.40,1 --0.41,-0.20,0.80,0.73,0.04,-0.14,0.46,0.42,4.73,3.96,5.58,4.74,3.57,3.00,4.49,1.65,2.07,-0.31,1.07,1.70,0.34,2 -0.16,-0.83,-0.11,2.51,3.70,6.17,5.12,3.70,2.56,1.91,1.92,2.71,-0.27,2.52,3.08,1.33,2.20,1.08,0.51,0.32,-1.08,0 --0.80,0.14,0.76,-1.02,-1.29,1.11,-0.08,2.52,1.69,2.90,5.24,4.30,3.13,3.92,4.41,4.90,2.25,0.98,1.86,-0.07,-0.35,2 -0.91,-0.83,-0.89,0.04,1.21,0.10,0.53,2.23,1.59,4.12,2.99,4.88,5.05,2.25,4.58,2.18,1.66,1.29,0.84,0.35,0.19,2 -1.11,-1.39,1.99,0.18,-0.79,1.61,1.38,1.47,3.55,3.33,2.42,5.06,3.53,3.66,4.55,1.37,1.70,1.12,0.58,-0.48,-2.55,2 -2.09,0.06,1.22,1.46,0.62,0.75,2.74,2.78,4.91,4.54,4.52,3.69,4.00,2.14,0.76,0.80,0.28,1.25,-0.31,-0.57,0.54,1 --2.21,0.01,0.46,-0.41,-0.52,1.39,2.62,2.74,4.98,3.20,4.13,4.16,2.18,4.23,1.95,1.92,0.19,-1.04,0.81,-0.00,-0.65,1 -0.71,1.07,0.32,-1.66,1.35,2.84,4.16,3.94,3.02,5.17,4.77,5.24,3.91,2.77,3.04,0.82,-0.34,1.15,-0.38,0.92,1.13,1 -1.24,-0.71,0.63,1.96,5.15,4.72,6.15,2.02,3.35,2.59,2.24,1.29,1.64,-0.70,-1.61,0.73,-0.40,-1.65,-0.19,0.23,-0.96,0 -0.60,-1.25,1.51,0.32,2.13,1.22,1.45,2.54,1.57,2.83,1.04,1.65,2.86,3.40,3.70,4.15,2.61,3.69,1.14,0.43,0.66,0 --0.28,-0.09,1.48,0.05,-0.81,1.54,1.99,1.62,0.98,4.07,2.68,3.41,4.20,3.28,2.32,2.52,0.47,0.96,2.48,0.93,-1.62,2 --0.60,0.94,1.61,3.71,4.99,4.31,5.16,6.82,3.64,1.95,2.02,1.63,-0.15,2.30,-0.14,1.76,1.23,1.33,-0.41,-0.67,-1.51,0 --0.62,0.48,0.57,-0.53,2.20,3.52,2.13,1.20,2.91,1.59,-0.17,1.43,2.07,2.82,3.61,2.20,3.15,2.16,1.55,-0.33,-1.80,0 -1.61,-0.07,-1.05,-2.00,1.80,-2.16,2.19,0.07,-1.18,1.34,1.14,3.86,3.94,4.01,5.74,3.34,4.00,3.43,1.66,-0.47,-0.11,2 --2.36,0.61,0.65,0.73,1.65,1.99,1.53,2.00,2.94,5.31,5.47,5.56,2.31,3.29,4.72,1.75,-0.30,0.54,-0.24,0.83,1.18,2 --0.07,1.33,1.14,0.30,1.12,2.85,0.89,2.29,3.50,5.69,5.57,5.87,3.12,0.92,1.26,2.27,1.16,-0.90,1.06,-0.28,1.15,1 -1.64,-0.21,0.49,0.91,0.18,0.96,1.98,2.11,3.56,6.17,6.32,4.48,3.84,2.56,0.14,0.51,0.24,-0.85,-0.71,0.51,-1.29,1 --2.09,-0.89,-0.36,3.38,1.71,2.40,4.24,4.02,3.80,3.20,2.37,2.19,0.87,1.36,1.88,-0.84,-0.40,0.17,0.11,-0.45,-0.11,1 --0.00,1.71,1.14,0.98,-0.46,-0.66,-0.15,-0.46,2.39,0.78,4.77,4.25,4.19,5.88,4.71,2.41,2.46,2.18,0.89,0.07,0.11,2 -0.07,1.57,1.25,0.19,0.94,0.08,2.75,3.86,4.41,4.12,6.17,3.63,4.45,2.51,4.03,1.73,2.13,0.17,-0.33,-0.49,-0.94,2 --0.90,0.28,0.22,2.72,4.61,3.49,5.25,6.15,2.07,2.83,3.28,0.69,0.20,0.93,2.12,1.38,-1.29,0.43,-0.02,-0.92,-0.66,0 -1.27,1.37,1.04,3.01,3.20,4.15,6.80,5.18,3.83,2.58,2.60,0.79,-1.62,0.67,-0.78,-1.95,-1.20,0.29,0.06,0.59,-0.29,0 -1.26,1.10,0.95,2.84,2.68,3.31,5.25,5.57,4.05,1.87,3.32,0.17,-1.06,0.38,1.22,0.18,0.88,1.15,-1.11,-1.20,-0.20,1 -0.92,-0.70,1.26,1.21,4.14,4.12,4.69,3.36,0.91,0.32,3.78,2.30,1.77,2.22,3.60,3.04,3.13,2.55,0.55,0.20,2.28,0 -0.73,-1.64,-0.20,-0.57,0.40,-0.36,-0.22,2.18,1.39,0.85,4.41,4.50,4.36,3.92,4.16,3.74,0.48,1.14,0.56,-1.32,0.57,2 --0.41,1.64,1.11,3.79,4.43,5.54,5.99,4.99,3.73,3.56,0.82,0.53,-0.59,-1.23,-0.47,0.82,-1.65,0.51,-1.39,-1.10,-0.01,1 -0.75,2.11,-1.04,1.30,1.25,0.96,-1.26,-0.27,0.80,2.60,2.58,3.84,4.13,3.80,7.07,2.70,2.47,1.62,0.48,0.63,0.68,2 --0.70,-1.33,-0.27,-0.28,1.53,0.88,1.31,2.03,3.52,3.64,3.96,5.81,3.35,4.13,3.39,1.99,1.15,-0.96,2.21,-0.22,0.12,2 -1.70,0.49,1.27,0.55,0.68,-0.56,2.18,2.50,2.45,6.06,4.76,6.41,3.86,4.10,3.72,3.65,0.69,-0.51,0.07,1.62,-2.56,2 -0.14,0.95,-0.01,-1.69,0.15,2.65,2.07,2.63,4.30,5.16,6.15,3.40,4.47,2.48,1.41,0.59,2.35,1.72,1.60,-0.79,-0.64,2 --0.68,0.92,3.05,3.37,3.12,3.17,3.72,3.81,3.50,5.23,3.05,0.75,0.15,2.02,3.06,0.17,0.08,1.65,-1.36,1.48,-1.39,1 --1.29,0.88,1.10,2.01,1.19,4.59,4.75,2.94,1.21,5.32,4.21,2.17,0.58,1.55,-0.12,1.16,-0.98,2.39,0.11,-0.38,-0.73,1 -1.33,2.34,1.52,2.40,0.87,2.99,3.54,4.14,0.90,2.07,0.94,0.50,1.56,0.67,3.01,2.88,1.94,1.77,1.20,1.36,-0.06,0 --0.17,-1.21,-0.73,0.19,-1.44,1.39,3.45,2.30,1.93,4.80,5.41,6.52,5.09,2.61,3.83,2.79,2.73,1.46,0.44,1.32,0.31,2 -0.33,-0.66,0.14,0.11,1.47,0.09,2.85,4.41,5.79,5.04,5.90,5.65,2.18,2.38,2.02,1.68,0.02,-0.31,0.86,1.09,2.09,1 --0.19,0.47,2.08,1.75,1.74,4.38,6.76,4.45,3.59,3.26,3.72,2.89,1.17,3.96,0.17,0.92,-0.03,-0.52,-0.08,0.04,0.82,1 --0.90,-0.03,-0.09,2.93,3.03,4.39,4.91,2.33,3.98,2.69,1.27,1.83,1.82,1.97,1.30,0.92,-0.04,3.37,1.47,-0.31,-0.40,0 -1.14,0.21,2.35,1.65,1.61,3.44,3.74,4.22,3.55,5.44,5.91,3.02,2.66,1.54,0.70,-0.86,-0.30,0.90,-0.03,-0.39,2.39,1 -1.17,0.21,2.88,3.78,3.87,1.55,5.10,1.34,2.61,1.81,2.65,-0.16,2.05,2.45,2.37,2.70,3.40,2.53,1.36,1.01,1.13,0 --2.29,2.03,0.95,1.22,2.23,2.95,4.82,3.91,4.14,3.40,3.01,3.69,2.77,1.04,1.31,-0.75,0.27,-0.44,-0.35,0.13,0.32,1 --0.71,-1.62,-0.05,1.28,1.45,-0.54,-0.17,1.60,-0.11,1.16,0.96,5.03,3.74,4.41,4.55,5.12,4.66,1.30,-0.52,2.07,0.51,0 --0.29,0.09,1.43,4.00,3.23,2.43,5.23,5.68,2.09,3.38,3.20,-0.50,0.91,0.75,1.22,-0.26,-1.41,-0.69,-0.48,1.24,0.13,1 -0.34,-0.11,2.56,1.88,3.70,2.74,4.89,4.50,3.38,1.69,2.01,3.14,0.79,1.74,1.48,2.79,0.04,0.83,1.97,-0.73,-1.38,0 --1.58,0.27,1.80,1.14,0.57,-1.02,0.77,0.48,2.93,1.23,4.56,3.17,3.03,3.67,5.27,3.26,2.28,2.29,2.16,2.25,0.03,2 --0.24,3.21,0.53,-0.16,0.23,2.44,3.46,4.04,5.11,5.82,5.53,5.61,5.14,3.57,1.99,0.93,0.24,-1.60,0.15,-0.05,-0.22,1 --0.02,-0.87,0.25,0.32,0.76,0.99,2.82,3.01,3.34,3.49,6.67,6.46,4.63,3.21,2.97,2.30,1.66,-1.47,1.51,1.09,-3.22,2 -2.39,0.84,-0.53,-0.34,0.01,2.47,2.98,2.38,0.92,2.37,2.59,0.13,1.74,2.09,2.65,2.13,1.34,2.28,-0.01,0.74,1.51,0 -0.63,0.64,0.41,1.42,2.88,3.17,4.23,2.97,3.03,4.82,4.71,2.69,1.25,1.97,0.88,-1.72,1.20,0.43,2.09,-0.11,0.37,1 --0.51,0.24,-0.12,1.31,-0.47,1.74,1.06,1.35,4.56,4.19,6.15,4.84,3.86,4.20,1.60,0.81,2.48,0.67,-0.76,0.15,0.20,2 --1.70,-0.05,1.49,1.13,-0.59,0.32,2.01,1.72,1.13,2.42,2.52,3.30,3.61,3.60,4.16,3.34,4.08,3.15,1.90,-0.99,-0.54,0 -0.90,-0.07,0.56,-0.93,-0.76,0.41,-0.31,0.65,2.94,3.92,5.41,4.98,4.07,3.79,3.06,2.44,1.34,2.23,0.83,0.91,2.25,2 -0.15,-0.45,1.42,3.37,2.94,4.41,4.75,4.12,3.27,3.75,3.09,1.36,-0.17,0.24,1.34,0.88,0.64,0.98,2.94,-1.24,-0.74,0 --0.96,1.63,1.63,1.58,-0.73,0.94,1.00,0.63,1.95,2.37,1.46,3.20,3.32,2.94,3.78,4.62,1.67,2.05,2.26,1.49,-0.94,0 --1.45,1.46,-1.16,1.56,-1.06,-0.92,0.76,1.16,1.27,0.85,2.40,4.38,3.47,3.62,4.83,6.44,3.77,1.83,1.88,0.88,-0.01,2 -0.54,0.61,2.37,3.76,1.74,3.78,4.32,3.92,3.13,1.88,0.68,0.46,-0.17,2.01,1.28,1.93,2.08,-1.35,0.68,0.30,-0.62,0 -0.99,-1.25,0.75,0.27,-1.23,-0.11,-1.14,-0.66,0.56,-0.42,2.40,4.48,4.53,5.49,3.75,3.45,1.72,2.36,-0.04,1.14,0.29,2 --1.50,0.96,-0.35,1.64,2.74,1.76,5.07,3.58,4.61,7.08,4.28,3.06,4.54,0.60,-0.12,-1.04,0.50,1.31,1.34,1.62,0.50,1 --0.71,0.60,-0.83,-1.12,1.55,2.05,2.81,1.97,0.57,0.01,3.36,3.86,4.58,3.25,5.63,4.93,3.25,2.00,0.97,0.42,-0.38,0 --0.19,0.02,0.50,0.43,0.52,2.60,0.73,0.97,0.35,2.85,2.91,1.16,1.18,1.81,1.30,1.90,2.10,2.15,1.15,0.61,0.25,0 --1.06,1.33,1.34,2.94,2.80,4.06,5.58,5.05,5.41,3.90,1.65,1.23,1.59,-1.11,1.04,0.96,0.01,0.62,-0.92,-1.95,-0.93,1 --0.13,-0.72,-0.21,0.71,0.77,2.29,1.38,-1.16,0.66,3.50,2.51,5.15,5.78,3.90,7.16,4.84,3.93,2.29,-0.99,0.51,0.10,2 --0.06,1.40,0.64,1.50,1.73,2.73,2.34,1.99,2.47,0.50,1.61,2.08,3.22,2.79,4.66,3.29,2.69,1.77,1.04,0.19,0.28,0 -1.84,1.13,0.72,2.06,1.25,1.18,2.66,3.62,2.74,3.50,5.72,4.73,2.79,2.82,0.78,3.16,-1.99,1.80,1.76,-1.25,0.89,1 --1.58,0.67,-0.40,-2.10,-0.92,0.34,-1.36,0.39,-0.70,1.08,0.37,2.48,4.33,4.93,5.60,5.98,4.57,1.01,3.05,0.37,1.31,0 --1.83,-0.54,-0.71,-2.41,0.14,-1.15,1.56,2.63,2.98,1.34,5.08,3.10,4.69,5.24,5.54,3.53,1.64,0.93,0.25,1.29,0.64,2 -1.61,0.80,-0.05,0.10,-0.32,1.24,0.49,0.68,0.35,1.87,3.25,4.39,3.39,5.07,4.17,3.83,2.27,1.35,0.81,1.33,0.83,2 -2.18,1.13,2.90,0.87,-2.38,1.00,1.77,1.30,4.90,2.97,6.11,6.25,2.66,3.64,1.78,1.51,-1.04,0.15,1.38,-0.41,-1.47,2 --1.52,-0.72,0.60,1.52,0.92,2.16,0.32,1.77,4.56,3.74,2.20,6.13,3.80,4.48,3.00,2.66,1.16,1.43,1.00,2.07,1.70,2 --0.08,0.32,0.70,1.23,0.31,1.81,1.94,0.85,1.33,2.51,1.48,3.88,3.50,2.11,5.52,3.44,3.73,1.93,0.47,1.19,1.12,0 -1.07,0.71,-0.18,-0.80,0.27,0.11,0.57,1.76,0.25,-0.23,2.81,3.06,3.34,3.52,5.09,5.10,3.30,2.15,1.83,1.06,-0.25,0 -0.89,0.07,-1.14,-0.27,1.33,2.41,1.76,0.98,0.86,1.91,1.27,4.27,2.72,4.12,3.98,4.40,2.37,2.25,2.60,2.77,1.44,0 -2.09,1.51,0.96,-0.66,-0.70,0.06,1.60,-1.20,1.65,1.64,2.65,4.34,4.30,4.42,5.65,4.97,3.32,1.59,3.08,0.45,-1.57,2 -0.67,-0.27,0.88,1.34,0.57,1.04,1.55,0.91,-0.78,1.53,1.66,2.39,4.01,4.87,4.29,1.98,2.10,2.35,1.28,1.65,0.70,2 --0.55,0.05,-0.53,2.04,1.13,1.85,2.50,0.69,-0.53,3.19,2.16,3.51,3.76,3.64,5.05,3.44,1.70,1.54,3.44,1.71,-0.80,0 -0.76,-0.12,-1.39,2.35,1.03,2.17,3.39,3.30,0.33,1.22,1.60,3.10,3.91,3.38,4.44,0.13,3.31,0.93,1.55,0.73,-0.07,0 -0.51,-0.79,-2.07,-0.30,-0.86,0.42,0.54,0.60,1.18,2.03,3.29,3.76,3.92,2.99,4.51,3.50,1.79,3.68,1.14,2.31,-1.28,2 -1.14,0.54,-0.33,1.11,0.66,-0.19,1.80,0.99,1.19,1.36,1.84,3.38,6.57,5.50,4.82,4.06,4.64,1.66,1.60,0.74,0.98,0 -0.24,0.51,1.90,-0.93,-0.18,1.92,2.08,0.32,1.86,0.03,3.11,3.08,3.67,4.37,3.32,4.46,5.46,4.76,2.65,-0.98,0.67,0 --1.80,-0.26,0.28,0.98,-0.95,0.24,-0.74,1.69,0.71,1.20,1.19,3.96,2.83,4.21,5.08,1.68,3.49,2.08,3.08,0.21,-0.84,2 -0.23,1.20,2.24,2.01,2.97,4.46,3.86,3.32,2.11,3.12,1.33,0.06,1.48,2.67,2.79,-0.19,0.71,1.65,1.57,2.06,0.70,0 -0.44,1.93,0.16,1.05,0.46,4.28,3.59,3.67,3.85,4.23,4.91,2.93,0.68,3.18,0.52,2.64,1.92,-2.42,-0.55,0.36,0.48,1 --0.15,1.76,1.31,2.83,2.58,3.42,5.21,4.16,4.90,3.14,4.38,2.19,1.44,0.20,2.50,-1.00,-0.63,1.91,0.78,-0.64,0.06,1 -0.44,1.93,1.51,1.63,2.20,2.13,3.47,2.63,1.81,2.16,0.77,1.93,1.16,1.12,3.60,0.97,-1.08,0.62,2.17,1.15,0.86,0 -0.07,1.05,1.54,2.53,2.94,3.34,4.29,4.38,5.70,0.29,1.10,1.63,0.93,1.99,1.15,1.31,1.65,1.24,-0.15,-0.66,-0.05,0 --0.52,2.73,0.79,2.65,1.31,5.21,4.52,5.03,3.56,2.57,1.46,1.37,1.80,0.29,2.87,0.65,0.92,0.80,0.30,-0.58,0.46,0 --1.08,-0.16,-0.91,-0.53,0.06,0.60,-0.14,-0.20,0.45,0.52,2.89,2.59,4.87,5.43,5.81,4.78,5.95,3.08,1.98,1.11,-1.22,2 --0.83,1.44,1.65,1.35,3.37,5.15,5.99,5.08,3.75,2.39,2.62,1.25,-0.29,1.88,-0.15,1.73,1.91,-0.57,1.40,-0.12,0.52,1 -0.43,-0.49,0.57,1.12,2.49,2.72,1.42,2.84,1.23,1.74,0.72,1.94,1.85,1.13,3.35,1.08,-0.40,1.64,-0.17,1.71,0.51,0 --0.25,1.02,0.20,1.02,2.26,1.25,3.63,3.14,1.94,1.47,2.25,1.47,0.80,1.12,1.05,-0.59,1.98,0.25,0.64,-0.51,-0.61,0 --0.39,2.18,1.67,1.14,-0.44,3.75,2.61,3.94,3.16,4.14,6.01,2.23,2.54,0.69,0.05,1.45,1.62,0.38,1.13,-0.74,0.52,1 --0.41,-0.86,3.42,3.08,1.83,4.69,3.18,4.82,2.62,2.61,1.57,1.53,0.85,1.46,-0.40,1.78,0.07,0.03,-0.27,1.09,-0.25,0 --1.96,-0.96,1.25,0.72,1.05,-0.17,-0.16,3.13,4.21,5.80,5.94,4.36,2.69,0.92,2.94,1.55,0.50,-0.30,-0.84,0.24,0.23,1 --0.52,0.23,-0.27,0.89,-0.08,-0.41,2.25,2.18,4.95,3.86,5.79,5.34,2.85,2.57,0.78,3.66,0.56,-0.30,-0.53,-0.22,0.89,1 -0.49,-0.45,2.89,-1.74,1.29,3.30,3.36,4.07,2.67,1.44,2.58,2.62,3.23,2.09,2.81,3.82,2.17,1.45,0.41,1.37,-0.98,0 --1.50,0.02,-0.21,1.07,2.71,3.41,1.80,1.29,0.87,0.76,1.87,1.97,1.95,3.80,1.14,2.93,1.81,1.61,1.36,1.89,0.10,0 --1.31,-0.15,0.28,0.20,0.31,2.59,3.24,4.04,4.96,5.71,6.31,3.21,2.27,2.33,3.72,0.70,1.53,-1.04,0.53,-1.34,-0.57,1 --0.43,0.23,0.30,-0.74,-1.80,2.30,0.32,1.85,1.52,4.33,3.64,3.46,3.12,3.70,5.29,2.76,2.30,1.14,2.58,1.06,-0.21,2 --0.20,0.49,-0.12,-0.75,-0.03,1.88,2.83,3.46,5.21,4.12,3.78,4.30,3.67,3.52,0.06,2.25,0.03,-1.00,0.88,0.05,-0.50,1 -1.14,1.16,0.93,2.17,2.86,0.23,5.23,3.02,5.00,4.24,4.75,3.63,2.19,1.07,2.55,-0.21,-1.22,1.07,0.48,1.08,0.55,1 --0.38,2.03,-0.68,1.89,0.70,1.97,2.10,4.35,3.70,5.45,6.40,3.20,3.11,1.71,-1.87,1.55,-0.81,-1.26,0.49,0.65,0.63,1 -0.41,0.45,1.27,1.67,2.70,5.54,5.21,4.25,2.80,3.01,-0.28,2.60,1.10,0.86,1.39,3.67,1.53,0.87,2.65,1.54,0.99,0 -0.75,0.41,-0.42,1.23,1.13,0.85,3.70,3.70,3.76,3.62,4.13,3.69,3.24,3.52,1.34,-0.43,-0.67,-0.53,-0.97,-0.29,-0.50,1 --0.44,3.23,0.19,0.47,0.34,3.02,3.48,4.97,4.28,5.31,4.31,2.89,2.56,2.06,2.97,1.70,0.54,0.77,1.66,-0.43,1.05,1 --1.84,0.53,-0.62,-2.62,0.45,0.67,1.24,5.26,5.53,4.09,6.11,4.48,4.83,3.20,4.30,2.64,-0.09,-1.31,1.47,1.32,-0.59,2 -0.32,-0.61,-0.96,0.60,2.51,1.87,1.40,1.50,0.96,3.04,1.78,2.02,1.34,1.70,2.95,2.80,2.95,2.86,2.47,1.33,0.94,0 -2.49,0.33,-1.34,0.34,2.18,1.68,0.85,1.24,2.64,4.58,4.04,4.20,2.57,3.63,2.44,2.40,1.83,1.10,-1.13,1.35,2.54,2 -0.51,1.19,-0.74,1.51,1.12,1.52,1.10,2.09,-0.44,0.97,-0.86,4.08,4.92,4.27,6.54,4.62,3.48,3.79,2.53,3.07,-0.14,0 -2.04,-0.05,0.91,-0.54,0.46,1.27,0.48,2.91,1.48,2.65,6.13,4.22,2.47,3.01,3.98,2.78,4.05,1.79,0.32,-0.22,-1.61,2 --1.49,0.20,1.85,-1.33,2.16,2.41,3.30,3.88,4.46,4.37,3.29,1.71,1.40,2.02,1.06,0.55,-1.04,-0.51,-0.57,-0.52,1.30,1 -0.56,-0.92,1.66,-0.66,0.18,0.95,2.07,4.06,4.76,4.57,4.07,2.64,3.14,2.59,2.88,0.33,-1.10,0.36,-0.10,-0.13,-1.53,1 -0.87,0.32,0.27,0.68,1.29,1.17,3.07,2.10,4.41,5.42,6.07,4.39,3.34,2.93,1.35,1.47,0.86,0.34,-0.61,-1.12,-1.11,1 -1.59,0.48,-0.28,-0.05,0.27,-0.22,2.31,2.11,3.73,4.17,6.32,4.05,2.65,1.72,3.50,1.89,1.81,-0.18,-1.03,0.41,-0.67,2 -0.20,-1.85,0.40,-0.04,-0.18,0.97,-1.06,0.39,-1.48,0.51,0.73,3.11,4.67,5.12,5.57,5.54,4.12,1.88,1.12,-0.14,-1.37,2 -0.67,0.43,-0.69,0.14,2.20,1.78,4.04,2.89,3.86,3.56,3.49,4.12,3.42,0.82,0.11,-0.38,-0.13,0.11,-0.50,0.63,0.79,1 -1.65,1.58,1.83,1.80,3.59,2.79,3.52,4.77,5.15,5.14,3.19,2.15,0.29,2.28,2.14,-0.24,-0.72,0.13,-0.39,-0.06,-1.18,1 --1.01,1.57,3.81,-1.49,-0.82,2.12,-0.53,1.18,-0.32,0.59,2.75,3.26,2.41,2.58,7.25,4.64,2.25,1.40,1.55,0.48,-0.12,2 --0.89,-0.91,1.12,-0.89,1.54,0.43,1.37,0.32,1.98,2.11,4.11,3.05,4.21,3.73,3.40,4.75,2.18,2.24,-0.22,0.48,-0.12,2 -1.42,0.10,0.50,1.07,0.71,1.78,3.52,4.02,4.75,5.34,5.39,4.58,4.97,2.86,2.46,1.60,1.06,1.17,-0.15,-0.02,-0.45,1 -1.67,1.09,0.78,0.08,2.26,1.35,2.08,1.30,1.27,0.61,1.31,3.51,0.91,2.51,2.80,2.47,3.17,2.68,2.90,0.74,1.59,0 -0.06,1.44,4.65,1.69,3.87,2.10,5.52,4.08,4.80,2.94,1.96,0.75,2.05,0.46,2.16,1.99,-1.72,0.54,1.26,-0.08,1.62,0 --0.27,0.95,-0.69,1.23,2.35,0.45,-0.51,1.82,1.15,0.12,1.60,4.29,3.51,6.40,6.99,4.12,4.64,2.82,0.66,1.63,-1.33,0 -1.75,1.03,0.95,1.73,2.91,4.40,4.94,2.76,3.94,5.44,2.67,1.11,1.00,2.48,-0.04,1.91,0.05,0.10,0.56,-0.31,-0.56,1 --0.87,1.83,0.09,0.48,3.37,2.43,3.83,4.31,4.31,3.24,4.53,4.84,3.96,3.01,0.36,1.29,0.26,1.35,-0.96,1.23,1.51,1 --0.57,-1.84,-1.41,0.49,-1.43,1.52,1.59,3.13,5.01,5.87,5.29,5.96,6.00,1.53,2.37,0.89,0.50,-0.33,-0.50,-0.40,-0.30,2 --1.36,-0.84,-0.79,0.24,3.67,1.19,0.55,0.57,1.82,3.05,4.39,4.91,1.88,4.03,4.37,3.46,2.43,1.45,0.89,0.66,-0.40,2 --1.14,1.64,1.68,2.31,2.78,2.87,3.93,4.10,4.21,4.39,3.44,3.31,0.52,1.72,1.58,1.15,0.23,0.95,0.18,-1.93,0.02,1 -0.71,-0.13,-0.02,-0.96,0.68,-1.06,0.40,0.71,1.27,1.59,1.15,3.34,4.09,3.53,4.98,4.85,4.38,2.69,0.53,1.49,-2.34,0 --0.03,2.20,1.23,1.65,3.98,3.81,5.32,3.50,3.81,2.53,1.91,3.71,0.45,1.43,0.84,1.05,2.04,0.26,0.46,0.30,0.04,0 --0.63,2.96,1.38,3.31,4.93,5.22,4.39,4.28,4.39,2.03,0.58,0.48,-0.40,-0.88,0.08,-0.02,0.70,-1.07,-1.43,-0.08,1.07,0 -0.34,-0.17,0.96,1.67,0.97,1.66,3.06,1.49,3.36,5.45,5.41,4.50,4.41,1.07,0.78,0.30,0.70,0.10,-2.56,-0.29,0.77,1 --0.04,1.24,0.11,-0.51,0.80,0.58,-0.49,-1.13,-0.46,1.42,0.80,2.54,3.90,3.68,5.06,3.95,4.75,2.42,0.54,-0.28,-1.49,2 --1.15,-1.33,0.00,0.07,1.69,1.30,1.70,0.86,2.27,2.10,3.37,4.48,3.70,3.06,4.67,3.32,2.84,1.78,1.62,0.60,0.06,0 --1.71,0.76,0.37,-1.41,-0.27,0.45,1.16,2.55,0.71,2.49,3.07,4.08,2.80,2.51,4.02,3.73,1.39,2.58,1.60,0.75,-0.36,2 --0.17,0.11,1.68,0.54,0.62,1.80,3.26,3.66,5.39,2.94,4.94,3.47,2.26,2.80,2.20,0.52,-1.39,0.64,-1.03,0.69,0.10,1 --1.80,0.11,-1.22,1.24,1.00,-0.34,1.22,-0.72,-1.42,1.70,2.28,3.33,4.75,6.46,7.96,6.15,5.31,1.50,2.20,2.02,0.48,0 --0.69,0.27,2.46,0.17,-0.11,2.64,4.93,2.66,2.87,3.47,5.43,3.89,1.58,2.06,2.10,0.95,1.37,-0.38,0.90,-1.04,0.28,1 -1.35,-0.47,-1.42,-0.81,-0.23,-0.02,0.01,0.79,3.27,4.10,2.58,4.52,4.81,2.08,1.56,2.46,1.46,1.18,2.08,-0.89,0.53,2 -0.04,1.09,-0.31,-0.38,-0.57,-1.55,2.66,2.19,4.00,3.63,4.06,3.42,4.57,3.21,1.34,2.48,-0.23,0.63,0.26,0.28,-1.10,2 -1.05,0.56,0.69,1.52,2.91,1.82,1.62,3.53,0.69,1.94,1.34,3.67,1.56,4.12,4.49,2.85,2.17,2.88,1.54,-0.29,-0.46,0 -1.46,0.17,1.03,0.19,0.93,0.55,2.53,2.21,2.09,3.21,1.85,0.57,2.32,3.01,5.13,1.52,0.84,1.08,1.30,0.31,-0.47,0 -0.62,-0.62,0.18,1.09,-0.38,1.16,4.72,3.87,3.78,3.74,6.71,4.43,2.92,5.29,1.56,0.43,2.04,0.45,0.45,0.62,-1.58,1 --0.63,0.38,-2.03,-1.67,2.30,0.99,3.95,2.01,3.60,5.61,4.96,5.81,4.20,2.73,1.50,1.54,-0.44,0.06,0.58,-1.01,0.73,1 --1.55,0.98,0.36,0.59,0.72,0.93,0.78,2.64,3.18,4.80,5.26,5.21,4.25,3.94,2.84,2.69,0.17,0.99,1.71,0.57,0.80,2 --0.16,-0.79,0.07,0.01,0.26,1.01,1.24,0.98,-0.52,3.06,0.30,2.83,4.47,4.64,5.95,4.55,2.38,1.86,3.43,-0.41,-0.31,0 --0.20,0.30,-0.59,0.68,0.77,0.76,1.54,0.45,2.63,0.93,0.16,2.21,1.65,3.93,5.39,3.02,2.48,4.06,2.19,0.68,0.85,0 -2.27,0.61,-1.05,-2.19,1.67,1.45,2.08,2.35,2.76,5.77,6.63,5.65,4.44,3.35,2.97,1.37,1.15,-1.04,1.05,-1.41,0.46,2 --1.04,1.19,2.74,1.86,3.04,3.67,6.43,5.41,5.14,2.98,2.05,1.35,0.19,1.81,0.49,-0.78,0.72,0.73,1.20,-1.10,-1.03,0 --0.27,0.34,1.67,0.08,2.15,2.96,4.08,4.08,3.13,1.48,2.15,3.11,3.85,2.30,2.65,3.03,1.10,1.42,2.17,-2.30,-0.27,0 -0.79,1.17,0.28,0.76,1.93,4.30,3.48,3.30,4.14,2.54,3.96,3.21,0.73,1.89,0.09,0.89,-1.11,0.15,1.39,0.77,-1.99,1 --0.80,-1.38,0.21,-1.87,-0.02,1.38,2.41,2.10,0.36,2.76,1.08,1.59,3.25,3.18,5.73,3.78,2.60,2.22,1.43,0.65,0.56,0 -0.27,-0.57,-0.40,-1.04,0.06,3.32,3.01,3.53,3.10,4.66,3.71,4.26,4.37,3.24,1.82,2.92,1.01,1.38,-0.86,-0.34,0.94,2 --0.38,1.57,0.60,2.33,2.46,0.57,2.86,3.87,1.90,0.52,1.92,1.02,1.91,2.95,4.98,2.89,2.10,2.26,1.27,0.54,-0.51,0 -0.02,-0.59,0.75,-0.03,0.98,-0.86,2.25,1.80,0.32,1.49,2.98,2.74,2.48,4.16,5.18,4.20,1.49,3.40,0.51,0.08,-1.14,0 -0.94,1.62,-0.02,4.60,3.68,3.48,5.28,4.03,4.11,3.68,1.68,2.41,0.41,-0.58,0.70,0.59,0.70,1.56,0.73,-0.79,1.01,1 --0.72,1.37,1.30,3.60,3.63,3.40,6.88,4.99,2.71,2.75,3.79,0.52,0.65,1.18,0.83,1.61,-1.63,-0.49,1.20,0.12,-1.49,1 -0.10,0.64,-0.95,-0.18,0.11,1.49,3.18,2.86,2.03,4.61,4.32,4.04,4.80,5.00,4.29,2.99,2.35,1.05,0.74,-1.13,1.04,2 -0.58,-1.83,-0.10,-0.97,0.28,0.03,-0.23,2.06,3.57,2.22,3.63,3.31,3.89,2.15,5.10,1.71,0.98,1.93,3.67,0.69,0.01,2 -0.54,0.68,-0.82,0.93,-0.23,0.32,-0.61,0.15,-0.26,1.87,5.51,3.69,4.40,4.70,3.95,4.11,3.39,2.12,2.46,1.18,0.54,2 --0.39,-0.03,1.69,1.24,3.80,4.65,5.60,4.26,4.02,2.95,3.44,2.53,1.43,0.27,0.75,-0.24,0.20,2.00,0.81,-1.51,0.18,0 --0.75,-0.34,-0.22,1.82,0.41,-1.70,-0.22,-0.40,1.20,4.26,2.55,3.59,3.98,4.49,5.95,3.35,2.94,3.84,0.65,0.55,1.80,2 --1.11,0.15,-0.20,-0.44,0.72,-1.15,1.12,-1.09,2.70,1.62,0.66,2.19,5.16,5.11,4.46,3.93,4.25,3.59,1.31,0.47,0.68,0 -0.96,0.29,-0.19,1.14,-0.09,1.36,3.08,1.50,5.23,5.45,4.98,4.77,3.99,1.22,2.31,0.65,0.10,-0.17,-2.68,-0.42,0.83,1 -0.26,1.32,0.84,0.25,-1.11,-1.00,2.24,3.13,3.19,5.33,6.20,6.18,4.24,3.23,3.33,-0.18,-1.75,-0.20,-0.38,-0.95,-0.22,1 --0.18,0.84,0.33,0.84,1.21,1.21,-0.01,1.25,1.50,1.13,2.08,3.74,3.11,4.17,5.08,4.86,2.39,-0.95,0.89,0.42,-0.18,0 --0.70,-0.90,0.06,1.03,0.37,-1.22,0.51,0.84,0.08,2.62,0.82,3.27,6.04,4.10,4.34,0.89,3.69,3.11,2.32,0.86,-0.29,2 -0.26,0.30,1.22,-1.20,-0.05,-0.96,-0.53,1.38,2.66,-0.01,2.67,4.37,3.17,4.69,4.85,3.69,3.89,3.93,2.37,1.98,-0.25,2 -0.35,1.53,1.51,1.66,3.10,5.82,3.53,4.95,2.98,4.07,3.26,1.30,2.36,-0.35,-1.43,1.60,-0.27,0.65,-0.98,0.10,-1.78,1 --0.22,0.78,0.06,-0.25,0.75,-0.49,2.01,1.02,3.18,3.75,5.75,6.34,4.88,2.77,2.85,0.59,0.95,0.85,0.70,-1.10,0.24,2 --0.01,0.99,0.22,0.65,-1.23,1.99,3.46,3.89,3.61,6.77,7.05,4.48,1.86,3.40,3.06,0.02,-0.62,0.13,-0.97,0.83,0.10,1 --0.40,-0.48,0.13,-0.54,-0.52,2.33,3.23,3.57,5.61,4.55,5.19,4.39,4.07,3.78,2.53,-0.05,-0.31,0.86,-0.58,-0.92,1.01,1 --0.50,2.12,-0.01,-1.16,1.67,1.19,1.90,-0.49,0.39,2.51,2.17,4.77,3.91,4.43,5.77,2.77,1.08,3.66,1.65,-0.10,0.04,2 -0.73,1.08,0.33,2.66,1.31,3.17,2.52,2.40,2.08,2.46,1.26,1.51,2.02,5.02,3.44,2.89,3.82,2.29,1.66,1.15,0.15,0 -1.72,1.70,-3.56,-0.63,0.83,0.78,-0.05,1.31,1.88,3.64,3.55,3.31,3.08,4.86,2.80,2.25,3.13,2.11,2.86,0.51,0.21,2 -0.38,0.29,0.03,-1.46,1.45,1.62,2.00,2.99,5.36,5.19,6.35,3.31,1.50,4.11,-0.47,0.55,-0.02,0.60,-0.92,0.20,-1.01,1 -0.38,-0.58,2.16,2.04,3.16,3.61,3.42,3.43,2.38,2.43,1.79,0.26,0.73,1.58,0.64,2.19,3.59,0.58,0.07,-0.74,0.87,0 --0.22,-0.59,1.11,3.47,1.52,0.02,3.35,0.98,2.90,1.81,2.40,2.27,1.84,1.51,4.04,2.56,2.86,1.82,0.27,0.46,0.28,0 --0.22,3.34,1.31,0.85,2.02,2.93,3.23,2.83,0.62,0.29,1.94,0.91,0.40,2.02,2.57,2.68,2.15,1.75,0.93,2.02,-0.87,0 -0.36,0.63,-0.27,1.50,0.36,1.65,2.39,3.23,4.03,3.24,3.66,2.10,2.12,2.53,0.98,0.12,0.94,-0.86,1.80,0.43,0.75,1 --0.40,-0.65,0.79,-0.06,1.50,0.22,0.19,2.54,1.46,3.62,1.95,4.09,3.93,3.50,4.45,2.21,1.24,1.59,1.84,0.53,-0.79,2 --0.26,0.07,1.61,4.14,4.63,4.46,5.51,4.63,2.60,2.38,4.04,0.11,-0.49,-0.42,0.69,-0.55,1.43,-0.42,1.45,-1.32,-0.58,0 --0.27,-0.20,-1.41,-1.06,-0.66,2.28,2.42,2.40,2.32,0.96,3.08,1.29,0.21,2.36,4.13,4.47,4.09,0.92,3.35,1.08,0.72,0 -0.73,0.35,0.01,0.97,0.81,2.90,1.39,1.05,-0.09,1.14,0.93,3.61,3.93,5.46,5.99,6.44,3.76,2.38,2.84,1.21,-0.50,2 -1.39,-1.29,-3.42,-2.15,-0.27,2.39,1.03,3.55,2.76,4.77,6.67,5.27,4.74,2.04,2.04,2.12,-0.40,1.41,0.89,-0.60,0.73,2 -0.85,0.48,-0.77,2.02,-0.81,1.73,1.83,-0.01,0.74,3.59,3.97,4.63,4.04,2.49,4.80,4.20,2.72,3.31,2.02,1.63,1.43,2 --1.58,1.53,0.97,-0.29,3.08,3.03,4.92,7.67,5.16,1.85,4.70,4.13,2.39,2.16,0.56,0.71,-0.54,1.48,0.16,1.30,0.52,1 --0.94,0.19,-0.10,-0.44,-0.60,-0.04,0.90,0.16,-0.12,2.71,1.85,4.89,4.58,6.57,5.41,4.96,3.60,3.64,0.85,-1.41,-1.57,2 --0.44,0.24,-1.44,-1.32,-1.20,0.97,2.05,-0.77,1.71,0.85,1.70,3.26,4.90,5.35,5.45,5.30,2.52,2.26,2.08,-0.17,0.71,2 -0.36,0.62,0.58,1.30,1.80,1.52,3.75,4.70,3.06,3.49,3.25,4.47,2.39,1.93,0.85,0.04,0.29,-1.17,-0.76,-0.27,-1.99,1 --0.11,0.60,1.86,2.44,1.70,2.37,4.62,3.89,3.41,3.14,3.82,1.60,0.65,4.20,3.36,2.94,1.51,1.46,0.18,-0.62,-0.01,0 --0.54,-1.48,-0.08,-0.57,-0.52,1.61,1.50,0.93,0.83,1.19,3.38,1.19,3.62,2.50,4.85,5.60,2.69,2.03,1.74,1.89,-0.55,0 --0.72,-0.64,0.29,0.71,1.22,-0.41,2.11,2.84,1.51,2.64,3.86,5.18,2.48,2.84,3.22,3.37,2.53,0.46,0.35,-0.48,-0.95,2 --1.95,1.77,0.11,1.98,3.17,3.08,4.77,3.14,4.09,3.53,3.48,4.72,1.58,2.05,3.18,1.85,-0.17,0.38,-0.85,0.51,-0.79,1 --1.40,0.03,1.17,2.17,1.97,2.43,3.41,3.81,1.38,2.77,1.72,2.55,1.53,1.63,4.13,1.98,4.45,-0.16,2.54,0.53,-1.12,0 -0.63,-0.48,0.96,0.12,0.86,1.06,-0.68,0.53,1.47,1.47,2.19,2.34,3.77,4.12,5.99,2.70,4.35,0.69,0.76,0.07,1.41,0 -0.27,-0.68,0.03,0.11,0.28,1.78,2.57,1.98,2.77,4.82,4.71,4.79,3.53,2.29,2.20,1.41,-0.36,0.15,-1.10,0.39,-1.25,1 -0.09,-0.65,-0.41,0.69,4.11,1.77,2.25,2.75,2.99,4.66,4.92,4.02,2.83,2.49,1.31,1.01,1.06,-0.85,-0.73,-1.46,-0.58,1 --0.74,0.82,1.18,2.44,2.27,4.01,4.25,5.65,2.88,4.85,2.29,-0.11,1.27,0.65,-0.01,-0.58,-0.59,0.53,1.36,1.04,0.56,1 --1.77,1.37,-0.51,1.31,1.86,0.56,4.39,2.41,4.02,4.25,4.98,2.30,5.87,1.61,0.58,2.82,0.42,0.48,1.14,-0.66,0.43,1 -1.48,0.67,0.57,-0.99,-0.71,1.32,0.37,0.84,1.32,5.45,3.46,4.34,4.47,5.24,2.61,2.73,2.72,1.20,2.46,0.19,-1.14,2 --1.58,0.16,-1.53,-0.33,-0.25,2.85,0.09,2.30,2.24,1.06,3.64,4.70,2.07,3.10,5.74,3.26,2.02,2.92,2.09,1.64,-3.26,2 --1.22,1.15,2.39,2.66,4.52,3.80,3.33,4.26,5.01,4.45,2.58,5.64,1.37,0.96,-0.66,-0.61,-0.45,0.80,2.88,0.05,0.95,1 --0.14,-0.47,3.56,1.16,2.61,3.47,5.85,4.75,4.41,4.24,0.15,1.53,-0.67,0.40,-0.75,1.98,-0.17,0.65,1.26,2.22,-0.56,0 -0.57,-0.51,-2.06,0.36,2.29,3.24,0.61,0.63,1.85,0.74,1.63,2.52,4.34,4.01,5.08,4.48,4.34,3.35,1.65,1.19,0.09,0 -1.66,-0.59,-0.39,-0.08,1.68,0.14,0.65,1.54,1.75,3.41,4.27,5.57,3.49,6.44,3.85,0.48,-0.97,-0.46,1.24,1.72,-0.98,2 --0.95,0.50,-1.87,0.94,-0.78,0.99,-0.49,-0.80,1.34,2.13,0.69,2.82,3.04,4.24,5.44,4.27,3.84,2.08,2.26,1.06,0.29,2 --0.76,2.80,2.45,3.81,2.15,1.91,3.37,3.15,3.55,1.80,1.38,1.36,0.00,0.77,1.72,1.82,1.21,2.52,-0.46,0.26,2.86,0 -0.05,0.17,0.40,-0.27,0.84,1.66,2.96,2.67,3.62,4.39,6.37,5.83,4.43,3.44,0.03,1.24,-0.16,-0.99,0.79,-1.84,-0.18,1 -1.66,-0.35,2.11,3.19,3.55,4.65,6.48,4.66,3.39,1.35,0.50,1.46,0.27,-0.86,-1.10,0.30,1.97,0.19,0.76,-0.01,0.36,0 -0.32,2.31,0.45,-0.16,-0.09,0.29,-0.35,0.31,-0.21,3.44,3.20,3.51,1.80,5.76,6.75,3.74,4.27,1.76,1.89,0.98,1.82,0 -0.40,0.87,-1.42,2.73,4.50,3.48,3.73,5.08,5.48,3.88,5.12,3.28,0.78,0.93,1.24,0.31,-1.68,0.43,1.13,0.97,0.30,1 --0.79,0.98,3.30,3.82,3.31,4.34,6.70,5.22,4.96,3.56,2.38,1.28,-0.05,0.42,-2.48,0.82,-0.35,-0.57,-0.79,-1.02,0.56,1 -0.11,-0.51,1.14,0.35,0.14,0.31,1.07,1.29,2.90,2.61,4.66,3.18,3.27,3.04,2.42,-0.22,-0.73,0.86,1.18,-0.72,0.84,2 -0.39,2.65,-0.39,0.22,0.98,2.60,4.09,2.92,3.08,4.72,5.15,3.51,2.99,2.37,1.64,1.19,-0.23,1.26,-0.15,0.89,1.26,1 --0.47,-0.34,-1.17,0.31,1.03,0.66,3.85,3.86,3.48,4.71,5.51,4.58,5.32,1.79,-0.56,2.55,-0.70,0.23,-0.23,2.05,0.30,1 -0.61,-0.26,0.47,1.43,2.18,1.07,1.64,2.95,4.62,2.64,4.50,4.44,3.41,2.13,2.04,-1.02,-1.00,0.43,2.29,0.85,0.75,1 --0.65,0.85,1.23,-1.90,-0.02,-0.35,2.60,3.22,3.26,5.32,4.96,5.58,4.11,4.25,2.80,2.27,-1.34,0.25,1.89,2.60,-0.94,2 --0.86,0.31,-0.39,-0.72,-1.25,1.08,0.13,0.26,-2.37,0.00,1.32,0.24,3.16,4.43,7.07,2.39,3.93,3.96,0.64,1.99,-0.06,2 -0.52,-0.01,0.55,0.90,2.42,2.25,5.36,4.71,4.10,4.69,5.40,2.00,1.48,0.61,-0.36,0.44,0.77,0.16,0.13,1.22,0.22,1 -1.41,1.06,-0.23,1.70,1.65,2.02,1.69,1.94,2.85,2.85,3.91,0.87,2.42,3.41,4.04,2.96,4.01,1.82,2.29,0.63,-1.47,0 -0.35,-0.11,0.02,-0.36,-1.02,0.97,1.41,1.52,2.90,2.73,3.31,3.95,4.89,1.92,3.24,2.01,-0.53,1.97,0.42,-0.12,0.37,2 -1.29,0.73,2.36,3.04,3.72,4.83,5.51,4.52,3.77,2.74,3.32,1.85,1.45,0.99,-0.53,0.97,-2.18,-0.26,1.31,0.15,-0.33,1 -0.67,1.25,2.24,0.91,3.56,5.28,6.83,6.39,4.02,3.39,2.18,1.90,1.89,0.76,-0.38,-0.40,-0.21,-0.25,-1.06,-1.28,-0.65,0 -1.34,0.08,1.99,0.94,3.03,2.36,2.62,2.86,4.63,3.29,5.82,3.57,2.56,4.47,0.00,0.81,0.72,-0.57,0.28,-0.06,-0.42,1 --0.49,1.71,0.27,1.71,2.17,1.92,-0.74,-1.20,0.99,0.75,3.27,3.02,4.50,3.60,4.30,3.22,1.74,2.56,1.39,0.52,-1.51,0 --1.29,0.25,0.47,1.78,0.20,1.41,2.94,0.75,0.82,-0.46,2.63,2.91,2.88,2.36,1.90,3.90,3.97,1.96,2.65,1.39,-0.33,0 -0.08,-0.67,-1.15,-0.64,-0.11,-0.02,1.36,3.55,2.84,2.33,6.48,5.57,3.69,2.06,1.65,2.60,-0.02,0.94,-0.53,0.91,0.46,2 --0.07,1.23,0.84,1.31,-1.88,2.58,0.59,0.05,-0.98,-0.34,1.73,2.98,5.55,4.40,3.74,5.02,4.90,3.67,1.69,1.24,0.25,2 -1.55,-0.73,-0.26,-0.53,-0.09,1.18,1.14,2.42,3.22,2.73,4.31,3.56,2.78,3.44,3.63,2.55,2.64,0.02,0.68,-0.99,0.33,2 --0.47,-1.51,-0.43,-2.11,0.69,3.03,2.24,2.65,4.39,4.56,5.47,4.03,4.92,2.21,3.74,1.13,-0.32,-0.23,1.19,1.12,1.95,2 --0.13,0.63,1.31,-1.00,-0.78,1.98,0.66,1.34,1.65,1.92,4.31,6.49,4.09,4.50,4.74,1.80,3.72,1.79,0.56,1.50,0.19,2 -0.86,0.90,1.37,2.87,3.91,4.22,5.11,6.64,4.46,3.11,4.92,2.69,2.08,-1.56,0.79,0.42,1.25,1.69,-2.53,-0.35,0.72,1 --0.23,-1.30,-0.64,2.03,1.68,0.76,1.03,3.55,2.28,5.95,3.20,2.81,2.60,1.67,2.02,-0.45,-0.91,0.72,0.89,-0.28,0.86,1 --0.43,0.58,0.60,0.30,0.01,1.85,4.14,1.55,4.81,4.26,5.46,4.74,1.26,0.82,1.31,1.65,-1.91,-0.77,-0.33,0.52,-0.23,1 --0.69,0.90,1.77,2.61,0.71,4.15,2.77,3.49,3.52,2.55,1.78,2.12,3.08,3.83,2.22,1.70,3.21,-1.30,1.36,2.57,0.30,0 --0.48,-0.06,0.04,1.13,0.68,2.02,2.46,0.40,0.91,2.01,1.94,2.22,1.80,3.89,2.41,2.94,2.60,2.55,1.30,0.66,2.10,0 --1.05,-0.15,0.35,1.89,1.09,1.28,1.46,3.30,3.43,3.22,6.48,5.22,3.64,4.40,2.80,3.50,-0.02,0.97,0.39,-0.15,-0.74,2 --1.04,-1.26,0.26,-1.77,0.53,2.95,2.76,4.86,3.83,4.79,3.52,4.10,1.85,2.53,-0.81,2.57,0.20,1.09,-0.10,-0.86,-1.16,1 --0.47,0.87,-0.32,3.15,1.71,4.57,1.85,4.82,2.56,6.64,3.59,2.50,0.95,2.71,1.67,1.09,-0.41,-0.00,0.46,2.89,0.06,1 -0.54,0.13,0.38,0.33,0.91,1.22,2.44,3.17,2.26,2.61,1.20,2.76,1.51,1.74,3.81,1.94,4.39,2.25,1.58,0.98,-0.04,0 -0.99,0.34,1.69,0.02,-1.39,0.35,-0.46,1.15,-0.05,1.63,1.28,4.16,3.97,5.80,7.20,4.26,2.11,3.11,1.32,0.41,-0.31,2 -1.90,-1.86,-0.18,2.78,2.77,2.99,3.42,3.61,2.61,4.28,3.84,4.69,2.89,2.17,0.93,1.42,-1.79,0.75,0.51,-2.36,-0.96,1 --0.11,-0.66,1.06,1.67,2.38,1.90,1.39,-0.61,1.60,2.80,1.90,2.04,0.66,5.29,5.00,5.49,1.59,1.73,2.02,1.22,0.58,0 --1.88,2.38,3.27,2.43,3.23,4.21,5.85,5.37,5.60,2.65,3.27,1.42,-0.82,0.85,1.51,1.05,1.41,1.31,-2.10,0.50,-1.06,0 --0.16,0.16,0.63,0.63,0.16,-0.74,1.02,1.24,2.06,2.19,4.24,3.62,3.98,3.91,3.03,3.36,0.31,1.15,1.28,0.22,-0.37,2 -0.12,0.32,0.86,1.35,2.40,1.84,2.48,0.53,2.57,2.58,1.32,1.89,1.73,3.55,4.61,3.97,2.32,2.09,1.32,-0.78,-0.07,0 -0.17,1.19,0.14,0.81,0.30,1.08,1.99,1.33,-0.37,2.74,2.64,3.45,1.23,5.30,4.71,5.54,3.38,2.36,-1.45,0.70,0.30,0 -1.96,-0.32,1.55,0.83,4.22,3.44,4.54,4.54,4.65,1.67,0.96,0.76,0.62,1.31,-0.55,1.09,0.23,-0.30,1.64,0.05,-0.12,0 -0.87,-0.18,0.85,2.22,5.83,5.72,4.36,5.15,4.88,3.96,2.99,1.94,-0.67,-0.11,-0.91,-1.96,-0.21,-0.38,-0.76,0.45,0.37,1 -1.39,0.56,1.02,2.98,3.94,3.38,4.51,4.74,2.43,2.33,0.74,4.14,2.48,1.67,1.04,1.28,0.80,0.73,-2.04,1.21,-0.08,0 -0.15,0.64,2.40,3.23,5.77,4.04,5.98,4.95,3.57,4.22,1.65,2.24,-1.58,-1.25,0.86,-0.82,-2.03,-0.91,-0.31,0.86,-1.58,0 --1.61,2.52,1.48,2.99,3.77,4.46,4.42,5.86,4.34,3.96,1.48,2.13,0.96,1.11,-0.15,2.31,-1.68,1.11,-0.21,1.11,-1.08,1 -0.90,-0.01,1.48,-1.20,0.40,1.35,3.00,0.01,2.75,1.62,1.94,3.58,4.15,5.04,6.01,5.21,3.67,2.46,1.46,1.27,-0.95,2 --2.57,0.41,1.50,3.74,4.05,3.04,5.14,5.55,3.63,2.86,2.18,0.42,0.48,-0.46,0.70,-0.18,-0.76,-1.22,0.36,-1.27,-1.88,0 -1.17,-2.92,1.26,0.01,0.78,0.09,0.93,1.29,0.75,2.74,3.32,3.85,2.28,4.28,4.16,2.87,2.28,0.25,0.10,-0.94,-1.42,2 -1.71,1.06,1.01,2.66,4.50,5.44,4.56,3.75,4.28,4.75,-0.59,1.81,1.06,-0.49,0.55,-0.14,-0.60,-0.53,-0.73,-0.71,-0.84,1 --0.71,0.58,0.26,1.84,3.47,3.10,3.13,2.07,3.09,1.64,1.46,2.24,1.50,3.27,3.05,0.44,1.40,2.02,-1.73,0.47,0.10,0 --2.01,1.52,1.16,0.69,2.76,2.87,3.42,2.97,4.22,4.33,3.94,3.11,0.52,0.11,0.00,1.02,0.08,0.64,0.90,0.88,-0.86,1 -1.13,1.06,0.89,2.23,3.31,5.86,5.56,6.00,3.26,0.51,2.08,0.27,1.45,2.28,1.21,0.34,1.00,0.99,1.25,0.19,0.14,0 -0.72,1.79,2.94,0.51,4.86,4.35,6.92,4.50,2.72,3.63,2.95,1.67,0.41,-0.60,-1.06,-1.45,-1.22,0.72,-0.23,0.07,-0.17,1 --0.41,0.91,0.55,1.32,-0.86,2.17,3.43,2.88,4.47,3.58,5.08,3.91,0.43,2.03,0.63,-1.37,0.40,1.28,0.64,-0.39,0.64,1 --0.96,1.19,-0.38,2.61,1.32,2.74,1.82,1.83,2.13,2.54,2.45,0.67,1.91,2.06,2.57,-0.45,0.75,1.78,0.55,3.00,0.40,0 -0.03,-0.95,0.12,1.65,0.62,0.87,0.81,2.83,1.20,3.40,-0.41,2.10,1.88,2.88,1.73,4.14,1.66,2.77,1.35,1.70,0.99,0 --0.69,1.01,1.27,1.93,1.78,4.69,4.49,4.24,1.62,2.77,2.33,1.40,1.53,2.18,1.16,2.17,1.13,0.61,0.07,-0.04,-0.40,0 --0.19,1.22,0.86,1.45,1.43,0.18,1.89,1.81,2.58,4.78,5.91,4.00,3.64,1.45,0.70,-0.65,-0.83,0.03,-0.25,-0.99,-0.82,1 -0.20,0.56,-0.33,-0.75,0.52,0.32,-0.01,0.90,2.72,3.57,3.34,3.45,4.23,4.03,2.76,2.12,1.61,1.88,1.73,0.28,-0.09,2 -0.36,-0.31,2.06,-0.93,-0.42,-0.38,2.20,1.80,0.95,3.69,2.58,3.31,5.74,3.19,3.41,3.75,0.57,1.15,0.84,-1.08,1.58,2 -1.66,0.98,0.49,-0.31,2.48,-0.62,3.09,2.62,0.63,2.95,4.32,4.16,5.44,2.87,5.03,3.00,2.82,3.13,0.46,0.28,0.12,2 --0.70,0.98,0.75,1.63,1.35,3.37,2.49,3.39,1.73,2.29,1.00,1.78,2.88,0.11,2.06,1.10,1.81,1.55,0.84,-0.70,0.19,0 --2.22,-0.52,1.94,1.98,1.97,2.10,5.87,4.54,5.03,4.25,2.27,2.65,0.58,0.34,2.01,0.89,-0.40,-0.45,-2.13,0.90,1.47,1 --0.70,0.88,-0.15,-0.01,0.35,2.19,0.83,2.30,2.33,3.54,6.27,6.15,4.67,2.86,3.22,1.66,1.00,-0.43,0.16,0.22,-0.17,2 --0.40,0.43,1.57,2.73,1.69,3.45,5.39,5.40,2.03,2.96,3.33,2.26,1.75,1.54,2.23,4.34,-0.55,0.64,1.24,-0.53,-0.25,0 -0.21,1.93,-0.40,3.80,6.11,5.62,4.48,3.85,3.26,2.81,0.65,2.42,-1.05,-1.54,0.14,0.30,-0.26,0.22,-1.69,-1.03,1.73,1 --0.82,1.04,0.30,1.81,3.98,2.79,5.74,5.72,2.85,2.02,2.23,2.72,-0.91,0.19,1.04,2.22,-0.48,-0.33,-0.80,0.72,-0.87,1 -1.48,1.56,0.52,2.00,0.55,2.20,0.29,3.47,4.02,3.10,4.23,5.90,2.43,1.65,1.15,-0.23,-1.08,-1.42,1.39,-0.88,0.15,1 -0.39,0.33,0.69,-0.03,0.02,0.71,-1.69,2.38,2.80,4.34,6.46,4.72,3.11,2.57,3.94,1.71,0.92,-0.04,0.64,-0.45,-1.24,1 -1.24,1.38,2.39,2.49,3.96,3.53,6.01,5.02,4.27,4.18,2.80,2.04,2.45,1.12,0.44,1.02,-0.02,-2.37,1.54,0.31,-1.43,1 --0.23,0.73,-1.23,1.27,-0.34,0.36,1.20,-0.95,-0.79,1.08,3.50,2.40,3.05,4.41,6.59,6.33,3.83,3.56,2.46,1.26,-0.25,2 --0.93,-0.03,-0.33,-1.40,-0.67,-0.32,0.60,2.48,-0.09,3.20,4.82,4.68,3.56,4.35,3.52,3.18,1.54,1.57,0.96,0.48,0.68,2 -0.50,-0.85,1.01,2.74,2.59,2.58,2.49,4.79,4.86,4.09,4.57,2.30,2.87,1.75,0.43,1.38,0.47,0.57,-0.35,0.29,4.01,1 --0.62,2.49,0.76,1.30,1.97,2.96,4.80,4.49,3.30,3.30,2.44,2.12,0.51,1.37,2.50,-0.56,1.44,0.75,-1.08,0.48,-1.06,1 --1.49,-1.95,-3.37,1.77,0.35,0.31,1.72,-0.92,1.79,1.53,4.25,3.50,2.82,7.38,4.40,3.99,4.01,4.67,0.31,0.46,-1.91,2 --0.28,-0.84,0.32,1.02,-1.19,-0.71,0.36,0.84,0.97,1.97,2.62,3.03,1.94,5.45,4.49,5.59,4.80,0.92,1.99,1.08,-1.50,2 --0.35,1.18,0.25,2.13,2.47,2.74,5.18,3.04,2.65,2.41,4.56,1.87,0.89,1.26,1.08,0.86,0.74,0.04,0.11,-1.95,-0.79,1 -0.43,0.25,1.16,2.13,0.28,2.97,4.71,3.85,0.30,2.25,1.93,2.61,1.76,3.38,1.46,3.73,0.99,1.68,0.19,0.87,0.80,0 --1.59,1.86,1.72,4.22,4.04,4.68,5.89,5.36,3.36,4.77,2.41,0.97,1.32,0.77,-0.11,-0.21,0.25,-0.73,-1.87,-0.58,-0.80,1 --0.08,-0.16,0.15,2.02,2.77,3.25,2.31,3.27,0.05,4.48,0.10,1.66,1.78,2.52,4.69,2.36,2.10,1.31,0.71,2.23,0.48,0 --1.59,2.05,0.81,3.72,4.76,5.38,4.59,5.44,3.11,2.88,3.15,1.22,0.07,-1.46,-0.25,0.74,0.08,0.60,0.55,0.77,-0.04,0 -0.44,0.72,-1.15,0.58,-2.66,1.24,2.18,1.83,1.67,3.40,3.85,4.28,5.33,2.11,4.99,2.80,0.99,0.65,2.52,0.12,1.14,2 -0.07,-0.02,0.35,-1.62,0.67,1.16,-0.69,1.53,0.92,0.84,3.61,4.49,4.67,3.89,3.31,4.86,3.12,1.21,1.87,1.81,0.43,2 -1.18,0.02,2.03,0.58,0.07,2.15,2.12,0.45,1.42,1.16,0.63,2.48,4.22,4.56,5.26,4.02,2.83,2.49,0.23,1.64,-1.91,0 -0.36,0.19,1.01,1.14,0.96,-0.32,0.02,0.06,-0.50,0.49,3.70,2.81,4.72,4.16,4.11,5.88,3.89,1.39,3.03,0.82,-0.66,2 -0.44,-0.22,1.07,1.05,2.30,3.23,3.72,5.46,3.06,3.29,1.44,1.20,1.06,0.68,0.61,0.83,1.35,-0.04,0.77,-0.05,0.24,0 -0.76,1.31,-0.93,0.62,-0.11,2.70,4.17,3.02,1.82,2.90,4.74,5.49,3.93,2.07,2.53,1.21,1.85,-0.54,-0.50,-1.59,-1.39,1 -1.21,1.12,2.02,2.87,2.79,3.49,3.39,5.34,3.30,2.95,1.38,0.90,-0.53,0.64,0.69,-0.47,-0.76,-1.78,0.61,1.37,0.35,1 --0.44,1.07,1.29,3.10,4.19,6.26,5.40,5.34,2.70,4.11,-0.60,0.67,1.19,-0.37,-0.64,-1.55,0.30,-1.36,0.43,-0.44,1.14,0 -0.75,2.08,1.02,1.28,4.32,3.09,2.34,3.13,0.78,2.14,1.44,0.68,1.47,2.19,2.22,2.27,1.01,2.15,0.05,0.29,0.32,0 --1.19,0.47,-0.82,-1.44,-0.26,0.71,0.78,1.87,2.81,3.40,3.89,2.88,3.45,3.25,2.89,2.00,2.21,0.46,0.71,0.72,0.03,2 -2.61,0.77,1.08,-0.02,-0.08,0.64,-1.42,0.86,0.79,3.48,2.65,2.65,3.59,5.16,5.07,5.58,1.97,1.90,1.43,2.61,-0.40,2 --1.59,-0.46,0.55,2.76,3.18,4.17,3.46,6.56,5.27,6.10,3.90,3.28,-0.03,2.86,0.65,-2.21,-0.58,-1.78,-0.06,-0.82,-1.91,1 --0.41,2.67,-0.62,-1.86,-0.75,1.70,0.36,3.58,4.31,6.23,6.44,4.02,3.38,2.93,2.60,0.18,0.38,-1.42,0.95,0.86,0.67,1 --0.76,0.62,0.82,2.10,0.85,4.21,4.72,2.04,5.29,3.13,3.03,1.75,1.62,2.01,1.29,2.89,1.06,-2.00,-1.00,-1.34,0.51,1 --0.67,-0.30,1.64,0.04,1.34,1.25,-0.19,0.03,2.24,1.13,3.02,3.25,2.31,4.31,3.73,3.88,3.77,3.15,0.39,2.66,1.28,0 -0.41,0.13,1.03,-0.26,5.80,3.81,3.89,3.37,2.20,1.16,0.14,1.36,0.98,2.08,1.06,2.45,0.30,0.53,-1.42,-2.12,-0.86,0 --0.22,-1.15,0.16,-1.85,1.24,0.36,-0.08,-0.08,0.40,0.85,2.52,3.67,3.67,4.08,3.76,3.50,1.75,1.04,1.55,0.06,0.60,0 -1.44,-1.31,0.34,0.94,-0.09,0.58,3.17,1.99,1.14,-0.23,2.33,4.11,4.06,4.85,4.52,5.39,3.29,5.56,-0.15,2.75,0.74,2 --0.16,0.58,3.08,1.12,3.40,3.88,6.69,3.11,3.90,1.92,4.22,2.91,1.26,1.97,-0.50,1.05,1.05,1.90,-1.06,-1.02,0.21,1 -0.09,0.12,0.68,-1.46,0.46,0.69,-1.07,-1.11,-0.28,-0.50,2.06,3.85,5.46,4.90,4.15,4.84,5.13,1.31,1.21,2.28,-0.57,0 -1.59,-0.92,-0.22,-0.46,-1.50,-0.41,0.61,3.20,2.46,4.66,5.95,4.02,3.92,3.16,3.44,2.23,2.16,1.76,0.81,-1.04,0.86,2 -1.38,0.37,-0.76,1.37,0.99,3.99,4.39,2.84,6.12,6.07,2.27,2.68,1.57,0.29,0.67,-0.27,-1.07,-1.13,-0.34,0.71,-0.18,1 -0.78,-0.71,0.75,0.05,1.43,1.95,3.42,3.68,3.28,3.07,4.49,2.22,0.88,1.37,0.37,0.18,-0.78,0.63,-0.39,1.00,1.49,1 -2.75,2.88,0.66,0.37,0.86,2.02,3.19,3.62,4.41,4.39,4.94,4.74,1.28,0.25,0.84,-0.61,-1.38,0.01,-1.64,0.35,-0.79,1 --0.95,1.27,-1.27,0.06,-0.28,-0.03,-0.52,1.45,-1.40,0.29,4.64,3.28,4.29,4.66,3.82,4.77,3.42,2.10,2.30,2.26,0.54,2 --0.44,-0.29,1.50,-0.01,-1.33,-1.11,2.05,-0.06,1.65,0.79,2.02,3.67,2.82,3.72,5.40,5.27,4.93,4.33,3.05,1.41,1.04,0 --0.55,-0.31,0.32,-0.26,-0.97,2.74,2.81,0.58,2.48,2.13,3.94,3.04,2.71,3.82,2.45,2.19,0.06,1.24,-0.47,1.11,-0.91,2 --1.40,-0.02,2.55,0.37,3.95,5.54,5.87,3.66,5.58,1.97,0.78,-0.84,-0.80,-0.87,0.46,0.59,1.54,-1.71,0.70,-0.88,0.33,0 -1.33,1.20,0.45,-0.66,0.52,1.48,4.02,3.09,2.72,5.49,5.21,3.00,2.39,3.28,2.64,0.09,-0.64,-0.69,0.71,-1.34,-0.27,1 -0.49,0.11,3.33,0.44,3.99,2.18,2.98,3.06,1.63,1.89,2.52,0.09,2.20,1.56,2.79,4.05,1.65,3.12,-0.28,1.78,-0.00,0 --0.60,2.56,-0.34,1.31,-0.50,-1.02,-1.11,0.20,0.08,1.19,2.40,2.40,3.21,4.79,7.68,4.74,4.49,3.68,1.10,0.23,-0.04,2 -2.07,1.11,0.23,2.54,1.09,0.95,1.74,4.42,0.73,-0.94,2.14,2.82,1.13,1.34,3.32,4.55,2.23,3.19,0.35,0.09,0.01,0 --0.86,-0.10,1.71,2.37,0.51,3.10,4.83,3.84,3.38,3.93,5.91,4.04,0.67,2.39,-0.11,-0.85,-1.00,-1.77,-0.06,-0.69,0.07,1 --1.10,-0.44,0.60,1.19,-0.15,0.44,-2.10,0.34,-1.06,1.54,2.15,4.12,3.13,3.62,4.35,4.84,3.23,2.93,1.61,-1.64,-0.88,2 --1.02,2.39,0.79,-0.09,5.24,3.78,6.41,2.31,5.35,3.25,3.24,3.19,2.03,1.68,2.28,1.19,-0.44,0.73,-0.58,1.25,0.05,1 -1.07,-0.00,-0.60,-0.41,1.27,3.98,3.27,2.87,4.31,6.21,5.90,3.81,1.11,4.10,2.52,0.33,0.94,1.01,0.60,0.79,0.83,1 --1.48,-0.51,0.93,2.42,2.54,4.82,3.61,3.13,3.40,2.00,1.78,0.84,2.42,0.07,2.17,0.85,2.04,2.20,1.70,-0.03,1.27,0 --0.01,-0.32,-0.49,3.10,1.06,2.00,2.14,4.09,0.61,2.11,2.33,4.94,1.93,2.15,1.82,2.17,0.97,1.40,1.89,2.43,-0.19,0 --0.88,0.52,2.49,1.44,1.89,3.44,5.08,3.71,4.72,0.88,2.82,0.04,0.92,1.17,3.08,-0.01,0.57,0.34,0.73,1.50,0.28,0 --0.75,-0.33,0.75,1.95,1.79,4.07,3.26,4.24,3.86,3.47,4.11,1.71,2.67,0.84,1.48,1.26,-1.06,-0.11,0.35,-1.50,1.50,1 -1.05,0.26,-0.63,-0.01,0.87,2.66,1.73,3.46,4.58,5.75,4.91,4.59,2.82,2.37,2.81,1.89,-1.08,1.57,0.06,0.52,0.52,1 --1.63,-0.37,0.55,0.20,0.51,2.37,0.59,2.64,3.48,4.85,5.30,4.48,3.69,4.61,3.22,2.80,1.70,1.29,-0.34,1.34,-0.17,2 --1.05,-0.10,1.58,-1.02,2.58,-0.85,2.20,3.18,4.13,5.01,5.15,4.73,5.28,4.07,2.00,1.09,0.05,0.94,-0.22,-0.67,1.12,2 -0.40,-0.43,-0.94,-2.08,-1.24,0.97,1.29,1.49,2.85,3.01,6.46,3.90,5.71,2.75,4.38,3.44,2.64,1.14,0.38,0.11,-0.53,2 -0.74,0.92,1.50,0.59,2.66,3.86,3.82,3.39,2.22,2.00,2.14,2.55,1.01,1.43,3.30,3.22,1.85,1.30,0.32,0.42,-2.72,0 -0.22,-1.28,1.48,-2.03,0.17,-0.32,2.50,2.32,4.28,4.96,6.19,5.43,3.28,4.07,3.69,-0.05,0.18,1.05,1.05,1.37,1.42,2 -0.23,0.55,-0.49,0.87,-0.52,0.41,-1.31,-1.43,2.40,2.19,4.23,3.42,4.89,5.11,2.32,3.32,2.81,3.02,1.59,0.28,0.16,2 -1.94,3.17,0.03,-1.15,-0.48,-0.12,3.16,2.07,2.26,2.66,5.14,3.63,3.69,4.38,4.13,2.50,0.47,3.50,-0.13,-0.26,-0.04,2 --0.61,-0.84,0.43,0.15,0.06,1.92,1.22,1.00,0.25,2.23,2.14,3.52,5.59,6.92,6.00,4.75,4.18,1.81,1.18,1.60,-0.68,2 -0.19,-1.28,1.76,1.02,1.75,0.82,1.31,2.13,4.70,2.46,0.74,1.62,2.44,3.28,3.58,2.50,0.73,1.64,1.31,0.45,2.33,0 -0.86,0.73,1.53,1.63,1.89,2.52,1.35,0.04,1.06,3.14,1.43,2.15,1.31,3.53,2.62,3.54,1.58,0.26,0.36,-0.23,-0.81,0 -0.62,0.33,1.84,2.53,3.98,2.75,4.48,4.51,4.00,3.62,2.71,1.07,1.65,-0.80,0.10,-0.60,-0.97,-1.34,0.30,0.17,-0.10,1 -1.03,-0.12,-0.04,1.26,-1.16,-1.41,0.59,0.34,-0.59,0.83,3.34,4.52,3.81,3.76,7.05,4.08,3.59,3.75,0.94,2.06,-1.26,2 --1.41,0.15,0.08,0.51,-1.36,0.64,-0.22,0.05,-0.04,0.08,0.96,2.39,3.90,5.68,4.55,5.28,3.52,1.13,0.41,-0.57,-1.04,0 -2.30,0.09,0.51,1.74,3.75,3.09,4.87,4.89,2.20,4.12,4.91,3.36,2.53,1.74,1.54,0.51,1.50,0.62,1.12,0.31,0.11,1 --1.20,0.51,-0.41,0.66,0.92,-0.24,1.92,-0.31,0.76,0.88,2.49,2.60,4.54,5.68,4.27,5.84,4.24,2.09,1.99,2.11,-0.06,2 -0.72,1.67,1.45,1.71,1.18,4.06,2.84,1.20,1.20,1.08,1.35,0.90,3.13,3.95,2.70,2.57,3.32,3.99,1.04,0.22,0.18,0 --0.72,-0.81,1.76,2.09,1.19,1.73,0.99,1.04,1.46,3.11,2.27,1.20,2.12,3.08,4.36,4.75,4.74,1.58,1.05,1.20,2.03,0 -0.97,0.25,-0.32,0.41,-0.80,1.88,0.30,2.91,3.87,4.57,5.98,5.16,2.58,3.42,2.85,1.22,-0.92,-0.49,-0.12,1.98,1.52,1 --1.88,-0.04,-0.20,1.48,0.90,1.73,3.71,5.13,3.95,4.50,4.87,4.08,1.99,1.03,2.12,2.41,1.63,0.80,1.24,-2.02,0.90,1 --0.06,-0.78,0.31,-0.17,-0.86,-1.05,0.57,1.08,1.18,4.48,1.10,4.67,2.22,5.46,4.84,5.42,2.64,3.76,0.88,0.93,0.26,2 -1.19,0.97,0.48,3.11,4.54,4.34,4.24,4.78,3.07,1.56,1.27,1.29,-0.73,-0.75,2.04,0.27,-0.23,1.04,1.11,2.11,-0.47,1 --2.21,1.04,0.73,1.75,2.80,4.08,6.74,5.25,4.22,3.57,2.08,2.64,0.31,1.42,-0.85,0.84,-0.89,1.03,0.13,0.50,-0.39,1 -0.25,2.44,0.83,3.47,2.84,4.60,4.75,4.03,2.86,2.85,3.56,2.89,0.77,2.24,1.23,0.52,3.43,1.53,1.60,2.04,-0.95,0 --1.18,-1.21,0.53,2.25,2.18,3.58,5.34,2.84,3.57,3.18,2.44,2.92,1.92,2.39,1.64,1.60,0.59,0.66,0.01,0.26,-0.93,0 --0.79,-0.59,0.09,-2.15,0.31,1.07,-1.25,-1.37,1.18,2.07,2.43,4.73,3.42,5.63,4.68,5.54,4.16,0.91,0.32,2.16,0.05,2 -0.68,0.36,1.42,0.64,0.13,1.98,1.61,1.74,1.07,2.32,1.60,3.11,1.71,4.24,3.86,1.04,0.04,0.65,2.44,1.78,-0.16,0 -0.71,-0.61,0.26,1.11,-1.16,-1.00,0.88,1.65,3.54,3.42,7.41,4.04,3.21,1.87,2.50,0.06,1.06,-1.24,0.05,0.22,1.21,2 -1.32,1.23,0.33,-0.98,0.74,2.45,1.49,1.42,-0.56,1.45,2.38,3.39,3.94,4.18,4.38,3.71,1.92,2.02,0.29,-0.68,-1.44,0 --2.46,3.36,2.33,4.26,3.14,4.58,5.75,5.04,2.45,3.64,1.80,0.52,0.49,0.80,0.78,-1.62,-0.23,0.52,1.58,1.44,0.50,0 --2.49,-0.38,0.82,0.36,0.27,2.79,3.41,3.58,5.75,4.77,7.04,3.20,2.75,0.15,0.42,0.91,1.13,-1.06,-1.46,-1.04,1.18,1 --0.82,0.12,0.89,0.12,0.13,1.48,0.34,-0.15,1.79,1.99,1.99,3.86,4.62,4.93,6.16,7.10,3.07,2.03,2.47,0.73,0.55,2 -0.73,-0.48,-0.24,2.10,-0.21,0.05,1.40,1.60,3.99,5.87,5.69,5.29,3.87,2.97,4.04,1.45,-0.25,0.01,-1.54,-0.12,-0.57,1 --0.43,0.04,-1.26,-1.21,-0.44,0.05,2.16,3.95,5.67,5.26,6.30,4.61,3.88,2.29,3.41,1.56,-1.50,1.11,-0.70,-0.23,-0.18,2 --0.25,-0.64,2.82,0.99,1.60,1.68,2.62,6.42,3.86,3.20,3.60,1.99,2.14,1.02,1.86,-0.26,2.09,0.24,1.30,-0.68,0.10,1 --0.33,-0.56,2.71,0.95,1.27,3.84,4.54,3.85,3.95,4.05,6.34,2.98,1.43,3.86,2.28,1.11,1.26,1.12,0.38,2.20,-0.41,1 --1.44,-0.23,-0.45,-0.59,-0.37,0.55,1.76,3.09,3.39,6.76,6.94,3.89,4.08,4.80,4.10,1.81,-0.47,0.76,-2.11,-2.25,-0.48,2 --0.67,0.02,1.03,0.12,-1.47,-1.16,-0.50,0.94,2.00,0.48,2.90,3.60,3.29,3.33,4.79,5.53,3.93,3.74,3.29,0.48,1.80,2 --0.09,2.57,0.20,1.56,4.24,3.23,5.41,4.51,4.84,4.91,2.63,0.90,2.91,0.32,0.41,0.49,0.20,-0.06,-1.97,-0.73,0.07,1 -0.52,1.79,-0.55,1.77,2.36,3.73,5.38,3.42,2.58,2.59,2.37,1.21,1.03,1.41,0.74,1.06,1.60,-0.06,1.99,-0.59,-0.08,1 -0.94,-0.87,-1.01,-1.88,-1.00,-0.12,1.34,4.44,2.54,4.85,5.26,4.23,2.74,3.28,0.64,2.04,0.37,1.58,0.05,-0.16,-0.50,2 --0.14,1.18,2.10,1.76,2.23,1.04,1.64,2.30,-0.05,1.08,4.02,1.33,3.14,3.01,5.36,3.49,3.52,0.79,0.33,2.27,-0.61,0 --0.45,-1.05,0.39,0.71,0.74,1.83,1.18,1.92,2.14,3.17,4.14,2.99,2.17,1.63,3.08,4.38,1.64,2.35,0.85,2.05,0.92,2 -1.22,0.42,1.41,3.67,4.84,3.78,5.12,4.24,4.64,2.26,3.28,1.28,-0.10,0.07,-0.37,0.24,0.07,1.36,-0.03,2.45,0.02,0 --1.43,0.60,-0.01,-1.82,0.32,0.19,0.81,0.04,1.03,1.95,4.48,4.38,2.28,4.99,3.73,4.76,4.19,0.68,0.98,0.33,-0.65,2 --0.64,0.43,1.59,-0.39,2.15,2.21,3.17,1.19,3.97,1.12,3.00,3.62,2.47,1.69,2.86,5.74,2.53,1.25,1.13,0.10,2.68,0 --0.33,-0.80,1.26,0.47,1.50,5.11,2.59,2.49,2.17,2.62,1.51,3.40,2.15,3.48,4.82,2.35,0.70,2.16,3.74,-0.05,-0.17,0 --0.37,0.07,0.32,0.19,2.30,0.95,0.97,2.72,1.13,0.57,1.78,1.08,3.22,3.19,3.41,3.50,2.71,2.38,0.38,1.01,0.75,0 --2.08,-0.65,0.94,-0.21,-0.56,0.80,-0.01,1.77,1.02,-0.83,1.76,2.18,3.11,4.18,5.62,3.68,3.25,0.45,1.52,-0.17,-0.82,0 --1.01,-0.17,1.52,1.79,4.45,3.91,5.63,4.35,4.68,3.41,2.42,0.82,0.56,0.70,1.38,0.06,-1.09,1.10,-1.03,-1.95,0.83,1 --1.63,0.33,0.68,0.68,2.67,0.48,0.87,3.02,0.98,2.09,2.55,1.44,1.14,2.04,4.47,2.67,4.06,3.00,-0.40,0.60,0.95,0 -0.33,1.29,1.00,-0.10,1.71,2.09,2.71,3.30,4.05,6.80,2.72,2.89,2.36,0.34,2.47,0.98,1.11,1.02,-0.78,0.53,-0.55,1 -0.05,1.87,2.79,2.78,1.02,5.18,4.55,3.30,3.74,3.79,2.29,2.07,0.48,2.27,2.41,1.54,0.70,0.89,0.61,-1.97,0.69,0 -1.72,0.46,1.56,-1.22,-0.69,-0.58,0.41,1.54,1.59,3.64,2.93,3.25,5.08,3.18,3.95,2.89,-0.06,2.73,0.33,1.00,1.58,2 --0.31,0.62,0.81,0.09,-0.37,0.82,3.68,1.69,2.01,3.77,4.62,4.57,3.28,4.97,3.79,0.96,1.09,0.36,0.23,0.49,0.31,2 -1.13,-0.61,-0.39,2.20,0.99,1.40,1.94,2.46,1.63,0.78,2.73,1.04,1.69,2.70,4.32,2.75,0.77,1.32,1.89,-1.00,2.26,0 --0.09,-0.58,0.85,0.20,1.11,0.02,-1.43,0.77,0.32,1.97,1.78,2.92,2.66,2.46,4.31,4.59,3.53,1.63,1.90,1.07,0.57,0 -1.85,0.07,1.39,2.60,3.30,4.44,4.56,4.18,3.42,2.47,0.08,2.30,-0.21,0.78,-0.92,0.76,1.04,-0.41,0.87,-1.52,0.68,0 --0.84,-0.31,0.28,-0.17,0.83,-0.59,0.52,0.16,2.69,4.23,3.77,4.01,4.34,4.94,4.06,2.07,0.78,0.95,1.20,0.90,-1.05,2 --0.55,1.48,-0.07,0.66,0.14,0.52,1.01,-0.89,2.34,3.07,4.19,2.42,3.79,3.44,2.75,2.23,2.48,0.59,0.62,2.45,-0.14,2 -0.71,0.01,0.82,-0.37,-2.15,0.72,1.69,2.02,4.61,5.06,5.56,4.12,5.44,2.38,2.65,1.70,1.31,-0.78,1.87,0.84,-0.62,1 --0.39,2.27,2.10,2.60,3.05,4.26,3.34,1.04,3.08,2.87,1.32,1.92,1.83,1.60,1.71,0.98,1.37,1.94,1.76,-0.26,0.67,0 -1.27,0.77,0.73,0.54,1.38,1.76,1.87,1.74,0.94,2.88,2.78,3.09,3.56,1.68,4.13,3.52,2.99,1.52,0.20,-0.18,-1.85,0 -0.32,1.78,1.42,1.73,1.24,3.21,2.90,3.92,3.79,4.73,3.81,4.51,0.76,0.99,0.91,2.77,-0.41,-0.09,-0.44,-0.70,2.03,1 --0.39,-0.80,1.48,0.77,-0.94,0.59,1.90,1.76,0.73,-0.53,3.63,2.83,4.41,4.20,3.51,4.27,2.84,2.46,-0.22,0.45,-0.11,0 -0.70,1.89,0.34,2.42,1.95,2.61,4.60,4.06,3.28,2.71,4.12,2.87,1.57,2.06,-0.58,1.88,-1.08,-0.45,-0.29,-0.92,-1.56,1 -0.06,0.98,2.77,0.79,1.74,3.89,4.26,3.69,3.19,3.07,2.90,1.37,3.77,0.11,1.94,1.30,1.48,0.81,1.13,-0.19,-0.42,0 --0.21,-0.65,0.26,0.03,1.09,0.20,0.96,2.69,3.86,1.76,1.90,4.37,5.36,4.35,5.06,4.47,4.91,2.68,-0.56,0.03,-0.77,2 --2.15,-1.55,-0.59,0.65,-0.94,-0.14,1.16,-1.55,0.74,1.09,3.71,4.54,3.93,4.43,6.69,6.14,3.08,5.21,3.16,1.33,-0.29,2 -0.57,0.40,-0.60,0.62,-0.02,0.13,3.38,3.97,2.54,5.40,3.91,3.68,5.14,3.99,1.84,2.99,0.92,-1.49,0.88,0.83,-2.22,2 --1.67,1.58,1.63,2.63,4.47,6.46,5.07,5.28,5.52,3.57,1.48,1.39,-0.53,-1.62,0.07,-0.42,-0.71,0.75,1.38,-0.21,-0.32,1 --0.40,-0.67,0.02,0.31,-0.16,0.61,0.49,2.90,2.94,2.25,6.20,5.52,5.23,4.20,2.92,0.88,-0.35,0.85,0.78,-1.03,1.66,2 --0.10,0.04,-1.15,-1.29,-1.44,-0.82,2.84,3.61,4.42,3.98,5.64,4.42,4.64,4.51,3.91,2.73,-1.28,0.77,0.13,0.04,1.38,2 -0.41,1.09,0.34,3.55,2.15,3.42,6.59,4.92,4.51,1.44,1.46,2.33,0.28,1.05,-0.98,2.15,-1.37,0.26,-0.29,0.37,-0.31,1 -0.73,-1.43,1.97,-0.14,-1.68,-1.87,3.20,2.04,3.89,5.53,5.41,4.17,3.40,3.39,0.55,1.25,0.46,-1.13,0.89,0.27,0.75,2 --0.71,0.14,-0.58,-1.09,2.77,-1.53,-0.93,0.77,-0.39,0.76,2.61,2.29,3.54,6.85,6.10,5.03,1.96,2.48,1.92,0.37,-0.27,2 --0.46,-1.55,2.46,-0.63,-1.04,1.48,0.06,0.85,3.83,0.91,5.10,2.46,3.30,4.94,5.29,3.76,0.26,0.86,1.27,1.60,-0.63,2 --0.96,-0.46,-0.57,-0.00,0.58,-0.09,2.22,2.23,3.62,7.01,6.52,4.16,4.82,3.39,2.00,1.64,-0.18,-1.21,-0.41,0.02,-0.68,2 --0.08,-1.06,-0.44,-0.45,-0.27,-0.15,-0.35,0.78,-0.23,-0.09,2.89,3.13,5.10,5.65,7.78,5.45,2.73,2.43,1.54,1.10,1.41,2 --1.14,0.14,0.61,0.43,0.41,-0.11,1.88,2.25,-0.32,0.13,2.58,3.65,1.56,4.39,4.02,3.66,1.35,3.78,0.78,-0.03,0.45,0 -0.31,1.00,1.58,2.21,3.85,4.89,3.73,3.00,4.74,2.35,1.58,-0.06,1.61,0.81,1.87,-0.44,-0.31,-1.43,1.62,-0.12,-0.53,0 --0.50,-1.02,0.67,1.48,-0.07,-1.25,-0.62,1.45,-1.16,1.22,2.59,3.28,3.70,5.13,6.90,4.22,3.32,2.50,1.78,-0.62,-1.87,2 --0.12,-2.14,0.26,2.12,1.68,2.70,1.60,1.50,0.50,2.27,1.80,1.28,2.59,4.24,2.01,3.10,2.57,3.08,1.44,0.49,-0.42,0 -1.22,-0.79,2.23,4.28,1.67,4.22,3.65,3.41,3.03,2.44,2.79,1.38,1.68,-1.11,0.47,1.66,0.47,-1.60,-0.09,1.26,0.46,0 --0.22,2.03,-0.48,0.35,-2.13,-0.96,3.20,3.77,3.33,3.68,5.99,4.98,6.98,2.91,1.10,0.69,-1.07,1.94,0.58,-0.67,1.32,2 -0.20,0.90,2.85,2.27,2.79,5.15,6.35,4.31,3.26,3.40,0.33,2.98,0.17,0.14,1.60,0.30,0.22,0.29,-0.13,-0.08,-0.03,0 --1.95,-1.89,0.33,1.00,0.69,3.46,2.96,3.78,3.09,4.85,4.52,3.24,3.35,1.73,2.83,0.84,2.41,0.59,0.62,-0.98,-1.19,1 -1.04,0.02,2.24,1.51,1.25,1.13,1.94,0.31,1.56,2.17,4.24,1.43,3.66,4.30,5.04,2.67,2.78,2.11,1.34,0.98,-1.63,2 -1.96,0.65,0.19,3.74,3.28,3.94,5.57,2.83,2.13,3.00,2.20,2.16,-0.29,-0.90,-0.90,1.93,2.65,0.76,-0.42,-0.63,-0.65,0 --0.12,1.87,-1.44,-1.75,-0.66,0.43,1.57,1.06,2.82,1.98,4.71,3.41,4.41,4.69,4.83,2.38,1.27,1.16,1.82,0.71,-0.45,2 -0.01,-1.00,0.73,0.15,-0.01,-1.21,0.80,-0.72,-0.14,-0.67,2.74,1.81,4.45,5.21,5.68,5.93,2.51,2.28,1.61,-0.79,2.30,2 -2.15,1.59,0.92,3.15,1.02,3.83,6.36,2.39,5.29,3.46,3.36,1.39,2.02,2.07,1.38,0.44,-1.31,1.04,1.49,-1.37,-0.03,1 --0.15,-1.56,0.06,0.93,1.67,1.27,1.81,1.85,2.64,3.29,1.39,2.22,3.03,3.77,3.56,5.04,3.08,2.13,3.82,0.72,-0.43,0 -1.26,-0.38,0.09,1.89,0.76,3.96,2.59,2.73,5.41,5.56,6.02,2.41,1.64,2.68,1.90,-0.34,1.72,-0.08,1.07,0.34,-0.56,1 --0.28,0.33,0.63,0.81,2.49,2.75,2.03,3.51,3.37,4.90,5.47,2.38,3.08,2.28,1.57,0.05,1.07,-0.04,-1.50,-1.16,-1.19,1 -1.51,1.93,1.43,3.37,3.54,5.71,5.50,5.24,5.45,3.48,0.89,0.67,1.87,1.80,1.35,1.05,0.65,-0.37,0.35,-0.54,-1.21,0 --1.08,0.01,-0.96,0.39,-2.02,1.66,2.87,1.86,4.35,4.14,5.00,3.99,5.26,3.22,2.18,0.70,1.13,-0.94,-1.10,-1.22,0.02,2 -1.79,-0.71,-0.17,-0.47,-0.77,0.12,-1.00,1.24,-1.26,2.01,3.43,2.55,4.39,5.28,5.51,4.46,3.73,1.54,1.49,-1.05,-0.75,2 -0.71,0.63,1.39,-0.66,0.26,0.37,-0.00,0.09,0.01,1.75,2.24,3.14,2.92,6.35,5.93,5.04,3.66,2.14,2.27,1.09,-0.76,0 -0.26,0.66,-0.57,-0.06,0.89,1.99,1.24,1.22,3.86,4.37,4.48,5.71,2.63,3.08,3.58,2.72,1.24,1.91,1.32,-1.02,-1.26,2 -0.19,-0.98,-0.27,-0.34,0.19,0.11,0.85,2.03,4.82,5.66,5.36,5.95,2.96,4.47,3.33,0.93,0.18,1.12,-1.75,0.12,0.32,2 -0.89,2.45,1.30,1.67,2.78,2.60,4.61,4.18,2.68,3.22,4.89,3.03,0.65,1.56,1.44,0.36,-0.54,-0.00,-1.08,0.23,-1.25,1 --0.05,0.44,1.28,3.56,4.90,2.83,5.71,4.50,3.42,3.71,2.32,-0.14,0.24,1.69,-1.29,0.84,-0.63,0.29,0.36,-1.42,-1.04,1 -0.02,1.55,0.62,0.17,0.52,2.84,5.09,2.93,4.21,4.53,6.17,3.20,3.78,1.89,0.94,2.02,0.25,1.01,-0.57,1.19,-0.44,1 --0.59,1.65,-0.88,0.09,0.94,0.21,3.22,0.83,1.05,3.44,5.64,5.36,5.11,2.98,4.00,-0.06,2.23,-0.07,-0.60,1.05,-0.55,2 --0.85,-1.34,-0.19,1.23,0.60,2.19,0.44,-0.71,1.42,0.88,3.11,1.46,2.92,4.73,4.65,2.61,4.39,2.96,1.45,1.01,-0.19,0 --0.36,-0.01,-1.76,-1.19,0.87,0.82,1.76,1.41,1.76,1.40,3.76,1.59,3.00,4.10,5.23,5.03,4.26,2.72,3.76,0.46,-0.27,0 -0.31,1.66,0.13,1.12,1.69,4.62,3.73,3.98,3.20,3.83,4.19,4.24,1.81,1.46,1.53,-0.45,1.60,-0.19,-1.05,-1.27,-0.90,1 --0.01,-0.12,0.40,1.16,3.27,0.86,2.82,0.61,-0.13,1.01,2.28,0.97,3.60,4.88,3.24,3.82,2.17,1.32,1.98,2.47,1.02,0 -1.03,0.24,0.98,-0.54,1.96,3.88,1.97,3.21,2.33,4.03,4.65,2.92,2.61,3.02,3.33,0.99,0.74,-0.95,-0.28,0.87,-1.91,1 -0.81,0.58,1.02,0.38,2.20,-0.35,-0.77,0.48,-3.38,0.91,2.02,2.69,5.17,6.42,5.17,5.64,5.23,2.22,1.95,1.48,0.82,2 -1.46,-0.13,0.42,1.03,0.29,1.65,-0.71,0.14,-0.22,1.98,1.09,2.44,3.41,3.21,7.62,4.19,3.94,2.35,3.00,2.18,-0.40,2 -2.17,1.60,0.64,2.17,1.94,3.16,3.66,2.28,0.83,1.41,1.83,2.66,1.41,2.70,3.53,3.83,0.64,-0.54,2.23,0.27,0.67,0 -0.67,0.88,-0.09,-1.46,1.01,2.43,-0.97,1.79,1.38,2.41,5.15,4.25,2.43,4.23,2.92,2.54,1.17,1.39,-0.34,1.56,0.69,2 --2.19,-0.92,2.61,2.27,3.05,3.30,5.42,3.81,3.41,3.42,1.67,1.78,1.89,-0.14,2.43,-0.43,-1.16,-0.52,-0.89,2.06,1.26,1 --0.22,-1.10,0.21,1.71,1.68,0.44,1.02,1.43,0.59,-1.03,-0.02,1.21,2.51,4.92,6.61,2.75,3.28,3.37,3.76,0.95,0.48,0 -0.67,0.45,1.35,0.43,3.56,3.85,4.44,4.08,6.46,4.07,6.70,3.52,1.81,1.50,1.84,2.41,-0.70,1.77,-0.09,-0.38,0.95,1 -0.71,-0.89,-0.25,0.07,1.14,4.52,4.85,3.08,5.01,4.19,3.51,3.53,2.21,3.16,1.56,0.69,-0.26,1.00,0.29,1.44,1.34,1 -0.22,0.42,2.00,0.76,1.38,5.02,3.95,6.32,4.63,4.74,5.13,2.69,1.75,0.99,2.02,0.48,0.62,-0.69,-0.65,0.05,-1.22,1 -0.49,-0.72,0.73,-1.08,0.60,0.23,0.24,0.78,2.30,3.48,5.17,3.40,3.04,3.85,4.89,4.73,2.83,1.89,0.42,2.43,-1.61,2 --1.21,1.36,2.90,1.90,4.56,3.55,5.24,4.81,3.86,3.05,0.60,0.20,0.93,-1.43,-0.05,0.13,-0.02,0.89,-1.18,1.36,-1.08,1 -0.15,0.53,0.74,1.50,5.09,5.21,5.71,4.52,4.40,1.46,2.16,1.37,0.46,0.25,-0.56,-0.70,0.46,-1.97,-0.18,-0.11,-2.01,1 --1.14,-0.23,-1.04,0.03,-0.21,0.58,2.75,1.41,2.04,4.68,4.43,3.52,3.49,4.65,2.59,2.13,0.91,1.62,-0.12,0.38,-0.61,2 -1.87,-1.80,1.77,1.01,1.74,1.21,2.30,4.13,2.85,3.71,4.55,2.57,3.94,0.83,1.82,-0.19,0.69,1.36,-0.57,-1.01,-1.14,1 -1.71,0.34,0.57,3.48,3.63,3.30,5.87,1.37,2.07,2.83,1.98,1.42,0.94,3.30,2.37,2.44,1.57,-0.11,1.19,0.68,1.04,0 --0.33,0.97,1.03,3.58,2.07,2.88,2.81,2.70,1.24,0.99,0.08,0.19,0.42,1.59,2.63,2.55,1.20,1.09,0.18,1.29,1.09,0 -2.01,-0.50,-0.44,-0.21,-0.83,2.31,-0.19,0.42,2.65,1.99,4.39,1.68,3.68,4.15,5.02,3.10,2.59,3.20,1.06,-0.56,0.40,2 -0.48,3.03,-0.02,1.19,1.52,2.82,2.40,1.41,2.32,2.42,2.15,2.04,1.28,2.99,4.27,1.87,1.43,2.69,0.61,-0.38,-1.43,0 --0.22,2.52,0.17,2.81,3.79,5.78,6.75,3.06,4.62,1.27,2.42,-1.19,1.09,1.55,-0.25,0.14,0.21,-1.29,-0.17,0.11,1.67,0 --0.17,-0.83,0.80,-0.41,0.48,1.82,-0.39,0.92,1.77,1.17,2.32,3.50,4.41,4.12,7.80,5.11,3.29,3.89,1.00,0.59,-0.94,0 -0.91,0.03,-0.30,-0.07,-1.57,2.41,2.24,2.98,4.56,5.82,5.86,4.93,4.98,4.67,3.25,0.26,0.76,0.24,0.55,1.12,-1.16,2 --0.44,1.02,1.77,2.12,2.44,3.14,5.61,5.70,1.98,2.68,2.57,2.47,0.52,0.70,1.08,0.32,2.00,1.29,0.69,1.33,-0.68,0 -1.64,-0.47,1.36,2.12,3.27,3.31,4.29,4.19,4.08,1.02,2.06,2.45,1.13,3.67,1.86,1.67,1.82,0.52,-0.09,-1.64,-0.96,0 -0.61,0.02,-0.91,1.88,0.57,1.98,1.87,2.21,2.52,1.08,4.74,2.54,0.75,4.41,4.09,3.80,3.01,4.55,1.66,1.10,-1.17,0 -1.17,0.18,-0.23,0.79,-0.27,1.28,0.07,0.52,2.40,3.12,5.25,2.47,1.81,2.65,5.50,2.25,2.17,1.84,0.68,1.30,-0.35,2 -1.22,0.37,-0.46,-1.23,-0.12,2.08,0.61,1.28,-0.24,2.71,3.25,4.13,4.04,4.39,7.37,2.70,3.51,2.74,0.83,1.49,0.23,2 --1.32,0.49,0.25,-0.25,-0.09,1.22,1.36,1.47,-0.47,1.94,2.66,2.14,3.75,3.56,5.10,5.89,3.06,2.95,-0.09,2.16,1.17,0 -1.16,-0.29,0.70,0.67,1.22,3.65,3.73,4.88,4.22,3.33,4.84,4.36,3.20,0.82,2.85,0.09,-0.21,-0.11,-0.41,0.16,1.10,1 -0.87,-0.50,-0.39,1.01,0.03,1.16,2.42,3.31,5.45,4.22,4.96,4.07,4.91,2.49,0.75,0.80,-1.13,0.92,0.79,-0.43,1.84,2 --0.12,1.25,-0.12,2.22,1.62,1.94,3.38,3.10,3.39,1.59,1.30,3.84,1.95,3.37,4.73,2.05,2.50,1.11,1.76,0.43,-1.84,0 -0.61,0.63,1.68,1.16,2.44,4.47,4.51,3.87,5.16,3.19,1.39,0.72,0.98,1.98,1.71,-0.08,-0.37,2.28,0.96,-1.63,-0.16,0 -0.51,1.02,2.79,3.62,1.63,5.37,5.71,3.79,3.23,3.60,3.28,1.09,1.23,1.15,2.22,-1.19,-0.62,0.65,0.52,0.59,-0.52,1 -0.92,1.06,0.79,0.56,2.46,3.39,3.77,5.93,2.25,3.45,5.36,4.28,-0.50,1.19,0.51,2.18,0.58,-0.83,-0.19,-1.38,-0.49,1 --0.38,0.16,1.76,2.43,2.39,4.45,5.13,5.07,4.53,1.09,0.74,2.08,0.17,-0.01,2.13,1.44,0.45,-0.32,1.52,1.13,0.13,0 --0.74,0.38,1.02,1.16,1.78,3.50,4.40,5.34,3.44,3.40,4.39,3.52,3.26,2.33,-0.53,2.33,0.33,-0.55,0.64,0.14,0.47,1 --0.29,1.32,2.27,1.61,3.41,2.70,2.02,3.30,1.21,2.69,2.24,3.35,2.76,2.65,4.53,2.64,5.03,1.13,1.30,0.04,-0.29,0 --0.92,0.44,1.44,-0.03,-0.28,1.09,0.40,0.63,2.09,0.00,1.46,4.35,5.89,3.66,2.96,5.26,3.10,3.33,2.58,1.77,1.39,2 --0.24,0.76,2.17,-1.02,-0.24,-0.45,1.14,1.58,1.38,3.05,3.59,3.09,3.82,2.48,2.78,3.12,0.23,0.78,0.82,-0.07,-1.19,2 --0.44,-0.43,1.36,-0.72,0.28,0.00,2.52,-0.69,1.45,2.68,3.12,0.98,4.73,3.84,5.84,2.85,4.72,1.72,3.89,0.41,-2.11,0 -1.05,-1.09,-0.55,0.73,-1.30,-1.17,0.47,-0.55,-0.52,1.08,1.65,2.83,3.29,5.09,6.47,6.36,3.83,1.87,0.95,2.89,-2.22,2 -0.39,0.31,-0.20,-0.10,-0.73,1.14,3.72,3.36,2.42,4.11,6.49,5.77,2.73,2.65,3.70,-0.64,0.62,2.04,0.84,0.83,-0.37,2 -0.31,1.80,0.86,2.34,1.25,4.33,4.76,3.46,3.88,1.28,3.94,2.28,0.81,2.64,1.30,-0.49,0.80,0.59,-1.25,-2.38,-0.59,0 --1.57,-0.43,1.66,-0.67,1.26,3.22,5.24,5.04,5.70,3.62,3.15,3.68,0.18,1.37,1.94,-0.13,-0.33,0.63,2.16,0.01,1.35,1 --1.78,-0.40,1.38,-1.20,2.00,1.12,2.13,3.19,0.71,1.33,1.70,1.76,3.36,4.15,4.16,2.71,3.44,1.45,0.54,-0.18,1.88,0 --2.52,1.07,2.01,-1.53,1.66,1.43,1.39,1.53,-0.36,0.64,2.53,3.32,2.92,6.21,5.06,4.50,4.00,1.16,2.29,1.42,-0.63,0 -1.85,-0.08,0.17,-1.09,-1.01,-0.11,1.36,0.40,-1.11,-0.66,2.39,4.84,4.62,4.55,6.56,4.58,4.00,2.07,0.98,3.59,0.15,2 -0.13,-0.63,0.84,2.81,4.10,4.95,6.36,4.92,3.03,3.66,3.03,1.92,1.12,-1.06,-0.18,0.96,-0.41,-0.37,0.64,-0.14,-1.18,1 -0.97,-1.48,1.36,0.77,0.72,-0.48,1.84,2.71,4.26,5.26,6.06,4.03,3.28,2.33,2.67,0.30,-0.29,0.65,1.08,1.69,1.05,2 --1.16,-0.01,1.58,1.76,2.60,2.07,3.14,1.05,1.47,1.75,1.84,1.76,1.99,2.59,3.19,2.53,2.74,0.36,2.49,1.94,0.37,0 -0.04,-0.60,0.91,2.04,-1.01,1.97,2.42,3.43,4.18,4.75,4.56,5.38,3.28,3.83,3.83,1.66,2.69,-1.64,0.48,0.81,-0.19,2 --1.03,0.51,1.98,2.12,0.51,2.49,4.00,5.07,5.22,4.68,4.18,2.26,2.89,2.13,-1.93,0.08,1.57,-0.34,0.11,0.12,0.05,1 --0.03,0.82,2.99,0.69,4.70,6.35,5.61,4.21,3.20,2.31,2.45,1.43,0.10,-0.27,-1.36,-0.11,0.11,-0.81,0.14,-0.47,-0.03,1 -1.17,-1.51,2.05,0.43,-1.00,0.11,2.45,3.92,4.65,4.78,5.32,6.01,3.63,4.01,1.88,0.40,0.16,-0.16,-0.99,-1.80,1.44,1 -0.24,0.80,1.55,4.49,2.48,5.04,4.71,2.96,1.49,1.67,3.82,1.26,0.71,0.52,1.25,0.95,0.26,0.12,-0.20,-0.23,-2.66,0 -0.15,-0.30,0.95,1.09,2.16,1.98,4.51,2.15,1.23,1.41,1.47,2.98,2.70,2.98,3.65,4.20,2.52,1.47,0.79,0.23,1.11,0 -2.15,-0.26,1.07,3.86,3.06,4.28,6.27,3.19,3.60,2.23,2.85,2.99,0.18,0.59,-0.02,0.47,1.07,0.44,0.44,-2.08,0.79,1 --0.47,1.04,2.02,-0.97,1.15,0.95,-0.17,2.27,2.34,2.75,4.58,3.03,3.10,4.73,3.51,2.33,0.02,0.98,1.13,-0.15,-2.82,2 --0.61,1.22,1.01,2.33,3.92,5.72,3.35,3.21,3.24,1.66,1.60,0.97,0.40,1.47,-0.44,1.45,-0.23,-0.88,-0.31,0.87,-0.49,0 --0.11,2.16,0.50,-0.80,0.30,1.14,1.63,2.37,1.43,-0.45,2.84,1.71,3.20,4.11,4.18,3.28,2.24,1.55,1.75,1.28,-0.42,0 --0.36,-0.05,0.22,0.54,1.75,0.11,2.84,3.39,4.18,6.14,4.98,1.99,4.51,4.03,0.88,2.92,0.63,0.59,0.28,-2.00,-0.00,2 --0.58,2.40,1.84,4.39,1.22,2.66,2.75,2.67,4.94,4.08,2.15,2.80,2.97,3.40,0.26,1.60,0.86,-0.76,-1.37,-0.46,0.70,1 -0.70,0.28,0.61,-0.24,0.84,2.79,1.49,1.22,-0.20,1.38,1.87,1.55,2.49,1.68,2.71,2.95,2.20,1.35,0.77,2.04,-0.88,0 --0.34,1.04,0.33,1.22,0.76,-0.34,0.91,1.68,1.32,1.25,1.35,4.99,2.40,3.51,4.16,2.39,1.54,2.29,2.49,-1.36,-0.84,0 --0.15,0.37,1.08,2.99,4.31,5.86,7.40,4.39,5.03,2.48,2.27,0.05,0.46,0.12,1.08,-0.34,0.07,-0.13,-0.74,1.16,1.19,1 --2.76,0.07,1.12,-1.01,-0.78,1.83,-0.91,2.29,0.63,3.50,1.67,4.64,3.18,5.06,3.84,5.38,2.04,3.36,3.56,0.98,-0.86,2 --1.39,1.54,1.27,2.17,2.14,2.60,2.71,5.19,3.70,5.14,5.33,0.56,3.79,0.36,1.10,0.71,-0.54,-0.22,-1.16,-0.63,0.37,1 --0.84,-1.23,0.56,0.58,-1.20,2.82,3.26,3.30,2.82,2.88,7.62,7.23,4.56,4.07,1.86,0.14,-1.47,0.00,-0.58,-0.57,-0.17,1 -1.86,1.39,3.16,-0.64,0.18,2.87,2.74,3.27,4.57,4.16,4.42,2.27,-0.03,0.01,0.48,0.70,0.10,-1.05,0.94,1.09,0.47,1 -1.08,2.00,-1.35,1.63,0.54,-0.35,0.18,-0.01,-0.16,1.74,0.85,4.40,2.51,3.76,5.79,6.03,3.93,2.88,0.27,1.70,0.77,0 -0.40,0.62,2.37,1.01,0.78,2.60,2.75,2.70,1.41,1.77,2.88,0.64,2.11,2.43,3.27,4.14,3.45,3.23,1.76,0.17,1.14,0 --0.87,-1.60,0.61,1.17,0.82,0.80,2.29,0.80,3.06,3.90,5.09,5.45,6.11,3.64,2.46,3.32,0.67,2.96,-1.05,0.53,0.47,2 -0.13,0.60,1.27,0.52,-1.20,-0.53,1.81,1.01,0.55,1.83,5.06,4.39,4.89,3.31,4.14,3.65,-0.78,1.12,0.91,0.91,-0.14,2 -0.82,0.88,0.04,-1.79,-0.05,0.97,1.24,0.86,-0.43,2.04,0.60,4.21,2.31,4.30,6.50,6.23,4.26,3.50,2.80,0.81,-1.52,2 -2.26,-0.73,0.05,0.95,2.82,3.88,2.80,5.40,4.67,4.02,4.55,4.64,1.59,0.51,0.54,-0.42,0.28,-0.78,-0.22,1.02,0.27,1 -0.56,0.69,-0.44,0.88,-0.22,2.06,4.22,3.32,2.95,4.82,5.20,3.64,0.59,1.07,0.65,-1.70,-0.18,-0.07,1.27,1.02,-0.41,1 --0.09,-0.44,0.32,0.93,2.21,2.84,2.93,4.67,3.04,3.30,7.23,4.60,2.69,0.46,0.24,0.28,0.31,0.62,0.16,-0.77,0.36,1 -0.12,-0.93,0.63,1.05,1.90,-0.64,1.38,2.37,-0.65,0.88,1.52,0.94,3.93,4.52,5.22,3.77,3.04,1.39,1.00,1.66,-0.77,0 --0.53,1.49,2.83,3.82,3.80,5.58,4.48,6.60,3.45,2.03,3.39,2.92,-1.02,0.43,-0.22,0.43,-1.92,-0.56,0.47,1.15,-1.35,1 -0.49,0.74,0.01,-0.98,0.52,0.28,2.52,1.91,3.01,3.14,4.55,5.45,3.10,3.01,4.07,3.36,2.01,1.90,0.80,0.58,-1.01,2 -0.51,-0.49,-0.39,0.45,0.64,2.78,2.32,3.64,3.04,5.92,7.33,4.08,2.04,2.67,0.71,0.30,-0.32,-0.39,0.69,-0.90,-0.01,1 --0.64,0.09,-0.96,2.28,1.97,5.19,3.30,3.10,3.04,2.21,3.19,1.87,3.07,1.02,3.29,3.42,1.16,1.90,0.86,0.27,0.09,0 --1.01,1.69,2.14,2.16,2.49,3.83,3.13,2.36,2.73,1.49,2.65,1.91,-0.40,1.06,1.42,2.75,0.99,1.00,3.11,0.65,-0.48,0 --1.56,0.39,0.25,2.64,1.69,2.00,1.66,2.69,0.63,1.90,1.48,2.12,2.26,1.11,3.93,3.21,1.31,1.12,1.39,-0.38,-1.00,0 --0.51,0.17,0.92,-0.39,-2.05,-0.38,0.82,0.25,-2.06,2.29,2.64,3.95,3.94,4.54,3.64,2.71,2.24,3.60,2.39,1.64,-1.27,2 -0.22,-0.05,-0.18,-0.25,0.70,1.62,0.91,0.54,0.34,3.63,2.98,4.34,4.00,3.74,4.53,3.10,1.73,2.83,1.21,1.08,-0.02,2 -2.26,1.82,0.71,-0.79,0.18,2.46,2.84,4.84,2.36,3.28,5.29,3.62,0.52,0.82,1.36,0.92,1.35,-0.44,-1.73,0.56,0.91,1 --1.68,0.79,0.48,1.92,-0.17,2.49,1.73,1.35,3.86,2.53,2.37,2.51,0.79,2.87,4.18,2.25,-0.09,3.03,0.35,-0.22,-0.55,0 --0.13,-0.09,3.40,2.16,0.97,2.20,5.70,5.04,5.69,4.53,3.34,1.80,0.74,-0.12,0.31,-0.14,1.72,-1.04,0.12,0.65,0.43,1 -1.07,-0.77,-1.06,-0.75,0.12,-0.17,1.57,1.85,3.97,4.70,7.97,2.88,3.34,2.75,2.06,-0.30,2.24,1.11,-1.78,1.05,0.04,2 -0.11,-1.03,-0.86,1.38,0.73,1.44,1.63,2.05,2.45,1.81,6.93,4.14,2.69,3.98,1.65,4.26,2.05,1.80,0.18,-2.18,0.45,2 -0.29,0.89,-1.02,-1.33,1.19,0.58,1.84,-0.46,1.25,1.95,0.80,2.99,4.23,3.67,6.07,5.55,3.74,1.90,2.43,-0.30,0.12,2 --1.05,-1.12,0.98,3.67,3.86,4.66,5.10,5.54,4.02,3.43,0.98,1.53,1.10,-0.85,0.17,-0.09,1.58,0.98,2.93,-1.05,-0.08,0 --0.20,1.17,0.62,1.70,2.80,2.10,5.77,3.35,5.37,2.48,4.49,1.04,3.03,0.67,1.59,0.32,1.17,0.18,-1.17,-1.41,2.59,1 --1.03,1.73,-1.95,0.67,1.29,0.80,1.13,-0.09,2.07,1.51,1.37,3.64,2.87,4.56,5.16,4.31,3.58,0.98,3.06,0.75,2.99,0 -2.05,1.55,0.74,-0.13,-0.80,2.49,1.92,3.37,4.40,5.18,6.91,3.02,3.47,5.77,2.37,0.74,-0.94,0.04,1.39,-0.16,-2.48,2 --0.96,-0.49,-0.80,0.73,-0.56,-0.77,1.56,0.35,0.26,1.41,2.81,1.47,3.72,4.91,5.15,4.40,2.88,1.71,0.05,-0.42,-0.20,2 -0.69,-0.34,1.96,0.45,0.17,0.96,-0.19,2.05,0.61,-0.07,2.78,1.99,4.16,2.53,4.39,4.98,3.05,1.55,2.05,0.24,0.37,0 -1.32,0.09,-0.44,-0.23,-0.71,0.12,-1.23,0.65,1.38,1.67,3.18,3.26,3.78,3.73,5.20,4.72,3.85,3.23,0.67,0.36,0.20,2 --0.10,0.53,0.20,-0.30,-0.26,2.46,0.88,1.89,5.02,4.13,4.40,4.10,5.36,1.99,4.93,2.10,1.45,1.66,1.82,-0.61,0.17,2 --1.37,-0.61,-1.19,0.57,0.48,-0.59,1.64,1.19,1.50,1.46,3.95,4.50,2.94,3.99,5.97,4.44,2.51,2.71,1.20,1.46,0.65,2 --0.16,0.05,1.22,1.75,4.61,4.05,8.42,5.42,3.55,3.33,1.02,1.96,-1.69,-1.15,-0.52,1.86,0.53,0.37,-0.19,-0.29,0.94,0 -0.12,1.68,0.80,0.68,1.26,3.52,4.23,2.78,4.26,5.76,2.47,3.68,2.16,0.42,0.77,1.97,-0.33,0.97,-0.86,1.40,1.57,1 -0.20,0.38,-0.14,2.15,5.59,4.05,4.94,5.05,4.81,1.43,1.62,2.29,1.08,1.08,1.35,-0.60,0.05,0.40,-0.02,-2.21,0.69,0 -1.29,0.33,1.30,1.63,2.25,0.72,2.91,3.33,1.17,2.05,1.94,3.13,1.18,3.93,2.84,5.63,1.73,3.09,-0.19,0.05,0.50,0 -0.11,1.91,-0.20,3.68,3.32,5.46,6.92,6.00,3.37,3.39,2.05,1.56,0.22,0.52,-0.55,1.20,1.52,1.24,0.84,-0.30,1.45,1 --0.78,1.09,0.75,2.67,0.94,1.30,-1.68,1.29,1.76,3.47,3.17,3.77,4.24,3.73,5.25,3.73,1.61,0.45,1.58,0.77,0.02,2 -0.49,2.21,0.70,0.34,0.34,1.40,1.19,3.41,3.24,4.63,3.70,5.17,1.59,2.24,2.84,0.56,-0.80,-0.04,-0.22,1.22,-0.21,1 --0.63,-1.03,-0.15,-0.52,-0.39,-1.37,0.11,2.69,1.79,3.65,5.40,3.47,3.31,3.23,2.86,3.15,1.98,0.95,0.08,0.43,1.01,2 -0.31,-0.10,1.58,2.65,3.08,3.28,7.58,3.32,2.53,3.66,3.04,3.61,1.01,1.63,0.16,1.23,1.07,-0.50,0.65,1.70,-0.38,1 -1.11,-1.14,0.67,1.06,0.80,1.37,1.27,2.48,4.91,4.44,6.73,4.46,3.38,2.77,0.61,-0.93,-1.36,-0.42,-0.91,0.09,-1.28,1 --1.79,0.73,0.92,1.36,0.11,1.51,2.04,2.82,2.09,5.67,4.08,6.22,4.14,3.06,2.86,0.21,1.89,1.88,0.20,-0.29,0.51,2 -0.54,-0.50,0.77,0.36,2.09,-0.39,4.22,3.45,4.12,5.15,6.49,4.16,3.68,2.86,1.85,1.02,0.80,-0.77,1.33,-1.58,1.12,1 -0.80,0.88,-0.24,1.41,3.90,3.54,4.99,3.39,2.35,3.39,2.36,1.03,1.62,3.95,2.37,-0.62,0.05,0.59,-0.13,-1.10,-0.63,0 --0.15,-0.90,0.83,1.02,1.74,2.02,3.84,3.20,3.28,2.97,4.27,2.76,0.70,0.46,2.26,2.25,-1.08,-0.26,-1.22,-0.07,-0.02,1 -0.15,1.10,1.98,3.65,3.87,4.54,5.47,3.83,3.28,3.33,1.61,0.89,0.73,0.48,0.88,1.03,-1.29,0.16,-0.98,0.02,-1.72,1 -1.23,-0.90,-0.01,-2.33,-0.89,-0.35,0.26,0.25,0.22,1.37,3.08,1.31,3.18,4.63,5.24,5.54,1.92,2.70,2.68,0.69,-0.55,2 --1.56,-0.42,3.03,3.30,3.75,2.27,6.28,5.11,4.71,1.86,2.72,-1.15,1.63,-0.36,0.50,0.17,-1.45,-1.24,0.49,-0.27,0.41,0 -0.50,0.93,0.44,1.73,0.00,2.40,1.53,1.97,2.68,3.49,6.58,5.43,4.14,5.09,0.82,1.70,1.20,0.33,0.57,1.01,-0.75,2 --0.64,-1.15,-0.26,-0.90,-1.60,1.76,0.81,0.94,2.97,4.84,4.15,2.42,5.95,3.58,4.13,2.32,0.52,1.92,2.28,-1.10,0.63,2 --0.42,1.97,2.31,2.22,5.26,4.06,4.24,5.93,2.66,3.06,1.55,0.25,0.82,1.59,0.30,-0.16,1.23,0.50,1.49,-0.44,-0.93,0 -0.01,0.31,2.21,2.58,1.51,5.07,4.65,4.40,3.42,2.58,3.38,2.44,-0.49,0.25,0.53,-0.08,1.35,-0.10,1.64,-1.55,0.95,0 -0.46,1.26,0.04,2.31,2.21,3.06,5.04,2.85,2.01,1.41,1.92,2.96,0.71,2.38,2.16,3.00,2.05,1.27,2.34,0.33,-0.14,0 -0.14,0.19,0.28,2.09,3.82,4.58,2.72,3.81,3.87,3.93,4.57,0.94,0.35,2.07,0.36,-0.91,0.15,-0.28,0.76,-1.06,0.27,1 -0.24,-1.53,-0.70,1.55,-0.29,-0.02,2.33,3.55,5.34,4.79,4.80,5.49,3.61,2.91,1.44,1.48,-0.60,-1.95,0.05,1.05,-0.64,1 --0.44,1.97,-1.08,-1.20,-0.83,-0.36,3.71,2.95,2.02,4.47,6.54,5.14,3.25,3.23,4.36,1.85,1.19,0.71,-0.31,-0.87,1.16,2 -0.97,0.88,0.74,0.94,-1.02,-0.39,0.14,-0.95,0.55,2.19,1.86,3.57,3.55,3.52,5.50,3.40,4.22,2.02,0.93,1.01,1.26,2 --0.38,-0.45,2.27,2.75,2.87,3.40,5.37,4.86,0.85,2.37,1.92,2.76,1.04,2.89,2.72,0.73,2.24,0.54,1.88,-0.11,-0.12,0 --0.52,1.80,0.63,-0.20,0.19,-1.60,2.26,2.08,3.31,3.66,3.97,3.07,4.99,5.14,2.45,1.75,2.46,-0.09,0.56,0.51,-0.21,2 --0.09,0.16,1.30,0.80,-0.31,1.66,3.30,2.02,3.60,5.60,4.64,4.78,5.70,3.14,3.99,1.32,0.74,0.04,1.95,1.16,-0.48,2 -0.51,0.97,1.69,2.52,-0.61,1.87,2.05,2.29,1.83,0.69,1.48,2.65,3.15,4.14,5.49,4.01,3.09,2.34,1.54,-0.23,1.25,0 --0.54,0.45,1.12,-1.44,-0.93,0.86,-0.54,3.95,0.21,0.67,3.93,4.33,5.17,4.73,4.90,2.39,1.60,0.14,0.10,1.38,1.08,2 --0.95,2.40,1.65,3.26,4.99,5.17,4.48,5.56,5.26,3.32,4.74,2.45,-0.54,-1.80,-0.75,0.59,0.49,0.49,0.16,-2.24,-2.05,1 -0.71,0.48,0.71,0.28,2.26,0.60,0.78,-0.36,1.04,0.85,1.46,2.05,2.25,5.51,4.67,4.86,2.24,0.91,2.18,3.26,-0.32,0 --1.52,0.27,0.36,1.46,1.59,1.57,3.35,2.23,2.00,1.36,2.22,0.85,3.59,4.14,4.65,2.04,2.60,2.39,1.17,-0.42,-0.22,0 -1.69,-0.28,0.06,1.11,0.60,-0.58,-0.21,-0.22,-0.91,1.53,2.99,1.66,2.36,5.25,4.68,7.09,3.51,1.80,5.28,0.76,1.18,2 --0.58,-0.14,-0.08,0.07,2.02,3.57,3.65,5.83,5.10,3.37,2.85,0.56,1.67,1.32,-0.36,-0.75,0.43,0.33,0.40,-0.06,-1.35,1 --0.25,-1.21,0.52,2.00,0.73,0.66,2.02,0.78,1.62,1.32,1.93,2.73,2.48,6.86,5.88,4.31,3.62,2.72,2.66,1.90,-1.30,0 -0.98,0.02,1.03,3.07,2.08,2.96,2.38,1.59,0.77,3.23,2.89,1.20,1.44,2.26,2.64,1.68,2.86,0.88,1.10,-1.65,-1.64,0 --0.45,0.15,0.37,-0.26,2.07,-2.41,2.95,1.97,0.39,3.32,4.56,4.09,4.09,4.53,4.74,3.44,4.31,1.97,1.31,1.05,-0.38,2 -0.57,1.30,2.36,3.16,3.08,3.12,4.70,4.50,6.13,4.01,1.66,2.49,0.51,0.16,2.09,-0.12,-0.10,0.30,0.64,1.07,0.64,1 -0.19,-1.45,1.48,0.33,-0.07,-1.24,0.66,1.50,3.46,4.06,4.49,2.20,4.92,5.20,3.21,3.18,1.31,1.83,-0.71,-0.78,0.99,2 --0.92,0.32,-0.55,-0.73,1.35,0.62,1.92,2.13,1.71,2.78,5.13,3.96,3.91,4.11,5.11,4.10,1.61,0.95,0.77,-0.42,-1.40,2 --0.01,-0.57,-1.34,-0.62,-0.14,-1.25,0.02,-1.90,0.70,1.22,1.99,2.63,4.03,5.46,6.64,2.91,3.99,2.23,3.50,1.17,-0.89,2 -1.80,0.20,0.28,-0.91,-1.29,0.85,1.72,-1.21,0.43,2.64,2.22,3.29,3.83,4.68,5.24,5.80,3.97,1.22,-0.57,0.34,1.21,2 --1.41,-2.33,0.59,0.50,1.96,1.76,1.38,1.07,0.82,1.50,-0.45,3.38,4.90,5.37,4.04,3.40,3.37,1.53,2.32,0.81,-0.75,0 --0.55,0.94,2.28,1.28,3.39,5.64,4.66,4.17,3.94,3.81,2.74,-0.28,1.32,-1.63,1.46,2.30,-3.04,1.28,-0.51,1.20,-0.55,1 -0.80,1.34,0.34,-0.14,-1.98,2.48,1.01,3.55,4.53,4.80,5.00,3.37,4.78,3.60,0.47,1.47,-0.70,-0.96,-0.85,0.66,0.14,2 --1.24,1.55,0.37,1.34,1.90,3.63,3.00,1.56,0.43,1.50,1.01,2.46,2.43,2.53,3.48,1.96,2.30,2.26,-0.23,0.53,0.44,0 -1.18,-0.64,0.36,-0.00,0.57,0.71,0.79,-0.45,0.92,1.70,0.61,2.54,3.85,3.21,5.23,3.63,5.80,1.80,1.28,0.41,-0.77,0 --0.05,-0.48,1.18,2.59,1.00,4.81,4.84,3.81,3.02,1.23,2.84,2.24,2.30,2.12,-1.01,0.35,-0.78,-1.67,2.14,0.92,1.10,1 --0.58,0.81,1.52,0.01,3.24,1.80,6.33,1.85,3.01,2.45,4.83,3.74,2.74,0.98,-0.38,-0.43,2.32,-1.00,1.76,0.48,-0.83,1 --0.82,1.58,0.69,1.02,1.59,0.57,3.20,3.37,0.53,1.84,1.52,2.99,1.79,1.89,1.76,1.27,1.22,1.08,0.50,-0.17,0.18,0 --0.66,0.31,0.73,4.76,3.12,3.99,5.54,2.80,3.24,2.95,1.66,0.59,-0.31,-1.89,0.16,-0.65,1.85,0.35,-0.85,0.84,-0.45,0 -0.66,-0.24,1.92,2.47,1.15,2.01,1.66,2.60,0.40,2.86,2.06,2.97,4.17,3.26,3.40,3.35,3.54,2.82,1.17,-1.04,2.23,0 -1.85,1.80,-0.08,0.65,1.29,1.53,0.48,0.37,1.70,0.78,1.88,2.46,3.52,1.72,4.23,4.10,2.90,2.21,1.08,1.75,0.97,0 -1.23,1.29,0.83,1.34,1.82,3.16,1.87,4.24,3.24,1.73,3.37,2.47,2.87,1.87,2.34,2.75,3.49,2.53,0.48,1.20,0.53,0 -0.23,-0.69,0.74,0.20,1.10,-2.65,1.23,0.68,1.90,2.91,4.83,1.27,2.61,4.11,5.68,2.41,1.84,1.11,0.34,2.34,0.17,2 -0.28,0.07,-0.56,-1.53,-0.11,1.63,3.05,4.07,5.16,2.04,6.75,4.54,3.88,2.23,1.81,1.13,-1.78,-0.01,-0.71,-0.69,-0.22,1 --0.03,0.85,0.05,3.74,3.59,1.89,3.37,7.32,4.00,4.90,2.43,1.84,0.92,-0.01,0.18,1.70,0.33,-0.39,0.36,-0.22,1.04,1 -0.27,-2.14,1.41,1.60,0.64,3.45,5.43,5.96,2.92,3.83,4.01,3.77,2.50,2.08,2.87,-2.30,-0.69,1.52,0.94,0.23,-0.80,1 --0.04,0.37,1.18,0.86,-1.07,0.78,3.10,3.09,3.80,4.79,6.81,4.68,4.69,1.88,2.66,0.13,-0.43,-0.60,0.39,1.97,-0.40,2 --0.21,-0.39,0.32,2.97,1.59,2.43,2.99,1.94,1.83,2.66,2.49,3.21,3.69,2.98,4.91,2.40,2.54,4.09,1.11,1.73,0.60,0 -0.53,0.57,-0.10,-1.51,-0.80,0.56,0.72,1.57,1.07,3.46,4.52,3.17,4.73,4.16,5.00,4.05,0.97,1.14,0.94,3.41,-0.51,2 -0.02,-0.56,0.43,0.97,-1.57,-0.32,-0.09,-0.39,-0.54,1.77,3.18,2.79,4.86,5.77,5.80,5.44,3.95,3.33,0.40,0.35,-0.51,0 --1.01,0.35,0.11,0.11,0.62,0.57,1.10,1.02,3.84,2.51,6.49,3.80,3.60,3.82,1.38,2.90,0.22,-0.31,-1.03,1.28,0.54,2 -0.77,-0.97,0.79,-0.41,0.30,-0.57,1.23,0.24,2.28,0.77,3.45,3.20,4.29,4.89,5.33,3.21,3.01,2.57,-0.61,0.66,-0.10,2 --2.61,0.32,2.03,1.21,0.63,2.44,4.07,2.82,2.51,3.98,5.58,3.96,2.96,2.80,2.31,1.32,1.04,0.28,0.05,1.69,-0.17,1 --0.19,0.87,0.01,0.35,2.29,0.68,1.29,4.36,4.58,4.43,5.68,2.27,4.41,2.60,2.24,0.60,1.29,0.66,0.81,0.96,0.90,1 -0.99,0.25,0.21,-1.44,0.09,-0.50,-1.00,-0.57,2.11,3.15,2.23,2.35,2.82,5.56,5.80,3.74,3.59,2.15,2.16,0.60,-0.85,2 --0.11,1.14,0.27,2.00,0.06,0.25,-0.06,0.64,0.56,2.29,2.47,3.02,4.38,5.13,6.05,3.51,3.20,1.81,0.50,0.26,1.25,2 -0.47,-1.33,1.79,1.61,2.17,3.97,3.70,3.80,2.20,1.12,1.49,1.70,0.99,2.57,2.79,1.34,2.15,2.56,1.68,0.04,0.17,0 -1.47,-0.17,0.54,0.83,-0.43,-0.06,-0.25,0.37,0.89,2.07,4.18,3.24,5.06,5.35,5.10,4.58,3.30,2.89,0.62,1.55,0.96,2 --0.79,0.61,0.26,-0.32,-0.40,-0.95,0.37,2.88,3.43,5.25,5.31,2.67,5.56,1.43,0.75,2.59,0.03,-1.56,0.15,-0.92,0.96,1 --0.44,-1.94,-0.51,-1.07,-1.19,0.76,-0.49,3.01,2.32,4.24,4.48,4.31,5.98,1.04,1.82,1.41,-0.46,1.77,0.38,0.20,0.27,2 --0.93,0.52,0.67,1.31,2.29,5.10,6.48,4.75,4.53,2.30,2.18,0.78,1.02,2.04,-0.34,-0.28,1.12,-0.32,0.34,1.52,0.88,0 -1.32,-0.41,0.74,0.73,-0.12,1.83,3.23,2.50,1.48,-1.65,1.80,2.21,1.51,4.12,3.43,3.49,4.79,0.64,2.54,1.19,-0.48,0 --0.08,-0.75,-3.77,1.67,0.19,-0.68,-1.09,0.92,1.77,0.95,-1.03,2.71,2.87,3.99,4.87,4.06,5.51,3.20,1.55,1.57,-0.57,2 -0.57,-1.25,2.14,0.95,2.10,3.03,3.17,2.85,3.26,4.06,1.97,1.75,1.83,3.80,2.82,2.15,2.57,1.15,1.61,0.25,0.38,0 -0.29,0.72,-0.07,0.09,1.01,0.76,1.90,1.63,4.71,4.50,6.96,5.65,3.84,2.12,3.39,1.87,1.09,-0.09,-0.88,-0.99,-0.52,2 -0.40,-1.45,-1.78,0.34,-0.99,-0.71,-0.44,1.13,3.16,5.46,7.31,3.86,3.60,4.11,4.08,2.26,1.68,0.41,1.55,-0.85,-0.83,2 --1.25,0.61,-0.70,2.64,2.89,4.68,4.67,2.62,4.68,2.83,0.82,2.71,-0.99,-0.88,-0.47,-0.69,-1.71,0.03,0.54,0.53,1.64,1 -0.60,0.39,-0.37,2.81,1.33,3.19,5.27,5.00,3.54,4.30,2.27,2.12,-1.05,1.56,-1.60,0.57,-0.97,1.22,-0.37,-0.27,-0.10,1 --0.25,1.01,-2.83,1.14,0.60,2.05,2.22,3.20,4.21,4.80,4.41,3.56,3.78,2.84,0.91,-0.10,-0.93,0.45,-0.83,0.40,-0.19,1 -1.69,0.57,2.20,2.29,4.12,3.67,6.50,6.15,4.59,3.06,4.19,0.21,-0.85,0.78,0.69,1.31,1.45,0.72,0.43,0.11,1.62,1 --1.58,-1.59,1.17,1.55,0.12,1.75,0.31,0.85,-0.09,1.68,3.29,4.45,2.44,3.12,5.20,2.59,4.36,3.10,1.18,-0.05,1.11,0 -1.34,0.86,2.38,0.86,3.46,3.76,4.90,3.75,4.35,5.02,3.77,1.79,1.80,0.43,-0.52,-0.91,-0.19,-0.47,-0.14,0.86,-0.65,1 --0.61,0.16,-1.00,-0.01,-0.52,-0.31,0.21,2.01,1.06,3.18,2.48,3.01,3.07,4.58,4.10,2.40,2.26,2.34,1.37,0.25,0.72,2 --1.45,-0.42,2.30,-1.02,1.26,2.43,0.59,1.04,3.10,4.80,6.02,5.64,5.23,3.07,2.08,0.99,-0.75,-1.69,-0.64,-0.72,1.85,1 --0.69,-0.82,1.68,0.65,1.95,0.04,1.29,1.84,1.35,1.59,2.96,2.55,3.30,3.67,3.42,2.43,3.33,1.59,1.76,1.28,-0.82,0 -1.16,-1.72,-1.31,0.82,0.95,2.12,1.39,2.09,4.08,6.42,6.37,4.74,4.32,2.39,1.00,1.91,0.27,-0.16,-1.34,0.97,-0.93,2 -0.28,-0.96,1.16,0.56,-1.00,0.79,3.63,3.42,3.37,4.38,5.00,3.68,3.56,3.75,3.21,0.07,0.50,1.50,-1.18,-1.92,-0.73,1 --0.86,0.44,-0.74,0.93,0.05,1.09,-0.58,1.77,3.48,1.31,2.50,3.05,5.53,3.29,4.93,5.60,3.21,0.83,1.11,0.99,2.33,2 --1.10,0.09,1.33,0.28,1.32,2.71,2.28,2.79,4.71,3.35,3.48,4.28,0.87,-0.03,1.39,0.14,-0.42,-1.57,-0.05,1.55,-0.44,1 --1.09,1.10,0.57,2.09,1.64,2.28,2.22,3.91,3.72,3.75,5.34,4.82,3.16,1.41,1.05,2.30,0.12,0.60,-1.36,-0.03,0.86,1 --0.25,2.10,2.65,3.80,3.92,5.85,5.91,6.06,4.27,2.68,3.06,1.90,1.19,-1.13,1.37,0.58,-0.04,1.53,0.69,0.19,-1.16,0 --0.79,0.96,-2.62,-0.06,0.55,-1.05,1.16,1.22,2.52,2.67,4.46,3.35,2.92,4.02,4.37,1.02,1.60,-0.25,0.04,1.66,0.61,2 --0.24,1.19,1.13,1.27,2.79,0.96,1.62,4.11,2.17,4.29,4.43,6.14,0.73,3.06,0.86,1.31,0.61,-0.17,0.64,-1.26,-1.43,1 -1.09,-0.42,0.06,0.56,-1.69,1.24,2.06,5.10,5.05,6.11,4.36,5.10,3.59,2.80,2.84,1.54,0.18,-1.52,1.26,0.32,-0.34,1 -0.34,1.13,-2.01,0.47,-0.13,0.50,-0.21,2.17,2.02,3.44,2.99,2.76,5.37,4.07,4.40,3.46,3.00,1.73,1.24,0.17,-0.01,2 --0.25,1.39,-0.32,1.91,1.17,0.31,1.32,-0.41,1.29,1.23,-0.50,1.61,2.54,2.57,4.29,5.33,3.70,0.87,1.14,0.43,1.24,0 --0.52,1.91,-1.18,-1.17,-1.39,0.20,2.35,-0.98,0.59,3.46,4.44,3.79,5.24,5.28,5.25,3.73,5.02,2.24,2.77,2.41,-0.46,2 -0.81,-0.85,2.77,3.44,3.06,5.30,4.10,4.98,5.61,3.72,3.79,2.71,2.02,0.82,0.01,-0.48,0.04,-1.88,-0.79,-0.50,-0.55,1 -0.07,0.63,0.42,4.53,4.19,5.13,6.88,3.41,4.19,3.24,1.54,1.99,-0.64,2.75,1.06,1.25,-1.48,1.80,-1.10,-1.01,0.56,1 -1.10,-1.39,-0.24,-0.37,-0.85,-0.81,0.79,1.58,3.04,3.93,5.08,5.57,3.43,5.06,2.79,1.65,1.46,0.76,-1.20,-0.04,1.81,2 -0.94,0.18,2.41,3.09,2.07,4.62,5.24,1.25,1.37,1.77,3.00,1.22,1.36,1.48,3.51,0.40,1.46,1.38,1.04,1.07,-0.12,0 --2.14,1.49,1.90,3.26,1.50,5.59,4.73,4.49,2.99,4.24,3.88,0.47,1.97,0.80,0.28,0.65,-1.35,-0.16,0.99,0.36,-0.39,1 --0.22,1.53,1.00,1.52,-1.14,1.64,1.33,0.56,4.07,5.38,7.17,5.78,3.31,3.79,1.52,2.35,-1.28,0.92,-0.08,-0.32,-0.12,2 --0.48,1.06,3.08,4.09,3.24,3.48,5.18,5.00,4.12,3.81,4.13,2.70,0.02,1.90,0.81,-0.14,1.84,-0.96,0.08,0.11,0.72,1 --0.62,0.35,1.63,2.72,3.14,2.63,5.48,4.59,1.64,2.92,1.63,1.89,0.39,-0.28,2.97,0.29,1.17,-0.95,-0.54,-0.85,0.77,0 -0.95,0.63,0.84,1.19,2.56,0.73,3.06,4.96,4.95,4.12,4.53,2.95,0.51,0.27,0.44,2.05,0.41,1.23,0.43,0.55,-1.32,1 -0.28,2.01,2.43,1.46,4.11,5.14,6.44,5.30,3.48,3.32,1.36,0.67,1.86,-0.26,0.08,-0.18,2.19,-1.01,-1.30,-1.04,-1.22,1 --1.42,-0.34,-0.14,0.11,-0.61,1.70,-0.02,3.82,2.02,2.57,6.08,4.52,4.79,4.30,4.00,2.76,1.76,0.16,0.30,1.72,-0.84,2 --0.66,-1.73,1.43,0.52,0.55,1.89,-0.07,1.70,0.59,0.89,3.54,3.16,2.28,3.43,6.15,3.92,3.47,2.53,1.05,1.00,0.20,0 --0.26,1.21,-0.90,1.82,3.21,1.23,1.38,-0.00,1.44,-0.30,3.10,0.89,2.52,4.03,3.22,2.68,1.87,2.60,1.08,1.11,0.94,0 --1.13,-1.11,2.10,0.07,0.95,0.10,3.38,4.31,4.73,6.00,4.60,4.20,0.73,0.73,1.13,0.61,-0.41,-0.06,-0.33,-1.40,1.00,1 -0.94,0.02,2.44,1.59,2.21,4.04,4.09,2.99,5.02,3.03,3.80,2.63,0.62,0.23,1.64,0.80,-0.20,-1.00,0.53,-0.91,-0.67,1 -0.99,2.17,1.70,3.04,3.70,5.11,6.64,4.13,3.56,3.68,2.89,0.81,0.75,0.67,0.37,0.45,-0.36,-0.40,1.56,1.86,0.77,0 --0.18,1.35,0.08,-0.43,-0.25,-1.68,0.78,0.01,0.56,2.53,1.95,2.97,6.17,4.22,6.42,5.14,4.55,1.90,3.07,1.25,0.86,2 -0.24,-0.42,0.05,0.82,0.55,1.57,0.19,1.64,1.73,0.82,3.00,2.78,3.89,5.55,7.00,5.74,1.74,1.09,1.58,-0.53,-1.04,2 --1.96,1.08,1.39,1.43,0.44,3.37,3.89,3.89,3.94,5.12,2.52,2.31,3.80,3.27,0.77,1.30,-0.72,-0.78,0.78,-0.48,0.19,1 -0.88,0.49,1.28,4.01,5.21,3.80,5.92,2.90,5.21,4.27,2.53,1.69,-0.22,-1.31,0.55,-0.47,-1.68,-1.92,0.85,0.19,1.24,0 -0.30,-0.44,0.14,-0.80,0.57,-1.20,2.18,4.83,1.28,3.88,6.74,4.15,4.38,2.10,2.18,-0.49,0.94,1.91,0.08,-0.59,1.30,2 --0.98,0.62,-0.46,0.97,1.68,0.86,1.08,0.15,1.43,1.85,1.44,3.74,3.78,2.56,3.54,4.41,1.44,0.82,0.55,-1.04,-0.39,0 -0.05,0.40,-0.34,0.02,1.44,-0.71,0.33,0.28,0.93,1.01,1.87,4.13,3.53,6.08,5.72,4.58,3.76,3.23,2.25,0.69,0.78,2 -0.56,-1.26,0.59,0.92,-1.58,-0.40,3.53,3.03,3.82,4.46,5.10,4.74,3.45,1.41,2.29,1.42,2.39,-0.57,1.59,-0.62,-0.41,1 --2.36,0.98,0.72,0.94,2.09,3.69,4.68,1.45,3.27,3.72,3.15,3.16,3.08,0.53,-0.68,0.85,0.51,0.14,-0.11,-1.42,-0.11,1 -0.95,0.52,1.36,2.77,1.53,0.85,3.22,3.32,2.77,3.56,3.30,3.20,2.48,1.14,0.25,0.01,0.12,0.59,0.90,-0.23,0.66,1 --0.65,-0.99,0.88,3.05,3.78,2.49,4.65,3.35,3.38,3.09,0.81,1.27,1.41,0.41,2.76,1.91,2.18,1.42,-0.22,-1.04,0.75,0 -0.71,0.49,0.90,-0.78,-0.97,0.30,-0.11,0.04,0.82,1.36,3.55,2.64,4.97,4.48,4.13,3.53,2.68,1.21,0.55,1.05,0.54,2 --1.46,-0.54,2.74,3.17,4.16,3.64,3.29,5.56,4.23,2.56,3.43,0.79,0.73,1.17,-0.59,0.93,0.59,-1.75,-0.23,-0.93,-0.03,1 -1.74,-0.78,-0.29,1.35,-0.07,-1.06,0.03,-0.36,0.34,1.28,2.31,2.28,4.59,3.51,4.78,4.15,5.50,2.17,1.41,0.37,1.16,2 -0.32,-0.50,2.53,4.49,2.90,5.51,5.10,2.86,1.66,2.35,1.55,2.46,1.88,1.21,0.15,-0.07,2.14,1.16,-0.89,-0.65,-0.91,0 --0.87,-0.21,-2.65,-0.31,-0.03,0.38,-0.91,-0.31,1.60,0.00,3.69,2.36,4.00,5.19,5.40,6.31,4.22,3.55,2.39,1.59,-1.81,0 -0.37,0.63,-0.31,0.53,1.34,0.94,0.56,2.74,1.82,4.18,5.63,3.77,4.80,5.98,4.65,3.88,3.24,1.33,0.50,2.05,-1.35,2 --0.37,-2.01,-0.37,-0.06,-1.14,-0.45,-0.58,1.66,1.92,1.07,3.92,5.08,3.54,5.11,2.97,3.01,2.36,1.96,2.99,0.35,0.37,2 --0.45,0.15,1.86,4.07,2.75,4.62,7.15,2.76,4.39,1.85,1.04,0.41,-1.07,-0.33,-0.35,-0.15,-0.71,-0.17,0.70,0.45,-0.45,0 --1.02,-0.63,0.47,3.51,2.16,4.57,3.12,5.21,3.52,4.77,3.53,1.84,0.15,1.88,-0.00,0.12,-0.00,-1.67,1.53,-0.28,0.80,1 -0.05,-0.74,2.23,1.82,4.16,5.57,5.49,4.11,4.37,4.39,2.64,2.20,2.07,1.64,1.38,1.56,0.86,-1.27,-0.62,-0.74,-1.45,0 -0.70,0.54,1.42,0.85,0.18,-1.23,0.36,1.28,3.75,3.86,5.01,4.05,3.61,3.85,3.79,3.45,-1.35,2.97,-0.93,0.57,0.59,2 --0.47,0.83,0.38,-0.73,0.56,1.16,-1.09,-0.52,2.44,4.57,3.65,2.89,4.02,3.17,2.71,4.13,1.73,1.11,2.39,-0.77,0.47,2 -0.68,-1.70,2.19,0.57,0.30,0.66,-1.07,1.74,0.16,0.99,2.74,4.98,2.54,2.47,3.67,3.99,4.67,1.71,3.03,0.67,0.02,2 -0.97,-0.12,-0.03,-2.61,-0.23,-0.07,-0.31,0.49,0.21,2.87,3.03,4.61,5.75,2.45,5.86,4.66,3.40,4.70,2.60,-0.02,0.65,2 --1.44,-0.40,0.60,-0.06,0.91,1.46,2.08,2.23,3.51,3.12,3.35,2.81,4.31,5.28,4.07,1.38,1.64,1.04,0.64,-0.38,-1.98,2 -0.71,-0.68,0.73,1.13,2.11,1.16,2.21,3.04,4.43,4.16,4.53,3.71,1.70,3.14,-0.06,1.43,-0.04,-0.18,-0.64,-0.08,-0.50,1 --0.47,1.99,0.46,2.19,3.83,5.42,4.88,5.12,5.54,3.84,0.63,1.44,-0.42,0.74,0.31,0.83,-0.66,0.34,0.13,0.61,0.91,1 --1.68,0.76,1.95,1.99,3.33,5.31,4.17,6.36,3.50,1.79,3.50,1.88,0.14,-1.08,0.75,0.53,0.05,1.87,-1.24,-0.63,1.19,1 --0.84,1.34,3.06,2.69,1.99,3.56,3.83,5.06,4.41,3.87,2.35,2.07,2.01,2.94,2.59,0.44,-0.29,0.32,-0.98,0.44,0.32,1 --0.23,1.13,2.83,2.87,3.32,4.38,3.75,4.37,3.28,2.18,1.01,1.27,1.19,-1.46,0.97,0.94,1.38,0.42,-0.10,0.01,-0.62,0 --0.01,1.54,-1.96,0.56,-1.82,0.85,-0.19,1.17,0.43,0.45,0.77,3.43,4.82,4.44,3.92,5.65,2.48,2.19,3.07,2.63,1.07,0 -0.39,0.67,-0.61,0.06,-0.14,-1.12,1.97,1.93,1.76,1.18,-0.50,1.95,5.43,5.81,3.83,3.60,3.64,4.21,2.53,0.50,0.76,0 -0.82,1.77,2.63,4.52,3.01,4.32,6.15,5.19,4.92,2.41,3.62,-0.45,-0.57,1.78,0.25,0.45,0.58,-0.44,0.79,-0.55,1.84,1 --0.08,0.05,0.64,2.10,2.48,3.40,5.07,4.79,3.20,2.90,3.25,1.28,-0.21,-0.34,0.87,1.67,1.43,-2.19,1.47,0.82,-0.29,1 --0.62,1.14,0.57,1.96,3.17,5.11,4.51,4.62,3.70,1.26,3.03,1.65,-0.58,0.58,-0.27,-0.18,0.36,0.26,1.19,-0.15,0.54,0 --0.22,1.76,-0.46,2.73,3.50,5.04,3.14,4.37,2.54,2.75,1.93,2.49,0.90,1.69,3.32,1.66,2.82,1.12,-0.08,1.25,-0.24,0 -0.86,1.22,0.67,0.13,-0.39,2.56,1.16,1.71,4.26,3.45,6.96,5.37,4.73,1.07,3.09,1.58,2.16,0.25,0.04,1.32,0.44,1 --0.30,-1.11,-0.33,-0.02,0.05,0.24,0.69,2.01,2.48,4.99,3.34,3.86,4.89,2.81,1.19,1.64,1.49,-0.28,-0.14,2.08,-0.11,2 --0.06,2.15,0.96,1.57,2.24,4.82,4.13,2.88,3.74,3.20,4.84,2.95,-0.02,-0.65,1.39,0.82,0.11,-1.68,-0.98,1.02,1.38,1 --0.57,-0.74,-0.00,0.73,-0.37,1.12,-1.45,1.11,1.68,2.94,5.62,3.74,3.14,3.98,4.45,3.45,0.65,1.72,0.83,0.90,0.24,2 --1.05,0.15,0.76,-0.88,0.74,0.54,4.58,4.95,3.65,5.99,5.05,2.61,3.29,1.67,1.34,0.53,-0.56,0.34,0.03,0.21,0.94,1 --0.12,-0.27,-1.19,1.33,1.33,1.35,0.30,1.57,1.82,3.19,2.40,5.30,4.30,2.83,4.48,4.79,2.62,2.53,0.88,0.93,-0.65,2 -1.74,2.36,3.01,2.52,0.25,1.86,2.15,1.94,0.45,0.73,2.85,0.76,1.89,2.39,3.53,4.44,3.18,3.14,-0.15,-0.34,0.78,0 -0.72,0.13,1.50,1.27,1.81,4.08,3.68,3.60,4.38,3.16,1.79,1.65,-0.07,2.07,2.02,3.39,2.05,1.53,-0.05,1.66,-0.54,0 --0.45,0.43,2.11,2.07,2.28,3.23,4.38,5.22,5.14,4.01,1.82,1.23,0.63,0.64,1.38,1.00,-0.27,0.30,-1.72,0.03,-1.30,1 -1.08,-0.13,-0.78,1.13,0.93,3.57,4.28,5.04,3.68,3.82,4.65,4.44,0.77,1.34,-0.23,-0.47,1.63,0.72,-0.64,1.11,-0.26,1 -1.23,0.49,0.72,-0.38,-0.39,-0.80,0.63,2.59,1.37,3.33,4.24,4.91,4.22,3.47,7.16,4.54,2.52,1.92,3.32,0.24,-0.36,2 -1.37,1.41,0.58,-0.96,0.42,3.18,2.61,2.47,4.34,5.08,5.59,4.03,4.92,3.70,2.80,0.52,1.09,0.31,0.83,-1.56,0.61,1 --0.30,0.25,0.33,0.03,2.42,0.76,-0.77,-0.20,0.70,1.84,2.28,3.94,3.10,4.05,4.59,3.30,1.79,3.74,0.55,0.77,-0.11,2 -1.72,0.09,-0.28,1.46,2.14,1.86,1.76,1.39,3.22,1.85,1.58,2.74,-0.25,3.02,3.28,2.83,-0.05,1.78,-0.41,-0.05,-0.12,0 --0.21,-0.06,0.14,-0.43,1.31,1.14,0.98,-0.78,-0.01,0.46,1.57,3.40,3.33,4.61,2.88,4.14,1.72,1.24,1.55,0.73,1.27,0 -0.57,1.09,2.21,1.02,3.44,1.95,3.97,3.47,2.26,4.21,4.45,3.49,2.20,0.98,1.15,-0.49,1.51,0.24,0.68,-0.55,0.36,1 -2.09,0.37,0.94,2.65,3.64,3.81,6.31,5.62,4.91,3.42,2.81,-0.43,0.58,2.73,-0.34,1.22,1.43,0.32,0.50,1.53,1.69,1 --0.28,-0.60,1.28,2.53,3.80,4.52,3.65,3.43,3.21,2.84,1.21,2.34,0.45,3.25,-0.20,0.09,-0.03,1.10,-0.27,-1.95,-0.36,0 --0.98,0.47,2.07,0.69,-0.20,0.48,2.14,1.86,0.72,4.01,5.01,4.46,3.69,3.63,2.74,3.13,0.26,1.28,-0.36,0.80,0.65,2 --1.94,-1.39,-0.47,0.70,-0.43,0.70,2.89,3.62,3.30,3.95,5.94,4.75,5.16,1.99,1.90,1.24,-0.03,1.32,2.40,-0.33,-0.49,1 --1.96,0.11,1.06,0.39,1.52,1.63,1.03,1.26,-1.12,1.95,2.07,3.92,4.08,4.12,5.04,3.65,3.06,2.08,2.68,1.85,-0.51,2 -1.58,1.84,-0.43,-0.37,0.15,2.55,0.44,2.37,0.41,0.96,4.63,3.53,4.19,5.69,4.85,5.42,4.10,1.84,1.03,2.32,0.06,2 -0.70,1.27,2.95,2.44,4.71,5.96,6.54,5.90,4.18,4.00,3.87,-0.85,0.82,-0.13,-0.20,1.07,-0.08,0.05,-0.23,1.28,-0.42,0 -0.96,1.62,0.95,0.91,1.17,0.28,2.11,4.63,4.55,2.33,5.09,4.83,3.74,2.25,1.85,-0.31,1.07,0.65,0.86,-0.67,0.35,1 -0.16,-1.90,1.37,1.18,0.39,-0.18,2.42,0.33,1.47,2.97,3.13,3.18,3.34,3.24,5.27,3.44,2.16,-0.22,0.48,1.18,0.40,2 -0.34,-1.84,0.93,1.33,-0.41,2.27,-0.20,3.50,2.34,1.74,3.13,3.10,3.76,4.63,3.86,3.36,2.16,1.13,1.63,1.77,0.33,2 -1.22,1.26,2.25,2.80,3.18,5.61,4.45,3.75,3.30,1.81,2.04,0.72,0.79,0.84,0.45,1.01,0.22,0.42,-0.54,0.06,-0.33,0 --1.90,0.72,2.69,0.11,-0.05,1.18,2.24,2.47,0.05,1.77,1.90,2.02,2.18,3.03,3.38,2.79,2.50,1.67,4.07,1.70,1.33,0 --0.15,0.89,0.75,0.24,-0.23,0.97,-0.79,-0.08,0.90,1.79,2.24,2.99,3.72,5.72,4.78,4.31,1.85,4.20,1.57,0.82,-0.23,2 -1.92,1.44,0.78,2.08,2.49,3.29,3.48,3.67,4.53,4.78,5.78,2.79,1.67,1.83,2.13,2.03,-1.29,-1.90,-0.41,-0.96,0.27,1 --1.47,1.18,0.68,0.26,-0.96,-2.55,1.25,1.91,2.69,1.78,4.69,3.59,3.22,2.10,4.87,2.36,2.54,2.54,0.50,3.08,0.47,2 --0.14,1.61,-0.29,0.46,-0.39,2.01,0.52,1.10,-0.74,1.99,2.96,4.45,5.92,4.99,2.98,5.34,3.34,1.48,2.01,0.41,0.23,2 --0.21,0.17,1.69,2.03,5.26,4.68,7.28,6.72,4.19,4.13,1.95,1.08,-0.30,0.65,-1.75,-0.08,-1.12,-0.35,-1.77,0.64,-0.29,0 -1.43,1.33,1.47,2.82,2.09,2.43,3.94,2.97,3.50,3.44,0.25,2.28,1.09,1.97,2.83,1.61,1.10,1.11,2.21,0.25,0.64,0 -0.39,-0.22,-0.44,-0.97,1.61,-1.65,1.72,-0.37,2.55,4.22,4.62,3.41,5.14,2.82,3.71,4.23,0.96,-0.36,-1.61,1.67,-1.53,2 --0.52,2.13,0.23,1.86,3.24,4.77,5.92,4.32,4.09,3.73,2.74,1.27,1.59,2.47,0.93,0.73,0.93,0.86,0.08,-1.16,0.63,1 --0.75,1.00,0.44,2.96,0.48,4.17,4.81,4.57,2.97,4.22,4.29,3.74,3.72,-0.10,0.04,-0.50,1.44,0.57,1.49,-0.86,-0.71,1 --0.12,-0.60,-0.25,-0.69,-0.06,0.22,-0.56,1.61,2.05,3.14,4.36,5.11,4.04,1.35,2.94,0.74,0.22,1.67,2.03,-1.28,-0.39,2 --0.89,0.34,0.82,-0.21,1.39,1.96,3.97,3.62,4.83,5.48,5.19,3.76,3.91,1.56,1.54,-0.17,2.71,-0.32,-0.17,-0.25,-0.07,1 -1.22,0.39,1.01,-0.56,0.78,1.79,3.73,2.07,3.68,3.74,4.83,3.54,4.13,2.81,1.16,2.42,-1.70,1.09,-0.57,-1.28,-0.43,1 --0.55,1.09,0.06,-0.02,1.02,-0.67,2.14,0.82,2.26,2.29,3.60,4.16,4.07,5.97,3.97,2.43,4.02,0.27,1.03,1.04,-0.25,2 --0.82,1.79,1.43,4.57,4.36,5.22,4.50,4.25,4.34,3.71,2.32,0.09,1.35,0.91,-0.78,0.35,-0.55,-1.72,0.69,1.10,-1.37,0 -0.66,-0.03,1.96,1.07,0.60,4.39,6.73,4.27,3.44,3.04,1.86,1.39,3.22,1.06,2.41,2.84,0.92,1.65,0.43,0.87,0.85,0 -0.24,1.61,0.62,3.42,2.35,4.76,4.85,4.39,3.33,3.91,2.81,2.67,1.62,-0.28,0.72,0.86,0.95,-1.28,2.22,0.03,-0.68,1 -0.08,-0.97,-0.05,0.63,1.83,-0.11,1.54,0.82,-0.51,0.80,0.16,3.47,3.52,5.09,6.20,5.63,4.79,3.01,1.00,-0.84,-0.15,2 --0.68,-0.71,0.18,1.26,2.63,2.31,2.43,3.09,0.10,2.19,1.63,-0.03,3.95,3.32,1.51,2.65,2.82,2.71,0.86,0.59,-0.79,0 --0.52,1.20,1.18,0.94,2.10,4.04,3.00,2.48,1.70,3.25,1.51,3.08,0.00,2.96,1.20,2.88,-0.03,1.01,-0.55,-1.10,0.86,0 --1.38,0.67,1.19,1.55,4.97,3.36,6.11,4.28,3.15,2.88,0.49,1.58,1.07,2.32,1.57,1.62,0.93,1.10,1.94,0.17,-2.71,0 --1.46,-1.60,-0.65,1.52,-0.87,1.98,1.08,0.99,5.32,4.55,5.11,4.73,4.67,4.90,3.10,2.50,1.00,0.45,0.75,-0.50,-0.87,2 --0.42,-0.06,2.15,0.78,-0.92,1.84,3.73,4.43,5.06,5.35,4.78,3.19,3.34,3.02,2.23,1.05,0.78,-1.43,0.63,-2.03,1.56,1 -0.58,-0.22,2.49,2.86,4.23,5.39,7.03,4.99,4.31,1.65,3.36,1.37,1.32,-1.60,0.33,-0.58,-0.01,-1.07,-1.54,-0.68,-0.74,1 -0.82,-1.20,-0.98,-0.43,1.20,1.22,0.16,-0.75,1.42,2.64,1.99,4.16,2.78,5.55,5.06,3.64,3.71,-0.57,2.05,1.16,-1.21,2 --0.85,-0.68,-0.63,-2.32,0.05,0.04,1.98,-1.46,0.60,-0.36,2.04,1.61,4.18,3.90,7.05,5.60,2.99,4.12,3.23,1.72,-0.17,0 -0.51,-1.24,1.38,0.05,-1.26,-0.71,0.98,0.48,0.06,0.90,2.89,4.10,2.04,5.11,6.34,5.23,3.38,1.95,3.25,0.12,-0.91,2 --0.00,-0.59,1.35,2.86,0.83,2.34,4.61,2.43,2.71,1.12,2.19,2.68,0.85,0.08,1.02,1.18,2.06,1.64,1.49,0.53,0.79,0 --0.02,0.71,0.12,0.59,-1.00,0.57,0.71,0.43,0.03,1.31,1.52,5.13,2.79,2.63,5.11,5.35,3.95,4.07,0.91,0.02,-0.89,2 --0.28,1.51,-0.44,-0.43,-1.06,0.53,2.73,1.74,2.83,1.26,5.76,3.92,4.76,3.48,4.85,4.95,1.95,0.54,-0.16,-0.85,0.09,2 -0.75,1.27,-0.03,2.03,2.76,3.58,2.83,3.27,2.04,3.54,2.03,-0.10,1.22,-0.35,1.13,0.42,0.91,0.94,1.87,-0.54,0.87,0 -1.02,-0.63,0.25,-0.25,-1.66,-0.78,1.54,1.10,0.72,3.58,3.34,2.67,3.79,4.23,4.79,3.28,1.88,1.91,0.94,-0.47,-1.71,2 --1.32,0.19,1.29,0.20,2.26,2.05,2.58,-0.21,2.68,2.80,2.72,1.52,4.24,2.81,4.57,3.62,3.98,3.20,0.70,-1.46,0.09,0 -0.92,0.38,1.13,0.17,2.32,1.38,2.25,4.24,4.02,5.50,4.91,4.59,2.69,4.02,0.41,2.18,-0.46,0.34,0.13,-0.60,1.18,1 -1.63,0.29,1.79,2.79,1.55,4.58,1.65,4.35,0.47,1.68,0.30,1.30,1.20,2.89,3.58,4.12,2.01,2.63,0.44,0.97,0.78,0 --1.09,-0.81,1.34,1.99,0.88,1.99,3.24,3.59,0.92,1.63,1.57,2.98,2.92,3.19,2.29,3.83,3.73,1.75,2.28,-3.05,0.97,0 --0.06,0.03,0.56,-0.71,-0.58,0.30,0.84,3.06,3.73,4.41,4.62,2.78,4.18,5.18,3.29,3.18,1.99,-0.66,0.87,-0.50,-0.11,2 --1.28,-1.50,0.30,-1.58,-0.07,0.81,1.19,-2.26,2.06,0.63,1.15,5.31,5.00,2.83,5.47,4.12,2.35,3.37,1.56,-0.15,-0.26,2 -0.33,0.96,1.01,2.51,1.25,2.43,5.04,3.94,2.12,3.60,1.62,2.89,2.36,-0.04,3.35,1.45,1.58,-1.14,-0.34,-0.54,-0.92,1 --0.14,0.83,0.03,0.50,1.79,0.34,1.59,1.84,3.24,3.28,5.38,6.30,2.86,3.49,3.12,2.74,1.14,1.39,-0.87,-2.45,-0.66,2 -0.01,0.94,1.83,3.38,2.29,3.11,1.39,2.69,3.82,3.22,3.67,2.22,0.77,0.14,0.93,0.43,0.88,2.41,0.53,0.32,2.09,0 -0.43,0.92,-0.55,1.18,1.60,2.11,3.05,3.09,5.31,4.85,4.06,3.57,2.60,1.14,2.08,-0.23,-0.05,-0.32,0.44,-0.12,-1.47,1 -0.68,-1.41,0.95,-0.75,0.27,-0.11,1.18,1.96,-0.36,3.40,2.60,1.44,4.24,5.74,5.75,4.89,2.97,2.61,2.45,1.49,0.14,2 --1.24,2.91,2.28,3.94,3.42,5.03,5.64,4.16,4.08,2.97,1.59,0.24,-0.27,-2.38,3.22,-0.28,0.18,-0.37,-0.27,0.76,1.24,0 -2.26,-1.63,-0.18,0.48,-0.13,0.86,1.38,2.42,4.05,4.46,4.99,3.68,4.04,1.77,3.86,1.71,2.14,0.25,2.94,0.33,-0.65,2 -0.34,-0.74,0.22,0.20,0.72,-1.30,1.10,0.49,0.19,-0.45,1.69,3.57,1.84,4.90,2.97,4.64,3.78,3.71,1.12,-1.18,0.67,0 --1.22,0.41,1.95,-1.43,0.00,2.25,2.58,1.34,3.60,5.00,4.26,4.43,1.51,1.68,2.20,0.28,0.60,-0.58,0.55,-1.86,0.38,1 --1.48,2.38,1.88,3.50,1.60,2.30,3.02,3.37,3.18,2.79,3.86,2.01,0.16,0.60,0.31,1.36,-0.05,-0.62,0.24,-0.88,-0.46,1 -0.73,2.18,1.45,3.35,4.19,5.42,2.61,5.79,3.19,2.36,2.72,0.44,0.62,1.05,-0.56,-0.86,-0.77,-0.07,1.92,-1.26,-0.60,1 --0.11,-1.19,1.64,1.32,1.35,0.22,0.21,-0.56,0.23,0.15,2.46,3.47,3.97,4.54,6.49,5.24,3.01,2.59,2.78,1.09,-1.16,0 -0.09,2.27,0.35,0.49,3.09,3.64,4.43,4.47,4.13,2.97,1.67,2.55,0.75,1.19,1.16,1.00,-1.59,0.12,1.20,0.11,0.99,1 -1.77,-0.06,-0.34,-1.51,1.75,-1.39,-0.27,-0.24,0.64,3.70,2.30,3.71,4.59,4.09,3.68,2.55,1.30,0.86,1.09,0.37,0.02,2 -0.48,0.48,0.38,-0.81,2.40,-0.55,1.39,1.75,1.78,1.12,1.97,2.25,2.22,2.44,4.23,2.53,2.40,1.71,1.59,1.32,-0.82,0 --0.72,-0.20,1.90,0.25,0.54,1.91,2.37,4.78,2.07,3.87,3.33,3.33,3.54,2.66,-0.04,-0.14,0.19,0.64,-2.57,1.46,-0.84,1 --0.46,3.33,1.47,4.02,5.30,2.47,4.81,5.39,3.52,2.11,2.73,2.42,-0.85,0.52,0.09,0.15,-0.03,-0.61,0.60,-0.95,-0.24,0 -0.25,1.76,0.01,0.60,-0.51,0.79,1.62,0.96,1.49,-0.02,3.06,3.55,6.38,3.76,5.97,3.26,1.67,1.79,1.47,1.93,-0.93,2 -0.32,-0.02,-0.14,1.56,0.76,-0.49,0.21,3.16,4.02,2.65,4.35,4.01,3.09,4.84,3.36,2.34,0.03,2.02,1.16,0.69,-1.72,2 --1.72,0.75,1.22,3.65,4.70,3.77,4.93,3.18,3.20,2.56,2.49,1.30,-0.04,0.84,0.60,0.74,1.75,-0.25,0.31,0.96,-1.24,0 -1.54,2.64,0.72,3.08,3.01,2.84,1.18,3.72,2.04,3.49,0.80,1.33,1.54,1.62,2.50,1.79,1.10,2.30,0.11,-1.46,1.79,0 -1.59,-0.75,0.04,0.80,-0.22,-0.43,0.31,0.54,1.51,3.13,4.01,3.14,4.21,5.75,6.10,4.95,3.64,1.96,0.42,0.10,0.74,2 --0.32,-1.87,0.90,0.79,-0.92,0.15,-3.32,0.27,1.10,0.51,2.61,1.88,5.68,3.92,5.81,4.91,3.73,4.66,0.91,-0.74,0.62,2 --1.53,-0.44,0.80,0.02,-1.20,2.81,3.01,3.40,3.41,5.21,5.40,3.40,3.39,4.36,2.45,0.84,-1.12,-0.23,0.84,-0.26,0.21,1 --0.12,-0.39,2.45,1.17,2.56,2.15,2.37,1.10,2.75,3.17,2.83,4.35,2.34,1.83,1.80,0.42,-0.08,-0.09,-1.32,-0.43,-1.15,1 --0.96,0.18,0.34,-1.36,-1.43,0.83,2.81,2.20,3.25,2.13,3.62,5.41,3.68,2.73,2.08,2.32,2.76,1.15,0.80,1.41,-1.38,2 --0.04,0.30,1.20,2.38,3.22,4.97,4.57,3.71,4.04,2.05,3.51,1.38,0.45,0.79,0.16,1.14,-0.43,-0.61,-2.05,0.16,0.19,1 -1.60,0.63,0.58,-0.56,1.47,0.95,3.68,5.06,4.81,6.62,6.06,2.33,2.42,2.38,2.27,1.76,-0.33,-0.30,0.17,-0.67,-2.09,1 -0.39,-0.20,2.55,3.58,4.14,5.34,4.17,3.63,3.32,4.51,2.97,0.20,0.99,-1.56,-0.23,-0.76,0.01,1.92,0.15,-0.71,0.87,0 -1.09,0.34,1.91,2.05,2.64,3.23,3.96,2.98,0.70,1.74,1.74,1.94,1.85,1.95,2.05,2.92,2.76,2.32,0.69,1.45,-1.08,0 -1.14,-0.56,0.17,0.12,1.56,2.59,3.16,2.43,3.21,4.71,5.97,4.64,4.66,2.01,4.16,1.71,-0.06,0.22,0.48,-1.84,-1.31,1 --0.97,0.94,1.25,2.36,0.99,3.86,2.37,3.81,4.66,4.79,4.12,3.24,3.53,1.26,2.48,0.87,-1.21,-0.13,-0.09,-0.09,-0.42,1 --0.44,-0.60,-0.71,0.02,-0.01,-0.63,0.63,2.82,4.32,2.48,6.53,7.29,5.54,2.74,2.91,2.35,-0.08,1.55,0.24,-1.17,-0.89,2 --2.25,2.01,0.99,1.99,3.34,4.54,4.66,3.69,4.22,3.02,-0.11,2.87,-0.82,-0.75,-0.29,2.45,-0.40,0.89,0.54,-1.38,-0.16,0 --0.20,-0.28,0.06,0.86,0.78,1.73,1.82,2.73,2.80,4.35,6.59,3.61,2.33,0.60,1.62,1.11,1.22,0.03,-0.11,0.37,-1.84,1 -0.76,-0.79,0.82,0.33,0.64,2.15,2.59,3.32,4.75,4.46,5.72,6.80,2.29,3.06,3.12,2.19,0.48,-0.35,0.79,0.42,0.34,1 -0.50,-0.39,1.56,3.21,2.83,3.27,5.23,4.47,3.59,1.58,1.63,0.73,1.84,2.86,-0.28,2.33,1.46,2.20,-1.56,0.49,0.62,0 -1.05,0.16,-0.26,0.11,1.65,1.11,0.31,1.62,3.60,3.17,6.92,3.81,4.25,2.15,1.40,0.37,-1.48,-0.19,-0.96,0.07,-1.05,1 --0.85,1.07,0.27,-1.52,1.54,-0.66,-0.63,1.02,2.20,2.84,4.69,3.85,4.20,4.21,4.03,2.65,1.02,2.23,-0.76,0.69,0.86,2 --0.38,1.22,0.45,3.62,2.24,3.62,6.60,5.07,4.14,3.62,1.42,0.57,1.45,0.26,-0.67,-0.90,0.40,2.28,-1.96,-0.50,0.92,0 --0.34,1.08,-0.70,1.13,-0.18,-1.19,-1.01,-0.80,1.56,-1.38,0.67,4.08,3.96,5.70,7.21,3.86,4.56,3.29,1.93,0.87,-0.47,2 --1.05,0.59,1.09,1.59,3.13,5.55,2.51,4.23,3.61,2.16,1.64,2.26,0.31,1.05,1.96,0.18,0.81,-2.15,0.48,-0.10,-0.35,0 -0.29,1.47,0.42,0.61,-0.32,1.70,1.74,2.05,3.72,4.67,5.10,5.36,4.46,4.23,1.34,0.81,0.45,0.45,0.67,0.34,-1.92,2 -0.06,-0.70,0.65,1.84,2.19,4.06,4.21,2.34,3.46,4.60,3.97,4.45,3.84,1.75,1.12,-0.63,-0.19,-0.02,-0.53,0.67,-0.70,1 -2.55,0.44,3.17,3.74,4.35,4.90,5.75,5.44,5.39,2.98,3.75,2.40,1.40,-0.47,2.14,0.31,-0.60,0.11,-1.72,-1.29,1.21,1 --2.00,-0.44,0.13,-1.41,0.27,-2.76,1.17,2.28,1.16,3.78,1.48,2.97,5.30,3.84,3.85,4.27,4.50,4.24,2.17,-0.10,1.87,2 --0.92,-0.04,2.71,2.57,2.50,5.31,5.11,4.36,3.51,2.18,1.60,0.92,2.03,1.22,1.26,1.23,-0.56,0.50,0.57,0.16,-0.27,0 -1.29,-0.45,1.56,3.21,2.59,2.17,5.53,4.63,4.89,4.64,4.08,4.77,2.43,2.87,0.58,0.38,-0.56,-1.50,-1.13,-1.22,-0.08,1 -1.02,1.76,2.48,4.25,4.16,5.46,6.61,3.52,3.73,4.38,3.68,1.07,-0.65,1.09,-0.37,-0.41,-0.25,-1.04,-0.12,0.33,0.20,1 -1.68,0.14,2.77,2.97,4.35,4.67,6.27,4.70,4.29,3.95,2.23,-0.01,0.49,-0.50,-1.20,-0.84,0.57,2.01,0.11,0.73,-0.65,0 --1.30,0.03,-0.01,1.10,2.78,5.03,4.73,5.21,5.02,4.49,4.82,5.81,1.83,2.10,0.85,1.59,0.04,-0.70,1.83,0.14,0.26,1 -0.63,0.96,-0.25,1.56,-0.97,0.14,0.73,0.32,1.48,1.63,2.33,5.10,3.91,2.59,6.12,3.88,2.46,1.68,1.40,0.87,-0.67,2 --0.16,1.40,-1.54,1.42,1.92,1.14,0.59,-1.51,0.92,2.94,2.85,2.79,3.61,4.34,5.27,4.51,3.08,1.73,2.43,1.09,1.26,2 -1.69,-1.79,1.00,-0.15,2.77,0.63,1.42,-0.12,0.50,2.55,1.32,4.16,4.48,4.78,4.87,4.18,3.83,4.18,2.46,-1.32,1.15,2 --0.23,0.46,2.31,-0.54,1.59,-0.99,0.34,2.27,0.49,-0.44,0.47,2.11,3.99,2.38,3.84,3.03,3.43,1.94,1.13,0.49,0.14,0 --0.88,1.55,1.48,0.52,1.97,1.84,3.98,2.79,2.58,0.91,2.47,3.00,2.62,3.79,4.29,2.97,1.02,1.47,0.98,0.77,1.01,0 -0.33,0.44,1.79,0.49,0.51,2.17,4.48,1.79,4.48,3.27,6.18,4.14,3.10,3.82,-0.89,0.60,-1.01,1.75,0.29,-0.16,0.64,1 -0.32,1.50,-0.47,1.33,0.78,0.88,1.93,1.82,2.96,1.94,4.82,4.20,3.09,4.88,4.16,1.80,1.95,1.35,1.20,1.94,-0.99,2 -1.40,0.54,0.96,2.16,2.33,2.53,3.74,4.17,4.94,4.03,5.25,3.13,1.04,2.37,3.63,-0.08,-1.57,-0.85,0.57,-0.59,0.15,1 -0.11,-1.27,1.44,3.02,2.06,3.18,3.19,5.42,3.19,3.22,3.96,1.33,1.89,0.57,1.96,1.41,1.12,0.23,0.16,-0.86,0.43,1 --0.90,1.07,-1.49,0.18,0.71,0.96,2.93,3.21,3.00,3.49,3.71,5.88,6.92,5.35,2.40,0.13,0.11,1.86,0.27,0.13,1.39,2 --1.30,1.01,1.01,0.04,1.35,2.12,1.33,2.49,4.93,3.66,4.60,4.31,2.87,1.68,0.91,1.39,1.01,0.22,-0.23,1.40,0.12,1 -0.23,0.51,0.72,1.40,0.79,1.37,3.11,2.77,4.16,5.37,5.64,4.09,3.56,3.71,4.46,-0.16,-0.78,-0.82,0.03,-1.07,0.51,1 --1.01,1.80,-0.02,0.98,2.59,2.40,3.79,3.00,4.23,4.54,3.96,1.69,-0.86,0.28,0.46,0.11,-0.80,0.14,0.82,-0.00,0.12,1 --0.84,1.60,2.42,0.25,1.64,2.93,4.26,3.68,3.05,1.88,1.93,1.08,-0.35,0.13,3.31,2.19,0.72,-1.33,-0.49,0.76,-2.33,0 --0.01,-1.28,1.74,2.72,4.46,3.40,3.90,2.74,3.02,2.83,2.06,0.74,0.56,0.85,2.19,2.03,1.55,1.27,0.97,-0.20,-2.04,0 -0.46,-0.70,1.89,0.90,0.76,0.97,2.73,2.73,5.31,4.86,2.17,3.83,2.31,3.34,1.96,0.80,-1.57,-0.01,0.86,-0.10,-0.91,1 -0.22,-0.50,-0.14,-1.12,1.04,1.28,-2.30,0.52,1.35,2.41,1.25,2.31,5.10,4.65,5.87,2.81,5.46,2.98,2.36,-0.02,-0.12,2 --0.10,1.52,1.42,0.31,1.65,2.79,2.95,2.09,2.35,3.98,3.14,3.09,2.25,3.49,3.98,0.82,3.14,1.48,1.74,-0.16,-1.44,0 --1.96,-0.41,0.68,1.99,1.63,2.69,2.27,2.78,4.50,2.03,1.66,1.80,2.44,2.09,2.57,0.78,1.42,2.25,1.07,1.68,-0.53,0 --0.68,0.45,-0.70,0.34,-0.54,-0.52,-0.98,-0.27,-0.21,2.29,0.90,3.38,5.16,4.60,5.17,5.56,5.02,3.89,1.73,1.63,0.90,2 -0.41,-0.50,1.39,1.77,1.73,0.58,2.96,3.64,3.88,3.18,4.63,2.08,3.46,1.82,2.76,1.92,-0.99,-0.59,-0.63,1.16,-2.05,1 --1.26,-0.05,0.75,-1.13,-0.26,2.30,-0.42,2.00,1.17,0.39,3.77,2.89,4.51,5.10,2.83,3.27,3.85,2.51,1.17,0.42,-0.88,2 --0.74,1.93,-0.26,0.03,0.05,-0.12,1.43,-1.04,-0.69,2.51,1.71,2.16,2.99,3.39,6.72,5.91,4.32,3.84,2.63,-0.24,0.94,2 --0.23,0.62,0.97,-0.83,-0.03,0.39,0.18,1.14,0.16,1.51,3.11,5.14,1.78,3.04,5.21,3.90,2.96,2.31,3.45,1.48,-0.45,2 -0.93,-0.28,-0.78,-0.00,-1.18,0.64,2.07,1.40,1.26,3.33,2.89,4.84,4.00,2.33,3.21,1.18,1.62,1.13,0.64,0.22,0.68,2 -0.38,1.20,0.34,3.30,1.85,4.39,3.66,4.54,2.72,3.90,3.81,1.66,1.14,0.36,1.42,1.63,1.47,1.81,-0.68,0.82,-0.63,0 -0.19,3.18,1.81,1.48,2.09,4.75,5.05,2.84,2.36,2.28,1.16,1.71,-0.12,0.89,0.40,0.87,-0.33,-0.29,-1.31,-0.25,-1.18,0 -0.92,1.57,-0.31,0.14,1.35,0.61,-1.12,2.01,2.81,2.82,3.42,3.14,3.33,5.35,4.11,3.92,3.00,1.43,2.45,1.92,0.82,2 -0.57,1.18,1.63,4.19,3.35,3.98,4.35,4.22,2.91,0.49,1.51,3.35,1.08,0.98,2.29,0.97,2.54,0.86,-0.59,0.05,-0.84,0 -0.68,-1.83,-0.35,2.45,3.45,3.37,5.04,3.13,2.83,3.49,5.45,1.30,1.59,1.29,-0.24,-0.62,0.81,0.13,0.33,1.37,-1.10,1 -1.31,1.17,0.95,0.48,3.48,3.40,5.49,5.09,4.46,2.88,2.92,0.98,0.15,0.27,-0.03,0.26,0.98,-0.70,-1.28,-0.81,0.32,1 -1.16,2.03,0.42,1.55,2.32,4.50,5.55,2.86,2.82,4.86,2.32,2.29,2.39,2.29,1.51,1.56,1.54,-0.13,1.16,1.15,1.15,0 --0.96,1.81,0.58,0.61,-1.44,1.16,0.31,0.65,0.02,0.68,2.01,1.13,3.16,5.86,4.82,5.40,5.00,2.95,1.06,0.36,2.76,0 -0.82,-0.61,-0.34,0.98,1.04,1.61,0.69,0.68,-0.93,0.87,2.64,2.00,3.26,2.68,5.21,2.83,3.97,0.99,3.45,-0.19,-0.39,0 -1.11,0.32,-0.14,0.08,0.75,0.07,-1.23,1.50,1.23,3.42,5.44,3.36,2.88,3.27,3.98,4.13,2.35,1.79,0.63,3.53,0.37,2 --1.16,-1.14,1.11,0.56,-0.42,3.39,2.30,3.46,2.27,3.43,4.38,4.23,2.67,3.35,4.13,-0.25,-0.07,0.92,-1.11,-1.48,-1.69,1 -0.25,-1.09,0.60,-0.93,-0.05,0.19,2.34,0.28,-1.30,1.13,2.90,2.76,2.87,5.73,5.10,2.54,3.67,2.82,2.09,0.41,-1.45,2 -0.28,0.13,1.13,3.57,2.95,2.93,5.10,2.52,2.66,1.49,0.46,1.53,1.96,2.71,3.41,3.04,1.00,0.83,1.94,1.64,0.40,0 -1.69,0.32,3.05,2.49,1.02,4.38,4.97,4.71,3.19,3.71,4.69,-0.32,2.46,2.41,1.79,-0.13,-0.88,0.15,0.43,-1.48,-0.21,1 --0.76,0.06,0.04,-0.06,1.62,1.32,2.38,4.95,5.99,6.46,6.79,6.34,4.75,2.46,1.17,0.97,-0.50,-0.29,0.22,1.26,0.23,2 --1.59,1.88,1.02,2.45,4.03,3.43,5.16,4.26,3.31,2.93,1.18,1.23,1.35,0.91,0.31,-0.35,-0.72,2.69,-1.58,1.58,1.26,0 --0.04,0.40,-0.70,-0.06,0.30,1.82,3.22,4.61,5.59,3.40,3.47,4.35,1.89,2.50,1.73,0.59,-0.73,-1.22,-1.11,0.88,0.50,1 --0.94,0.63,-1.13,1.06,-0.89,2.28,0.56,2.76,4.64,5.12,4.50,4.98,3.33,3.55,2.68,1.56,-0.61,-1.15,1.17,-0.53,2.03,1 --0.91,1.11,0.38,0.40,2.22,3.61,2.99,2.57,1.03,0.34,1.42,3.09,3.23,2.64,2.57,3.48,2.15,3.17,1.49,-0.30,0.11,0 -0.91,1.48,1.87,2.43,3.49,1.30,5.35,4.42,2.01,2.43,2.37,2.52,2.27,2.71,0.81,1.52,2.17,0.07,-0.82,0.83,-1.33,0 -0.69,0.74,1.29,-0.84,-0.07,2.05,2.46,4.58,4.93,4.87,6.20,5.32,3.77,3.81,0.90,0.90,0.99,-0.09,0.03,-1.10,0.64,1 -3.29,-0.72,-0.57,1.00,-0.11,0.14,-0.28,2.04,2.04,4.97,3.45,4.02,3.44,2.33,4.33,1.91,1.39,2.67,-0.28,0.36,1.22,2 -2.26,0.42,-0.51,-1.08,-0.05,-0.40,4.08,2.94,1.60,5.70,5.83,4.33,4.32,2.60,2.91,1.40,0.23,2.31,0.33,0.93,-0.48,2 -1.06,0.48,2.72,1.35,2.92,3.21,3.79,1.10,0.07,0.72,1.36,2.05,2.79,2.27,4.94,2.48,2.46,0.09,1.77,0.89,-0.59,0 --1.38,0.66,1.26,2.10,4.16,4.91,5.95,4.75,2.05,0.99,1.46,2.14,3.14,-0.13,1.81,1.43,-0.02,0.96,0.37,-0.37,-1.15,0 -0.50,-0.70,2.87,1.80,2.24,5.09,4.24,4.34,3.14,2.72,4.35,1.80,1.16,1.75,0.00,0.34,1.19,-0.56,-0.95,0.82,-0.30,1 --0.08,1.56,0.62,-0.57,-1.35,0.13,2.85,3.34,3.59,5.16,5.96,3.84,3.41,1.82,3.00,1.74,-0.39,0.96,0.29,-0.24,-0.79,2 -2.29,-1.55,-0.67,0.17,-1.56,2.07,0.12,-0.69,2.91,2.18,3.33,3.69,3.87,4.17,5.02,2.70,0.29,1.88,1.43,1.34,-0.10,2 -0.86,1.32,0.50,2.79,4.05,5.40,5.32,5.20,3.56,3.46,3.36,1.90,-0.45,1.52,-0.42,1.25,-1.47,-0.16,1.58,-0.43,-0.91,1 -0.11,-0.15,1.98,2.62,3.13,3.76,4.84,3.47,5.52,4.55,3.74,1.81,-0.06,0.10,0.99,-0.05,-0.21,-1.42,-0.96,1.12,-1.37,1 -0.04,0.53,2.51,3.51,2.59,2.28,4.97,4.91,3.82,3.42,3.54,1.43,1.10,0.42,1.49,-0.07,0.84,0.34,-0.18,-0.48,0.20,1 --1.01,-0.80,-0.15,1.33,-0.84,1.57,0.84,2.44,3.22,6.27,4.85,5.43,6.20,4.82,2.71,0.59,0.12,-0.04,0.37,0.18,0.96,2 --0.37,0.64,4.35,4.06,1.53,3.20,6.00,3.70,1.86,2.67,2.84,1.10,1.54,0.86,2.65,1.67,0.45,0.39,1.77,0.51,-0.74,0 --0.90,0.03,0.96,1.44,2.61,2.62,4.23,3.85,2.11,3.58,0.98,2.63,2.99,0.61,2.91,1.79,1.08,1.87,-0.27,-0.26,1.09,0 --0.10,0.52,1.57,0.46,3.64,4.49,3.83,2.19,3.36,3.95,2.23,1.18,1.24,0.69,-0.11,0.45,0.28,0.87,-2.25,-0.70,0.64,1 -0.09,-0.01,0.68,1.51,-1.46,0.12,0.70,2.60,3.43,4.91,4.68,5.11,3.62,3.51,3.98,0.68,-1.49,-0.77,-0.90,-1.23,-0.49,1 --0.73,-0.10,0.75,1.55,0.43,0.21,0.29,-0.14,0.26,1.69,3.18,4.01,2.78,3.95,5.63,3.57,4.09,2.53,2.59,1.34,0.21,0 -0.10,0.41,2.28,2.30,1.59,3.84,5.07,3.11,3.66,1.90,2.37,1.39,-1.95,0.52,3.16,-0.55,2.16,1.26,0.36,-1.55,1.26,0 -0.63,1.93,1.23,3.25,3.93,6.03,6.63,5.20,2.84,0.75,2.62,2.00,1.66,-1.36,0.53,-2.14,-0.99,1.02,1.68,0.61,0.13,0 -1.63,-2.03,-1.30,0.68,1.26,0.96,2.86,5.16,3.11,5.11,4.08,3.88,3.90,1.21,0.43,-2.19,2.00,0.72,0.30,1.13,0.54,1 --0.09,-0.82,0.57,-0.77,-0.81,0.58,0.31,2.81,2.22,4.78,5.97,4.45,4.46,4.59,4.11,5.02,3.24,1.45,1.04,0.14,-1.88,2 --0.04,-0.25,1.34,2.37,2.90,3.40,3.97,1.35,2.61,1.13,3.10,2.23,1.12,0.57,1.70,2.41,1.40,0.74,1.84,-0.81,0.27,0 -0.34,1.66,1.15,4.03,2.87,3.57,6.65,5.27,4.27,1.39,2.52,0.28,0.29,-0.77,-0.25,0.88,-1.07,-0.55,0.72,0.20,0.46,1 --0.45,0.17,-0.51,0.42,0.10,1.39,1.50,2.15,3.07,2.66,4.63,4.83,4.88,1.55,2.15,1.83,-0.45,-0.06,-0.91,-1.77,0.67,1 --1.64,-0.10,-0.49,-1.08,0.47,-0.42,-0.90,0.52,2.21,2.20,3.82,3.94,4.27,4.65,5.28,2.39,4.78,2.04,1.13,0.22,0.61,2 -1.08,-0.64,-0.18,1.43,-1.44,-0.74,1.41,2.30,2.07,2.99,1.93,3.75,3.43,4.38,3.85,2.78,1.25,0.70,1.42,-0.44,-0.11,2 --0.49,-0.31,2.88,2.71,2.96,3.62,5.42,5.96,3.05,2.43,3.04,-0.04,1.17,0.61,1.03,-1.51,-1.00,0.23,0.21,-1.32,-0.31,0 -0.39,1.16,2.18,2.83,2.65,2.84,5.35,4.00,2.34,2.22,1.38,2.50,1.59,1.26,1.21,2.82,0.94,1.26,3.50,0.09,2.28,0 --0.40,-1.39,1.73,0.38,2.49,1.97,2.95,1.99,1.33,1.74,3.13,2.76,4.02,4.82,1.63,2.62,2.16,0.35,0.33,0.18,-1.60,0 -1.19,0.46,0.10,0.07,2.11,4.23,3.17,4.12,2.47,2.12,3.04,1.57,-0.40,2.01,2.96,3.12,0.59,0.13,0.63,-2.36,-0.49,0 -0.81,0.61,3.23,3.43,3.54,4.74,3.22,5.09,5.78,2.87,2.87,1.04,1.50,1.43,0.48,0.49,0.20,0.16,-1.06,-0.33,-2.56,1 --1.11,2.60,-0.91,-0.76,0.84,-2.46,0.23,1.46,1.05,2.18,4.02,2.61,3.52,3.91,4.74,3.80,3.38,1.94,3.31,-0.36,0.67,2 -1.07,-2.46,-1.30,1.67,-0.09,0.85,1.45,0.69,1.06,1.64,3.23,3.37,3.93,4.78,6.92,2.85,3.30,2.27,2.07,1.40,-0.50,0 -0.24,-1.24,-2.03,-0.05,0.57,1.40,-0.59,0.96,2.13,0.72,4.49,3.46,3.04,3.33,3.06,3.24,0.17,2.38,0.32,0.12,-0.27,2 --0.96,0.39,0.05,2.23,2.69,2.45,2.48,3.68,3.62,4.50,3.66,4.38,3.35,1.69,1.88,0.61,0.14,-0.58,0.07,-0.15,1.36,1 --1.71,0.71,0.75,2.40,1.56,3.38,2.28,2.58,1.32,2.50,1.18,2.35,2.60,4.69,3.79,3.44,1.85,3.75,-0.56,0.47,-1.45,0 --0.15,-0.80,0.79,1.36,0.21,2.38,2.14,3.78,4.20,4.35,4.80,3.63,3.52,2.76,2.84,1.78,-0.79,0.69,-0.25,0.89,0.73,1 --0.28,-0.08,-0.50,-1.62,-1.59,0.85,1.99,1.22,0.01,2.98,4.96,3.84,4.29,6.10,3.26,1.44,1.08,0.09,-0.15,-0.84,-0.25,2 -0.73,1.53,2.16,1.60,4.67,3.00,3.25,5.32,2.55,1.18,1.66,1.15,2.12,1.44,3.14,1.48,1.68,2.66,-0.68,-1.34,-1.88,0 -2.72,1.13,0.68,-0.53,0.43,-2.35,2.01,1.73,1.13,1.13,1.30,4.93,3.89,4.86,4.58,3.56,4.35,0.58,0.99,0.66,2.07,2 --0.55,-0.88,1.75,-0.43,-1.84,-0.13,1.59,-0.53,-0.19,2.70,5.29,5.10,2.72,4.82,4.35,4.40,3.68,2.35,1.93,3.02,-1.50,2 --0.61,0.04,-0.84,0.24,0.17,-1.01,3.48,4.66,4.19,2.28,4.90,3.55,3.30,1.86,1.77,1.38,-0.54,0.69,1.54,-0.67,2.16,1 --0.26,0.17,0.85,1.22,0.91,0.61,3.69,4.15,4.05,5.34,4.95,3.94,2.16,0.58,0.79,2.39,-0.80,-0.40,0.11,1.33,0.81,1 --1.65,-0.07,-0.75,-0.21,1.78,1.02,3.87,3.65,2.97,5.64,4.06,6.09,5.05,1.32,2.17,0.85,-0.48,-0.59,-0.53,2.37,1.15,1 -0.97,2.11,-0.09,0.95,-0.53,1.43,-0.42,0.47,2.37,-0.67,2.42,3.18,2.65,4.27,4.10,1.84,2.70,1.55,2.62,1.60,-0.33,0 -1.16,-1.37,1.44,-1.09,0.78,2.31,3.94,4.31,7.77,3.40,5.39,2.97,3.79,2.32,1.41,1.22,-1.15,-0.99,-0.36,-0.00,-1.52,1 -0.09,1.54,3.66,-1.30,2.05,3.84,3.43,7.31,2.72,2.11,0.49,2.80,1.30,2.77,1.28,0.38,0.22,-0.73,-0.71,-0.11,0.39,1 --0.12,-0.29,1.83,-1.01,0.49,2.28,3.77,4.05,4.97,6.05,5.64,4.01,1.69,2.33,1.56,1.17,-0.18,1.83,-0.33,-2.28,-0.12,1 -0.92,-0.58,2.41,-0.86,-0.25,1.42,2.49,3.07,4.05,4.23,6.38,3.87,3.27,3.23,0.45,0.76,0.27,-0.49,0.30,0.80,-0.57,1 -1.39,-0.20,0.01,0.11,-0.98,0.71,1.33,2.04,3.17,2.48,4.18,4.58,5.10,3.94,4.43,3.42,4.41,1.44,0.99,0.20,-1.03,2 -0.07,1.98,3.38,1.25,5.73,6.76,6.58,2.82,3.02,5.58,3.94,0.73,0.72,-0.35,1.32,-1.04,0.73,0.67,-0.03,0.33,1.29,0 --0.24,0.90,0.44,3.29,4.28,4.92,5.48,5.36,4.36,2.60,2.16,0.46,0.47,0.55,-0.73,-1.42,0.01,-0.28,-0.12,-0.07,1.61,0 -0.66,-1.10,1.11,2.69,4.46,2.21,3.04,5.82,4.42,2.84,5.05,5.48,3.07,1.42,2.91,-0.37,-2.30,0.18,0.55,0.54,-3.45,1 --1.40,-1.56,0.47,0.24,0.78,1.99,2.05,2.54,5.10,7.53,6.96,5.40,3.94,3.13,0.03,0.26,-1.27,-0.44,-0.20,-1.27,-0.72,1 -0.42,0.58,1.21,2.20,0.06,1.59,0.68,1.72,1.87,0.58,1.94,1.64,3.12,5.24,3.81,2.49,4.00,1.07,1.63,1.51,-2.14,0 -0.37,-0.00,1.83,3.98,2.71,4.47,3.27,2.33,3.66,3.96,2.19,-0.72,2.27,3.10,1.05,2.01,0.27,1.09,-0.09,0.11,-1.52,0 -1.54,0.40,0.07,-0.08,2.57,5.20,5.34,4.14,5.03,3.96,3.31,4.70,0.88,2.78,0.66,-0.38,0.56,-0.03,0.55,-0.02,0.37,1 --2.15,1.79,0.58,0.63,1.63,2.19,0.20,0.80,1.47,1.10,2.29,2.13,2.27,3.97,3.91,4.54,2.88,2.59,-0.68,1.15,-0.37,0 --0.88,-0.53,0.94,0.30,1.47,2.84,4.52,2.37,4.94,5.00,3.16,5.29,3.32,2.12,0.55,0.92,-1.28,2.26,0.41,0.12,-0.76,1 --0.79,0.01,1.62,-0.63,0.27,-1.12,-1.07,1.62,-0.79,0.79,2.34,3.53,3.74,2.09,7.64,3.87,3.58,0.37,3.01,1.46,-0.12,2 --0.28,-0.67,1.17,-1.02,-1.67,-0.30,2.60,2.17,2.70,6.08,6.70,4.81,2.49,1.12,1.84,2.43,0.61,-0.65,1.03,1.17,-0.60,2 --0.02,0.14,0.87,0.82,3.86,1.92,2.12,4.60,4.36,2.67,2.84,1.55,1.04,2.15,1.47,0.67,0.04,0.67,-0.93,1.18,-0.23,1 --1.03,-0.51,0.05,0.80,-0.52,0.06,-0.09,-0.71,-0.15,-0.06,2.30,2.63,3.46,5.28,4.97,4.46,2.96,2.78,1.24,0.30,0.14,2 --0.55,-1.06,0.85,-0.82,1.81,1.06,0.14,3.09,4.08,3.50,3.78,3.34,4.15,1.86,1.98,0.88,0.35,1.83,-1.71,-0.16,-1.99,1 -0.56,-1.32,-0.49,0.18,1.05,-0.09,1.33,-0.24,-0.25,2.00,0.69,4.25,4.27,1.75,5.36,4.47,3.77,3.20,3.14,2.56,-0.00,2 --0.46,1.79,4.54,2.27,4.16,5.17,4.95,4.09,3.49,3.09,1.24,2.75,-0.78,0.97,2.07,0.79,1.45,1.08,-0.31,-0.40,-0.38,0 --1.14,0.97,0.78,3.61,4.80,5.64,6.55,6.50,4.81,3.67,0.68,0.43,0.02,0.65,1.23,-0.21,-0.28,2.02,0.20,-0.79,-1.66,0 --0.40,0.59,0.11,-0.02,0.07,1.96,1.19,1.01,1.54,3.11,2.89,2.35,5.13,4.48,3.93,4.73,3.67,2.38,1.69,0.38,-1.98,2 --0.71,0.02,0.59,1.65,2.84,3.82,3.31,1.75,1.91,3.34,1.27,1.23,1.57,1.69,1.19,2.50,0.75,3.10,-0.32,0.85,-0.74,0 --1.13,1.19,0.06,1.14,1.63,3.70,3.41,2.57,4.50,2.17,1.89,2.02,0.87,2.14,1.36,1.71,0.64,0.91,1.27,0.31,-0.46,0 -0.41,-0.96,0.14,0.61,0.63,1.12,1.37,2.57,2.93,5.50,5.46,4.98,3.66,1.98,2.45,1.48,-0.56,0.98,-0.87,1.51,-0.32,2 -0.13,-0.09,1.43,-0.05,0.90,3.32,3.23,2.58,1.76,1.32,3.58,3.87,2.10,1.59,4.10,1.64,-0.98,1.88,0.14,-0.11,-1.10,0 -0.61,-0.85,-1.41,0.18,0.29,-0.90,0.70,-0.25,-1.52,1.46,1.59,3.18,4.52,4.73,4.71,5.95,3.21,3.45,0.53,0.33,-0.09,2 -0.20,0.97,-0.12,2.43,-1.09,1.41,2.70,2.80,4.55,5.45,4.60,4.48,3.88,2.32,2.57,1.12,2.32,-0.23,-1.76,-0.63,0.97,1 -0.28,0.03,1.46,2.90,2.90,4.51,6.41,2.93,4.88,4.95,3.83,2.11,-2.05,2.41,-0.57,2.33,0.48,-0.19,0.37,-0.81,0.15,1 -0.65,-2.21,0.34,0.17,1.38,-0.15,1.90,2.85,2.89,2.96,5.86,5.19,3.66,4.07,2.51,2.39,0.72,1.47,1.32,1.44,-0.00,2 -0.33,0.34,-0.09,-0.91,-0.74,0.62,1.59,3.33,4.52,3.81,5.45,5.23,2.92,3.25,1.67,1.69,-0.48,-1.57,1.36,1.17,0.34,2 --1.03,-0.41,-0.67,1.55,0.56,1.72,0.87,3.64,1.45,5.08,5.08,4.57,2.70,2.71,2.61,3.01,0.14,1.23,-1.26,-0.32,0.17,2 --1.40,-1.72,1.18,-1.86,2.66,2.17,1.77,4.19,4.39,4.31,6.01,1.53,4.33,4.19,2.38,0.52,0.61,-0.17,-1.40,1.33,-1.73,1 -0.72,0.69,1.03,0.08,1.36,0.11,0.56,-0.69,2.36,0.01,3.22,2.87,2.24,3.79,4.09,3.59,5.16,2.11,2.17,0.85,2.02,0 --0.27,-0.63,0.37,0.77,1.53,3.14,3.48,3.38,4.97,3.30,2.26,4.68,1.13,1.74,1.74,1.36,-0.24,-0.97,1.37,-0.33,-0.17,1 --1.53,-0.17,-1.18,0.70,1.74,2.70,3.57,2.06,1.93,1.58,3.19,0.06,1.74,1.69,3.65,1.87,0.99,3.36,1.35,0.94,1.61,0 --0.80,2.38,2.08,1.94,1.17,5.01,5.93,3.44,3.05,3.14,0.70,1.82,2.47,2.91,1.92,-0.50,-0.78,-0.05,1.55,0.68,0.85,1 -0.23,-0.55,0.94,1.82,1.62,0.79,0.57,2.32,1.07,3.02,0.33,2.37,2.12,2.67,2.99,2.97,2.97,0.54,1.96,-0.04,0.05,0 -0.74,-1.43,-1.46,-0.18,-1.55,1.43,1.90,3.79,1.79,6.74,6.35,5.10,2.25,2.27,2.17,1.16,-1.00,1.43,0.81,0.01,0.41,1 --0.27,0.87,1.11,1.75,3.55,3.20,4.67,1.94,3.62,1.56,0.40,-1.45,-0.03,2.78,4.56,1.73,0.53,2.16,0.40,0.52,2.98,0 -0.03,-0.08,-0.96,0.90,0.29,1.11,1.69,1.76,1.18,1.30,3.67,3.73,3.33,2.96,5.50,3.33,3.72,2.69,1.30,-0.78,0.62,0 --1.94,-0.35,-0.26,1.20,0.58,0.12,-0.81,0.35,1.79,4.91,2.56,4.99,4.24,2.52,2.87,4.19,0.72,3.27,0.91,-1.32,1.54,2 -0.29,-0.20,2.23,0.20,4.30,3.92,3.80,3.86,1.85,1.02,0.10,0.79,2.55,1.22,2.57,0.51,1.02,0.25,0.90,0.34,1.62,0 --1.50,-1.03,1.09,1.90,0.68,1.63,3.16,2.09,1.52,0.88,2.11,1.92,2.17,2.16,4.71,4.54,3.29,3.58,1.15,-0.51,0.41,0 -1.74,2.23,1.97,1.45,2.82,5.95,6.17,5.66,3.24,4.38,3.94,1.76,1.86,0.74,-0.19,1.90,0.32,2.79,0.27,1.31,-1.99,1 --0.40,1.17,2.75,1.66,2.85,2.53,5.20,5.11,4.05,0.99,1.59,2.91,0.49,1.97,-0.50,2.61,0.49,1.06,0.26,1.08,-2.49,0 --1.29,-3.10,-0.17,-1.32,-0.07,0.34,1.17,1.41,0.27,0.59,1.37,3.27,4.92,5.05,5.68,4.45,3.79,3.66,2.56,2.28,1.74,2 -0.64,-1.41,1.50,-0.15,-0.76,0.62,1.45,1.58,3.05,5.20,4.44,4.04,4.31,2.16,0.86,0.11,1.43,0.10,1.00,0.28,-1.38,1 -0.26,0.38,-0.75,-0.65,-0.68,2.02,2.88,2.68,2.62,5.69,6.27,4.57,4.92,2.87,0.54,0.54,-1.23,-0.95,1.07,-1.73,0.69,1 -0.52,0.16,-0.40,1.51,1.14,0.55,0.08,0.70,1.51,1.46,1.98,2.51,3.19,5.46,5.20,6.42,3.97,2.51,2.84,1.75,-1.12,2 -1.11,1.81,1.18,2.19,0.86,2.94,5.21,3.95,3.26,3.63,4.18,3.62,4.12,1.96,1.74,0.55,0.77,0.28,0.18,0.10,1.49,1 --0.85,-0.71,0.26,1.61,3.16,1.78,2.37,3.70,3.01,1.11,4.99,3.81,2.33,1.06,3.63,2.54,3.34,1.86,0.05,2.38,-1.65,0 -1.07,1.45,0.84,0.66,2.25,3.47,3.45,4.93,2.37,1.88,1.39,2.29,1.47,2.57,4.89,-0.61,1.85,2.18,-0.15,1.37,-0.28,0 -0.43,0.27,0.94,2.89,2.40,4.37,5.51,3.76,2.37,3.04,1.73,2.15,2.45,3.19,0.67,0.42,1.33,1.30,3.12,-0.46,0.08,0 --1.69,2.41,0.37,2.63,3.24,2.69,3.98,2.72,3.58,3.87,5.97,3.82,1.44,0.94,1.58,1.91,0.01,0.20,-1.88,-0.09,-1.39,1 --0.30,-0.13,0.05,0.72,4.40,3.76,6.04,4.87,2.49,4.87,4.07,1.33,2.53,0.43,0.76,1.13,-1.64,0.28,-0.47,-0.08,-1.32,1 --0.66,0.62,0.46,1.47,0.61,2.10,2.81,1.55,0.73,0.53,1.49,0.55,1.94,3.15,4.16,3.70,3.12,1.23,0.25,0.86,-0.10,0 -0.67,2.01,1.51,2.15,1.58,3.48,4.96,5.29,1.31,0.17,1.40,3.50,1.84,3.96,1.57,2.77,1.67,3.20,0.48,1.11,-0.84,0 -0.32,-0.34,-0.38,0.81,0.59,1.52,2.50,0.69,2.22,5.22,4.51,4.88,5.29,5.41,1.41,0.63,-1.70,1.62,-0.70,-0.07,0.94,2 -0.22,0.46,0.07,0.07,1.89,1.62,-1.05,2.86,2.02,0.87,3.80,2.06,3.53,4.50,4.92,5.02,2.11,1.37,0.58,0.08,-0.22,2 -0.84,0.33,-1.64,1.97,1.66,-1.04,0.42,2.08,1.75,0.91,1.20,2.68,3.22,1.97,5.36,3.90,2.16,3.11,2.76,1.71,-1.45,2 --0.83,0.22,1.17,-0.07,0.84,1.46,-0.06,2.55,0.44,3.20,1.59,2.30,3.00,4.89,4.92,3.47,4.44,4.17,2.66,0.69,0.09,0 --1.07,0.62,-0.18,0.10,0.68,2.39,1.61,2.97,1.96,4.26,4.37,5.99,4.70,4.42,2.13,1.58,2.14,1.85,0.99,-0.35,-0.55,2 -2.01,-0.58,-0.85,0.32,-0.22,0.92,2.12,-0.37,1.92,0.29,1.57,0.29,2.66,3.37,6.36,2.02,3.53,2.52,2.49,1.20,-0.92,0 -0.60,1.54,1.16,1.28,4.11,5.83,4.96,3.83,4.06,3.86,3.06,1.43,0.20,0.03,-0.02,-1.92,1.30,2.44,0.04,-0.05,0.06,0 -2.32,0.94,-0.13,0.77,-0.73,0.63,1.57,0.87,1.58,2.77,4.37,3.24,4.22,4.17,4.26,3.24,3.77,1.38,0.97,1.32,1.86,2 --0.97,0.26,0.77,2.68,2.99,5.46,3.33,3.59,2.44,3.46,2.90,1.91,-0.32,0.29,0.03,1.44,0.27,0.50,0.56,0.87,-1.41,0 -1.91,2.22,2.05,3.42,5.89,4.71,5.15,3.08,4.17,3.31,2.30,1.70,0.15,1.21,1.07,0.73,-0.13,-0.11,-0.79,0.64,-0.52,1 -0.95,-0.41,0.81,-1.04,0.01,1.07,3.10,3.33,2.74,4.38,3.93,3.54,5.11,3.22,2.62,1.81,1.73,3.20,1.97,0.08,0.56,2 --0.63,0.12,2.77,3.10,1.89,3.02,5.29,3.35,2.61,5.11,1.84,3.80,0.97,-1.11,-0.52,-0.37,-2.33,-0.76,-0.39,0.29,-0.17,1 -0.05,-0.45,-0.42,-1.28,0.01,1.45,0.76,0.54,2.43,1.09,3.05,4.82,3.30,6.28,3.85,3.45,4.08,2.09,0.59,1.01,0.67,2 -0.35,-0.31,1.19,0.83,1.98,3.43,3.31,3.62,4.64,5.49,5.67,2.09,2.20,2.43,3.50,1.23,0.58,-0.57,-0.42,1.83,-0.48,1 --1.36,0.39,-0.01,0.95,0.03,2.52,2.31,1.02,0.11,2.63,2.96,4.09,3.08,5.49,6.84,5.39,4.45,2.27,0.39,0.04,0.20,0 --0.93,0.96,1.03,-0.79,1.74,0.05,0.72,0.84,0.80,1.11,3.02,3.26,3.62,4.25,3.67,2.78,3.27,0.79,-0.08,1.73,-2.80,2 -0.69,-1.02,-0.43,0.90,0.99,1.05,1.05,1.33,-0.75,1.87,1.89,2.30,2.19,3.19,5.49,3.93,5.47,3.43,2.37,1.01,-2.26,0 -0.32,-1.61,2.37,-1.52,-0.23,-2.30,-0.71,1.54,0.68,0.64,1.67,4.56,3.89,6.49,6.87,4.57,3.20,1.88,1.77,1.21,-0.28,2 -0.90,1.54,1.10,2.56,2.25,3.87,5.87,3.69,5.33,3.90,1.38,1.75,1.31,1.33,0.54,-0.23,-0.66,-1.13,2.36,0.71,-0.64,1 --0.35,0.40,2.60,1.24,0.79,4.31,4.02,2.29,2.76,4.25,3.91,4.35,4.39,2.57,1.70,-1.16,-0.76,-1.21,-0.22,-1.22,0.24,1 -0.80,-0.96,0.19,2.31,0.12,3.83,2.79,3.00,3.89,3.18,4.53,1.77,3.19,2.55,1.45,0.68,0.56,-0.56,-0.16,0.64,-1.51,1 -0.90,-0.87,0.22,1.73,-0.46,1.35,1.76,3.78,5.07,3.54,4.97,4.04,4.83,3.11,0.77,2.23,-1.64,0.43,0.86,0.65,-1.11,2 --1.53,-0.09,0.38,1.76,-0.52,1.15,0.07,1.40,-0.92,1.46,1.26,2.57,4.25,4.52,3.90,6.37,1.62,2.01,2.64,0.05,-0.65,0 -2.27,0.45,2.84,1.79,0.06,2.80,3.43,4.73,5.35,4.66,4.78,4.37,3.42,2.35,1.11,0.66,-0.76,-0.13,2.06,-1.26,-2.16,1 --0.79,1.49,-0.69,0.81,3.43,4.83,2.43,2.63,4.86,5.24,4.55,2.56,2.69,2.20,2.77,-0.21,0.46,0.37,-1.84,-0.23,-1.44,1 --0.86,0.30,0.82,1.91,1.40,3.40,4.30,5.06,3.12,4.23,3.92,1.49,2.67,0.40,-1.15,1.20,-0.59,-1.71,0.10,-0.51,-0.69,1 --0.10,0.61,-0.86,-0.99,0.09,0.94,1.03,3.90,4.27,5.66,6.41,3.83,3.34,5.12,2.44,-0.43,-0.90,0.81,0.81,-1.84,-0.84,1 -0.33,-0.51,-0.18,-0.45,-0.09,0.02,0.71,3.39,2.26,4.28,5.83,3.56,3.45,4.19,3.04,1.71,0.75,1.27,2.01,1.10,-0.77,2 --0.63,-0.15,0.65,0.54,0.46,-0.51,1.36,-0.89,0.32,1.45,3.22,3.59,3.45,3.82,6.14,4.09,3.21,3.68,-0.78,0.92,-0.69,0 --1.31,0.28,-0.13,1.75,1.79,1.31,3.02,3.37,4.75,4.10,5.66,5.24,3.42,3.56,1.42,0.38,-0.14,1.66,0.30,-0.23,0.30,1 --0.68,0.68,0.46,3.87,3.06,4.85,4.28,3.66,3.99,2.19,4.07,0.72,1.06,1.44,1.07,-0.30,0.35,-1.02,1.16,-1.15,0.24,0 -1.25,-1.26,2.74,2.05,4.19,5.89,5.85,5.02,3.16,1.29,0.31,2.22,-0.68,-0.97,-0.34,2.24,0.74,0.18,-0.33,-0.32,-0.98,1 -0.97,1.86,2.46,3.18,3.41,5.54,6.92,3.06,4.48,3.49,2.51,0.43,0.46,0.41,-0.51,1.67,-1.59,-0.28,-0.15,0.18,-0.10,1 --0.25,0.20,2.28,3.49,2.23,5.63,4.78,4.70,4.01,3.71,3.55,1.84,2.78,-0.70,0.26,1.53,0.02,0.96,0.75,1.27,1.93,1 -0.54,0.59,0.72,1.84,1.16,-1.11,1.90,2.11,2.41,0.52,0.60,3.10,2.31,2.15,4.31,1.24,4.21,2.62,0.97,0.39,-1.18,0 --1.26,0.74,-1.84,1.54,-0.21,-0.03,1.86,2.95,4.96,3.88,6.85,4.23,2.54,3.38,1.08,1.57,1.26,1.32,-0.30,0.98,-1.84,2 -0.28,0.14,0.76,-0.24,-0.53,0.35,0.27,-0.46,1.26,0.92,2.82,2.42,5.29,3.88,6.74,4.31,3.39,2.21,1.15,-0.60,2.10,2 -0.81,1.76,-0.10,2.31,2.65,3.93,5.50,4.23,6.37,4.36,1.92,1.09,1.95,1.21,-0.65,-0.99,-0.28,0.15,0.17,0.37,0.44,1 -0.51,-0.07,0.01,1.81,1.15,2.36,4.40,3.76,4.61,4.19,5.30,3.43,3.91,3.07,1.76,-0.23,-1.60,-1.00,-0.18,-0.47,0.84,1 -1.12,-1.82,1.25,1.70,1.93,2.01,0.13,2.44,1.29,1.68,3.48,2.51,1.82,5.09,5.37,2.84,3.43,0.86,1.28,0.21,-0.77,0 -0.54,-0.36,-0.30,0.22,0.20,0.65,1.02,3.66,5.21,2.57,5.84,4.94,1.98,2.49,1.73,0.36,0.90,-1.32,0.07,-0.11,-1.23,1 -0.27,-0.65,1.55,4.43,4.03,6.14,5.36,5.56,3.45,3.71,3.22,2.51,1.93,0.34,0.14,0.44,1.16,0.50,-0.89,0.60,0.55,1 -0.06,0.42,0.66,0.58,3.20,3.18,4.28,-0.15,1.93,1.58,1.76,2.76,1.56,0.45,1.62,1.57,2.06,0.90,1.18,0.86,0.51,0 -1.38,-0.83,0.90,0.68,-0.19,0.62,-1.43,-0.81,1.88,2.47,0.57,3.19,6.04,4.03,5.64,3.28,2.44,1.43,0.86,2.31,1.38,2 -0.94,-1.71,0.44,-0.57,-1.38,1.24,2.45,0.90,3.54,4.17,3.74,4.25,3.77,3.19,3.35,1.69,3.27,2.42,0.32,1.38,-0.36,2 --0.04,0.47,0.43,0.69,-0.14,2.97,1.87,5.13,3.11,3.18,6.31,3.70,3.73,2.49,2.55,1.02,-0.87,2.62,-1.74,0.26,0.20,2 -1.19,0.20,-0.27,-0.10,1.95,1.66,3.24,2.31,0.87,3.20,1.04,2.44,1.94,2.92,3.80,0.84,2.24,0.37,0.33,0.54,-0.23,0 --2.33,-0.26,-0.42,-0.02,0.16,-0.24,0.40,1.90,-0.38,3.66,3.14,1.80,3.07,5.20,4.55,3.30,3.15,2.97,2.01,1.05,0.28,2 --0.27,-0.76,1.02,2.84,3.62,3.62,3.88,1.28,3.32,1.66,0.92,2.23,0.23,3.16,3.73,0.81,0.74,2.47,-0.74,-0.66,-1.51,0 --0.61,0.82,-0.24,0.37,-0.15,-0.37,0.44,1.99,0.00,0.82,-0.02,1.76,2.81,5.51,6.48,5.88,3.14,3.87,1.67,0.86,-2.03,0 --1.68,-0.48,1.52,-0.22,2.21,-0.40,1.62,-0.63,0.16,1.11,1.58,2.48,2.99,4.99,6.12,4.82,4.12,1.84,1.19,1.44,-1.98,0 --0.49,0.70,1.89,2.90,5.43,6.75,6.81,6.87,4.44,3.61,3.87,1.17,-0.26,-1.33,0.76,-0.06,-0.43,-0.19,-0.40,0.88,-0.30,1 -0.30,-0.61,0.62,2.22,-1.15,-0.44,-0.78,-0.08,1.82,0.94,1.97,4.43,5.60,4.35,6.82,3.59,3.79,4.40,2.73,0.41,1.24,2 --0.25,0.15,1.42,3.08,0.67,0.50,3.98,3.35,3.39,4.09,5.63,2.79,4.56,2.95,2.00,1.27,0.87,-1.87,-0.16,0.25,-0.47,1 --1.60,-0.31,-0.15,-1.16,-1.80,-0.28,0.98,1.86,1.17,1.57,2.90,3.99,4.05,4.58,4.53,2.80,3.12,2.15,1.54,1.60,0.89,2 --2.35,-0.28,1.03,1.55,-0.13,-0.44,1.66,0.52,1.66,1.07,1.44,1.13,2.93,2.93,3.12,3.40,3.14,1.17,2.48,1.24,-0.44,0 -2.29,1.68,2.55,1.70,3.98,4.26,4.84,4.60,3.29,4.38,3.24,2.08,-1.63,-0.43,-0.45,1.04,0.29,-1.69,1.00,0.56,-0.71,1 --0.63,0.96,2.40,1.39,5.25,5.19,6.15,6.65,3.45,4.88,4.24,2.60,-0.65,-1.26,1.06,-0.86,1.10,1.00,0.37,0.35,-0.97,1 --1.20,1.62,1.89,3.86,1.68,5.21,6.30,3.41,2.98,2.49,1.13,1.92,0.01,1.92,1.36,0.77,-0.15,-0.85,0.82,0.14,-0.43,0 -0.20,1.09,1.67,1.36,1.13,2.14,2.61,1.70,1.42,2.94,2.06,2.48,0.33,3.11,3.89,4.52,0.58,3.03,2.08,-0.90,1.46,0 --1.09,0.69,0.68,0.62,-0.22,0.75,2.48,3.21,4.49,4.97,5.00,5.97,3.32,5.44,2.08,1.69,0.00,0.86,0.19,0.75,1.92,2 -0.46,0.35,3.23,2.88,2.50,5.27,6.88,5.46,2.03,2.84,1.82,0.94,0.66,-1.62,1.26,1.42,0.35,1.90,0.04,0.05,0.75,1 -1.48,0.54,0.96,0.85,-0.67,-0.71,-1.45,-0.31,-0.16,0.20,2.38,2.35,1.97,4.78,3.53,4.35,3.05,3.31,1.13,3.32,-0.95,0 -0.04,0.75,0.08,0.21,-0.46,3.11,1.91,3.50,5.24,3.15,5.01,3.69,3.00,3.31,-0.82,1.46,0.43,-0.77,0.24,-1.51,0.65,2 -0.14,-0.88,-0.45,-0.99,0.35,0.93,1.96,0.49,0.09,2.33,3.42,4.19,3.18,4.92,6.23,3.42,2.28,0.90,0.10,0.87,0.03,2 --1.41,-0.31,0.92,2.43,2.78,3.03,2.33,2.93,2.87,4.43,5.92,3.08,4.20,0.69,0.19,-0.04,0.21,0.50,1.86,-0.70,-0.74,1 --0.96,-0.22,-1.20,0.91,-0.38,1.36,1.26,0.41,1.45,2.67,2.49,2.84,3.22,5.50,6.36,4.85,5.64,2.60,2.62,0.64,-1.43,2 -1.04,1.05,-1.67,1.35,1.32,-1.25,3.28,1.49,0.22,1.58,2.00,0.91,2.96,3.68,5.19,5.20,1.32,2.17,0.27,0.84,-0.63,0 --1.19,0.53,2.28,1.83,4.70,5.52,7.24,4.78,4.29,3.02,2.59,1.51,0.80,-0.49,1.21,-0.29,0.55,0.15,0.38,-1.05,0.44,1 --0.02,0.11,-1.62,0.37,-0.38,1.50,0.17,1.09,1.43,3.28,3.11,3.44,4.90,4.65,6.77,5.39,3.23,1.58,1.16,-1.41,0.81,2 -0.85,1.33,1.02,-1.41,1.94,2.00,2.03,2.89,4.38,5.50,5.03,3.01,3.14,0.78,2.25,1.43,-0.01,2.03,0.53,-0.37,0.42,1 --0.36,-0.38,-1.58,2.04,0.72,1.46,2.94,-0.66,2.15,1.83,1.90,2.62,4.18,4.45,5.77,2.77,4.19,2.99,1.91,0.28,-0.67,0 -1.43,-0.53,-0.57,-0.32,-0.44,0.59,1.97,1.64,3.34,3.90,7.46,3.77,3.80,3.56,2.66,1.59,1.34,0.10,1.35,-0.58,-0.66,2 -1.29,1.61,-1.43,0.53,-0.02,1.79,0.83,-0.34,1.29,1.31,2.63,4.42,5.10,5.87,6.10,4.24,3.11,0.64,0.98,-0.30,-1.13,2 -0.06,1.53,-0.50,2.11,-1.11,1.06,0.98,1.59,2.02,4.95,4.44,2.88,5.51,4.93,4.13,0.89,1.14,1.62,0.07,1.10,-0.25,2 -0.67,1.99,1.98,3.55,4.01,4.30,4.92,2.71,1.65,2.71,0.83,2.03,1.09,1.26,1.57,1.18,-0.28,1.69,-1.04,0.86,-0.19,0 --0.37,-0.19,1.11,0.11,1.54,1.42,1.98,5.00,4.09,5.39,4.48,4.11,2.90,2.17,1.34,1.16,0.34,2.47,2.23,-0.04,1.41,1 --1.37,0.20,0.69,-0.19,1.25,1.10,2.06,3.08,4.41,2.95,5.46,3.89,3.43,2.59,0.28,0.64,-0.43,0.07,-0.06,0.03,-1.03,1 -2.29,0.87,2.75,0.48,2.02,2.92,4.64,3.56,5.79,4.08,3.21,3.83,1.26,0.54,1.01,1.20,0.54,-0.65,0.33,0.79,-0.97,1 -0.43,0.50,-0.81,1.18,0.72,-0.71,0.86,-1.83,0.37,0.52,2.33,2.71,4.58,4.50,4.85,5.98,3.40,4.41,1.71,0.79,0.95,0 -1.24,-0.19,0.04,0.05,-0.29,-2.04,-0.05,0.62,-0.89,0.10,2.69,3.42,5.23,6.28,7.80,4.88,4.66,3.36,2.06,2.74,-0.93,2 -0.13,1.34,0.78,3.73,2.96,2.19,3.45,3.59,1.39,3.76,2.46,1.21,1.23,1.90,0.29,1.96,2.55,0.07,0.33,0.20,0.03,0 --1.80,0.06,-0.59,0.11,2.32,1.78,1.24,3.02,2.58,1.55,3.50,2.35,0.46,1.87,2.15,3.25,1.70,-0.07,1.20,-0.31,2.11,0 -1.62,0.06,1.86,-1.84,1.00,3.22,3.43,4.03,3.09,4.77,4.28,4.57,0.93,1.68,0.86,-0.83,0.17,0.05,0.38,-0.40,0.66,1 -0.24,-0.02,1.93,2.23,1.60,3.59,3.31,4.45,4.37,3.56,3.46,3.31,1.99,0.95,1.19,-0.02,-0.31,-1.34,0.01,-0.45,-1.39,1 -0.33,0.61,-1.00,1.03,-1.34,0.95,3.39,3.67,3.15,4.84,5.50,5.00,2.35,2.18,0.69,0.68,0.49,2.95,0.04,-0.15,-0.34,1 -0.50,2.25,-1.00,0.17,1.18,2.68,0.54,1.15,1.39,0.48,2.30,3.49,4.18,4.62,4.74,5.69,3.35,2.61,3.21,0.70,-0.61,2 -0.95,0.33,-0.56,1.56,0.66,3.13,2.48,2.33,5.37,3.94,5.92,6.42,3.11,2.47,1.23,2.92,1.31,1.84,-1.71,0.47,-0.13,1 -0.75,-1.82,-1.47,-0.02,1.09,1.01,0.99,0.81,-0.52,1.14,2.63,3.28,4.49,4.32,4.98,3.56,2.74,2.65,2.17,1.89,0.19,2 --0.47,-0.71,0.89,1.15,0.64,2.46,2.76,2.18,4.33,2.90,5.97,3.85,2.39,1.89,1.98,1.00,0.43,0.76,0.21,0.34,0.01,1 --1.23,1.39,1.34,2.53,5.81,4.23,4.28,4.02,5.23,5.05,2.21,1.61,-0.02,0.26,-0.12,-1.98,1.98,-0.76,-1.46,1.45,-0.72,1 -0.22,0.29,0.53,2.53,2.52,4.39,5.10,4.03,5.14,4.51,2.41,1.84,-0.65,0.27,0.51,2.15,-0.57,1.16,-0.09,-1.18,0.57,0 -0.72,-1.44,-0.12,1.72,-0.07,-0.88,-1.61,-0.15,0.07,2.01,2.26,4.06,3.56,5.56,5.88,4.90,5.14,3.34,2.64,-0.72,1.14,2 --2.19,-0.80,0.04,1.29,-1.02,2.90,1.34,4.34,3.25,6.12,4.60,4.13,2.97,4.48,1.76,1.07,-0.53,-0.68,-1.12,1.05,-0.23,1 --0.87,-1.41,1.08,0.68,0.72,0.29,1.00,1.10,0.92,1.90,4.56,4.01,4.58,5.11,3.33,5.28,3.43,1.71,2.63,0.00,0.47,2 --0.36,-0.73,-1.21,-0.95,0.51,-0.78,2.38,1.49,2.00,2.52,3.74,4.79,2.63,5.50,4.57,3.92,0.93,2.41,0.90,0.26,-0.34,2 --0.46,0.03,-0.70,-0.37,-1.21,-1.12,0.65,-0.02,0.11,2.35,1.64,3.60,3.89,5.01,5.61,3.79,3.31,3.12,3.81,-1.57,1.91,2 -0.41,-1.23,1.21,0.08,0.53,1.51,2.20,3.56,3.01,4.16,3.71,3.84,3.51,1.45,2.41,2.52,2.28,0.51,0.32,0.42,-0.33,1 --1.20,0.08,0.94,0.39,0.53,2.95,0.90,1.96,0.58,1.57,3.49,1.67,3.18,3.43,5.35,4.42,3.68,2.84,3.50,0.56,1.39,0 -0.15,-0.22,-0.10,2.41,3.01,2.30,4.09,1.60,3.70,3.05,0.92,1.26,1.82,3.02,2.91,1.77,0.63,0.02,2.71,1.29,0.58,0 -0.23,0.08,2.19,-1.81,2.58,3.09,1.09,2.99,0.65,3.95,2.52,0.61,2.16,3.00,2.40,4.16,2.04,-0.03,-0.88,-1.62,0.44,0 --0.09,0.35,-0.95,-0.23,-0.07,0.72,0.22,0.63,0.71,2.19,2.69,3.24,4.86,3.57,5.31,5.16,4.85,2.16,1.69,0.60,-0.66,2 --0.11,-0.57,-0.19,0.73,0.81,3.20,2.69,3.90,2.57,3.77,3.47,3.50,1.48,1.09,1.93,0.35,0.29,-0.95,-1.13,0.78,-2.49,1 -0.36,0.44,1.89,1.38,3.33,2.46,4.37,3.12,3.93,3.01,0.58,-0.17,1.06,1.52,2.46,0.75,0.73,1.15,-0.40,0.73,-0.53,0 --1.49,0.86,2.11,-0.82,-1.52,-0.34,-0.24,0.33,1.07,1.29,3.06,3.96,4.10,4.22,3.31,3.35,3.24,1.94,2.27,-0.35,-1.31,2 -0.69,0.78,1.05,2.63,3.01,3.69,5.82,6.20,5.24,2.83,1.88,1.61,-0.51,-0.21,1.12,0.26,-1.75,-0.06,0.98,0.82,2.29,0 --0.97,0.92,1.05,0.87,3.92,4.36,3.32,1.89,3.11,2.82,0.86,0.41,2.13,1.66,3.22,1.10,2.01,3.51,-0.45,2.05,-1.42,0 -0.48,0.29,-0.37,0.70,1.93,2.89,1.27,1.45,0.00,1.31,2.08,0.72,2.96,2.04,4.07,1.92,3.93,1.65,2.33,0.97,0.32,0 -0.31,-0.35,1.35,-0.03,1.49,1.92,2.66,3.90,4.65,2.47,4.39,2.33,3.07,2.45,2.06,0.11,-1.06,1.34,-0.33,0.29,-0.81,1 --1.59,-0.02,-1.22,0.20,-0.68,0.96,1.65,1.76,1.19,1.10,3.00,4.36,2.39,3.23,4.87,2.72,3.57,2.13,2.69,1.43,-0.35,2 --1.35,1.24,-1.62,0.78,0.30,0.49,1.53,1.63,2.39,1.97,3.39,4.98,3.99,3.89,3.70,3.99,1.40,1.86,0.32,-0.33,1.23,2 -0.01,-0.34,2.26,4.94,2.91,3.14,8.08,3.02,2.12,2.86,2.50,0.72,0.60,0.79,0.62,1.11,-1.51,-1.43,0.81,-0.67,-0.11,1 -1.86,1.50,0.42,1.30,0.92,0.68,2.04,3.25,2.89,3.77,3.90,3.16,3.93,3.47,2.92,0.10,1.81,0.61,-0.68,1.46,-0.66,2 -2.32,-0.95,-0.65,0.40,0.73,2.29,1.45,1.10,0.41,-0.49,3.19,1.56,3.51,3.01,2.80,4.56,1.74,3.30,3.37,0.94,-0.59,0 --0.65,1.87,0.45,1.73,5.54,4.66,4.57,4.20,1.96,1.89,1.21,-0.42,0.96,0.13,1.17,-1.25,1.22,-0.60,-0.16,1.46,-0.23,0 -0.67,-1.10,-1.47,1.05,-0.25,1.81,2.25,3.38,1.83,3.45,4.89,5.55,3.96,3.88,5.02,1.71,0.93,1.10,-0.52,-0.45,-0.58,2 -0.18,1.12,-1.49,-1.06,0.41,0.09,2.18,1.49,0.48,3.30,1.53,4.00,2.94,3.87,3.09,3.03,1.80,3.64,1.72,-0.23,0.31,2 --1.21,1.36,0.01,1.91,2.79,1.30,3.03,2.44,0.03,2.55,1.11,3.73,0.57,3.99,2.94,4.50,2.64,2.60,2.60,0.14,2.01,0 -0.46,-0.09,-0.26,0.30,1.32,1.59,3.98,2.55,5.08,5.75,6.18,4.96,3.55,0.85,3.21,1.02,0.82,1.27,0.95,1.40,0.15,1 -0.61,0.26,1.91,2.25,2.42,4.39,5.24,2.51,2.34,0.74,2.08,0.18,-1.43,0.40,0.52,0.54,1.14,0.87,1.53,0.32,-0.08,0 --0.03,-0.31,-0.73,0.47,0.44,2.64,0.85,1.56,1.21,0.54,3.75,3.00,5.07,6.14,4.43,4.96,2.82,4.00,0.28,0.52,-1.38,2 --0.67,-0.19,1.02,0.12,0.14,1.33,2.28,3.32,4.63,6.09,5.55,3.01,5.11,2.69,1.96,2.23,0.31,-1.27,-1.13,-0.51,-0.19,1 -0.89,0.13,-0.17,-1.25,1.18,1.22,2.04,1.27,1.49,0.99,2.30,2.40,3.51,3.71,6.79,4.11,3.67,3.41,2.63,2.19,1.69,0 --0.19,0.75,-0.21,1.08,2.00,2.89,1.55,2.96,0.22,2.74,0.11,3.24,4.44,4.23,4.07,2.28,3.92,1.52,3.65,-1.01,1.09,0 --1.46,0.46,0.89,2.92,1.64,1.38,4.44,2.46,0.44,0.56,0.26,1.30,1.49,0.51,2.30,1.51,1.24,1.82,0.55,1.25,1.22,0 --0.12,-1.23,1.13,1.87,4.72,4.93,4.43,4.97,3.34,4.24,4.33,1.52,1.88,0.87,1.39,1.18,0.21,-0.12,0.83,-0.52,-0.42,1 -0.03,-1.10,-0.92,-0.69,-0.11,1.22,0.67,2.78,4.55,3.33,6.12,3.67,3.27,2.36,3.94,3.18,2.28,1.70,0.17,-0.32,0.57,2 --0.27,0.07,2.33,-0.16,0.91,4.13,4.96,4.78,2.51,4.08,1.59,2.52,0.53,1.93,1.82,2.20,-0.41,1.00,2.09,-0.10,-0.91,0 --1.87,0.11,1.76,1.90,2.04,2.22,3.12,2.85,3.65,0.55,1.60,0.67,2.13,2.96,2.44,4.03,4.16,1.25,0.35,-1.28,0.44,0 --1.08,0.08,-0.85,0.03,0.32,-2.00,1.05,0.44,3.98,2.58,3.49,2.50,3.99,4.44,4.33,3.07,2.22,1.78,0.94,1.84,-1.68,2 -0.18,-0.29,-1.13,-1.42,-1.44,-0.95,0.06,0.25,0.05,1.36,2.40,2.58,3.39,5.29,4.23,3.83,3.39,1.85,1.62,2.24,-0.82,2 --1.53,0.81,1.97,-0.66,2.77,-0.72,2.54,3.29,1.70,0.94,4.39,3.83,2.09,5.02,4.72,3.68,2.20,2.62,1.58,0.46,-1.27,0 -0.86,0.83,1.22,1.18,1.33,4.11,3.91,2.08,3.14,4.36,5.46,3.85,2.37,3.17,1.43,1.16,0.99,0.33,-0.22,1.65,0.36,1 -0.10,0.65,1.53,1.59,1.54,4.04,3.99,3.76,4.40,3.97,2.47,2.91,5.41,3.04,0.97,0.31,0.10,0.61,0.04,-0.49,0.65,1 -0.42,0.58,-0.67,-0.12,-0.14,0.48,-0.37,3.12,0.76,1.71,4.11,3.29,3.38,3.44,2.31,5.05,2.46,0.87,2.87,0.08,0.89,2 --1.26,-1.20,-2.01,0.09,-0.72,-0.53,0.69,-0.21,1.23,3.38,3.69,2.61,3.71,2.48,3.02,3.05,1.81,2.08,2.23,1.32,-0.50,2 -0.63,1.64,0.52,3.53,1.63,3.74,3.90,3.89,3.74,3.25,4.43,4.04,2.05,0.55,1.49,1.23,1.02,-0.37,0.13,-0.49,-1.68,1 --1.76,1.84,2.19,1.62,2.38,0.31,2.66,3.25,5.17,4.72,4.75,6.28,3.33,2.12,3.30,3.20,0.30,-0.11,-1.90,1.14,-0.89,1 -1.11,0.44,0.04,-0.15,0.17,1.79,-0.82,2.16,1.70,3.46,4.80,4.86,2.69,2.84,3.28,4.19,4.03,1.72,1.67,-0.36,0.15,2 --0.35,0.48,0.84,1.48,3.10,0.65,1.85,4.62,5.20,3.61,5.05,3.44,2.29,3.82,-0.27,0.01,0.34,-0.79,-1.54,-0.65,-0.25,1 -2.15,1.32,0.58,2.06,0.04,0.37,0.85,1.38,3.12,3.41,3.86,4.10,3.36,4.01,3.51,1.72,1.64,1.87,0.84,-1.06,-0.41,2 --0.05,0.45,2.25,1.05,2.99,1.60,3.07,4.45,5.08,4.74,4.05,2.26,4.00,-1.22,1.61,-0.60,-0.34,0.51,0.69,-0.99,0.04,1 --0.10,0.62,2.28,1.40,0.46,1.46,3.32,3.03,0.75,5.69,4.70,1.24,1.98,1.83,1.47,-0.12,0.17,-0.50,0.67,0.13,0.57,1 --1.31,2.76,3.32,1.72,3.62,4.47,6.61,4.35,3.69,3.86,1.32,1.06,2.67,-0.65,0.84,0.24,-0.55,-1.18,2.88,-0.15,2.35,1 -0.45,1.33,-0.67,0.32,1.12,1.60,-1.06,0.51,-0.07,1.35,3.01,3.34,3.69,4.16,6.11,4.45,2.90,0.87,1.13,-0.15,-1.60,0 --1.48,0.30,1.47,-0.50,-0.03,0.74,-0.04,-0.65,-0.06,0.60,4.31,3.31,4.08,5.00,6.03,4.03,5.20,1.76,2.32,0.14,-0.81,0 --0.56,-0.26,0.80,1.15,1.39,1.99,3.10,3.52,3.09,3.02,1.77,3.56,2.14,3.91,3.06,1.16,0.75,1.88,0.07,-0.51,-0.98,0 -1.33,0.81,0.85,1.73,1.11,2.63,0.74,1.52,-0.54,0.77,3.27,3.35,1.92,2.44,2.21,5.25,3.42,3.55,3.87,-1.72,0.87,0 --0.71,1.27,2.06,3.62,3.34,3.42,6.78,3.63,2.09,2.51,2.23,2.85,1.39,0.44,1.51,0.60,1.82,1.07,2.30,-2.63,0.98,0 -1.44,0.98,-1.85,-2.37,0.04,1.23,0.69,2.23,2.34,2.95,3.29,3.57,4.21,5.18,4.45,3.51,3.26,2.32,1.81,-0.54,0.90,2 --0.47,-0.02,0.59,-0.44,0.84,0.37,1.30,0.31,0.87,1.05,3.20,3.79,3.43,5.37,4.64,2.71,2.59,2.92,2.13,1.56,0.58,2 --0.77,2.58,0.21,0.57,-0.37,1.99,1.00,2.84,3.01,5.71,4.54,3.29,3.13,2.64,4.35,0.65,1.27,0.55,1.85,0.68,-0.83,2 --0.24,-1.11,1.12,0.48,0.33,2.65,3.62,3.74,3.64,3.43,4.44,2.92,3.32,-1.16,2.10,0.95,-2.06,-3.19,2.28,-1.44,0.27,1 -1.34,2.32,1.24,0.18,-0.61,-0.84,1.55,2.09,0.56,3.73,3.16,4.26,4.51,3.70,3.56,3.49,2.60,2.12,1.89,-2.24,0.14,2 -0.52,0.44,0.23,2.48,2.79,5.05,4.72,6.04,4.69,5.20,2.73,1.42,2.11,1.26,0.08,1.81,-0.87,0.13,0.46,-1.91,-1.16,1 -0.25,-0.99,0.22,0.98,0.27,2.48,1.92,1.90,3.44,6.10,6.48,6.89,2.10,3.77,3.27,1.99,-0.51,0.53,-0.01,-0.92,1.09,2 -1.02,2.25,2.17,2.91,3.06,2.51,3.29,4.42,4.08,1.24,2.59,1.84,1.59,2.72,1.85,1.25,0.14,1.82,0.89,-0.62,-0.48,0 -0.90,0.79,1.09,1.48,-0.87,-1.03,0.33,0.42,0.24,2.03,0.89,1.75,7.04,6.35,6.04,4.10,2.38,2.34,0.26,1.19,-0.41,0 -1.81,-1.91,1.23,1.08,0.32,1.21,2.13,2.03,2.27,4.67,3.90,3.82,2.97,2.07,2.13,2.17,0.17,2.32,-0.52,-0.66,1.66,1 -0.85,1.03,2.80,3.04,2.65,4.30,4.00,5.63,4.63,3.22,1.75,1.13,1.30,-0.63,0.01,-0.81,-1.63,-0.55,0.35,0.83,-1.57,1 -1.28,0.54,-0.64,0.33,-0.86,2.29,1.37,2.97,5.19,5.97,5.35,4.86,4.66,2.61,1.48,0.41,0.80,-0.51,-0.85,1.11,-0.56,1 --0.01,-0.33,2.13,2.51,2.73,3.31,3.05,3.18,0.05,1.70,0.89,1.94,3.25,0.45,2.46,3.45,3.34,2.20,0.43,1.97,-0.29,0 -0.38,-0.73,-0.43,1.11,2.40,1.86,5.17,5.49,4.32,3.01,3.20,3.00,0.88,1.57,2.29,0.83,0.44,-1.42,0.12,-0.32,-1.26,1 -1.42,0.05,0.80,1.37,2.07,-0.34,5.20,4.28,4.87,2.91,6.08,4.66,3.00,2.48,3.07,0.67,0.95,0.65,2.17,1.34,-0.40,1 --0.33,0.67,-0.00,1.85,1.43,2.05,3.27,4.94,4.62,3.97,5.65,5.24,4.42,2.11,-0.43,-0.62,0.43,2.40,-0.35,1.51,0.21,1 --1.79,2.35,0.36,2.59,2.73,0.21,2.61,2.03,4.51,4.20,4.52,2.71,3.15,-0.71,0.07,1.09,-2.49,-0.74,-1.29,-1.72,1.31,1 --2.02,0.87,-0.98,1.49,1.31,-0.90,0.73,1.24,2.45,1.46,4.59,2.69,5.27,5.00,4.33,1.60,3.92,0.79,1.89,-0.72,-0.98,2 --0.34,-1.47,1.17,1.31,2.20,3.91,3.56,3.21,4.29,4.41,4.04,2.97,1.70,0.15,1.06,-0.43,0.62,-0.32,0.11,0.12,1.77,1 -1.10,2.62,0.51,3.52,2.91,3.58,2.45,3.73,3.66,1.66,2.47,2.72,1.44,1.25,0.94,-0.18,0.56,2.91,0.47,-0.65,-0.32,0 -0.23,0.01,-0.70,0.61,-2.94,0.20,1.55,2.80,3.30,3.07,4.47,4.85,3.90,2.71,3.95,2.93,-0.47,0.01,1.10,1.64,-1.35,2 --1.08,0.30,2.88,1.49,4.00,3.80,5.50,3.22,4.06,1.80,3.39,0.37,1.04,0.41,1.45,1.31,-0.38,1.05,-0.95,0.60,-0.57,0 --1.05,1.51,0.20,2.95,0.21,0.79,2.46,0.97,-0.54,2.03,2.44,2.16,4.06,3.35,6.59,3.32,2.29,2.01,2.32,0.75,1.11,0 -0.36,0.09,-0.89,1.27,2.16,5.37,3.93,3.37,4.07,2.51,3.73,3.25,1.00,1.86,-0.67,1.82,2.30,0.70,-1.01,-0.18,0.77,1 -1.37,0.42,-1.03,0.19,1.22,2.46,1.18,-0.39,1.23,1.33,-0.25,1.23,2.21,4.34,5.31,2.53,2.26,2.88,1.72,0.22,1.16,0 -1.92,1.09,0.72,0.95,2.58,4.15,2.84,4.56,3.19,4.09,3.25,3.47,2.42,1.84,1.81,0.76,0.50,-0.10,0.67,1.41,1.11,1 --0.73,0.14,0.20,0.87,0.82,1.92,1.43,1.73,1.36,0.80,1.51,1.82,3.10,3.08,4.60,3.55,0.55,3.75,0.97,-1.11,0.43,0 --0.22,-1.94,-0.09,1.48,-0.02,0.24,2.02,2.46,2.84,3.26,4.38,5.72,4.83,3.27,1.70,2.32,0.81,-0.24,1.72,3.04,-0.91,2 --0.68,0.05,-0.29,-0.32,0.45,2.53,0.92,1.18,4.66,3.11,4.37,3.90,4.18,4.02,2.64,2.15,-0.30,-2.74,0.24,-1.20,0.43,1 -0.78,1.44,2.07,1.74,1.67,2.61,4.76,1.92,2.28,2.54,2.20,4.58,2.97,1.71,3.14,4.55,3.53,1.69,0.14,0.55,0.54,0 --0.40,-0.28,-0.32,0.44,1.09,-1.53,0.76,1.16,1.93,3.13,2.91,2.24,6.23,4.73,3.10,4.23,2.77,1.98,-0.93,0.42,-0.36,2 --1.13,-0.48,-0.58,-0.47,-0.09,0.24,-1.16,1.64,2.84,4.00,5.10,3.79,4.67,1.94,2.32,2.59,0.74,1.32,1.84,0.67,-0.24,2 -0.29,1.32,1.42,1.30,1.63,2.74,2.51,3.19,1.48,1.07,0.86,3.41,2.34,2.51,3.52,1.80,2.05,1.44,0.92,0.97,0.05,0 -0.01,1.14,0.75,-0.23,-0.50,-0.80,-0.08,-0.49,1.76,1.57,1.34,2.50,3.99,4.36,4.91,4.13,3.23,3.31,1.92,3.08,1.11,2 --1.99,-0.73,-1.15,-0.86,-0.51,2.11,2.12,3.09,2.69,4.11,4.77,3.43,3.61,4.19,1.58,1.63,0.25,0.36,-0.17,0.43,-0.90,2 --1.12,2.12,0.45,2.51,3.49,5.39,7.69,3.82,4.32,4.05,2.89,2.33,2.05,0.48,0.22,1.62,-0.87,0.76,-0.54,-1.74,0.94,1 --1.17,-0.63,-1.04,-1.10,-1.40,-1.09,1.98,2.84,1.39,4.52,4.87,5.61,1.85,3.41,1.94,1.63,2.08,2.76,1.60,0.30,3.03,2 --0.45,1.06,-1.09,0.54,2.12,2.28,1.91,1.71,0.69,3.09,2.40,0.86,4.44,4.31,4.01,3.49,2.16,2.29,0.83,1.73,1.95,0 --0.46,0.33,0.77,1.94,2.56,4.34,7.11,2.13,1.80,3.87,2.97,1.40,-0.70,2.64,0.56,0.45,0.72,-1.01,0.99,0.76,-0.17,0 -0.55,0.08,-0.48,0.20,0.11,1.42,-0.53,0.01,0.09,2.87,5.55,4.87,4.44,5.23,5.22,1.43,3.27,0.85,0.96,-0.60,0.78,2 --0.28,-0.20,0.98,0.62,1.05,0.91,1.61,1.19,0.98,0.40,0.64,1.88,2.57,3.91,4.10,3.60,4.96,3.34,2.17,0.48,-0.92,0 --0.78,0.91,0.80,1.70,1.76,2.21,3.08,3.29,1.62,1.03,2.93,2.63,1.69,1.54,3.85,4.56,2.81,2.49,1.33,0.03,-0.99,0 -2.26,1.17,0.92,1.43,0.46,3.08,4.29,2.60,5.40,2.64,5.79,1.83,1.28,1.98,1.55,1.95,0.26,-0.86,0.53,-3.00,0.21,1 -0.01,2.06,-2.74,0.86,-0.39,1.71,-0.63,-1.28,0.63,0.56,4.58,5.12,3.25,3.43,7.42,5.65,4.79,2.89,-0.44,2.53,-0.40,0 -0.43,-1.17,-0.67,-0.10,0.50,-0.58,-0.01,1.27,3.67,5.65,3.89,3.87,2.70,5.38,2.49,2.27,0.48,1.19,0.84,-0.49,2.05,2 -0.16,0.38,1.62,-0.80,-1.06,-1.70,-0.19,2.18,0.08,2.16,3.15,3.50,5.02,5.12,5.60,5.58,5.70,2.54,1.74,0.04,-0.34,2 --0.23,-1.58,-0.92,1.50,-0.34,0.73,0.20,1.39,0.36,1.66,2.45,2.23,2.60,3.96,5.14,4.44,4.17,1.12,1.68,-1.66,0.22,0 -0.67,-0.30,2.46,1.69,3.40,3.06,3.40,4.70,3.80,3.42,3.24,4.21,1.39,3.48,1.43,-0.80,0.36,0.91,-1.82,0.45,1.02,1 -0.62,0.22,1.77,1.85,1.41,1.18,3.16,3.04,4.46,3.36,3.27,4.56,4.72,1.08,1.68,2.16,-0.20,1.22,-0.79,0.76,-0.35,1 -0.58,0.63,1.43,3.01,4.89,4.83,5.35,5.97,3.24,3.66,3.87,1.09,0.16,-1.07,-1.14,-0.34,-1.02,-2.13,-0.04,0.88,-0.75,1 --0.65,0.66,1.07,2.12,1.80,5.46,4.28,3.57,4.81,2.26,1.83,4.63,2.02,0.52,1.70,2.04,-0.38,0.39,-0.99,0.37,0.37,1 -0.64,-0.73,1.81,1.68,1.20,3.02,4.62,3.97,4.02,3.40,2.77,3.48,1.67,1.32,1.57,2.25,-0.70,0.23,1.91,-0.33,-0.91,1 --0.77,0.75,0.71,0.86,0.57,1.37,0.89,1.52,1.98,5.37,6.83,5.88,5.37,2.08,1.65,2.67,-0.22,0.37,0.22,0.93,0.07,2 -0.25,-1.44,1.76,1.43,-2.09,-0.62,2.20,1.52,1.55,2.84,3.07,2.45,1.39,3.27,2.63,4.70,2.01,1.20,1.35,0.14,-0.58,2 --1.21,0.98,-1.30,-1.85,-1.36,0.55,1.61,1.24,0.19,2.41,3.75,4.28,3.77,4.65,5.59,3.92,4.42,3.23,1.03,-0.47,-0.42,2 -0.34,-0.24,0.62,-0.39,-0.19,0.05,0.34,2.43,1.12,2.06,4.32,2.68,6.32,5.16,4.52,4.12,0.64,2.70,0.74,1.97,-0.43,2 --0.31,0.11,0.42,-1.31,-0.40,-0.18,1.49,2.04,0.17,2.70,5.04,3.34,3.96,2.89,4.57,5.22,3.15,3.11,1.44,1.57,0.48,2 --1.33,-1.68,0.04,-0.72,-0.70,0.94,0.74,0.82,3.80,3.27,6.54,5.01,3.42,3.04,3.21,2.17,1.32,-0.12,0.03,2.09,0.42,2 -1.50,0.74,-0.40,1.88,2.96,4.50,6.22,4.25,5.24,6.08,3.27,0.43,-0.28,0.50,0.28,-0.00,-0.23,-0.61,2.29,0.37,-0.18,1 -1.46,0.16,3.00,-1.06,-0.53,0.44,0.82,1.29,0.47,0.92,4.80,4.27,4.26,3.54,5.27,4.55,1.93,1.71,1.48,-1.20,-1.46,2 -1.64,1.15,2.44,2.09,2.30,3.94,2.50,1.75,2.51,-0.51,3.36,1.75,1.99,1.71,3.44,2.06,1.71,3.14,1.32,0.12,-0.06,0 -0.01,0.54,1.44,2.38,3.09,4.17,4.17,6.85,4.98,5.12,3.83,2.91,0.11,-0.15,1.90,0.48,-1.69,-0.31,0.93,-0.55,-1.37,1 -0.50,1.51,1.32,0.51,0.00,1.29,3.32,1.71,1.99,0.20,1.07,1.10,4.51,3.92,4.61,4.58,2.96,2.27,1.14,-0.03,-0.86,0 -0.33,-0.12,-0.42,0.49,0.48,0.08,1.61,-1.08,0.51,2.19,1.85,1.89,4.40,4.39,4.06,5.55,2.19,4.01,1.49,1.37,-0.40,0 --0.87,2.50,0.68,-0.59,0.09,0.51,0.41,-1.46,-1.07,0.50,1.24,2.45,3.55,5.39,6.59,4.64,3.59,1.88,1.55,0.77,0.50,0 -0.59,1.08,-1.66,-0.70,0.33,1.24,-0.66,1.36,2.64,4.35,5.66,3.91,2.88,2.86,3.96,3.09,3.35,2.18,-0.21,1.49,-0.76,2 --1.41,-0.10,2.75,1.42,2.58,2.44,2.70,5.13,4.48,3.07,4.34,3.71,2.67,0.29,1.57,-0.47,-0.81,0.88,0.35,1.50,0.42,1 -0.31,-2.12,2.79,-1.50,-0.31,-1.12,0.34,1.94,2.00,0.97,4.36,3.93,4.10,3.66,3.93,3.05,2.86,2.41,3.07,0.59,-0.60,2 -0.45,-0.62,1.14,1.93,2.18,1.86,4.30,5.43,4.16,4.77,2.57,4.14,2.62,2.11,0.58,1.04,-0.68,1.08,1.54,0.29,-0.46,1 --0.37,-0.93,-0.39,0.89,0.04,0.10,0.73,4.70,3.79,5.08,5.26,5.52,2.34,4.65,3.47,0.84,1.88,0.85,0.21,2.41,-0.44,2 -0.11,1.79,-0.41,1.18,-0.63,-0.15,0.76,1.05,1.67,2.88,2.39,4.93,3.04,3.90,4.46,4.35,2.60,2.64,2.17,-0.08,0.02,2 --1.17,-0.78,-0.19,-1.91,0.53,-0.78,1.71,2.31,0.72,0.37,3.61,4.10,3.19,5.76,6.46,2.99,3.30,3.18,0.85,0.03,-0.61,2 -1.47,2.37,1.94,3.16,4.67,6.22,5.94,2.97,2.33,0.36,-0.29,0.81,0.06,-0.23,0.58,-1.05,0.43,0.71,0.49,2.07,0.17,1 -0.07,0.36,0.34,-1.61,0.08,1.41,3.13,2.78,3.34,5.51,7.26,3.95,4.24,3.82,1.53,1.06,0.28,0.25,-0.27,-0.10,-0.80,1 -0.18,0.09,2.87,1.98,4.97,4.58,6.12,4.51,3.36,3.69,2.05,1.79,-0.84,-1.33,0.49,-0.57,0.02,-0.26,-0.43,1.16,-1.56,1 -0.72,-0.41,1.29,1.11,0.87,1.36,4.44,3.79,3.19,5.23,4.89,2.46,2.85,2.62,-0.59,0.73,-0.16,0.51,-1.24,1.54,-0.82,1 -0.15,-1.60,0.78,-0.37,0.08,-0.53,-2.67,0.20,1.78,1.37,2.60,4.67,3.95,4.84,5.99,4.34,3.25,2.82,0.89,1.18,1.23,2 -0.30,-0.32,-0.91,-0.18,-0.21,-0.97,-0.15,1.83,-0.55,1.52,0.01,3.68,5.21,6.32,8.28,4.44,2.41,1.89,2.10,2.11,-0.42,2 -0.04,-0.21,0.16,-0.51,0.80,1.15,2.80,3.87,2.26,2.13,1.61,1.11,2.92,3.66,3.38,4.01,1.92,0.91,0.33,0.75,-0.86,0 --0.71,0.47,1.76,0.02,0.42,2.10,4.44,3.73,4.85,4.83,4.40,5.04,3.66,3.92,2.33,1.21,-0.50,0.67,-0.95,0.23,-1.21,1 -1.16,1.19,0.04,1.59,2.79,4.48,5.09,3.84,2.85,2.98,4.46,1.64,0.49,2.34,3.33,1.67,-0.44,0.86,-1.82,0.05,0.54,1 -0.11,-0.73,1.07,1.99,2.65,2.14,4.66,4.81,3.90,3.22,4.53,1.78,1.91,1.49,1.29,0.52,-1.55,-0.43,-0.25,0.16,-0.61,1 -0.95,0.82,1.83,0.90,-0.62,1.81,3.81,1.28,3.83,4.39,5.42,3.51,3.89,2.37,2.50,1.45,1.01,1.27,0.07,-0.75,-0.07,1 -2.17,0.83,-0.16,0.86,1.10,1.45,3.06,3.69,4.82,3.57,3.53,5.07,3.55,2.76,0.14,-0.96,-0.38,1.41,0.35,0.69,-0.19,1 -0.52,1.69,1.10,0.44,-0.03,-1.29,0.29,1.23,0.45,4.03,3.06,3.20,2.99,3.36,3.38,4.59,4.39,2.19,1.55,1.17,0.88,2 -1.58,0.57,1.20,-0.99,-0.55,0.38,-0.61,-0.65,1.32,3.20,1.61,3.67,4.61,3.00,3.70,4.63,2.31,0.01,1.80,0.03,-0.98,2 --1.54,1.13,-1.42,-0.37,0.15,0.35,1.17,1.27,0.37,0.96,4.83,3.12,3.96,5.06,6.72,3.63,2.22,1.93,2.13,-0.16,-0.34,2 -1.07,-0.79,0.08,-0.48,-0.18,0.28,2.55,1.55,5.51,3.09,5.46,3.29,4.74,5.24,1.94,1.53,0.37,2.19,1.21,0.20,-1.03,2 --0.35,0.94,-0.19,0.36,1.03,0.94,0.95,1.76,1.08,0.36,0.27,0.50,2.27,3.53,3.99,4.32,3.34,3.16,1.54,2.54,-1.08,0 -1.15,-0.47,3.16,2.31,5.03,3.75,5.84,4.41,5.89,2.56,1.84,1.47,1.65,0.65,-0.58,0.26,0.53,1.60,-0.40,0.96,0.05,1 --0.19,1.39,-1.26,0.62,-0.02,2.74,-0.12,0.85,2.31,3.64,3.60,5.63,5.49,2.08,4.48,2.00,3.49,2.12,0.30,0.50,1.55,2 --0.51,-0.41,0.68,0.85,1.28,2.70,3.97,3.38,2.31,1.11,1.71,-1.00,1.34,3.10,3.18,1.27,2.26,2.38,1.11,-1.38,-2.13,0 -0.17,1.37,1.99,2.55,1.72,2.02,3.84,3.61,2.20,2.72,0.09,1.71,1.91,0.66,0.72,1.38,0.15,-0.18,0.58,0.09,1.48,0 --0.52,2.51,-0.34,1.32,1.00,3.38,1.25,3.96,3.74,4.45,4.65,3.97,2.51,3.28,1.32,0.74,0.81,-0.24,0.46,1.54,1.60,1 --0.53,-0.51,0.94,2.36,-0.35,1.07,2.91,2.67,5.45,4.95,5.10,4.06,2.68,1.22,3.52,2.05,0.61,-0.22,0.60,-0.53,0.79,1 -1.79,1.16,2.19,3.19,3.10,5.57,5.70,3.12,3.90,4.01,3.87,2.33,0.93,0.82,-1.50,1.45,0.12,-0.06,0.87,-0.47,-2.23,1 --1.07,0.33,0.31,0.91,1.53,0.42,2.02,3.31,4.77,3.88,5.16,4.29,5.91,2.53,2.08,2.73,1.26,1.30,0.14,1.49,1.31,2 --1.57,0.34,0.73,2.25,0.64,3.06,3.45,2.52,4.33,2.17,3.04,2.95,1.74,1.38,1.06,0.70,0.01,1.53,-1.75,-0.85,-1.27,1 -0.12,0.11,2.24,0.42,1.75,3.08,2.51,3.63,1.32,1.56,0.48,1.17,-0.05,3.38,4.51,4.37,2.42,1.79,-0.42,0.60,0.27,0 --0.92,-1.24,-1.17,-0.29,-0.37,-0.93,-0.25,0.11,2.80,2.37,4.73,2.21,2.79,3.55,5.59,2.78,3.09,2.73,-0.04,1.89,-0.46,2 --0.44,-0.41,2.81,1.09,1.67,3.14,4.55,4.98,3.93,3.77,4.67,2.67,2.93,2.90,1.32,0.30,0.02,-1.00,-1.82,1.70,0.17,1 -0.07,0.27,-0.70,-0.07,1.68,0.76,2.65,3.29,3.73,5.09,6.98,4.04,4.33,1.31,0.53,2.46,1.35,0.25,-1.52,1.04,0.27,1 -1.36,-0.24,1.79,1.22,1.00,2.21,0.03,2.23,3.21,4.42,4.82,4.41,3.74,3.24,1.36,2.98,-0.25,1.76,0.99,-0.67,-0.71,2 --0.25,2.50,0.06,2.75,4.73,4.61,7.09,3.72,2.32,2.15,3.56,2.50,0.43,0.20,0.94,2.23,-0.49,0.39,-1.35,0.94,-1.25,0 -0.41,1.16,1.90,0.76,3.63,4.01,5.46,5.14,3.28,2.75,1.73,1.24,1.73,-0.51,1.12,1.35,0.10,-0.10,-0.35,0.81,-0.84,0 -0.70,-0.29,0.81,0.04,0.70,-0.97,-0.35,-0.17,-0.48,0.64,2.17,1.96,4.04,5.73,5.34,4.98,3.18,4.60,2.24,3.30,-1.52,0 --0.27,-1.23,2.17,-1.41,0.40,0.42,0.19,-0.01,0.29,0.98,3.16,3.12,5.19,4.77,7.58,4.39,4.00,3.61,2.21,2.25,0.03,2 -1.48,1.37,2.72,2.70,3.61,3.58,4.41,3.57,3.98,3.59,1.73,2.33,2.45,2.24,0.41,0.67,-0.17,-0.91,2.01,0.70,-1.41,1 --1.62,-0.60,-0.11,0.16,-0.25,-0.65,0.42,-1.50,0.12,2.14,2.28,5.60,2.77,3.43,5.82,4.08,2.20,1.32,0.95,-0.47,0.37,2 --0.81,1.41,2.63,0.82,0.99,2.61,5.78,4.87,5.96,4.21,3.03,2.22,3.04,0.33,-2.29,0.81,0.32,0.01,-0.21,0.44,1.74,1 -1.68,0.22,2.00,1.76,1.14,2.47,2.12,3.84,1.91,1.28,3.39,0.46,1.68,3.32,2.91,3.96,2.76,1.74,0.49,0.37,0.68,0 -2.42,1.27,2.06,0.66,-0.98,2.33,1.95,1.48,0.67,2.72,0.92,2.25,2.88,3.63,3.63,1.73,0.99,1.77,0.14,1.62,-0.20,0 --0.89,0.40,-0.09,1.27,1.13,0.31,1.11,2.21,-1.55,0.45,2.21,4.02,3.41,2.17,5.70,4.69,4.25,1.77,3.38,-0.19,-0.03,0 -1.13,0.46,2.63,0.42,5.51,4.32,4.87,6.50,2.48,3.97,2.01,2.00,1.03,1.01,0.90,-0.80,-1.04,-0.15,-1.15,1.57,0.39,1 --0.37,1.98,1.36,4.23,3.49,4.11,5.18,4.59,3.38,5.00,3.30,3.04,0.96,0.74,1.20,0.88,-1.08,-0.18,-0.16,-1.41,-0.62,1 -0.18,0.79,1.68,1.62,1.31,2.78,5.07,5.19,3.28,3.06,4.70,0.59,1.57,2.02,1.64,0.71,0.16,-0.95,-1.35,-0.23,1.27,1 -0.76,2.00,2.09,2.38,2.96,3.91,4.46,5.08,4.29,3.00,1.41,2.33,0.97,0.32,1.70,-0.02,-1.52,0.30,-1.10,-0.66,0.54,0 -1.89,-0.88,0.49,-0.46,-0.81,0.73,0.60,2.26,4.55,2.73,5.45,6.41,4.90,5.91,2.76,0.92,-0.36,0.43,1.26,0.25,-1.03,2 -0.02,1.64,0.37,1.04,0.41,1.24,2.86,4.37,3.39,5.60,5.47,4.46,2.63,1.05,0.65,0.91,1.04,0.54,-0.49,0.59,0.55,1 --1.73,0.39,0.43,1.47,-0.34,1.31,-1.34,2.27,-0.68,1.39,1.85,6.82,4.13,6.26,6.13,6.38,3.78,1.98,-0.75,2.35,0.61,2 -0.95,-0.38,-0.31,0.82,-0.29,1.90,0.94,1.74,2.90,4.46,4.57,4.19,4.73,3.63,1.26,2.70,2.71,1.69,1.78,1.89,-0.19,2 -1.97,-1.73,0.51,2.06,2.58,1.46,3.18,4.30,2.70,4.72,3.86,2.83,2.47,1.15,1.07,0.92,0.04,0.89,-0.66,-1.57,1.60,1 --1.02,0.26,1.48,1.27,0.34,3.41,4.29,3.45,4.67,3.75,5.65,3.96,0.37,2.58,2.31,0.28,-1.49,0.03,-1.19,-0.45,0.21,1 -2.00,-1.64,0.56,2.12,1.52,1.69,4.81,2.99,1.85,2.46,2.55,1.47,3.20,1.34,3.00,0.35,2.13,1.19,0.66,-2.06,-1.06,0 --0.09,0.51,0.69,-0.64,-2.33,-0.09,2.60,2.15,2.54,1.91,6.02,5.65,4.73,4.08,2.08,0.06,-0.40,-0.73,-0.35,2.03,0.84,2 --1.16,0.91,1.25,0.89,5.16,3.41,6.03,5.79,3.37,3.23,1.48,2.55,1.53,-0.13,2.31,2.33,0.81,2.00,-0.99,1.05,0.06,0 --0.71,1.11,0.54,0.99,2.20,0.30,1.26,0.74,0.26,0.56,2.06,3.35,2.87,2.90,4.39,2.90,1.99,0.25,0.54,0.95,0.93,0 --0.86,0.52,3.18,1.26,2.83,2.67,3.47,4.43,3.40,2.78,1.72,3.18,1.96,2.68,4.79,1.42,0.05,1.17,0.58,0.68,-1.19,0 --0.20,-1.18,-0.75,0.80,-0.39,0.65,1.72,3.84,3.68,1.73,6.11,4.81,5.47,3.54,2.34,0.58,0.95,-1.51,0.62,-0.13,0.53,2 --0.90,0.85,1.40,3.30,3.31,4.58,4.73,3.38,3.97,3.24,1.09,0.43,1.83,3.09,0.28,2.80,2.29,-2.59,-0.76,0.02,1.34,0 -0.89,-0.17,0.55,1.79,0.03,0.60,1.88,3.17,-0.48,1.51,1.85,2.96,1.59,3.98,4.05,3.81,4.79,1.84,3.50,-0.86,0.54,0 --0.15,-0.13,0.20,3.03,3.36,2.77,3.42,4.77,2.71,5.47,2.79,5.83,1.36,0.98,0.75,1.11,1.99,-0.12,1.09,1.50,-0.88,1 -0.91,-0.29,0.35,1.00,-0.19,0.92,2.07,1.08,3.05,2.54,6.43,5.73,4.08,3.73,1.53,1.34,-0.66,-1.64,0.01,-0.79,-0.71,2 -0.51,2.83,1.54,3.23,2.35,4.28,3.48,1.73,5.70,2.66,2.53,1.18,0.70,1.49,-0.80,0.07,-0.25,0.14,0.11,1.60,0.92,1 -0.87,-0.85,-0.35,0.08,-1.23,1.05,0.56,0.47,-0.02,1.87,3.35,4.23,3.19,4.70,3.98,3.27,1.94,3.58,-0.03,-0.09,3.32,2 -0.51,0.70,1.31,0.23,0.73,3.53,3.78,5.33,3.77,4.57,4.59,3.37,1.43,1.48,-0.04,-0.25,0.97,0.04,0.38,1.57,1.61,1 --0.59,1.58,2.59,3.37,2.88,6.61,6.61,4.96,2.94,2.03,4.36,-0.17,0.13,-0.13,0.76,-1.17,-0.56,-0.07,0.84,0.69,0.62,1 --0.37,1.43,0.14,3.58,1.44,3.22,4.60,3.19,5.10,4.38,3.49,1.91,2.36,1.65,2.37,1.60,-0.64,-0.04,-1.47,0.64,0.75,1 -0.04,0.46,-0.93,-0.26,0.12,0.50,0.37,1.64,1.51,-0.61,0.69,3.01,2.50,4.51,5.78,3.45,3.87,2.56,-0.32,0.18,0.49,0 -0.29,0.27,-0.16,-0.46,-1.24,1.40,1.26,0.87,-1.75,0.49,3.42,3.85,2.38,4.60,7.39,5.07,5.13,3.26,1.14,1.02,-2.08,2 -2.58,0.42,-2.02,0.11,-2.86,-0.45,1.05,1.68,2.07,2.85,4.66,6.51,3.88,1.84,1.48,2.48,2.29,1.50,2.01,-1.05,-0.69,2 -0.96,0.64,-0.33,1.38,1.12,1.84,2.20,1.38,1.17,3.15,3.03,1.68,1.19,2.60,3.51,3.27,3.23,2.54,3.15,2.71,0.73,0 --1.02,1.35,1.30,0.69,4.34,2.45,4.36,2.03,3.32,5.11,7.05,3.82,3.54,2.05,1.79,1.35,0.85,0.08,1.09,0.69,-1.56,1 -2.60,1.63,0.07,0.54,0.29,2.79,2.49,1.57,-0.29,1.76,2.75,1.32,2.64,3.66,3.19,4.03,1.17,1.59,2.13,-0.04,-1.05,0 -1.03,-1.20,-1.07,-0.79,0.25,1.03,0.43,-0.92,1.10,2.20,1.77,2.35,4.83,3.40,6.83,4.41,2.87,2.37,2.07,0.53,-0.72,0 -0.46,0.02,1.98,2.50,0.73,2.71,1.69,0.55,0.46,2.19,2.06,1.45,0.84,1.42,4.08,4.13,2.64,1.66,1.63,3.13,0.92,0 --0.46,1.70,0.18,1.16,0.79,2.86,4.54,5.05,3.31,4.95,5.61,1.23,0.06,2.81,0.94,-0.24,-0.24,-0.24,0.41,0.17,0.21,1 -0.91,-0.50,1.04,-1.26,0.73,1.98,0.27,0.45,1.27,2.18,0.81,4.21,3.22,4.53,5.47,4.40,2.53,0.40,0.06,1.17,-0.72,2 --0.97,2.43,3.08,2.68,4.06,4.93,5.48,4.62,4.89,2.70,0.89,2.13,0.04,1.00,0.89,-0.01,-0.95,0.26,0.40,-0.76,-0.11,1 -0.18,0.59,-0.41,1.40,2.41,4.27,2.57,2.14,4.58,4.64,4.29,4.64,4.62,2.32,2.59,1.37,0.90,-0.60,0.85,1.41,-1.62,1 -0.49,-0.27,2.02,1.99,0.95,3.02,5.76,4.39,4.37,4.19,4.44,1.73,1.97,0.50,2.49,0.89,0.28,-0.89,2.17,1.44,-0.39,1 -0.71,0.80,3.11,1.97,2.22,3.39,3.21,2.53,2.09,2.78,1.32,3.71,2.13,3.35,2.27,2.27,2.44,1.39,2.07,0.63,1.28,0 --0.83,1.19,3.39,1.66,3.29,3.75,4.38,2.76,3.63,2.20,1.92,1.86,3.32,0.77,2.84,4.03,1.80,1.99,-0.59,1.13,0.45,0 -0.35,1.66,0.43,2.39,2.73,5.52,4.53,3.51,2.64,3.57,2.68,2.35,-0.14,0.33,1.06,0.55,-1.05,-0.47,-0.37,0.54,0.10,1 -0.83,0.74,3.11,3.03,2.48,2.79,4.15,3.81,5.02,2.42,2.66,-0.61,0.27,-1.05,1.11,-0.35,0.82,-1.42,1.18,0.25,-0.09,1 -0.58,0.48,-0.41,0.29,0.77,1.68,1.41,1.89,1.44,4.31,3.54,1.99,4.39,3.13,4.94,3.28,3.28,-0.56,3.00,-0.48,-0.17,2 -1.85,-0.76,0.14,-0.17,2.01,1.60,1.67,3.97,3.20,5.23,6.33,2.86,5.68,3.85,2.37,1.99,0.66,-0.14,-0.73,-0.81,-0.49,2 --2.63,0.88,1.83,0.49,4.29,5.16,4.20,5.28,4.30,2.22,3.56,0.69,0.07,0.42,0.07,0.12,0.50,0.27,-0.51,-0.73,0.41,0 --0.52,0.28,2.93,2.06,3.69,5.48,4.04,2.86,3.63,3.49,1.24,-1.61,0.05,-0.97,1.95,-1.53,0.75,0.27,-0.18,-0.75,-0.78,1 --0.71,-0.40,-0.84,-0.67,1.58,0.98,2.54,2.23,2.61,2.09,4.11,4.75,5.82,3.17,3.21,-0.40,1.63,-0.35,-1.15,-0.33,0.54,2 --0.14,2.15,1.48,2.01,1.63,1.93,5.23,4.42,3.60,2.63,3.44,1.84,2.51,0.22,0.16,-0.06,1.01,0.47,-0.99,2.25,0.23,1 --0.33,-0.09,0.16,-1.03,-0.03,1.35,1.73,0.21,0.35,2.42,2.29,2.28,2.81,4.75,5.03,3.74,3.16,1.97,1.46,0.14,-1.06,2 --0.07,-0.64,1.03,-0.07,0.20,0.87,-0.33,1.87,-0.88,2.11,2.31,2.94,1.34,3.98,5.90,4.04,1.95,2.70,1.60,0.97,-0.35,2 --0.27,-0.71,-0.12,0.15,0.13,0.40,3.14,1.42,3.16,5.11,5.39,4.18,5.10,4.51,2.21,1.54,0.24,0.54,0.31,0.14,1.50,2 -0.99,0.19,1.09,-0.76,0.10,1.63,2.00,1.80,2.78,4.05,3.58,4.40,4.43,3.51,3.71,1.77,2.19,0.38,-0.65,-0.07,-0.50,2 -0.81,0.65,-1.63,-1.52,0.42,2.29,2.48,4.39,3.83,6.21,5.38,4.54,1.50,1.09,1.19,0.67,-1.32,-0.25,1.12,0.55,0.18,1 --0.47,-0.45,-0.07,-0.46,0.67,-0.09,1.70,0.54,0.46,0.72,2.14,2.81,2.56,2.49,5.51,2.68,1.74,3.29,3.33,2.75,-0.30,0 --2.49,-0.34,1.57,3.22,2.13,3.22,3.79,3.17,4.27,2.92,1.79,1.23,3.19,0.56,1.57,1.80,0.33,1.31,-0.09,0.12,0.87,0 -1.61,0.69,-0.92,0.55,1.87,2.45,0.69,-0.20,1.03,0.11,2.35,2.98,4.54,3.91,6.11,5.40,3.89,2.91,4.16,3.08,0.82,0 --0.36,0.91,0.96,1.17,-0.89,2.48,1.83,2.34,4.83,5.14,5.67,6.43,4.86,2.74,2.62,-0.08,1.34,-0.20,-0.22,2.05,-0.03,2 --0.80,1.33,1.15,2.00,3.36,3.97,6.38,6.05,4.45,3.09,2.19,1.71,0.97,2.03,0.60,1.04,0.70,1.45,-0.14,0.20,-1.71,0 -0.70,2.97,3.69,2.56,3.23,2.92,5.33,2.52,4.40,3.41,1.85,1.21,-0.73,0.78,0.92,1.06,-0.84,-1.14,-0.14,0.07,1.41,1 --0.84,1.08,2.70,0.29,2.16,2.07,6.14,3.07,3.93,3.70,3.82,3.60,1.75,3.30,-0.47,1.34,-0.56,1.00,-0.58,-0.10,-1.00,1 --1.49,2.40,3.25,2.50,5.16,6.54,5.49,4.08,4.24,2.73,1.52,0.86,1.96,2.53,-0.97,1.43,0.68,0.00,0.61,-1.39,1.23,1 --0.62,0.87,1.69,0.40,0.92,3.56,4.17,5.26,2.19,5.30,4.15,2.72,2.45,1.99,2.00,0.12,-0.53,-0.79,-1.31,0.11,-1.09,1 --1.39,1.17,1.53,-0.07,0.74,1.19,1.49,2.28,3.24,6.77,5.18,5.37,2.75,1.62,1.35,0.80,-0.11,-1.08,0.62,-0.22,-2.42,1 -0.04,0.16,4.35,2.22,3.61,4.80,5.53,4.22,3.99,0.87,2.62,1.57,-0.00,-0.70,0.40,1.00,0.00,0.08,0.47,0.35,-0.13,1 -0.06,1.23,-0.01,-1.16,-0.27,1.16,1.71,1.73,0.69,2.00,2.26,3.07,5.58,5.77,5.67,2.48,4.30,3.85,0.89,0.17,-0.44,0 --0.16,-0.29,-1.02,0.47,1.90,-0.42,-1.06,1.80,1.43,1.84,2.61,4.72,3.33,4.70,5.10,4.44,0.64,2.96,2.82,1.08,0.47,2 --0.32,0.34,1.57,0.04,0.85,0.37,-0.24,2.61,1.11,0.02,1.75,2.48,4.46,3.77,3.55,4.05,4.26,2.69,1.23,2.13,1.43,0 -0.11,-0.92,-0.81,0.52,0.15,1.83,1.12,2.23,-0.64,1.17,3.53,3.70,4.69,4.38,5.29,4.59,2.13,1.23,2.29,2.70,0.75,0 -0.62,0.55,0.15,-0.47,1.32,2.82,3.98,4.48,3.20,4.62,4.33,1.88,1.40,2.48,0.06,-1.51,0.09,0.55,0.59,-0.11,-0.62,1 -0.13,-0.14,-0.48,0.27,-0.43,0.35,3.19,2.59,3.20,3.19,6.66,4.10,3.61,4.90,3.68,2.45,2.34,0.70,-0.92,-1.43,-0.04,2 --0.16,3.05,3.33,3.64,4.62,3.70,7.04,3.84,3.59,3.51,2.90,1.79,-0.22,-0.38,0.76,-0.57,-1.22,0.60,1.51,0.16,1.03,0 --0.29,-0.90,-1.18,0.27,1.62,1.60,1.01,3.64,2.50,3.01,6.24,4.66,5.03,2.54,3.37,0.77,0.83,-0.21,-1.83,-0.22,-2.42,1 -0.53,2.74,1.01,0.59,1.18,5.00,4.04,4.04,4.56,2.73,4.11,3.74,1.83,2.76,0.90,0.27,-1.76,0.07,-0.96,-0.57,2.65,1 --0.72,1.00,2.96,3.07,2.78,5.69,4.29,3.75,2.79,3.06,3.43,1.77,1.78,-0.90,1.28,0.81,-1.16,-0.13,0.24,-0.60,-0.24,1 -0.38,-0.08,1.22,0.73,2.70,3.14,4.37,1.97,0.31,1.05,1.61,-0.41,0.98,2.49,4.07,3.14,2.51,0.09,1.64,3.66,0.51,0 --0.30,1.17,1.69,3.20,3.51,4.85,6.15,6.30,5.52,4.24,3.57,0.87,2.07,0.61,0.84,0.12,-0.45,0.49,1.49,0.05,-0.96,1 --1.41,0.55,-0.38,2.78,2.32,1.57,3.91,4.30,2.59,4.63,2.14,0.07,1.22,2.29,3.41,1.87,0.57,1.45,-0.76,0.08,0.73,0 -2.61,0.51,-0.99,-0.26,0.04,0.97,1.85,1.99,0.25,2.56,3.78,4.43,4.88,3.83,4.13,4.02,3.37,2.42,1.22,0.15,-1.27,2 -1.05,2.06,0.78,4.38,2.70,4.44,5.28,4.54,2.49,2.01,1.92,1.24,-0.70,0.18,0.75,0.24,1.89,0.59,2.12,1.25,-0.96,0 --1.28,0.39,2.02,-0.40,1.29,-2.28,1.58,1.07,3.10,3.36,2.66,4.69,3.49,5.24,4.54,3.54,1.86,1.86,0.82,0.89,-1.62,2 --0.04,0.72,2.42,1.63,3.26,3.02,6.64,4.05,4.66,2.82,4.15,2.52,0.72,0.92,2.14,-1.10,-1.20,1.90,-0.05,1.85,-0.25,1 --0.42,0.45,-0.60,1.53,1.25,1.28,-0.53,-0.05,1.63,2.74,2.11,3.44,6.16,4.55,2.29,6.02,3.78,3.12,4.17,2.14,0.55,2 --0.33,1.80,0.20,-1.32,-0.63,0.92,0.69,1.74,-0.54,2.59,2.51,2.03,4.05,3.72,5.38,3.84,2.86,2.60,1.58,1.48,-0.10,2 --1.60,-1.84,1.32,1.45,1.79,3.19,4.46,2.63,2.40,2.05,2.74,3.29,-0.95,3.68,1.93,2.24,0.76,0.43,2.26,1.49,-0.75,0 -1.02,-0.81,-0.14,1.20,-1.05,-0.23,-0.51,-0.26,2.78,1.59,3.74,5.33,2.23,4.57,4.80,2.50,3.79,1.43,2.56,0.78,-1.52,2 --0.62,1.17,-1.04,-0.76,0.30,-0.69,0.62,2.89,2.46,1.90,1.97,3.71,3.50,6.24,5.41,3.10,1.76,2.91,3.11,0.24,-0.87,2 --0.94,0.58,1.57,1.80,5.33,3.78,8.20,4.10,2.38,1.78,0.49,0.71,-0.24,0.60,0.15,2.70,0.57,0.63,0.31,0.52,-1.77,1 --0.54,1.54,0.56,1.67,-0.01,0.78,2.16,4.13,3.58,3.93,6.17,4.78,3.75,1.98,1.56,1.75,0.77,2.25,0.50,-0.72,2.07,2 --0.24,1.56,2.35,1.11,1.22,2.76,3.20,2.30,0.71,1.72,0.68,2.55,0.97,3.26,4.28,3.28,2.34,1.77,1.92,0.55,-0.13,0 -2.09,-1.27,1.03,1.00,1.32,1.99,2.40,4.45,4.04,3.53,4.80,2.88,2.62,2.31,-0.02,0.59,-0.89,0.04,0.75,-1.60,0.71,1 -0.39,0.68,-0.05,-0.41,-0.04,0.66,3.03,3.32,3.63,4.37,6.66,5.35,2.21,3.76,1.05,1.41,-0.52,-0.09,0.13,-0.24,0.06,2 --0.12,-0.06,-0.20,-0.39,0.10,0.76,1.17,2.01,1.77,1.81,1.75,4.24,4.11,4.08,5.29,3.32,2.35,2.81,2.15,-0.02,-0.47,2 -0.25,0.85,0.75,-0.15,0.71,1.02,0.79,1.60,0.29,1.78,2.38,3.11,5.39,5.86,4.12,5.31,2.90,2.89,0.96,0.25,-1.62,2 --0.99,2.29,2.27,3.51,2.38,5.62,5.43,4.05,3.25,4.37,1.73,1.37,-1.72,1.89,0.47,0.60,-1.31,-0.24,0.99,-1.95,-0.76,1 -1.49,0.65,0.08,0.11,0.78,0.26,3.59,2.97,4.55,4.56,2.09,2.92,1.03,2.96,2.36,-0.55,-1.18,-0.52,-1.53,0.36,-1.47,1 --0.48,-1.18,2.82,3.01,4.01,4.20,5.55,5.73,3.39,3.01,0.54,0.64,0.19,-0.37,1.20,-0.53,-0.45,-0.07,-0.15,-0.04,0.22,0 -0.19,0.31,1.05,1.82,2.32,2.45,2.39,3.31,2.10,0.05,1.72,1.92,0.86,2.39,1.90,2.13,1.48,1.45,1.02,0.98,0.90,0 -0.32,-0.72,1.43,1.05,0.40,3.13,3.51,4.80,4.07,1.66,5.45,2.84,1.72,2.08,1.70,1.18,0.21,0.16,1.78,1.36,0.12,1 --0.67,0.73,0.21,1.29,0.06,-0.47,0.13,1.00,0.79,2.21,0.93,1.41,2.89,4.73,5.19,5.86,3.33,2.47,2.77,3.18,-0.57,0 -0.18,-1.18,0.70,1.13,1.49,0.78,1.42,1.47,0.61,1.52,2.25,3.82,6.08,2.86,4.41,2.26,3.40,2.90,1.66,-0.92,0.96,0 -0.07,-0.13,-0.67,-0.48,0.70,-0.13,0.34,0.47,-1.18,2.30,2.68,2.19,4.01,3.70,5.38,3.14,2.57,5.24,1.31,-1.35,0.82,2 -0.75,-0.15,-0.64,-1.20,0.85,1.94,-0.19,1.48,0.91,3.82,3.67,3.49,3.51,4.53,5.77,5.23,3.40,1.32,1.10,0.57,0.10,2 --0.43,0.59,0.81,0.20,-0.41,2.42,4.05,4.06,2.75,4.01,3.91,4.81,3.35,1.58,1.64,2.05,0.56,0.59,-0.43,0.66,-1.28,1 -0.64,-0.44,-1.51,2.23,0.40,1.97,2.56,1.60,2.01,2.67,3.94,3.93,3.72,3.22,1.33,5.47,2.18,2.92,1.62,0.73,0.01,2 -0.26,-1.84,0.76,-0.72,0.75,0.81,0.95,0.79,1.84,3.63,2.38,4.39,4.45,4.74,2.49,2.29,1.03,0.52,1.00,1.20,-1.25,2 -0.20,1.42,1.81,2.44,2.91,5.60,8.58,3.11,5.11,3.33,2.90,1.27,0.10,2.26,0.51,-1.56,-0.43,0.15,-0.45,1.52,1.55,1 --0.73,0.27,2.63,1.53,2.54,3.29,6.61,3.36,4.22,2.45,3.64,3.47,0.37,0.47,0.55,0.67,2.70,-1.52,0.19,-1.19,0.25,1 -1.90,0.64,0.11,1.19,-0.27,0.75,0.32,2.29,0.84,1.98,3.46,1.34,5.28,6.53,3.83,2.55,4.55,2.05,2.95,1.33,0.11,2 -0.19,-0.10,3.45,2.91,3.63,3.73,6.02,5.87,2.93,3.90,1.98,1.84,-0.04,-0.84,1.13,-0.46,-0.36,0.27,0.19,0.49,1.13,1 -0.12,0.69,0.19,1.85,3.09,3.45,5.13,3.98,5.00,4.43,4.40,1.24,2.31,0.85,1.92,-0.70,-0.50,-1.54,0.83,-1.42,0.92,1 -0.34,0.86,0.56,0.73,5.02,2.23,5.69,5.40,2.36,3.11,3.37,0.70,0.84,1.52,0.09,0.70,-2.35,0.37,-2.19,-0.26,-0.69,0 -0.68,1.46,1.13,-0.72,1.16,0.61,0.10,2.54,0.42,1.88,2.58,1.68,5.05,3.77,4.43,2.62,2.10,0.46,0.39,-0.07,0.09,2 -1.93,0.10,0.37,-1.67,0.95,2.97,4.25,2.53,2.84,4.14,5.50,5.74,2.45,0.43,1.27,1.90,-0.06,0.96,-1.31,-0.52,-0.35,1 --0.12,-0.87,0.35,-1.12,1.00,0.52,1.76,0.85,2.60,0.45,2.12,3.07,4.08,4.38,4.63,3.95,4.21,2.85,1.90,0.71,0.22,0 --1.73,-1.82,0.79,0.66,-1.15,0.98,1.29,3.38,2.02,3.96,4.68,5.39,2.65,4.16,3.44,1.56,0.76,-0.01,-0.51,2.36,0.03,2 --1.26,0.20,-1.18,-0.56,-0.10,0.61,0.67,1.89,0.67,3.56,3.55,4.55,4.54,2.98,3.46,2.51,1.62,0.50,1.05,0.66,1.29,2 -2.18,0.05,0.60,1.32,2.93,3.09,5.19,3.29,4.20,4.19,0.65,1.19,1.40,1.97,-0.30,-0.30,0.69,0.43,-0.41,1.05,-1.37,1 --0.92,0.57,0.47,-0.06,0.41,1.57,1.45,0.84,-1.44,1.54,2.95,2.78,3.25,3.38,3.57,2.81,2.83,2.38,0.30,-0.27,-0.10,0 -1.20,-0.60,1.13,1.35,1.97,2.51,1.16,1.36,3.45,0.97,1.65,1.93,1.93,0.89,3.59,2.97,3.46,2.03,0.38,-1.60,-0.42,0 --0.19,2.78,2.59,0.05,-0.87,2.44,2.37,-0.17,1.12,2.08,1.03,3.18,4.61,3.78,4.69,2.55,3.51,0.83,3.49,-0.24,1.07,0 -0.61,-0.26,-0.59,2.57,3.64,2.98,3.08,1.78,2.31,1.29,3.07,3.08,2.87,3.65,4.21,1.88,2.71,1.33,1.68,0.26,2.33,0 -0.10,-0.25,1.36,-0.54,1.30,2.98,0.81,-0.12,0.26,0.42,1.68,2.31,3.01,4.56,4.66,4.18,2.99,3.35,1.30,1.35,0.65,0 -1.52,-0.17,2.97,3.25,2.82,2.17,3.02,3.19,1.38,2.95,3.27,4.25,-1.20,2.31,-0.33,1.47,2.83,0.63,-0.38,1.15,-0.22,0 -0.01,0.64,0.20,1.73,0.42,0.08,3.19,5.18,4.08,4.60,5.22,3.12,3.03,1.40,2.09,0.92,1.01,-1.18,1.45,-2.17,-1.11,1 --0.84,0.53,-0.27,2.05,-0.25,2.05,0.72,-0.32,0.66,2.54,2.44,2.84,4.69,4.47,5.37,4.90,3.05,2.73,2.38,1.70,0.17,0 --0.20,-0.21,-0.90,2.42,2.13,2.34,4.94,3.93,6.29,2.84,2.68,2.55,2.16,0.82,0.39,-0.39,0.53,-1.00,-0.34,-0.00,0.77,1 --1.52,-0.29,1.27,1.91,3.25,1.84,1.39,3.13,1.52,2.46,0.57,2.44,1.59,2.63,3.60,3.10,2.74,0.92,0.92,2.02,0.65,0 -0.99,1.59,2.47,3.52,4.13,3.65,5.53,3.60,3.74,3.39,1.94,0.04,1.20,-0.04,0.53,0.68,-0.92,-0.30,1.25,-3.57,-1.40,1 -0.20,-0.27,1.14,-0.07,0.34,2.15,4.19,3.35,2.45,4.21,4.75,5.59,3.09,0.91,2.85,0.12,1.14,-0.47,0.08,0.74,-2.16,1 --1.77,0.16,1.47,1.36,0.86,2.23,4.15,2.13,4.93,5.27,5.52,4.87,3.29,2.65,-0.07,1.49,1.36,-0.56,-0.19,-0.05,1.23,1 -0.80,0.82,0.55,1.70,2.56,5.06,5.51,3.39,2.69,3.97,2.60,1.03,1.04,1.83,2.32,-0.37,1.07,1.65,0.86,1.19,-0.02,0 -1.07,2.60,1.10,2.44,4.18,4.38,5.69,5.21,3.87,1.75,2.90,0.95,-1.28,1.07,-0.75,-0.14,-0.45,0.64,1.57,-0.30,-0.58,1 --1.14,-0.43,1.27,3.12,0.71,2.64,3.66,2.57,5.39,1.47,5.31,3.28,1.68,1.43,0.65,0.34,1.08,0.38,-0.49,-0.11,-0.77,1 -0.67,0.31,0.97,0.44,-0.18,1.90,1.82,1.04,1.75,0.87,1.23,1.90,2.79,4.46,4.99,4.77,3.61,3.15,-0.52,0.73,-1.06,0 -0.13,-0.10,1.05,1.89,2.97,4.03,4.39,3.60,3.02,3.02,1.89,2.12,0.70,2.46,4.28,1.52,1.25,1.00,1.73,0.97,0.06,0 --1.29,1.35,0.94,3.43,2.17,4.17,4.47,3.30,3.36,2.29,2.77,2.54,1.27,1.51,2.43,3.46,2.35,1.07,2.83,0.81,-0.81,0 --0.34,2.88,2.78,2.27,5.14,5.11,5.66,5.12,4.86,3.62,1.90,0.54,1.58,0.26,1.68,-0.38,0.22,1.60,0.80,0.49,0.68,0 --1.04,-1.82,0.86,-1.05,0.82,-0.14,-0.57,-0.62,0.82,1.38,0.55,3.59,4.21,5.47,6.26,4.16,4.95,1.77,0.62,1.59,-0.44,2 --0.61,1.44,-0.37,-0.83,-0.70,0.65,1.67,2.03,4.82,4.02,4.62,3.47,2.91,4.15,4.80,2.60,0.37,1.97,0.47,0.15,0.36,2 -1.97,-1.45,0.27,-0.89,-1.23,2.22,1.22,5.36,3.95,4.99,6.48,6.71,3.50,3.22,2.03,0.79,-0.22,-2.45,-0.14,-1.97,-1.41,1 -0.87,1.22,1.08,2.97,4.44,3.99,3.63,3.68,2.97,3.42,0.59,0.70,0.73,-0.14,-1.62,0.57,0.93,0.43,0.16,-0.36,0.21,0 -1.30,0.79,3.59,3.69,4.51,7.00,5.16,5.90,3.90,2.54,3.62,0.03,1.43,3.14,-1.22,-0.26,-0.44,-1.50,-0.01,1.32,1.58,1 --2.03,0.35,2.13,2.05,0.18,2.64,2.82,3.81,3.14,4.55,4.34,4.46,2.89,2.99,1.33,2.36,0.80,-1.27,0.60,0.59,-2.23,1 --0.76,0.20,2.10,-0.62,0.52,1.52,0.11,1.17,2.60,0.99,2.93,1.09,1.10,4.23,5.37,4.56,3.04,4.12,0.83,0.47,-0.11,0 -1.25,-1.28,-0.32,1.33,0.26,1.29,-0.32,0.60,1.26,3.20,3.78,2.58,4.88,4.81,5.77,1.23,2.48,1.35,0.83,0.34,0.90,2 --1.51,-0.49,0.96,1.64,1.85,4.58,3.75,6.32,3.35,2.71,0.99,0.82,1.24,1.27,0.63,-0.63,0.94,0.01,-0.27,-1.57,0.16,1 --0.18,0.55,0.66,3.21,4.87,3.10,4.92,4.13,4.32,3.68,4.17,0.46,1.23,0.62,0.44,0.52,0.41,1.39,-1.10,0.77,0.49,1 -0.23,1.18,-0.59,2.35,3.50,2.97,3.11,5.61,2.41,2.24,4.26,4.66,1.95,2.56,1.31,-0.53,-0.29,-0.41,1.45,-0.17,0.57,1 --0.18,0.90,0.63,1.32,0.31,0.53,-0.99,1.84,1.03,0.98,2.47,3.92,3.14,6.60,5.75,2.41,4.28,1.32,2.43,2.57,-1.95,0 --0.51,0.06,0.49,1.26,0.73,0.97,1.95,2.03,3.35,4.44,4.86,4.36,2.86,4.40,4.29,3.14,1.20,2.15,1.95,0.21,-0.17,2 -0.43,-0.17,2.38,2.20,2.25,4.71,3.92,5.15,3.00,2.10,0.24,0.88,1.81,0.95,1.96,0.53,-0.20,0.73,-0.08,-0.26,0.67,0 -1.31,0.11,0.21,1.78,0.26,1.52,-0.16,4.10,3.83,4.61,7.09,4.29,3.24,1.80,3.91,1.22,0.73,0.19,-0.63,-0.59,1.74,2 --1.04,0.81,-1.59,-0.58,0.78,0.13,0.82,3.32,1.50,3.34,4.71,5.10,3.56,3.79,1.45,2.75,1.59,1.93,0.36,0.47,0.11,2 -0.93,-2.25,-0.81,-1.34,-0.04,0.34,2.28,2.68,4.29,3.34,7.43,4.76,4.08,3.42,2.01,1.71,0.25,2.81,-0.58,1.90,0.25,2 -0.21,-0.72,1.29,1.99,3.70,3.08,5.50,2.92,2.07,3.10,1.99,1.56,2.72,2.46,0.41,0.54,2.75,1.55,0.46,1.17,-2.21,0 --1.45,-0.12,-0.35,-0.57,-1.08,1.02,-1.39,0.17,0.95,1.04,3.79,3.31,5.43,3.34,5.19,4.91,3.39,2.38,1.84,0.79,-0.06,2 -0.63,-0.98,1.78,-0.73,-0.52,1.96,2.11,2.73,5.03,5.08,6.46,4.31,3.04,2.40,0.90,1.38,-2.17,2.97,-0.32,1.04,-0.40,1 --0.38,0.56,1.39,-2.00,2.68,1.33,1.27,3.62,0.19,0.94,1.63,0.62,3.83,2.97,5.67,4.52,2.64,3.41,1.30,0.39,-0.06,0 -1.02,0.09,0.23,1.63,2.43,1.24,0.45,1.00,0.72,1.39,2.71,2.54,2.45,3.00,4.89,5.14,2.16,2.85,1.22,-0.87,0.76,0 --1.06,1.37,0.03,1.36,0.71,2.87,4.11,3.29,3.98,1.10,1.73,2.57,0.87,1.39,1.21,0.46,1.71,0.03,1.11,-0.09,-0.42,0 -1.23,0.86,-0.18,1.07,2.45,1.53,5.81,4.45,4.36,2.97,5.11,2.55,2.29,0.75,1.31,-0.75,1.99,-0.43,0.31,-0.16,0.69,1 --1.81,1.39,1.51,0.01,1.59,1.13,2.35,0.36,0.56,3.11,2.20,1.80,2.53,1.04,3.68,3.35,1.02,2.19,3.12,-0.57,-1.13,0 -0.45,-0.02,2.11,2.81,4.60,2.59,4.43,1.62,2.42,4.34,2.50,2.57,0.69,1.99,0.82,2.05,1.71,-0.14,1.50,0.58,0.14,0 -3.12,0.88,2.40,2.47,3.71,3.94,3.41,2.60,1.46,0.07,1.52,1.85,2.24,2.26,0.66,1.24,2.07,-1.03,0.57,-0.40,-0.72,0 -0.85,1.09,0.73,-0.37,-0.77,0.41,-0.48,0.78,0.74,2.62,3.41,3.74,3.62,6.29,5.12,5.60,4.03,2.49,0.50,1.21,0.62,0 -0.21,0.49,0.21,3.13,1.53,2.73,6.78,5.59,5.57,3.10,3.79,1.53,2.38,-0.12,0.94,-0.66,0.60,1.69,1.40,0.88,-0.99,1 --1.62,0.68,1.20,-0.74,0.49,1.24,1.79,0.53,-0.61,2.00,2.66,4.24,2.43,3.79,5.17,4.44,4.51,3.09,2.41,1.62,-0.44,0 -0.74,-0.91,0.78,0.24,0.09,0.57,2.84,3.30,3.41,5.42,6.83,4.31,4.90,3.28,3.55,0.13,0.42,-1.68,0.53,-0.45,-1.07,2 -0.29,0.31,-0.31,-0.50,0.02,1.58,0.80,0.49,4.47,2.81,4.30,3.42,3.29,4.42,3.66,3.47,3.21,2.74,0.46,1.49,1.32,2 --0.02,-0.12,0.80,0.25,1.81,0.02,1.17,2.90,1.92,2.16,6.04,7.24,2.55,0.44,3.14,-0.27,1.49,2.64,3.37,0.35,0.13,2 -1.40,0.86,0.27,1.91,2.48,5.17,5.10,4.46,4.33,2.65,3.28,3.34,0.40,1.07,-0.39,0.31,1.08,0.56,-0.62,2.49,-0.91,0 -0.25,0.93,2.91,3.28,1.66,1.75,2.19,2.24,2.46,2.04,1.90,1.40,2.06,2.34,2.88,4.74,1.52,2.09,0.45,1.41,1.16,0 --0.86,-0.59,1.96,0.26,1.55,2.10,2.05,1.08,3.26,2.12,2.77,1.56,1.93,1.78,5.16,2.02,2.57,1.91,0.14,0.32,-1.20,0 -0.60,0.91,0.91,0.88,0.79,3.36,4.26,2.56,3.38,2.42,2.07,2.49,1.28,1.07,0.66,1.87,1.07,0.28,-1.66,-0.43,-0.66,0 --0.50,0.07,-0.74,0.94,0.44,1.54,2.56,3.81,3.28,3.49,6.08,5.90,3.18,2.58,4.08,2.33,1.58,-0.53,-0.41,0.21,1.26,2 -0.88,-0.55,-0.89,1.06,-1.40,-0.50,4.47,0.57,2.05,5.45,2.68,4.43,3.36,2.63,2.74,2.43,0.72,1.14,0.93,0.38,-0.84,2 -1.24,0.92,0.54,1.86,1.63,2.06,1.91,1.17,1.15,1.77,2.77,0.96,3.64,2.31,1.79,1.69,2.54,0.52,-1.22,-1.09,0.34,0 -0.39,1.02,2.81,0.78,3.38,3.38,6.08,3.22,5.34,4.99,2.82,5.37,1.02,1.17,0.95,0.03,-1.02,-2.01,0.26,-0.43,1.36,1 -1.21,0.72,-0.30,-0.67,0.54,0.48,0.04,1.13,-1.83,0.08,1.34,2.96,2.79,4.68,6.28,4.98,3.32,2.41,0.12,2.28,-0.20,0 --1.35,0.98,0.74,3.33,2.65,0.58,3.69,3.80,1.65,3.15,0.62,2.73,0.20,4.66,2.91,2.73,1.36,0.44,0.36,3.31,0.05,0 --0.03,1.51,1.33,-0.08,-1.20,0.91,2.16,3.48,4.21,4.40,6.02,5.73,4.52,4.24,0.63,-0.70,-0.90,-0.06,0.15,-0.89,1.09,2 -0.29,0.86,-0.57,1.09,-1.02,0.80,1.89,2.84,1.56,4.02,3.32,4.44,4.41,5.89,3.52,2.68,1.49,-0.23,0.08,-0.29,0.18,2 -1.25,0.48,2.90,2.12,3.38,5.43,6.42,6.34,4.58,1.81,1.33,0.57,-0.59,0.74,0.16,-1.42,-0.40,0.78,-0.81,-0.84,0.39,0 -0.75,-0.14,0.17,2.55,-0.33,2.69,2.28,3.69,3.27,5.19,5.84,3.62,2.14,4.31,0.74,-0.26,-1.14,-0.38,0.54,0.68,0.80,1 --1.35,-0.34,-0.08,1.61,0.32,2.79,4.60,2.64,0.95,1.40,1.51,1.69,1.42,2.30,3.78,4.13,0.96,0.74,1.02,1.60,0.34,0 -2.09,-0.24,0.24,-1.01,-1.74,2.75,0.89,0.37,2.97,0.78,2.36,3.66,4.14,4.34,3.36,3.26,2.33,0.41,0.48,1.84,0.45,2 -1.39,0.36,-0.62,0.52,-0.09,-0.19,0.18,-0.24,-0.67,0.55,3.20,3.21,3.99,6.15,5.53,5.97,5.63,2.71,1.52,1.18,0.25,0 -1.06,1.48,2.27,3.91,2.37,3.66,5.44,3.24,3.10,2.07,2.51,1.77,0.89,-1.25,0.21,1.71,-0.55,0.93,0.99,1.57,0.48,0 --0.97,-0.69,2.90,1.28,-0.28,3.38,3.69,5.74,5.61,2.80,3.19,2.74,0.25,1.17,-0.23,0.17,0.62,-1.60,-1.05,0.34,1.22,1 -2.00,-0.73,-0.26,0.62,-1.50,0.05,0.97,1.55,3.19,4.47,4.10,5.12,3.70,4.31,3.85,0.75,2.87,0.10,-0.42,-1.20,-0.79,2 --0.04,-0.52,-0.81,1.88,0.55,1.05,1.41,1.80,4.53,4.21,6.10,4.30,4.46,2.94,1.93,2.75,0.71,1.03,0.29,-0.06,-0.63,2 -0.73,0.00,0.28,2.70,2.47,1.18,3.61,1.26,1.71,1.43,2.28,1.72,2.23,2.50,4.91,3.57,3.09,2.22,1.35,0.50,0.58,0 --0.13,1.19,0.11,1.43,1.21,0.39,-0.36,2.10,2.66,2.32,4.95,4.66,3.97,3.01,2.64,1.99,1.49,-0.19,0.43,-1.18,1.69,2 --0.85,-0.23,0.61,-0.30,1.87,1.77,1.13,2.84,5.05,3.17,5.14,3.77,3.93,1.75,2.27,1.27,-0.76,0.57,-0.91,-1.15,-0.24,1 -1.59,0.77,-0.04,1.64,1.66,2.88,1.48,1.56,1.66,3.68,2.47,1.98,0.54,2.48,2.84,1.80,2.75,1.26,0.97,0.94,-0.42,0 -0.13,-0.65,0.43,-0.55,0.07,-0.29,1.58,2.11,3.08,3.90,3.87,5.56,5.02,5.97,2.79,4.51,3.22,0.57,1.44,0.02,-0.57,2 -1.34,0.42,0.02,0.01,1.12,2.10,1.70,3.11,2.27,3.41,3.73,5.24,4.54,2.33,3.39,2.68,1.53,-0.33,2.78,-0.34,-1.26,2 --1.25,0.91,-0.72,-1.30,-0.39,1.72,1.96,2.67,2.59,3.76,4.48,5.11,4.52,4.70,2.29,1.26,1.60,0.41,-0.63,-2.24,0.42,2 -0.31,1.08,1.00,0.18,1.65,1.03,4.96,2.56,2.98,3.36,3.08,3.03,2.44,2.16,0.74,1.47,0.30,-0.61,-1.70,1.39,-1.44,1 -0.06,0.23,0.40,3.62,2.49,2.16,3.89,3.28,4.06,5.30,3.90,2.77,1.63,1.66,1.68,0.27,1.14,-1.43,-1.14,0.31,-0.54,1 -0.15,0.61,0.70,0.92,1.60,3.40,2.63,3.69,3.24,1.26,2.51,1.66,0.96,2.12,2.32,2.07,-0.93,1.80,1.88,0.66,0.37,0 --0.33,1.08,0.94,3.93,2.55,3.24,5.29,3.75,4.01,2.02,3.23,4.66,0.76,1.31,0.54,0.23,-0.49,-0.43,1.42,0.17,-0.51,1 -0.44,2.99,-0.23,-1.20,-0.39,1.65,0.42,1.69,1.60,0.99,1.91,2.00,3.00,3.91,5.24,5.05,4.11,1.55,0.28,-0.16,-0.24,0 --2.10,-0.47,-1.80,0.89,2.05,3.91,3.89,3.78,3.00,2.65,0.65,1.71,4.46,2.05,1.59,1.22,1.94,-0.14,0.03,-2.50,0.04,0 --0.69,-0.85,0.39,-0.19,2.52,2.35,1.22,2.23,1.90,2.63,0.23,-0.29,3.35,2.18,3.57,3.66,2.19,2.26,0.45,-0.22,-0.64,0 --0.24,0.20,0.78,-0.36,2.55,4.19,3.76,5.49,3.21,3.67,5.29,2.86,1.87,1.23,-0.15,1.04,0.90,-0.03,-0.55,0.15,0.70,1 -0.31,0.66,2.88,0.33,1.47,0.66,0.41,2.68,4.57,6.77,5.97,4.51,4.16,1.94,1.97,2.03,0.26,0.62,-0.61,-1.45,0.42,2 --0.59,-0.13,2.04,4.06,4.91,4.62,5.41,2.27,3.87,2.13,1.12,0.44,-0.75,1.23,-0.04,1.09,-2.23,-0.75,0.79,-1.50,-1.17,0 --0.83,-0.15,-1.73,2.20,0.96,0.48,1.47,0.74,0.72,0.82,1.85,2.22,1.45,4.63,5.14,3.68,2.66,3.09,2.05,0.12,0.78,0 -1.31,-0.75,1.00,3.17,4.19,3.78,4.24,3.86,3.46,3.16,1.04,1.27,2.24,1.14,1.86,0.90,-0.39,0.48,-0.16,-0.06,0.36,0 --1.15,1.02,-0.16,0.22,0.43,2.02,4.23,3.60,2.87,3.46,5.26,4.15,5.50,1.33,2.10,-0.33,-0.51,1.20,0.35,-0.29,2.18,1 --1.10,2.06,1.04,1.33,-0.44,0.42,1.75,1.94,2.61,4.72,3.86,6.89,3.46,4.22,1.34,2.02,0.69,0.08,-0.66,-1.68,0.35,2 -0.17,-0.87,-1.65,2.41,1.87,2.17,4.19,1.94,2.65,2.90,1.72,2.23,2.32,1.92,3.75,2.80,1.17,2.42,2.56,1.45,-0.94,0 -0.84,-0.74,0.58,3.06,-0.59,4.18,2.34,2.65,4.08,5.24,2.87,4.20,3.62,2.03,0.66,2.32,1.92,1.34,0.47,0.91,0.17,1 -0.78,-0.36,1.15,-1.36,2.50,2.40,1.45,1.74,0.94,2.72,2.81,1.44,2.69,4.53,5.03,2.03,2.60,1.57,0.70,-0.85,0.77,0 -0.09,-0.79,-0.39,-0.67,-0.26,-0.12,1.26,2.58,1.82,5.44,6.08,4.33,4.65,3.28,3.92,0.12,-1.45,1.80,0.12,1.98,0.90,2 -0.14,2.03,3.50,1.54,1.99,5.96,5.52,3.83,4.22,2.82,1.00,1.16,2.96,-0.97,-0.21,2.07,0.92,1.15,2.82,-1.00,1.15,1 --0.28,0.41,1.34,1.15,-0.02,0.11,3.12,3.41,4.46,4.87,5.86,5.02,4.55,1.77,3.17,2.41,1.49,1.47,-0.25,-1.12,-2.04,2 -0.26,0.88,1.71,1.41,1.88,2.96,5.49,3.08,3.81,3.36,2.45,0.77,0.89,-0.78,1.53,0.55,-0.85,-1.91,-1.52,0.24,-0.57,1 -0.02,-1.18,1.27,0.62,0.75,4.48,4.87,3.71,5.01,6.00,3.84,3.07,2.10,3.32,1.14,0.33,-0.43,-0.90,0.12,0.53,0.20,1 -0.11,0.96,1.36,1.54,3.96,4.33,6.03,7.57,4.18,2.91,2.01,0.98,-0.01,-0.19,-0.42,-0.61,1.63,1.79,1.37,-0.44,-0.53,0 --1.72,1.03,1.46,2.39,2.01,1.97,3.78,2.54,1.31,2.22,2.98,-0.68,2.16,2.51,2.42,2.34,1.29,1.46,0.69,-0.20,-1.25,0 --1.90,0.58,1.50,1.82,1.97,3.38,3.88,3.42,4.49,4.63,4.08,5.34,1.99,2.35,1.10,0.87,-0.64,1.20,-0.16,-0.81,0.38,1 -0.53,-0.72,0.55,0.60,2.63,3.94,4.53,4.63,3.55,2.86,1.76,3.90,1.65,2.14,2.57,1.88,1.11,0.95,0.11,-1.33,0.18,0 -0.78,1.18,2.21,2.42,4.08,4.90,3.43,4.33,1.47,3.40,1.63,1.65,1.33,2.50,0.55,1.47,1.13,-0.35,-1.15,0.37,0.34,0 --0.44,1.09,-1.21,-1.52,0.21,0.35,2.46,0.86,4.01,3.55,5.91,5.18,5.58,5.07,1.75,1.78,2.74,-1.10,1.06,0.26,0.19,2 -1.96,0.83,-0.85,-1.89,0.06,0.46,1.04,1.88,-0.47,0.70,2.00,3.02,3.90,4.77,5.13,3.60,3.25,1.64,4.34,1.34,0.08,2 --1.79,-1.85,1.45,2.03,-0.41,2.24,-0.19,0.12,0.81,2.55,1.38,3.23,4.32,5.58,5.81,2.68,4.35,0.93,1.07,0.73,-0.06,0 -1.29,-0.91,1.93,1.58,-0.68,1.56,3.50,1.01,0.82,3.22,2.10,4.55,2.43,5.27,5.74,2.56,3.21,1.22,0.77,0.11,0.54,0 -1.11,0.09,1.49,0.76,1.70,4.86,3.36,4.11,1.83,1.75,1.85,1.80,1.33,2.99,0.07,1.99,0.69,2.47,0.97,1.30,1.57,0 -1.31,-1.72,2.44,-0.50,-1.88,0.32,3.32,1.45,2.73,2.50,4.11,4.59,4.85,4.39,3.16,2.23,-1.07,2.12,-0.31,1.37,0.42,2 -0.26,-0.74,1.38,1.58,1.94,-0.31,-1.08,-0.47,-0.13,0.86,2.09,3.04,2.71,4.34,2.86,4.18,1.56,2.41,1.42,1.66,0.30,2 --2.28,0.82,0.77,-0.13,0.51,0.21,-0.97,0.76,1.42,2.01,3.60,2.69,4.71,4.10,5.61,4.19,4.27,2.95,-0.04,3.18,-1.13,2 -0.73,-0.61,-0.13,-1.10,1.26,-0.64,2.26,0.34,2.53,0.47,4.17,4.27,3.08,4.70,5.00,2.29,1.31,1.95,2.10,1.67,-2.92,2 --0.36,1.25,-0.43,0.20,-1.99,-0.03,3.10,4.34,3.40,5.97,4.57,4.53,5.26,3.98,1.79,-0.03,0.37,0.88,-0.69,-0.07,-0.38,1 --0.32,1.17,0.90,-1.01,-0.42,0.11,0.78,0.94,2.69,1.27,3.50,1.60,2.90,3.68,4.36,2.94,3.53,2.84,1.22,1.19,-1.71,0 -0.14,-0.50,0.05,1.45,1.35,1.71,5.54,3.81,3.49,3.66,4.09,3.72,1.83,0.32,2.12,0.01,1.24,0.08,1.06,0.92,-0.21,1 --1.79,0.48,1.36,0.30,0.74,3.09,3.04,2.02,1.34,5.97,5.30,3.62,3.85,1.81,1.13,0.05,0.28,-1.40,0.66,0.09,0.47,1 -1.53,0.67,2.77,3.21,1.27,3.63,6.02,4.31,5.54,2.33,3.49,0.91,0.94,1.51,-0.17,1.40,1.30,-0.20,1.94,-0.26,-0.19,1 -1.08,-0.64,1.04,1.70,0.36,0.26,0.27,1.48,-0.08,1.99,3.06,2.18,4.36,5.01,5.53,5.62,2.56,1.09,3.39,-0.18,0.11,0 -0.41,1.67,2.27,0.94,3.31,2.04,3.40,3.17,0.80,2.85,1.90,2.27,0.31,0.59,3.02,1.58,3.37,0.23,1.16,0.83,-0.45,0 -0.63,-1.47,0.43,1.15,-1.40,0.99,-1.68,0.55,-0.80,1.28,2.54,3.46,4.52,3.74,7.10,5.16,3.36,4.69,2.00,3.15,-0.09,2 --0.88,-1.07,1.24,1.17,2.37,0.61,2.68,1.89,0.31,2.07,1.40,4.02,1.53,3.57,3.52,1.46,2.46,0.86,1.96,0.42,0.02,0 --0.68,1.71,1.78,0.29,1.48,0.40,1.62,2.03,2.23,1.22,0.23,2.77,2.01,3.65,5.47,2.15,3.28,1.55,-1.16,1.19,1.02,0 --0.96,1.18,0.81,0.82,-0.09,1.20,0.18,1.71,3.69,3.52,5.04,4.56,2.97,2.43,4.43,3.37,-0.37,0.57,2.92,-1.00,-1.17,2 --0.63,0.73,2.38,1.13,1.63,2.60,4.77,2.56,1.90,2.03,2.98,0.71,1.40,1.82,2.40,1.66,1.31,0.20,-1.03,-0.01,-0.46,0 --0.28,0.43,-1.54,-1.71,0.04,-0.39,-0.67,1.57,3.80,5.03,3.28,3.43,4.26,2.05,2.71,1.88,0.93,3.39,0.05,-2.41,-0.84,2 --0.96,-0.30,2.95,3.07,3.57,3.37,4.21,5.35,4.32,4.36,4.10,2.04,0.48,0.45,1.50,0.45,1.46,1.00,-0.49,1.19,-0.05,0 --1.02,1.49,0.25,1.53,0.16,2.10,3.08,3.44,4.21,4.80,3.47,3.62,2.42,1.52,0.11,0.70,0.33,-0.79,0.60,-0.05,2.00,1 -0.34,1.33,-0.67,1.48,2.84,2.90,5.38,2.77,2.64,1.21,2.48,1.92,3.17,1.35,3.36,1.46,2.37,0.55,1.03,1.90,-0.22,0 -0.39,1.54,0.56,1.62,0.35,0.96,1.25,2.34,2.23,0.94,3.20,2.10,3.74,3.91,5.50,2.52,1.55,1.88,2.20,0.58,-1.92,2 -0.41,-0.37,1.47,-0.43,-2.03,1.65,0.28,2.67,0.89,2.35,5.06,3.74,3.56,5.56,5.96,2.90,2.91,0.84,1.21,1.30,-0.18,2 --1.96,0.95,-0.75,-0.87,1.41,2.44,3.67,2.43,3.07,4.80,3.97,2.76,4.49,3.12,2.29,0.10,1.75,-1.54,-0.77,1.57,-0.64,1 --2.36,2.47,3.31,-0.18,3.52,3.01,3.38,4.74,3.72,5.34,2.99,3.35,-0.80,1.91,0.66,0.53,0.16,1.53,-1.08,0.07,-0.04,1 --0.30,-1.23,1.23,1.81,2.10,2.74,5.86,4.43,2.40,3.68,3.97,2.87,1.02,0.58,1.62,-0.72,-0.01,0.15,-0.55,-0.43,0.56,1 --0.21,0.11,0.66,0.08,-1.51,0.32,0.82,0.60,-0.55,0.87,1.89,2.12,2.72,4.96,5.37,5.86,4.39,3.72,0.87,1.61,-0.85,0 --1.92,-1.45,0.23,0.32,0.24,1.16,0.89,0.84,1.70,0.55,1.53,3.32,4.20,4.87,6.08,6.12,5.23,2.43,2.66,0.12,1.25,2 --0.12,-0.42,0.05,1.01,-1.16,2.51,1.95,2.42,4.78,6.56,7.24,5.60,4.71,3.71,1.80,0.76,1.36,0.27,2.11,0.57,-0.75,2 --0.03,-0.11,1.50,0.90,-0.92,0.60,0.27,0.10,0.63,4.30,3.73,2.52,4.64,4.88,5.77,3.51,4.47,1.56,2.11,0.43,0.49,2 -1.69,-0.17,-0.30,-0.10,0.52,0.78,2.18,2.45,1.71,5.15,5.76,4.23,4.63,2.15,3.30,0.94,-0.14,0.48,-0.77,2.19,-0.43,2 --0.46,2.32,0.88,0.12,-0.93,1.94,-0.82,0.70,1.62,0.90,2.10,1.04,4.43,5.60,5.05,2.13,2.49,2.75,2.08,-0.00,0.01,2 --1.13,0.83,0.33,2.25,2.38,4.27,4.50,5.86,6.32,1.99,4.79,1.05,-1.35,-0.34,0.80,1.33,-0.48,0.45,-1.15,-1.71,0.03,0 --0.31,-0.48,-0.87,-0.77,-2.04,0.21,-0.44,0.73,0.60,0.53,1.79,3.07,3.70,2.85,4.29,4.11,2.81,2.04,1.20,-0.73,-0.43,2 -0.56,1.26,0.45,1.04,0.54,4.16,4.66,3.93,3.92,3.60,2.69,0.96,1.70,2.13,1.94,0.58,-0.17,0.94,-0.30,0.52,-1.74,1 --0.33,1.02,1.98,2.27,2.04,6.35,5.52,4.14,4.48,3.71,2.37,0.08,-0.78,-1.97,-2.11,1.84,1.27,0.21,-0.79,-0.77,0.29,0 -1.16,1.25,2.86,2.44,2.86,3.44,6.67,5.90,3.62,3.03,2.91,1.94,1.23,-1.66,-0.36,1.32,0.37,-3.07,0.50,1.99,0.75,1 --0.96,-1.13,1.22,2.24,1.92,2.75,3.72,2.60,4.66,5.18,4.83,4.17,3.49,3.02,0.23,0.32,1.38,-1.01,1.61,0.43,1.31,1 -0.77,0.30,0.48,3.89,1.83,1.89,3.18,3.02,2.88,3.33,6.07,4.07,4.14,0.54,0.91,0.83,0.35,-0.25,-1.09,-0.09,1.91,1 -0.94,0.16,2.82,2.97,1.58,2.24,4.31,2.88,1.19,1.51,0.74,1.09,1.82,0.47,1.29,1.60,-0.39,-0.02,-0.61,-0.11,0.19,0 --0.14,-0.07,1.00,2.02,2.39,4.32,3.85,3.29,2.23,4.66,5.88,1.75,3.24,-0.65,-1.25,0.06,0.06,0.30,-0.65,1.16,-0.10,1 --1.45,-0.27,0.67,0.11,3.02,4.28,3.32,4.19,3.68,4.31,3.35,2.97,1.23,1.04,2.42,-0.63,-0.75,-0.32,-0.25,-0.60,0.34,1 --0.65,0.99,0.14,4.50,3.90,3.60,4.66,5.61,3.41,3.77,3.33,0.79,2.90,-0.59,-0.89,-1.83,1.07,1.76,-0.76,1.10,0.70,1 -0.48,1.51,0.27,4.10,4.28,5.47,5.97,6.16,3.34,3.29,1.67,0.76,1.19,-0.99,1.27,-1.10,-1.80,0.48,-0.32,-0.47,-0.19,1 --0.61,0.09,0.58,-0.28,0.93,1.13,3.63,2.21,4.65,5.86,7.16,3.77,4.44,0.56,2.42,1.63,0.07,0.06,-0.39,-0.21,0.94,1 --0.06,0.54,0.06,3.88,1.59,3.53,4.35,5.62,4.14,3.40,3.33,2.53,2.66,1.38,1.37,-0.25,-0.94,-0.45,-0.53,-0.22,1.73,1 -1.28,-0.27,0.69,-0.69,-0.46,-0.26,2.52,1.19,0.09,1.50,1.58,4.83,2.59,3.93,5.06,4.98,2.58,3.86,3.35,0.62,-0.22,2 -1.20,-0.50,3.34,3.58,4.29,4.58,5.11,4.22,3.25,1.97,0.80,2.14,1.68,1.48,1.49,-0.44,0.24,0.43,0.75,-0.57,-0.07,0 --1.09,0.23,1.76,2.52,3.34,4.23,7.85,3.02,2.13,3.44,1.64,0.76,-1.04,0.45,1.18,1.39,1.18,0.06,0.83,-0.41,1.67,0 -0.32,-0.22,0.27,0.41,0.77,2.08,1.44,-0.09,1.77,1.74,4.46,1.09,3.01,4.35,4.24,2.59,3.42,1.54,1.87,1.47,-0.44,0 --1.20,-1.50,-0.21,0.63,-1.02,-0.13,3.06,2.88,2.73,3.12,7.77,3.47,3.78,3.40,3.36,1.34,1.98,1.44,-0.01,-0.31,-0.86,2 --1.36,-1.56,0.73,0.78,1.30,-1.05,2.00,-0.16,1.30,2.61,2.69,2.92,4.87,4.99,4.37,4.26,3.18,2.52,3.08,0.59,0.67,0 -0.07,1.00,2.48,2.20,2.34,4.65,5.49,6.71,5.86,2.46,5.44,2.73,2.09,-0.29,2.31,0.73,1.85,0.49,0.87,-0.95,-0.41,1 --0.21,0.80,0.97,1.69,3.50,3.71,6.79,6.50,4.38,2.66,3.20,1.68,0.46,0.72,-1.12,0.72,0.15,-1.49,1.15,-1.77,0.33,1 -1.30,-0.27,1.90,-0.41,3.19,0.58,1.43,1.98,2.34,2.78,1.35,2.58,3.54,2.61,3.00,3.14,1.81,2.53,1.11,0.00,2.48,0 -1.01,-0.47,-1.45,-1.51,-0.11,0.61,0.19,2.03,2.35,3.79,5.10,4.23,4.72,3.72,2.38,3.21,1.34,-0.26,1.10,0.74,-1.49,2 --1.59,-0.43,-1.02,-0.53,-1.36,2.24,1.99,1.81,3.82,5.25,6.05,1.19,4.01,4.21,2.65,2.79,-1.40,0.36,-1.05,0.73,1.26,2 --0.59,0.71,1.48,2.02,1.65,3.87,4.90,1.24,4.47,3.93,3.85,1.34,1.78,1.46,2.93,2.09,0.57,-0.53,1.31,0.08,0.21,0 -1.04,-0.41,-2.07,0.87,1.94,-0.20,-1.33,-0.59,-0.90,-0.54,2.62,2.44,4.43,3.85,6.43,4.55,4.38,2.90,1.68,-1.64,1.16,2 -1.30,2.26,-0.28,-0.59,0.52,2.24,0.72,3.02,1.88,2.07,1.26,1.55,3.88,4.54,6.19,4.80,3.61,2.76,1.35,1.84,1.62,0 -0.85,0.43,1.92,4.88,2.01,2.39,4.94,3.77,2.35,2.72,0.76,1.18,3.84,3.01,1.17,2.39,2.94,0.11,1.03,1.57,0.38,0 -0.11,0.58,-0.02,0.92,-2.20,-1.82,1.18,0.66,-0.28,0.70,2.28,1.84,2.21,3.85,6.54,5.03,4.59,2.17,1.00,2.20,-0.86,0 -0.73,0.99,1.67,3.42,0.88,3.68,3.95,3.95,4.15,4.77,5.21,1.05,1.75,1.63,1.40,0.65,0.68,0.69,1.01,0.29,1.03,1 -0.91,-1.12,0.57,0.56,-1.52,-0.98,3.59,3.37,2.56,4.20,4.43,4.65,4.13,3.08,3.10,1.29,0.51,-0.20,-0.29,1.40,-1.58,2 -1.19,-0.64,1.03,-3.84,-0.32,0.55,0.75,3.76,3.23,3.72,4.78,6.18,2.06,3.16,3.66,2.71,1.02,1.26,0.36,0.49,-1.27,2 --0.33,-0.83,0.61,-1.35,-0.00,2.08,2.16,0.35,2.36,2.27,5.12,4.89,3.54,3.51,3.97,2.36,1.81,0.60,-0.24,0.91,0.46,2 --1.80,2.71,1.93,1.42,1.26,4.31,3.01,4.69,3.41,1.23,2.35,1.59,1.70,2.91,0.76,-0.51,-1.40,-0.52,-0.05,-0.96,-0.12,1 -0.35,0.26,1.19,0.20,2.01,5.15,3.90,1.56,2.15,1.79,2.02,2.53,0.88,3.00,0.48,3.22,-0.49,1.65,0.07,-1.01,-0.11,0 --1.16,-1.11,0.11,-1.09,0.94,1.25,1.37,1.67,4.82,3.88,4.33,6.84,3.29,2.91,3.50,0.82,-0.00,0.40,-0.04,-1.73,-0.06,2 -0.32,1.06,0.30,-1.71,1.41,-0.56,1.94,1.40,1.45,4.67,5.08,4.45,3.07,3.88,2.55,2.11,1.63,0.66,0.82,0.90,0.79,2 --0.48,0.18,0.63,2.55,0.50,1.05,-0.59,-0.15,0.30,1.79,3.25,3.10,1.03,3.23,3.75,5.39,3.93,3.79,-0.71,-0.23,-0.56,0 -1.00,0.02,0.21,0.38,-0.46,1.64,1.11,1.14,2.88,3.26,3.40,3.25,5.63,4.96,6.37,5.25,1.26,3.57,3.14,1.73,-0.50,2 --0.96,-1.81,-0.44,0.05,1.55,0.90,0.27,1.53,1.99,1.21,1.46,4.28,4.93,6.46,4.21,4.68,1.53,0.99,0.88,0.63,0.72,0 -0.50,-1.82,-1.30,-1.30,0.68,-1.85,1.55,-0.04,1.85,3.88,2.31,3.06,2.61,4.20,3.85,5.19,1.77,1.16,3.02,-0.44,-1.33,2 -0.36,0.21,0.59,1.11,3.24,2.40,5.03,2.72,4.92,4.62,2.56,1.96,3.04,2.55,0.52,0.84,-0.25,-0.45,-0.20,-1.68,-2.00,1 --0.52,-0.27,3.25,2.87,3.16,4.23,3.83,2.43,3.69,4.34,2.35,-0.05,0.14,-0.56,2.71,0.42,1.35,0.76,1.47,1.04,-0.47,0 -1.09,2.36,2.20,2.10,3.34,5.45,6.70,3.96,4.29,5.11,2.14,1.11,-0.06,0.65,0.51,-1.81,0.79,1.90,0.67,0.28,1.17,1 -0.58,0.27,0.60,1.17,2.97,2.45,4.31,4.26,2.39,2.41,0.11,2.74,0.38,1.56,1.06,0.89,0.11,-0.58,-0.04,-1.36,-1.07,0 -0.11,0.97,-0.48,1.90,-1.16,0.98,0.29,2.48,3.78,3.17,5.03,5.01,2.23,3.48,2.76,3.47,1.64,1.82,1.46,3.19,-1.59,2 --0.24,1.19,-0.95,2.03,1.78,3.09,3.58,3.26,1.18,2.99,2.59,1.96,1.32,3.89,3.45,4.93,2.38,0.44,1.67,0.40,0.20,0 --0.65,-1.24,3.02,3.36,5.01,4.07,5.02,4.26,4.30,3.26,3.44,1.56,1.37,-0.05,-0.84,1.52,2.88,-0.72,0.66,-1.25,0.86,0 --0.74,0.45,-0.60,-1.24,-0.86,3.34,3.60,4.11,4.93,6.63,5.01,5.93,4.12,3.09,2.96,0.66,-1.01,-0.56,0.20,-2.16,1.49,1 --0.56,-0.64,0.97,-1.24,0.23,1.82,4.03,4.10,2.71,4.80,5.10,4.23,1.64,2.83,0.24,1.99,0.97,-1.75,-1.09,-2.01,-0.43,1 --1.07,1.22,0.02,0.34,0.00,0.30,1.61,1.06,1.98,3.11,4.97,3.64,4.34,3.98,3.89,3.49,1.67,1.48,-0.14,1.71,-1.38,2 --1.30,1.25,-0.39,0.99,1.40,0.60,1.95,0.80,1.96,2.54,4.26,1.84,3.79,2.72,3.62,2.52,2.74,2.03,2.38,-0.03,-2.00,0 -0.24,0.10,1.84,1.61,2.22,4.42,5.29,1.94,3.81,3.88,3.71,3.14,1.93,1.71,0.34,0.53,0.55,1.05,0.59,-0.19,0.65,1 -0.86,-0.62,2.72,1.51,1.75,4.98,5.35,4.88,4.27,4.97,1.94,0.87,0.29,-0.97,1.10,0.27,1.85,0.23,1.35,0.56,-0.04,1 --0.41,1.12,0.81,-1.26,0.08,0.74,2.03,1.56,2.08,4.22,3.49,3.24,3.73,4.22,1.99,2.31,1.12,-1.05,1.11,0.45,0.23,2 --1.38,-0.17,-0.06,0.34,-0.66,0.59,1.84,2.23,4.46,5.68,4.90,5.29,2.83,3.64,1.90,0.77,0.35,1.88,-0.39,0.39,-1.19,2 --0.51,1.46,1.67,2.68,2.69,3.25,5.29,5.55,3.36,3.16,3.23,3.54,3.97,2.23,-0.34,0.40,-0.94,0.44,-2.23,0.57,0.60,1 --0.24,-0.13,0.74,1.45,0.94,2.40,3.22,4.51,3.17,3.48,3.58,2.52,1.31,1.37,1.48,1.28,-1.11,0.81,0.43,-1.24,1.04,1 -0.60,2.89,1.50,2.90,4.75,5.62,5.16,5.83,3.92,3.48,3.24,0.66,0.35,-1.65,1.57,-0.39,1.98,-0.37,1.06,0.60,-1.37,1 -0.99,0.62,1.15,1.23,1.73,1.77,0.87,0.16,1.27,1.07,2.62,3.63,1.28,5.20,4.52,4.02,2.16,2.53,0.01,1.45,1.10,0 -0.13,-0.54,-0.77,0.01,1.80,1.97,4.72,4.41,3.52,3.68,6.29,2.32,1.90,3.42,0.96,-0.15,-1.24,1.31,1.10,-0.14,-0.58,1 -1.31,-0.28,2.08,1.26,1.77,-1.00,1.42,1.74,3.88,2.30,2.79,3.86,4.18,3.58,1.49,0.92,1.97,1.26,0.59,-0.22,-0.05,2 --1.19,1.14,-0.00,1.74,1.83,2.31,4.76,3.29,3.51,0.31,2.93,2.67,2.50,2.98,1.82,2.31,3.97,3.09,1.59,3.43,0.04,0 -0.94,-0.91,1.87,3.83,3.65,3.29,2.79,1.69,0.17,3.01,2.36,1.51,2.50,0.70,2.62,0.02,0.83,1.39,1.43,0.48,0.43,0 --1.62,-0.31,1.12,1.62,1.95,1.47,1.70,4.58,5.21,2.33,5.38,3.80,4.88,1.15,0.40,0.63,0.04,-0.59,1.40,0.22,0.31,1 --0.78,-1.16,-0.37,0.51,0.10,-0.02,0.42,0.19,0.37,2.29,2.51,3.16,5.02,3.50,5.77,4.56,3.10,3.56,0.67,1.73,0.58,2 --0.27,0.18,0.42,0.68,-1.14,2.11,-0.45,1.61,1.60,2.73,2.36,3.58,3.93,3.99,6.44,5.14,3.34,1.55,2.22,2.23,-1.30,2 --1.08,1.59,0.91,2.95,5.01,5.42,4.79,5.32,3.07,1.35,1.89,1.85,-0.61,2.12,-1.07,2.20,1.31,1.24,0.66,0.86,0.47,0 -0.24,-1.09,-1.92,1.28,0.71,1.23,0.31,0.08,2.02,2.91,4.53,3.40,3.22,4.70,3.69,3.57,1.20,0.51,1.32,1.48,0.15,2 --1.85,-1.65,0.15,-0.81,-1.24,1.83,0.52,0.21,0.50,1.70,0.93,3.28,2.98,2.83,5.91,6.34,4.07,4.24,2.15,2.44,-0.16,2 --0.03,-0.65,-0.06,-0.14,0.05,3.06,2.17,1.39,-0.25,1.80,1.86,3.03,1.62,4.35,5.52,2.72,2.33,1.72,0.57,0.52,0.85,0 --0.09,0.90,3.08,1.65,4.86,3.10,4.94,4.13,1.54,2.56,2.72,1.73,1.51,1.98,2.27,0.71,0.34,1.10,0.03,2.47,-0.09,0 --0.53,-0.55,0.67,1.23,-0.68,1.30,2.65,5.50,4.48,5.97,4.39,3.54,3.34,3.18,0.70,2.15,1.35,2.07,0.70,-0.70,1.55,1 -0.38,-0.98,1.66,3.62,2.39,1.99,4.02,5.73,3.41,3.51,4.36,-0.34,2.05,0.95,1.83,1.58,0.76,1.05,0.62,-0.21,0.18,1 --1.17,-1.30,-0.48,0.94,0.66,0.49,0.15,-1.74,0.82,-1.04,2.62,2.20,3.61,4.11,5.11,6.28,4.11,3.07,1.27,-0.42,-0.36,2 --1.44,1.64,0.36,3.02,3.38,2.84,4.52,2.87,2.52,1.08,1.58,-0.96,-0.68,1.76,1.13,1.50,0.55,2.95,1.03,-1.15,-0.00,0 -2.66,-0.15,0.35,0.50,0.20,0.05,1.30,1.90,2.32,3.50,2.91,5.98,3.48,3.19,3.16,3.05,1.72,1.27,2.09,-0.47,0.57,2 -0.23,0.47,1.25,2.14,3.99,6.37,6.37,5.12,3.68,2.74,0.26,-0.53,-0.13,0.33,1.10,-0.96,-0.09,-1.03,-1.29,0.47,1.93,1 -0.01,-0.27,1.24,5.19,3.38,3.09,6.14,3.11,2.46,3.79,3.57,1.13,1.15,-1.38,-0.25,-0.00,-0.03,-1.11,0.87,1.28,-0.28,1 --0.87,1.05,-0.83,0.33,-0.57,0.55,-0.48,0.36,4.27,2.61,3.05,3.34,2.29,3.92,3.84,3.98,1.08,1.21,2.70,-0.16,-0.17,2 -0.85,0.59,1.19,-0.20,0.70,2.75,5.26,2.00,4.56,3.86,4.35,2.88,0.40,1.41,0.75,-0.44,0.47,-0.63,-0.28,1.07,-1.25,1 --1.47,0.61,0.52,0.99,0.37,1.96,2.47,0.54,1.68,4.25,4.52,2.96,3.14,3.89,1.10,2.42,2.01,0.78,-0.33,0.35,-0.70,2 -0.56,0.85,1.57,2.20,2.90,2.58,3.21,2.00,1.56,2.11,1.70,2.91,2.15,4.28,4.16,1.99,2.81,0.11,0.73,0.58,1.97,0 -0.22,1.31,0.41,-1.40,-1.25,-0.59,1.40,2.12,2.47,5.24,3.51,5.77,3.14,2.20,3.32,2.85,0.89,0.60,1.10,-0.25,-0.30,2 --0.75,2.15,1.87,0.57,1.63,1.94,3.09,2.45,0.35,0.21,2.72,1.67,0.87,2.92,3.60,2.68,0.83,0.57,2.16,1.92,1.03,0 -1.29,0.16,0.70,-0.02,0.51,0.91,0.84,0.42,0.43,2.82,2.77,2.88,2.77,5.82,6.27,4.33,2.29,2.11,1.44,-1.08,0.22,2 -1.56,-0.27,0.85,-0.67,-0.01,1.78,1.72,3.84,3.48,6.07,5.92,5.58,4.57,0.16,1.02,-0.16,-0.55,0.99,-0.40,0.23,-0.50,1 -0.55,-0.72,0.52,-1.20,0.48,2.16,2.94,2.12,3.70,4.69,6.46,2.94,2.95,3.12,1.94,1.87,0.78,-0.58,-0.04,-0.54,-1.10,2 -1.22,0.12,1.88,0.88,-0.56,1.47,0.89,3.22,4.05,5.07,6.41,5.25,3.56,2.09,2.74,1.17,-1.10,0.59,-1.79,-0.34,1.76,2 -1.72,-0.37,1.52,0.18,0.02,1.00,-0.32,0.97,0.25,0.99,1.03,3.43,3.04,4.55,5.25,5.18,2.86,3.93,2.51,0.13,-0.43,0 --0.24,0.06,1.80,2.44,1.39,2.41,2.92,2.58,2.32,2.17,2.58,1.77,2.37,3.31,3.84,4.50,1.01,2.90,1.54,0.84,0.52,0 --0.72,-0.44,-0.39,-0.12,0.43,1.55,-0.30,0.42,0.45,1.79,1.72,3.95,2.83,5.46,4.40,4.07,2.21,2.66,2.47,1.19,0.26,2 --0.62,1.28,1.93,2.80,-1.07,0.93,1.10,0.19,0.80,0.43,4.07,2.22,3.47,2.94,5.89,4.37,4.11,2.99,1.67,0.92,-1.94,0 -0.75,-1.76,-0.33,-0.83,0.20,1.84,-1.62,0.49,0.73,3.29,2.79,3.78,3.25,4.69,4.48,4.21,4.16,2.86,0.25,0.54,-0.99,2 --1.63,-0.61,0.95,4.06,0.90,3.95,4.48,2.56,2.47,0.83,3.32,1.77,3.42,2.29,2.45,0.62,0.58,1.29,0.92,-0.79,0.33,0 --0.29,0.69,-0.35,3.36,2.56,2.85,5.32,3.09,2.96,5.15,3.52,2.29,3.97,0.18,3.12,1.76,1.97,0.51,-0.32,1.11,-0.33,1 --0.16,-0.12,0.07,0.91,0.36,2.69,4.27,3.68,3.76,3.54,2.92,1.81,3.10,0.22,0.31,-1.22,-1.10,-1.11,0.25,-0.24,-0.13,1 --0.32,0.42,-0.20,1.92,2.65,2.64,4.81,3.13,5.38,3.61,3.97,2.07,0.09,0.73,2.19,0.53,-0.43,0.28,-1.07,-1.18,0.43,1 -0.95,-0.00,-1.58,1.84,-0.12,2.77,2.87,3.44,4.68,3.28,5.17,2.89,2.12,1.69,2.27,1.49,1.54,-1.19,1.28,-0.29,-1.43,1 -0.79,0.65,1.61,1.12,0.94,3.08,3.06,3.29,2.82,2.19,1.54,0.76,1.00,1.80,-1.12,0.01,1.09,1.87,0.65,0.45,0.45,0 --0.54,-0.66,0.41,-0.92,-0.28,2.16,-0.43,2.92,1.50,1.00,1.85,2.38,3.18,3.24,6.13,3.49,2.32,2.40,1.76,0.54,0.37,0 -1.61,0.50,1.47,-0.46,-2.02,2.06,2.24,2.95,4.90,5.86,6.42,5.59,3.13,1.84,2.63,0.81,1.04,0.51,-1.47,-0.29,-0.40,1 -0.63,1.10,1.43,-0.10,-0.21,1.00,2.23,0.92,5.13,4.62,7.38,4.96,1.71,3.45,1.97,0.70,1.17,2.16,-0.30,-2.33,0.92,1 --0.48,-1.86,-1.42,-0.06,-0.18,0.90,-2.30,-1.40,0.21,0.60,3.42,3.91,2.94,5.70,4.52,4.54,2.81,1.36,4.27,1.34,0.42,2 --0.71,-1.92,-2.19,0.17,-0.42,1.11,0.96,0.96,3.20,3.92,4.11,3.60,4.34,2.79,3.41,3.60,2.32,0.61,0.87,0.34,0.42,2 --0.28,2.35,-0.25,1.96,1.04,3.05,1.73,3.67,2.23,2.36,2.39,2.11,0.65,2.17,1.70,1.67,1.55,0.89,1.08,0.54,0.25,0 --0.39,-0.64,-0.57,2.12,3.11,-1.29,0.93,0.80,-0.38,1.09,2.92,2.44,3.11,3.61,4.26,4.27,2.55,2.44,0.92,1.33,2.05,0 -0.51,-0.08,0.02,-0.34,0.61,3.15,3.20,3.47,4.23,4.03,4.09,4.70,3.66,2.09,1.02,1.69,0.27,-1.35,-1.04,1.46,-0.57,1 -0.62,-1.00,-0.32,0.26,-0.39,-0.02,0.03,1.49,0.85,1.71,3.25,4.33,4.33,2.43,5.27,3.68,4.26,2.12,1.11,2.59,-0.94,2 --0.17,0.67,2.65,4.15,2.87,3.53,4.41,3.88,4.90,1.45,2.91,0.68,-0.22,0.49,0.47,1.54,-0.44,1.06,-0.66,1.75,0.94,0 --1.52,1.50,1.18,1.98,3.18,5.18,4.56,4.42,4.68,4.65,0.31,1.11,1.05,0.11,0.72,1.49,1.03,0.73,-0.14,0.65,-0.12,0 --0.76,-1.26,0.82,-1.41,1.48,-0.62,-1.12,2.30,1.91,2.97,4.63,3.32,5.42,5.45,3.15,5.79,3.08,1.04,1.14,0.29,0.31,2 -0.75,0.05,2.84,0.30,3.75,2.37,5.99,6.53,1.92,2.73,2.57,2.61,1.87,0.63,2.58,2.25,1.25,2.55,0.17,-0.28,-0.53,0 --0.49,2.51,1.47,1.59,0.67,3.95,3.60,4.42,3.10,2.41,2.35,2.01,1.20,2.32,1.76,1.93,1.48,0.73,0.37,-0.30,-0.71,0 -0.74,0.36,2.29,3.75,3.56,2.72,4.86,3.39,1.69,3.75,2.88,0.76,0.54,1.14,1.96,1.96,2.27,0.75,1.37,-0.66,0.03,0 --0.08,-0.50,-0.65,-1.24,-0.83,1.32,1.85,1.11,2.85,3.85,5.31,4.49,3.89,2.97,6.19,1.29,1.65,3.18,2.77,1.29,-1.45,2 -0.51,-0.13,-0.71,-0.39,0.17,1.27,0.02,2.83,3.39,3.13,3.72,3.61,4.63,2.79,4.46,1.44,1.78,1.98,2.02,-1.42,-0.57,2 -0.51,-0.37,0.52,1.23,3.01,3.07,5.26,5.33,3.18,3.88,4.40,2.18,2.32,-0.15,0.71,1.19,0.62,1.54,1.59,-0.22,-0.10,1 --0.96,1.82,-0.20,-0.09,2.03,0.57,1.28,0.09,1.53,2.88,3.26,1.27,3.58,5.30,5.42,3.15,1.53,3.64,2.22,1.59,-0.58,0 --0.62,-1.45,-1.61,1.51,1.35,0.83,-1.52,0.28,2.98,4.78,4.74,3.84,2.54,3.80,5.10,2.10,3.13,1.28,-0.70,0.43,-1.00,2 --0.52,0.51,0.84,4.05,2.40,3.93,4.56,5.63,3.97,6.19,2.83,3.81,3.25,-0.52,0.55,0.24,-0.08,-0.53,-0.71,-1.58,-0.14,1 -1.02,-0.36,2.07,0.21,-0.39,0.66,1.65,3.79,3.52,4.05,4.16,4.84,4.86,4.01,2.31,1.74,1.24,3.67,0.87,-0.28,0.02,2 --0.14,-0.08,2.98,2.63,3.90,4.49,5.12,5.48,3.34,2.67,0.81,0.98,0.36,1.01,1.27,1.51,0.53,-1.00,0.16,0.56,-0.61,0 -1.24,1.19,1.21,2.38,1.49,2.48,3.60,4.62,2.94,4.05,3.78,2.49,-0.10,1.81,-0.76,0.31,-0.53,0.05,-0.63,-0.11,-0.47,1 -0.78,0.58,2.07,0.71,4.55,4.51,7.03,4.17,5.05,3.84,3.12,2.04,-0.53,0.24,-0.35,-0.28,0.83,-0.39,0.86,1.01,-0.39,1 -0.63,0.07,0.07,-1.61,-0.01,-0.05,1.73,1.35,2.52,2.85,3.61,2.90,4.57,6.78,3.88,3.60,1.78,3.42,0.31,0.84,-0.57,2 -0.10,1.22,0.20,-0.36,2.37,2.35,-0.26,1.36,-0.79,1.19,2.70,1.98,2.87,5.69,4.97,4.19,2.50,2.92,1.02,2.38,0.62,0 -0.53,1.45,1.16,2.52,4.46,3.68,3.58,2.41,2.08,1.19,1.63,1.12,1.95,0.74,2.48,1.84,1.78,0.66,0.84,1.52,0.26,0 --0.31,0.86,0.60,2.35,0.88,3.56,4.84,3.10,6.47,4.78,3.01,1.92,0.33,1.63,0.86,1.04,1.48,-0.28,0.38,-0.12,0.74,1 --1.32,-0.09,0.22,3.49,2.27,2.35,4.31,4.35,2.17,-0.51,1.98,0.66,3.01,1.24,2.69,1.33,1.09,2.16,0.58,0.19,-1.31,0 -0.58,0.65,0.22,0.17,0.93,1.43,1.77,3.73,4.42,3.39,5.09,4.27,3.41,2.62,1.39,0.09,0.80,1.48,1.18,0.56,-1.96,1 --1.10,-0.82,0.50,0.97,-0.26,1.07,-0.37,0.30,-0.70,0.84,2.41,2.31,3.38,5.26,4.82,4.58,1.99,3.73,1.87,0.14,-0.09,0 --0.59,0.88,1.11,0.01,-1.26,1.34,1.02,2.87,1.39,0.60,1.03,2.91,3.25,5.63,3.07,3.29,3.47,0.37,0.30,-0.87,-0.55,2 --1.68,0.15,-0.93,1.77,-0.59,1.10,2.81,2.13,2.67,2.20,4.60,5.21,5.00,3.06,3.33,4.72,0.57,0.07,0.83,0.27,-0.25,2 -0.42,-0.07,0.12,0.20,3.57,3.77,4.17,1.75,2.66,1.48,2.63,1.01,0.77,1.24,4.28,1.81,1.29,2.52,-1.06,0.73,0.61,0 --0.22,2.38,1.71,1.47,4.12,3.21,3.44,3.45,5.42,3.79,3.50,1.58,0.76,0.18,-0.68,0.05,-0.31,-0.53,1.46,0.02,0.46,1 -0.56,0.66,2.21,1.91,1.43,2.09,4.19,1.89,0.64,2.58,3.01,1.16,3.65,1.63,3.40,2.33,3.03,1.88,0.43,0.15,-1.32,0 --0.14,0.84,0.35,0.06,1.69,3.56,5.02,4.89,5.36,5.80,2.36,3.21,0.47,1.55,-0.03,0.68,-1.18,0.21,0.09,0.86,-0.60,1 -0.80,1.78,-0.78,-0.03,2.28,0.22,2.70,3.91,4.42,5.39,6.46,4.86,2.72,3.03,2.10,1.87,-0.96,-0.65,0.08,-0.07,0.56,1 -0.61,1.68,2.83,1.60,-0.29,3.06,1.85,1.94,3.77,4.00,6.38,5.62,4.52,3.10,3.10,2.58,-0.51,0.37,-3.50,1.06,0.10,1 -0.52,-0.75,-0.47,2.39,-0.37,0.97,-1.37,1.28,0.55,3.44,1.27,4.27,5.23,4.01,4.08,5.50,3.78,2.82,2.67,1.19,1.08,2 --0.21,-0.04,-0.73,0.32,1.47,0.81,-1.47,-1.90,0.29,0.76,0.96,1.57,4.23,4.40,4.42,5.48,2.05,3.86,3.71,1.32,0.67,0 --1.65,-0.66,1.05,-0.91,-0.29,-0.11,1.30,1.68,1.24,1.52,2.09,3.09,2.15,4.55,5.59,2.94,1.69,4.74,2.03,2.46,1.25,0 --0.38,-0.06,0.37,0.17,0.61,1.33,1.90,-0.45,1.52,3.30,2.54,2.50,3.68,3.53,3.72,2.86,2.39,2.50,1.35,0.15,-0.35,2 --0.19,0.34,0.14,1.88,1.44,0.55,0.41,1.21,2.06,0.36,0.84,1.32,1.98,5.23,5.88,3.60,4.64,4.36,1.07,-1.30,-0.52,0 --0.43,-0.47,0.28,-0.05,-1.08,1.38,0.34,1.11,0.55,2.23,3.18,1.31,4.12,6.28,7.42,3.25,2.70,0.32,2.55,0.78,0.27,2 -1.27,0.98,0.46,0.66,3.41,3.19,5.58,4.76,3.77,5.11,4.46,2.68,1.19,2.22,1.34,-0.21,-0.85,2.11,-0.89,-0.30,1.12,1 --0.20,-0.78,0.32,0.15,-1.30,-0.49,0.56,-0.64,1.12,1.74,2.43,2.40,3.37,4.70,5.70,3.07,2.52,2.13,1.69,-0.41,-0.09,2 -0.61,-0.19,1.59,2.52,2.39,3.38,2.52,2.58,0.85,1.86,2.99,2.34,1.78,2.53,2.95,3.97,2.36,0.51,1.39,0.72,-0.74,0 -0.39,1.19,0.48,-1.39,-0.14,1.66,-0.80,2.11,4.99,4.65,5.01,6.97,3.82,2.45,0.97,2.10,0.73,-2.22,-0.43,-0.16,0.60,1 -0.37,3.46,1.59,1.50,3.67,4.22,5.12,3.98,5.26,3.76,2.27,1.37,-0.11,1.33,0.64,1.38,1.20,1.24,1.11,-1.01,-0.94,0 -0.91,1.02,0.78,1.95,3.52,2.94,5.53,4.48,4.62,2.73,1.56,2.33,1.26,3.00,2.50,-0.17,0.55,1.10,-0.23,0.91,0.28,0 -0.40,-0.54,-0.07,0.09,1.89,0.10,3.72,3.66,3.45,4.74,5.82,4.22,3.31,3.41,0.64,0.61,0.35,0.69,0.52,-0.44,0.45,1 -1.20,0.50,2.18,3.45,1.69,4.31,4.35,4.26,2.82,4.15,3.06,3.01,1.55,1.15,-2.09,-1.37,2.84,0.44,-0.19,-1.22,0.07,1 -1.59,-0.19,0.84,2.14,3.34,6.04,5.39,5.14,4.45,2.67,1.90,2.02,-0.88,0.25,1.08,-0.69,0.27,0.52,-0.06,0.36,-0.29,0 -1.41,2.04,0.27,2.26,1.87,5.86,6.44,2.73,3.57,4.92,1.30,1.06,0.35,-0.11,0.97,-1.16,0.28,0.73,1.16,0.54,-0.87,0 -0.09,0.53,0.18,2.04,1.45,3.04,0.50,-0.40,0.01,0.98,2.80,1.15,5.16,3.16,3.66,3.38,3.49,1.63,2.00,0.28,-2.34,0 --1.09,-0.06,1.66,2.85,1.66,1.35,4.50,3.19,3.88,4.90,3.81,3.70,3.45,4.40,1.17,1.68,0.20,-2.58,-0.85,1.38,0.57,1 -0.25,0.92,0.18,-0.54,-0.12,0.32,1.79,-0.03,0.95,1.72,2.88,2.38,3.72,4.58,5.94,6.31,3.49,2.10,2.61,2.66,0.72,2 -0.34,-1.05,-0.80,-0.31,-1.05,0.97,1.51,1.17,-0.10,3.33,3.14,2.48,4.69,4.09,2.34,0.91,0.95,1.89,1.21,1.35,1.85,2 -0.20,1.74,3.71,1.65,3.20,2.90,6.29,6.43,3.59,2.64,1.83,1.64,-0.84,0.90,0.71,-0.32,-0.42,0.30,-1.04,0.71,0.13,1 --0.19,-1.21,-0.43,1.92,1.13,2.14,2.23,2.33,3.13,4.47,6.44,2.09,4.46,3.17,1.08,2.03,1.74,0.51,-2.56,0.85,0.76,1 --0.16,1.25,-0.82,0.14,0.65,0.95,-1.29,1.73,1.56,2.10,1.31,3.04,1.62,3.31,4.65,4.53,1.60,2.82,3.40,1.05,0.44,0 --0.05,0.12,1.88,1.36,1.21,4.63,3.53,3.68,3.67,4.06,4.28,4.23,3.37,0.79,1.56,0.08,-0.06,-0.29,0.21,-0.35,0.79,1 --0.14,-0.79,2.15,-0.30,-0.02,-1.31,-0.46,1.47,-0.46,2.49,3.63,2.97,4.17,5.11,5.54,4.41,3.15,3.81,0.49,1.39,0.26,2 --0.56,0.91,1.82,2.64,2.95,4.27,2.84,3.56,2.63,2.69,2.13,1.84,1.20,1.41,1.15,1.87,1.60,0.64,-0.05,-0.52,-0.10,0 --0.18,0.47,1.75,1.46,4.04,4.81,2.85,4.35,4.84,2.74,2.68,1.97,1.43,-0.31,-0.05,-0.30,-0.66,-0.78,-0.15,-0.80,-0.05,1 --0.95,-0.99,-1.77,-2.43,-0.55,0.94,1.68,2.84,4.89,4.75,5.02,5.88,4.06,2.01,3.28,1.04,-0.20,0.86,-0.01,0.75,-1.71,2 -0.68,-1.30,0.98,0.06,1.23,1.26,0.47,2.43,0.59,2.33,1.05,3.58,1.40,3.95,2.20,1.18,3.08,3.28,-0.29,0.15,-0.25,0 -1.04,1.30,2.55,3.43,2.72,4.75,6.21,3.75,3.37,3.14,4.17,1.41,1.62,-0.68,0.65,1.74,-0.51,0.28,-0.02,-0.06,0.61,1 -0.96,-0.02,1.62,0.91,1.27,2.15,4.29,1.19,2.76,3.13,2.33,5.39,2.79,2.94,2.74,0.58,-0.81,-0.76,0.16,1.44,-0.90,1 --0.26,0.10,-0.06,1.38,0.83,2.57,4.74,2.71,4.30,3.38,2.92,2.30,-0.01,2.37,2.51,1.98,0.87,2.09,-0.44,-0.69,-0.50,0 -3.17,2.13,1.96,2.11,2.19,5.38,5.36,4.43,4.14,1.33,2.66,1.32,0.22,-0.06,1.61,0.98,-1.77,0.56,1.02,0.65,1.76,0 -1.14,-0.28,-0.25,2.18,0.19,2.81,2.78,2.74,3.29,4.84,5.78,3.76,2.71,1.11,2.43,2.73,0.04,-0.19,-0.81,1.68,-0.42,1 -0.06,0.27,1.36,2.78,0.33,2.08,0.56,0.00,1.93,1.19,2.99,1.69,3.63,3.73,4.19,3.84,2.56,2.73,2.30,1.20,-0.11,0 --0.54,-2.05,-0.91,0.18,0.61,2.20,-0.96,3.27,0.16,1.08,3.43,3.84,4.40,5.30,4.02,2.10,2.39,3.02,2.45,1.89,1.14,2 -1.15,1.94,0.17,0.81,3.04,4.53,2.94,3.94,3.23,2.30,0.12,-0.49,-0.02,1.37,2.29,0.55,0.97,1.74,0.70,0.01,-0.67,0 -1.39,-0.39,0.37,-0.46,1.24,-0.75,1.28,2.33,-0.06,-0.39,1.60,3.50,0.85,4.40,6.13,4.41,2.41,2.87,1.86,-0.20,0.25,0 --0.65,1.73,2.92,2.83,3.88,3.84,3.49,1.08,-0.18,3.87,2.51,1.77,0.14,1.21,2.21,2.51,1.51,0.89,0.77,3.00,-0.46,0 --0.38,0.56,0.03,-0.89,1.84,-0.73,-0.55,-0.26,2.09,-1.76,0.85,0.96,4.87,2.61,7.24,4.50,3.71,2.82,0.89,2.95,0.34,0 --0.25,0.51,1.11,0.94,0.70,3.80,2.88,1.67,1.99,0.82,2.09,1.28,3.73,2.43,3.04,1.91,0.15,2.17,1.06,0.02,0.54,0 --0.77,-0.44,-0.92,1.06,0.44,-0.20,1.36,1.46,0.23,1.99,3.43,2.85,4.40,3.26,4.69,5.56,2.00,2.83,0.01,4.28,-0.06,2 --1.43,-1.25,-0.28,1.19,0.81,-0.74,-1.90,1.60,0.16,-1.15,1.28,3.27,3.27,4.31,6.94,6.60,3.46,2.12,1.05,1.01,-0.72,0 --1.11,1.01,-0.26,0.86,2.31,0.33,0.54,-0.64,-0.59,2.78,4.54,4.89,4.55,2.94,5.79,5.02,2.01,2.94,2.00,-0.63,-1.08,2 -1.36,0.11,1.87,1.12,-0.37,1.02,1.36,2.04,-0.25,0.27,2.20,4.05,4.36,3.42,3.89,4.98,4.28,1.81,0.18,0.53,0.01,0 --0.37,0.66,0.68,0.59,2.04,2.96,3.80,3.85,5.51,4.45,4.99,3.70,3.03,2.76,1.62,2.14,0.07,-0.31,0.78,-0.17,0.03,1 -0.23,0.51,0.06,-0.13,-0.99,0.40,-0.32,0.90,2.40,3.34,4.55,4.19,3.86,5.13,3.08,1.95,3.70,-0.61,-1.30,0.71,0.54,2 -0.40,0.76,1.53,1.99,1.72,3.05,1.49,2.19,0.85,2.40,1.85,2.52,2.91,2.72,4.55,4.23,2.65,0.25,2.29,0.29,-1.26,0 --0.49,-1.05,-1.62,0.45,0.84,1.06,1.91,0.65,1.54,4.58,4.69,5.56,2.90,1.42,4.14,1.95,-1.62,-0.93,2.91,-1.51,0.30,2 --0.57,0.70,0.25,1.20,1.98,-0.88,1.16,0.92,1.80,1.64,1.48,4.50,2.16,5.73,5.56,4.27,5.18,1.35,0.63,1.39,0.81,2 --0.41,3.20,1.82,1.99,3.67,5.36,6.37,4.04,4.36,3.69,2.12,2.08,0.61,-0.17,0.14,1.67,-0.34,-0.03,-0.10,0.79,-0.69,0 -0.70,-0.35,1.38,1.12,1.66,2.60,1.99,2.52,1.80,2.22,3.64,2.99,4.38,4.60,5.96,5.72,3.96,2.23,1.62,-1.09,-0.55,0 -0.21,0.80,3.50,3.24,5.03,5.77,6.90,6.36,6.17,2.26,2.38,0.51,-0.14,-0.43,-0.35,0.74,0.34,-0.37,0.77,-1.31,-1.28,1 -1.23,-0.23,0.71,-1.41,1.34,-0.02,1.68,1.49,2.62,5.03,3.14,2.73,4.70,2.31,2.40,2.57,2.48,1.79,0.58,0.00,-0.13,2 -1.57,-0.34,1.53,-1.49,1.44,-0.58,2.52,2.20,0.02,2.05,0.34,2.29,3.64,5.36,4.92,6.49,2.52,3.09,2.29,-0.51,0.98,0 --0.42,0.83,-0.84,2.13,-0.19,3.89,2.85,4.46,6.01,5.92,3.60,3.77,2.76,1.20,1.51,1.18,-0.54,0.46,-0.16,-1.33,-1.44,1 --1.77,-0.54,2.28,0.62,0.53,5.66,5.24,3.83,4.00,4.18,4.13,3.96,1.35,-1.17,-0.67,0.91,-0.35,-0.48,-0.80,-0.60,0.05,1 -0.24,-1.49,-0.87,1.24,0.33,0.78,1.93,0.83,2.47,3.00,4.75,3.78,4.99,2.29,4.67,4.68,0.75,2.09,-0.98,0.09,1.05,2 --0.56,0.26,1.26,1.63,1.67,1.86,3.86,0.52,3.31,2.23,0.92,1.99,4.14,3.04,2.44,3.94,1.85,1.62,2.15,1.18,0.32,0 -0.60,1.43,0.04,-0.05,2.20,1.96,4.74,4.36,4.66,2.88,3.19,3.62,1.74,1.07,2.94,1.02,0.42,0.69,2.13,0.17,0.04,1 --0.71,0.05,0.74,-0.25,0.64,0.08,0.53,3.41,3.71,4.95,5.15,5.04,4.23,4.03,1.04,0.68,0.89,1.42,-0.19,0.02,-1.25,2 --1.12,0.68,0.14,-1.04,0.49,-0.00,2.44,2.79,4.83,3.09,5.61,5.08,4.61,2.94,1.19,2.62,0.97,0.09,0.10,0.42,-1.46,2 --0.08,-0.81,-0.48,-0.50,-1.94,0.04,1.99,-0.40,-0.62,1.04,2.55,2.10,5.10,6.14,6.41,4.86,3.54,1.05,3.14,2.30,-1.22,0 --1.07,0.02,-0.99,2.19,1.97,2.25,4.05,4.26,2.53,2.51,1.49,1.40,2.96,2.34,1.85,1.81,2.46,2.14,0.61,0.99,-0.43,0 --1.32,1.59,0.05,3.17,3.42,3.29,4.27,1.51,2.60,1.43,-0.08,2.73,2.12,2.79,1.88,0.95,1.18,1.27,1.51,-1.84,0.01,0 --1.34,-0.73,-0.75,1.07,-0.72,-0.60,0.02,0.05,1.69,0.57,2.49,2.18,3.23,6.05,5.65,3.84,5.01,0.92,1.35,0.73,0.42,0 -0.36,1.37,3.94,2.58,6.50,3.78,7.40,5.69,1.71,2.22,1.87,1.49,0.29,1.02,-0.54,0.24,-2.05,1.04,1.68,-1.97,-0.12,0 --0.02,-0.67,0.38,1.82,0.99,3.82,2.05,3.72,5.01,3.09,3.86,2.98,1.42,2.87,2.40,-0.39,0.02,1.49,0.28,-3.06,0.22,1 --1.31,0.57,1.29,0.69,-1.83,1.24,-0.48,-1.30,0.34,1.13,4.27,4.36,3.59,6.06,2.67,3.77,2.70,1.84,1.11,1.26,0.32,2 --0.45,0.72,0.07,1.00,3.03,3.76,4.10,4.81,3.67,4.41,1.15,1.47,0.57,1.67,-0.36,-0.77,0.45,0.80,-0.46,-0.47,-0.16,1 -0.28,0.40,1.87,2.81,3.50,6.03,5.37,3.98,2.57,4.74,2.53,0.75,-0.26,-0.42,-0.28,-0.46,0.64,2.19,1.05,-0.24,-0.72,0 --0.31,0.34,-0.16,-0.99,0.35,0.29,0.36,3.13,2.04,3.36,3.84,3.06,3.26,5.34,3.66,3.57,2.09,2.60,1.10,1.44,-0.26,2 --1.14,-0.07,-0.30,1.01,1.14,0.11,1.56,0.57,1.65,4.17,3.33,6.88,3.89,5.26,4.72,3.72,2.42,0.73,2.25,0.94,0.19,2 -0.85,1.47,1.99,3.90,4.22,4.66,6.20,4.72,5.45,2.17,2.41,1.05,0.15,-0.07,-0.14,-0.56,-1.19,-1.52,-0.02,-0.30,-0.61,0 --0.62,-0.75,2.30,1.20,1.06,5.33,5.36,4.38,2.49,5.02,2.24,3.62,0.47,0.44,0.57,1.23,-2.14,-1.00,0.00,1.03,-0.48,1 -0.54,-0.35,0.53,2.68,0.46,2.88,3.76,3.01,2.69,4.28,3.27,1.35,1.13,-0.34,0.91,0.45,0.82,0.52,0.98,1.06,0.28,1 -1.14,1.32,1.69,1.85,2.20,4.16,5.99,2.16,3.46,5.78,2.59,3.53,1.74,1.34,0.85,-2.41,2.10,0.95,0.18,-1.29,-1.21,1 --2.81,-0.43,1.16,1.68,0.21,-0.49,0.46,0.88,1.05,0.64,3.90,4.34,2.14,4.69,3.23,0.77,0.63,2.42,0.70,1.24,0.11,2 -0.45,-1.48,-0.36,-1.93,-0.80,-0.77,0.94,3.93,2.97,4.51,5.68,5.33,3.30,3.32,2.19,-0.13,-0.61,-0.32,1.61,-0.54,-2.83,2 -0.36,1.28,0.42,-0.25,0.14,0.20,0.47,-0.42,0.78,-1.79,1.51,2.31,3.28,6.12,5.75,3.60,3.90,3.35,2.00,0.02,0.44,0 --0.72,1.72,0.42,1.91,3.17,3.64,5.03,2.77,2.70,4.67,4.08,3.85,2.70,2.09,2.65,-0.10,-1.46,-1.21,1.04,-0.18,0.32,1 --0.13,-0.39,0.06,2.01,-1.37,0.03,3.47,3.31,3.19,3.12,3.40,5.95,3.88,5.31,2.80,2.26,1.73,-0.67,1.32,0.68,-0.49,2 -1.78,0.25,0.68,0.91,-0.53,-0.38,1.52,1.57,4.59,5.14,5.21,4.90,3.03,3.37,1.22,3.46,1.22,2.42,-1.31,1.48,-0.52,2 --0.31,-0.10,0.73,-1.02,4.00,1.40,2.76,5.28,4.35,3.63,5.86,4.62,2.72,2.55,2.37,1.79,-1.63,0.40,0.49,-1.62,0.31,1 -0.78,1.61,-0.08,0.93,1.41,2.65,1.51,0.54,0.42,0.93,2.71,2.84,1.91,3.19,4.35,3.24,4.65,1.13,2.40,2.24,-1.51,0 --0.04,2.03,2.39,1.00,3.20,2.95,4.56,3.74,2.93,2.57,1.75,0.31,3.08,1.20,1.42,0.69,1.65,0.80,-0.07,1.56,0.88,0 -0.82,1.51,0.29,-0.11,0.39,-0.81,-0.12,-0.34,-0.40,0.62,2.26,2.91,5.04,3.92,5.16,5.59,3.96,3.84,1.26,2.20,-0.18,2 --0.17,-0.52,0.86,1.92,-0.50,1.27,1.98,2.37,4.77,4.00,7.58,5.29,4.56,2.01,1.73,-0.60,0.51,1.23,1.07,-1.08,0.01,2 -0.38,0.55,0.08,-0.60,-0.68,1.38,0.27,0.61,-0.02,1.95,1.42,3.99,4.44,6.56,2.93,4.24,2.33,2.38,1.53,-0.13,0.95,2 -1.08,-1.31,0.48,0.83,-0.02,0.21,0.25,0.47,1.24,0.25,2.34,2.36,3.02,4.22,6.00,4.79,2.53,3.80,2.51,2.11,-0.32,0 -0.25,2.36,2.60,2.68,3.26,3.73,5.88,5.42,4.59,2.78,1.85,2.51,-0.23,-0.12,-0.39,0.79,1.19,0.95,-2.09,1.54,-0.48,0 -1.47,0.21,0.31,3.30,0.21,2.43,2.97,2.03,3.37,5.37,4.68,4.63,3.16,2.50,2.27,2.29,0.21,0.42,1.76,-0.16,-1.51,1 -1.26,-1.23,-1.88,1.96,0.33,-0.54,0.64,1.07,1.15,1.35,2.40,3.96,4.02,5.87,6.16,4.86,3.64,0.38,0.72,0.99,-1.48,0 --0.63,0.45,0.41,-0.46,0.78,1.77,0.80,2.84,2.61,4.86,5.92,3.43,5.04,1.17,4.26,1.81,2.00,0.36,1.49,-0.42,-0.32,2 --0.59,-0.49,0.46,2.48,4.99,4.16,5.27,3.96,3.50,3.39,3.88,3.86,0.82,-0.03,0.96,1.76,-0.53,-1.11,-0.16,0.72,-0.51,1 -0.33,0.33,-1.50,-1.64,-0.33,2.39,-0.16,3.25,0.55,1.41,4.08,3.89,4.27,3.85,4.03,3.54,3.35,0.85,1.09,-3.25,-1.36,2 -0.77,-0.47,0.12,1.61,1.53,0.45,2.20,0.68,2.34,1.02,1.88,2.70,3.92,1.93,2.26,2.59,3.47,4.50,0.98,0.51,-0.35,0 --0.45,0.26,1.33,2.77,3.47,4.29,5.65,5.28,3.81,3.97,4.01,3.17,1.85,0.69,0.55,-0.39,0.20,0.89,-0.01,2.07,-0.64,1 -0.40,-1.17,-1.51,0.88,-1.66,0.94,0.28,2.01,5.91,5.37,6.41,4.01,3.89,1.24,3.36,2.06,0.81,-1.05,0.85,1.24,0.87,2 --1.29,0.09,-0.44,0.00,0.23,0.88,1.12,3.28,4.25,5.82,4.74,5.84,4.89,3.00,2.26,0.05,-0.81,0.58,-0.14,0.50,-1.01,2 -1.24,0.46,0.29,2.44,2.45,3.21,4.33,4.16,3.45,4.19,3.13,3.92,1.74,2.04,1.80,1.23,-0.77,-0.45,0.49,-0.13,-0.70,1 --0.58,0.64,0.54,2.29,3.35,2.97,4.31,3.89,3.32,5.97,5.31,1.43,1.45,1.14,1.72,-0.88,-0.97,2.02,0.55,0.57,-0.50,1 --0.48,1.03,0.91,1.40,4.80,3.06,4.80,3.54,2.44,2.57,2.50,2.75,2.43,2.63,0.18,1.04,0.75,0.58,-0.61,0.16,-1.44,0 -1.01,1.44,0.33,1.88,3.22,2.73,5.70,2.77,2.47,3.01,2.68,1.02,-0.20,2.87,3.86,2.34,2.23,2.51,0.14,0.72,-0.60,0 -0.43,-0.49,1.14,1.40,2.77,2.76,2.54,3.47,3.17,3.96,4.21,2.58,2.90,2.82,0.49,-1.37,1.44,1.08,-0.21,0.94,0.12,1 -0.77,1.74,1.37,3.30,2.83,5.65,6.22,5.05,2.05,2.08,3.19,1.22,-0.02,1.06,0.66,0.04,-0.74,-0.81,-0.39,-1.24,-1.06,1 --1.18,1.72,0.21,-1.54,1.11,-0.61,0.29,3.15,3.26,4.27,5.59,5.65,1.68,1.52,2.60,1.24,-1.30,1.09,-0.91,-2.04,1.07,1 -0.66,-0.86,0.48,0.29,-1.02,0.64,1.84,1.74,3.85,2.06,5.77,3.96,3.70,3.07,2.84,3.15,0.91,1.38,0.82,0.26,-1.27,2 --0.90,1.58,-0.12,2.17,4.32,5.56,6.41,5.12,3.81,4.18,2.88,2.12,1.12,-0.60,-0.09,1.40,-1.42,0.53,-1.46,-1.01,-1.73,1 --1.68,0.78,-0.21,-1.30,-0.40,1.07,0.55,4.11,4.69,4.96,5.50,6.31,5.10,5.80,2.64,1.96,-1.93,-0.30,1.04,-0.32,0.49,2 --1.48,-1.06,-0.61,-0.77,-0.23,1.95,0.54,4.53,2.88,7.17,4.07,4.49,4.33,3.02,1.01,1.77,-2.60,-1.14,-0.54,0.31,-1.11,2 -0.41,-1.24,-0.68,0.76,3.25,2.70,5.10,2.61,1.89,1.74,-0.26,3.16,2.96,1.34,3.54,1.62,2.13,1.86,0.97,0.53,-0.77,0 -0.78,-0.27,1.71,2.78,4.77,5.00,5.14,5.42,3.90,3.92,3.98,1.97,0.56,0.85,-0.44,-0.38,-0.64,-1.59,-0.35,-1.94,-0.44,1 -1.17,0.30,0.04,2.05,1.62,4.09,2.57,2.40,4.69,6.32,6.24,4.66,3.82,3.03,2.44,0.68,-0.29,-0.29,0.61,1.27,0.14,1 -0.72,-1.19,-1.81,-0.87,-0.58,0.52,1.50,1.76,1.21,3.20,2.97,4.73,3.46,3.00,5.17,1.64,2.57,3.19,0.69,1.41,0.37,2 -0.02,1.01,2.70,1.23,2.24,0.86,3.24,0.86,2.17,2.98,2.59,2.06,1.54,2.67,2.06,1.49,2.35,2.62,-0.20,0.38,-0.79,0 --0.23,0.52,0.81,-0.40,-0.41,-1.17,1.06,0.31,0.58,0.21,2.82,3.07,4.29,5.34,6.19,3.94,2.76,2.33,0.41,0.78,-0.15,2 -0.42,-0.48,0.26,0.18,-1.54,0.35,1.67,1.72,3.59,4.33,4.64,5.19,2.39,3.74,4.75,1.82,1.57,0.53,-0.07,-0.90,0.11,2 --1.04,0.39,1.41,1.33,3.05,3.02,4.17,2.67,0.19,1.71,2.31,3.05,0.77,2.57,3.17,1.84,3.08,4.13,2.05,-1.10,-0.09,0 -0.58,0.24,1.38,0.26,0.56,2.96,3.60,5.74,3.79,5.80,4.72,3.68,2.99,3.51,1.56,0.77,1.25,-0.03,-0.86,0.50,1.64,1 --0.82,0.42,-0.59,0.94,0.58,-0.89,0.05,0.00,0.70,0.06,2.35,1.41,4.68,3.55,5.57,4.96,2.82,3.89,3.38,2.12,-0.98,0 -1.63,-0.13,0.50,1.51,2.87,6.09,3.63,4.76,2.28,4.12,2.92,2.55,0.42,1.16,-0.18,1.11,1.22,0.71,-0.39,1.70,-0.57,1 -0.84,-0.28,1.13,-0.72,0.31,-0.75,0.36,0.18,-1.10,0.58,1.56,1.59,3.78,4.02,7.24,5.32,5.58,2.41,-0.54,1.74,-0.58,0 --0.38,-1.55,1.70,1.70,3.02,3.47,3.69,3.79,3.01,5.25,4.01,1.12,-0.26,0.99,-1.62,1.38,-0.16,0.58,1.43,0.79,1.21,1 --0.54,0.93,-0.45,1.09,1.34,0.09,-0.33,2.57,1.71,3.28,3.15,3.10,2.50,3.97,3.12,3.91,2.90,2.92,-1.14,2.70,-0.01,2 -0.53,-0.48,-0.18,-0.35,0.03,1.53,2.67,2.20,2.84,3.13,6.13,4.04,3.65,2.25,3.02,1.21,-1.01,-0.07,1.78,-1.82,0.46,2 --0.15,-0.47,-0.92,-0.19,-0.65,1.78,-1.09,1.23,-0.12,1.24,2.47,2.88,4.71,4.44,4.63,5.58,2.76,2.99,1.64,0.33,0.45,2 -0.62,1.10,0.47,1.64,1.65,1.11,0.49,0.73,-0.51,0.81,1.47,2.15,2.54,3.29,4.46,4.28,2.78,1.40,1.49,-0.53,0.70,0 --0.84,0.68,0.08,1.26,0.59,2.44,1.96,1.44,-0.80,1.89,2.43,1.81,3.98,3.61,3.80,3.64,2.14,2.78,0.81,0.04,-0.66,0 -0.90,-0.68,-2.37,0.06,-0.99,1.62,2.54,4.04,4.23,3.84,5.06,4.60,5.54,3.70,3.13,0.90,1.02,0.16,0.31,0.94,-1.06,2 -1.31,-0.19,-0.12,0.44,-0.84,-1.04,0.38,1.26,3.26,1.13,3.83,2.46,3.74,3.64,4.60,3.88,4.24,3.72,-0.39,0.15,-1.89,2 -2.52,-0.46,-1.14,1.02,0.34,1.36,-1.65,1.70,1.05,2.02,2.95,4.44,3.46,4.08,4.91,6.57,3.12,0.41,0.93,-2.20,-0.11,2 -1.43,0.51,-0.53,-1.46,-0.34,0.90,1.03,2.83,4.00,4.07,3.99,3.74,2.48,2.94,3.12,0.99,0.24,1.82,-0.31,0.18,-0.60,2 -2.00,-0.56,-0.10,0.12,0.60,0.99,-1.16,1.36,2.02,2.19,2.92,6.95,3.48,4.10,2.33,0.97,2.58,2.71,1.51,2.27,-0.32,2 --0.47,0.41,0.91,0.67,-0.15,2.69,4.20,2.60,0.93,0.99,2.84,2.73,0.35,2.94,3.26,2.51,2.99,1.61,0.54,0.46,-0.28,0 --0.50,0.71,-0.54,0.43,0.43,0.67,2.14,2.96,4.10,2.93,3.15,3.69,4.57,4.73,3.51,2.31,0.34,-0.29,-0.46,-1.46,0.01,2 --1.16,1.26,-1.17,0.99,1.16,-0.00,1.94,1.94,0.36,2.36,2.83,3.19,3.42,4.62,5.45,5.17,5.36,1.43,1.27,0.93,-0.94,2 --0.00,3.32,2.55,2.47,3.61,6.72,6.71,5.43,2.75,4.40,0.90,0.55,-0.21,-0.10,1.54,0.38,0.21,-0.61,-0.05,-0.89,0.23,1 -0.31,2.57,3.70,1.04,4.63,3.92,4.57,4.91,4.96,1.95,2.06,2.88,0.65,1.70,1.04,-0.72,1.27,0.59,-0.05,1.08,1.25,1 --0.90,-1.68,-0.07,-0.81,-1.59,0.88,-0.76,-0.55,1.98,2.21,3.92,4.92,5.42,4.75,6.19,4.76,3.98,1.59,1.03,0.74,1.39,2 --0.42,1.87,2.14,2.79,3.31,5.07,6.96,4.21,3.48,3.93,4.18,-0.05,-0.78,0.96,0.16,0.03,0.95,1.43,2.46,1.34,-0.98,0 --0.94,-0.18,-1.21,-0.46,-1.28,0.11,2.02,2.95,3.03,3.65,4.87,6.30,4.38,3.68,1.39,0.51,0.21,-0.88,0.23,0.17,1.83,2 --0.67,0.98,1.07,3.48,4.63,3.36,6.70,4.75,4.64,1.82,3.12,1.72,1.12,-1.40,0.26,-0.31,-0.82,-0.90,0.09,-0.71,-1.64,1 -0.49,0.28,2.29,-1.40,1.96,1.29,2.49,3.14,3.72,5.39,6.19,5.94,3.09,3.25,3.30,0.95,0.64,-0.52,0.62,-1.06,0.84,2 -0.71,1.68,-0.84,2.60,-1.38,2.50,0.39,2.19,1.57,1.14,1.18,3.90,2.34,5.15,2.10,4.35,2.28,0.48,1.99,0.99,1.08,0 -0.79,-1.56,-1.34,-0.30,-0.21,1.58,1.01,1.77,3.35,1.58,4.70,3.97,4.88,2.76,4.67,4.40,4.41,-0.60,-0.15,1.24,-0.65,2 --1.10,-0.40,1.19,0.32,-0.18,1.68,2.72,3.20,4.29,3.74,3.73,3.92,1.65,1.83,2.01,1.55,0.24,0.68,2.10,1.89,0.21,1 -1.17,-1.14,-1.29,-0.30,-0.66,2.14,1.13,3.33,5.38,3.76,3.05,6.43,3.41,1.02,2.36,1.23,-0.11,0.44,-1.52,1.03,0.14,1 -0.08,-0.08,2.46,3.69,3.84,4.20,5.44,3.95,4.61,2.37,3.29,1.09,0.88,0.13,0.19,0.07,-0.51,0.25,-1.34,0.26,0.16,1 --0.37,-0.14,-0.33,0.35,-1.26,0.89,1.73,2.11,2.69,5.41,4.48,5.53,4.08,2.51,3.34,2.08,0.22,-0.82,0.04,0.17,-0.56,2 -0.67,-0.11,1.43,0.49,0.30,2.33,2.24,1.35,0.38,3.37,2.43,1.19,4.11,3.39,5.28,3.32,2.42,0.54,0.24,-0.52,-1.80,0 --0.34,-0.39,1.21,1.52,2.26,4.00,3.45,3.48,3.25,2.25,2.14,2.96,1.94,1.85,3.18,2.71,0.46,1.57,0.52,1.09,-2.04,0 -2.20,2.51,-0.31,1.17,0.65,3.63,4.69,3.76,3.86,4.63,3.93,3.75,2.60,1.36,2.02,0.91,-1.16,-0.50,0.50,-1.18,2.58,1 -0.49,0.77,3.19,0.55,1.95,4.34,5.24,4.47,1.66,1.99,4.02,2.83,1.83,2.31,2.40,4.12,1.67,0.15,-0.17,-0.59,-0.46,0 --0.16,0.88,2.08,1.90,1.67,3.46,0.97,2.58,2.37,1.18,2.66,2.98,0.71,1.73,4.57,1.10,2.00,0.51,0.77,-0.73,1.07,0 --0.57,0.28,-1.27,1.59,0.26,0.21,-0.73,-0.34,0.95,-0.05,2.59,1.97,2.77,4.85,6.08,6.06,3.78,3.24,3.88,0.08,-0.28,0 -1.02,0.95,0.21,2.38,1.29,1.54,2.17,2.96,2.69,3.71,4.00,3.77,1.57,2.36,0.53,0.03,0.29,-0.65,-0.57,-1.29,1.49,1 --0.34,0.41,-0.24,-0.97,1.02,0.34,0.42,2.38,-0.21,0.48,4.50,4.21,3.69,4.79,3.94,3.74,3.81,3.09,1.60,1.07,2.39,2 -0.58,1.63,1.57,1.32,5.27,5.29,4.69,3.86,3.48,2.37,1.20,2.49,1.45,0.65,2.10,0.19,-0.49,0.46,0.69,1.06,-0.79,1 -0.14,-1.03,-0.11,2.07,1.38,-0.32,2.53,4.59,4.56,4.50,4.17,4.20,5.85,2.37,0.50,-0.57,-1.69,-1.67,1.44,0.49,-0.68,1 -0.99,-0.05,1.49,0.16,0.42,0.05,1.57,1.18,1.82,1.31,1.71,4.02,2.14,4.96,3.03,4.61,4.26,6.20,-0.05,1.35,0.63,0 -0.68,-0.93,-0.10,-0.83,-1.50,2.06,0.09,1.42,1.76,3.38,4.60,3.59,4.36,5.56,3.23,4.42,3.00,1.39,-0.05,0.58,0.78,2 -0.96,0.03,0.60,0.82,3.24,0.97,2.70,1.62,1.70,1.79,2.72,3.32,3.24,3.75,3.89,3.37,3.00,2.29,0.38,-0.58,-0.76,0 -0.74,2.06,3.39,2.21,2.06,3.96,4.70,2.42,2.29,1.65,-0.38,1.38,2.09,1.61,2.47,1.72,0.20,1.20,-0.81,-0.43,0.18,0 -0.48,1.15,1.81,2.93,4.20,3.65,3.21,3.16,2.51,2.88,1.86,2.37,-0.66,1.60,3.02,1.24,0.35,-0.40,0.40,1.89,-0.76,0 --1.41,0.68,-0.83,1.94,1.92,1.62,3.55,3.03,4.13,4.45,3.52,1.93,2.82,-1.26,0.05,2.04,0.23,-1.00,-0.45,0.01,0.71,1 --0.98,-0.51,0.73,-0.01,2.21,2.96,2.80,3.35,6.05,3.44,5.39,6.10,3.17,2.54,1.58,1.30,0.75,0.34,-0.07,-1.28,0.96,1 -0.11,2.74,1.33,3.13,3.04,5.72,6.56,6.11,3.88,2.51,3.38,0.59,0.30,-0.36,2.60,1.15,-0.11,-0.07,0.36,-0.84,-1.58,1 -1.59,0.18,0.10,-0.35,0.19,0.78,2.51,3.07,2.57,1.71,4.70,3.43,4.20,2.54,3.12,2.92,1.41,1.23,1.40,0.52,1.04,2 --0.61,-0.26,1.49,-0.30,-0.38,2.01,1.62,1.71,2.70,3.24,1.57,1.74,3.60,2.47,4.01,2.66,-0.43,2.90,0.60,1.82,0.21,0 -1.07,0.26,0.27,-0.79,2.24,1.63,0.39,-0.71,0.92,1.02,1.39,2.51,3.76,4.28,5.89,5.37,4.91,2.54,1.91,0.00,-1.61,0 -0.45,-0.64,1.77,1.59,3.25,1.86,4.36,2.67,2.29,2.46,-0.08,2.35,2.47,2.51,-0.28,0.37,1.51,0.24,1.78,0.27,0.20,0 -0.42,0.17,0.95,1.99,0.56,0.29,2.31,1.26,3.75,5.12,5.46,2.86,4.70,3.77,1.03,2.52,1.14,0.43,-0.10,-0.06,0.53,2 -0.09,1.21,-0.42,2.72,2.33,0.88,1.50,1.23,0.42,1.08,0.73,2.42,4.51,3.05,1.64,3.01,3.67,3.26,1.82,0.11,-0.32,0 --0.58,0.20,0.18,1.68,0.61,-0.16,0.47,0.69,-0.28,2.00,3.86,2.70,5.10,5.43,5.16,6.29,4.92,3.33,1.91,-0.02,0.85,2 -1.56,1.80,0.10,2.59,4.38,4.16,5.55,5.45,3.19,3.30,2.49,2.09,1.48,1.00,-0.64,1.17,2.35,-0.93,0.05,0.12,-0.94,1 --0.44,0.27,1.04,-0.28,-0.03,1.61,2.30,2.27,0.40,1.03,2.17,2.93,3.34,4.33,4.26,2.85,2.85,2.85,0.95,0.03,-0.81,0 --0.37,0.24,-1.53,1.12,2.49,0.97,0.33,1.97,2.73,3.09,3.73,6.15,2.97,3.13,2.21,2.03,1.86,0.89,2.01,-1.57,0.33,2 -0.15,1.69,2.68,3.19,4.62,3.38,3.42,4.04,1.88,2.14,0.87,1.48,0.90,0.43,-0.67,-0.14,1.23,2.03,-0.10,0.96,-1.99,0 -1.64,0.37,-0.21,1.23,1.69,0.24,2.25,0.10,0.83,3.29,3.27,3.36,3.17,6.46,4.91,5.08,2.78,1.19,1.09,-1.11,-0.41,2 --1.42,0.59,-0.83,1.26,1.33,0.75,2.27,1.87,3.53,1.81,3.94,4.36,2.95,3.19,3.58,2.78,2.27,0.09,1.74,2.66,-1.19,2 -1.76,-0.77,0.67,-0.02,1.20,0.25,2.02,0.94,4.10,1.33,3.71,3.47,5.05,4.49,4.37,3.73,1.95,1.93,0.16,0.69,0.40,2 -1.52,1.45,-0.29,3.76,3.56,4.80,3.83,4.54,3.07,2.90,1.95,0.74,1.62,1.78,1.80,-0.07,1.69,0.14,-1.18,-1.49,-0.40,1 -0.70,-0.64,0.21,0.90,-0.36,-0.48,2.53,-0.01,2.87,0.44,5.15,3.95,4.61,4.20,2.01,1.89,2.01,2.19,2.64,1.19,-1.81,2 -0.27,-0.09,1.03,2.27,0.35,2.03,2.79,3.51,4.43,4.94,6.22,5.53,4.77,4.17,0.65,0.92,-1.94,-0.94,1.66,0.89,0.37,1 -1.17,1.92,2.42,0.90,2.78,0.23,2.66,1.69,2.09,1.72,2.89,1.05,2.19,3.40,4.04,3.58,4.82,2.27,1.62,0.70,0.49,0 --1.11,1.40,1.18,1.48,2.18,1.56,2.73,3.71,1.14,1.89,1.94,0.47,-0.15,4.38,2.18,1.71,2.45,1.55,2.15,1.01,1.85,0 -0.62,1.32,0.95,1.08,3.82,0.55,0.87,2.77,1.07,1.28,0.42,1.38,1.42,3.85,3.12,1.32,2.49,1.56,1.67,0.04,-0.81,0 -0.85,0.73,-1.01,0.22,2.54,1.78,1.03,2.18,1.86,4.53,4.06,2.64,3.83,4.13,2.12,0.76,0.41,1.01,1.33,1.16,-0.61,2 -0.38,0.75,-0.37,-0.10,0.57,0.50,2.44,2.22,4.63,2.26,4.33,3.98,6.00,6.41,4.06,2.31,1.90,0.30,0.96,0.38,-0.53,2 --0.05,0.14,1.94,3.23,3.16,2.27,4.97,4.49,4.57,4.09,2.98,1.04,-0.61,0.58,1.46,0.70,0.63,0.35,-1.12,-1.11,-2.00,1 --0.23,1.89,0.40,1.77,2.09,5.07,6.47,2.89,2.70,2.08,2.65,1.67,2.91,1.62,1.84,1.46,1.32,-0.14,0.47,-2.01,-0.88,0 -0.07,1.38,-0.35,1.60,2.06,2.53,1.76,2.98,2.80,2.42,1.80,2.25,3.77,1.52,4.27,3.75,4.05,3.34,2.10,0.85,-0.79,0 --0.51,1.95,0.39,1.03,2.71,4.95,4.83,5.54,5.99,6.01,2.07,3.23,-0.28,0.48,-0.03,1.28,0.13,-0.76,-0.21,1.39,-1.17,1 -1.78,2.00,-0.01,1.08,2.20,3.19,3.22,3.36,1.67,2.38,1.91,1.99,1.99,-0.22,1.16,0.97,1.93,-0.23,1.22,-0.04,-1.33,0 -0.65,-1.44,0.37,0.14,0.09,0.59,0.93,2.94,1.61,1.79,3.75,5.76,4.55,4.22,4.38,2.69,2.19,0.40,1.74,1.07,0.91,2 -0.05,1.26,1.15,3.12,3.17,3.74,3.00,7.84,3.33,3.93,4.03,2.48,-0.58,0.38,0.96,0.62,0.52,0.47,1.83,1.26,1.63,1 -0.58,0.59,2.24,2.00,4.39,3.36,4.63,3.86,4.92,2.18,3.51,0.90,-0.47,0.19,-1.23,-0.72,1.37,0.56,-1.48,0.40,0.17,1 -2.18,0.89,-0.72,2.11,1.96,0.09,-0.64,-1.10,1.10,2.70,2.31,2.94,4.26,4.45,5.09,4.28,3.85,3.22,2.09,1.62,-1.07,0 -0.14,0.77,1.83,0.31,1.25,2.08,1.84,-0.33,1.45,0.85,3.94,1.52,4.16,4.19,2.38,2.53,4.85,1.17,1.43,2.21,0.27,0 -1.40,0.30,-0.37,0.49,2.04,1.16,2.61,0.92,3.29,0.54,3.09,4.00,2.82,3.61,6.35,3.49,4.48,1.82,-1.50,-1.27,0.92,0 --0.29,-0.79,-1.03,0.18,-0.94,1.28,2.75,2.90,2.75,4.26,4.23,4.40,4.67,2.57,1.17,2.11,-0.40,-1.72,0.60,0.88,0.13,2 --2.24,0.55,1.11,3.84,0.46,4.55,5.89,4.96,1.88,5.04,3.44,3.41,0.43,-0.28,2.43,-1.35,0.10,0.49,-0.83,0.63,0.15,1 -0.19,-1.68,0.78,1.11,2.04,1.23,2.04,2.78,-0.30,1.63,2.19,3.73,2.53,4.32,4.26,2.97,2.00,-0.16,1.51,-0.13,0.93,0 --0.41,0.77,2.59,1.74,3.57,3.39,5.17,3.76,3.85,2.60,2.66,1.93,-0.16,-1.09,1.31,0.54,-0.07,0.47,1.10,0.16,-0.78,0 -0.71,0.58,2.03,0.48,1.89,4.70,2.66,1.97,1.98,1.55,0.95,1.82,1.58,2.13,2.44,4.98,0.51,1.74,2.14,0.51,1.16,0 -0.94,-0.43,1.65,-0.22,-0.48,0.66,0.60,2.49,3.22,4.26,3.77,4.89,3.45,2.82,1.99,2.06,2.04,1.31,0.27,1.59,0.07,2 -1.01,1.44,2.43,0.30,1.89,2.40,1.40,2.69,1.44,2.93,0.83,3.71,2.32,5.09,4.92,3.39,3.02,2.76,0.33,1.57,0.96,0 -2.48,0.49,-0.19,-0.56,-0.25,-1.18,-0.27,1.34,0.11,1.68,2.88,3.20,5.76,6.06,5.66,4.66,3.23,2.40,2.00,-0.15,-0.86,0 -0.63,-0.31,2.53,3.05,1.52,3.85,3.43,1.87,1.98,2.10,1.30,2.31,1.17,1.93,3.32,-0.18,0.50,0.76,1.84,1.19,-0.38,0 -0.30,1.69,0.20,0.18,0.36,-0.56,1.27,1.44,2.17,0.91,2.56,4.54,5.66,4.24,3.84,4.02,2.70,1.31,1.99,1.08,-0.11,2 -1.23,0.72,-2.04,0.99,1.18,0.31,2.03,2.76,3.38,6.31,5.62,2.73,5.77,3.92,2.56,-0.29,-0.03,1.30,-0.16,1.10,-0.02,2 -0.87,0.45,0.24,0.97,0.15,0.17,1.44,0.02,0.98,0.96,3.78,2.16,4.42,3.54,4.85,1.72,2.52,2.36,-0.24,2.73,-1.15,2 --0.40,0.42,0.08,-1.14,-0.14,0.12,-0.02,1.87,0.49,1.52,2.99,4.00,3.89,4.65,5.29,4.74,2.43,3.07,2.91,0.60,-0.75,2 -0.36,0.51,1.92,0.95,3.39,3.70,5.07,4.50,3.35,3.41,2.02,1.97,1.93,0.60,1.16,1.48,0.68,1.64,-0.23,0.08,0.46,0 -0.01,0.54,1.35,1.90,1.37,2.34,4.00,4.71,4.98,2.46,4.37,1.63,1.71,2.38,-0.21,0.75,-0.49,-0.01,-0.05,1.10,-1.83,1 --1.86,1.30,0.18,0.74,1.63,0.81,2.19,1.28,1.44,0.98,1.94,1.00,2.44,4.51,2.38,3.57,2.51,1.70,-0.35,-0.41,-0.62,0 --0.56,1.21,1.24,1.04,2.43,0.92,2.24,3.88,1.39,1.82,0.06,2.00,1.32,2.91,1.86,2.65,0.63,0.57,1.53,0.12,-1.65,0 -0.32,-0.71,0.75,0.54,1.30,-0.17,-0.04,0.22,-0.04,2.56,1.98,3.63,4.73,4.88,5.70,5.02,1.95,2.62,1.77,0.05,-1.11,2 --0.19,0.33,-0.23,1.42,-0.88,1.98,-0.00,1.88,0.51,1.86,-0.05,3.18,4.20,4.35,7.73,6.37,2.97,2.41,0.24,1.85,-0.90,0 --0.62,2.21,2.10,1.36,4.20,5.95,5.88,5.27,4.15,5.66,4.11,0.50,1.50,0.22,0.37,0.80,0.94,-1.31,0.76,0.56,0.68,1 --0.25,0.91,-0.64,0.93,-2.13,0.19,1.87,2.22,3.84,4.96,7.00,4.87,3.19,2.18,2.94,0.07,-0.61,-0.11,-0.04,-1.27,0.10,2 -0.47,-1.57,-0.50,0.41,0.87,-0.35,1.90,1.89,-0.63,2.54,2.74,3.20,4.73,5.70,3.74,4.14,3.43,3.73,3.39,0.44,-0.57,2 -0.97,3.05,1.68,3.03,2.06,4.52,4.46,1.62,1.96,3.42,1.80,2.04,1.92,1.94,2.56,2.37,1.91,-0.45,-1.11,1.90,1.44,0 --0.15,-0.19,3.05,3.17,3.02,5.72,5.51,3.36,4.32,2.87,2.45,2.03,-0.16,-1.23,0.53,1.82,-0.01,0.99,-0.10,0.48,1.55,0 -0.27,0.99,-0.43,-0.48,-0.31,0.67,1.43,2.23,3.23,4.83,3.33,4.47,4.69,2.00,1.85,1.48,1.08,1.33,0.56,-0.08,0.19,2 -1.44,-0.44,-0.05,0.24,-0.90,1.20,0.67,0.16,1.09,1.75,2.91,3.44,4.42,5.77,5.72,3.72,2.45,0.40,2.10,1.72,1.44,2 -1.54,1.97,0.81,3.05,3.55,1.70,2.09,6.13,3.09,4.78,3.30,3.67,1.83,1.48,2.31,0.76,0.24,-0.06,0.25,0.45,0.59,1 -0.28,-0.16,1.42,1.35,2.14,3.70,4.56,3.75,3.43,3.39,3.98,2.14,-0.33,-0.97,1.26,2.60,-0.07,1.31,0.42,-2.29,0.37,0 --0.02,1.76,1.56,2.00,2.74,1.75,6.77,5.10,4.02,4.19,2.90,3.38,1.56,0.74,-0.04,0.01,-2.13,-0.16,-0.07,0.16,1.07,1 -0.04,1.92,0.97,3.44,3.75,3.53,7.18,6.20,4.96,2.65,1.87,1.73,1.32,0.43,0.02,-1.32,-0.12,0.54,0.49,-1.14,-1.02,1 -0.14,-0.41,1.85,3.83,5.36,6.21,5.03,6.59,4.33,1.78,3.18,0.48,0.78,-0.99,0.24,-0.34,-2.07,1.26,-1.23,0.21,0.14,1 --0.91,0.41,1.04,1.20,1.79,3.32,3.37,3.18,2.27,3.81,3.29,2.47,2.39,0.99,1.31,0.19,0.76,-1.42,-0.34,-1.13,-0.96,1 --1.34,2.16,-0.75,0.75,-0.17,1.33,1.70,2.47,0.71,1.86,2.92,3.20,3.96,6.50,6.12,4.58,2.55,2.79,2.17,2.34,-0.24,2 --0.37,0.95,2.37,1.35,3.70,3.65,3.08,4.03,3.20,3.70,0.40,1.26,1.48,1.01,2.59,0.95,1.34,1.50,0.28,-0.24,-0.75,0 -2.15,2.18,0.61,-0.01,3.51,2.58,2.86,2.32,4.14,2.13,3.55,1.10,2.31,3.94,2.38,1.33,1.70,2.67,-0.24,0.17,0.28,0 --0.28,1.77,-0.68,0.02,1.65,0.44,3.26,2.88,4.60,5.26,5.60,3.03,3.33,1.85,-0.18,2.21,0.49,1.57,0.06,0.47,0.30,1 -1.55,-0.15,1.75,2.38,2.35,3.04,2.68,3.61,1.55,2.59,2.32,1.02,2.16,2.80,2.70,3.50,2.30,1.46,2.12,2.21,-0.24,0 --1.11,0.52,0.37,0.57,3.62,1.69,2.79,3.12,2.27,5.78,3.43,3.01,2.54,2.16,1.46,-0.26,-0.05,1.27,0.53,-0.24,-0.10,1 --1.73,0.94,0.61,0.60,1.82,2.98,4.87,4.43,4.60,3.42,1.57,2.22,1.93,1.24,0.86,0.13,0.78,-1.01,0.65,0.16,1.93,1 -0.24,1.32,1.01,2.15,2.79,3.82,4.59,4.35,4.77,2.70,4.60,2.82,1.47,2.66,-0.54,-1.08,-0.15,-0.55,1.21,0.59,-0.03,1 --1.65,0.04,-1.30,-0.19,-0.29,0.22,0.16,1.83,1.12,4.28,3.44,4.08,3.10,3.17,2.05,3.46,0.07,-1.67,0.25,0.36,0.18,2 -2.01,-1.71,0.97,0.26,1.03,1.09,2.44,0.42,3.04,3.18,4.07,3.87,6.16,2.53,3.41,2.27,2.34,2.53,0.57,-1.79,1.91,2 -0.24,-0.17,0.58,1.96,3.10,5.85,2.83,3.53,2.93,4.99,4.06,2.40,1.81,2.73,2.09,1.37,-0.09,-0.07,1.06,-0.65,-1.06,1 --0.44,-0.05,-0.66,2.10,1.54,3.30,4.36,6.11,3.93,2.42,5.26,4.31,3.80,3.65,0.38,1.39,-1.82,1.78,1.11,0.33,1.71,1 -1.00,1.27,0.85,0.00,1.18,1.49,3.84,3.88,3.51,3.25,6.86,6.58,4.24,2.02,2.55,1.35,-1.83,-0.05,-0.54,-0.79,0.14,1 --0.27,-2.11,0.43,1.38,1.43,0.08,1.75,-0.22,-0.21,0.80,2.36,2.20,3.13,4.34,4.15,5.08,3.43,3.15,0.46,-0.31,-0.22,0 --0.18,-0.46,1.14,-1.79,0.20,1.13,1.32,1.90,2.90,3.82,4.87,2.78,4.30,4.32,2.37,2.18,-1.45,1.71,0.30,0.60,0.75,2 -0.17,2.30,2.06,3.43,2.79,3.88,7.08,3.28,5.19,0.67,0.99,0.31,0.89,0.36,-0.93,-0.63,2.22,-0.97,-0.19,-0.02,1.17,0 -0.40,1.95,-0.82,0.47,0.02,-0.27,-0.40,-0.18,0.51,0.18,1.23,2.28,3.06,6.23,7.62,5.10,3.22,2.05,3.67,0.20,0.12,0 -0.60,-0.30,0.92,0.73,-1.31,1.01,0.56,2.24,2.80,4.24,4.40,3.65,4.23,3.47,2.80,2.27,0.60,0.49,1.84,0.32,-0.08,2 -0.88,-0.58,4.72,0.62,2.27,4.34,5.98,3.51,3.94,4.33,1.59,0.42,2.09,1.61,1.18,2.52,0.23,0.66,0.89,0.73,-0.29,0 --0.90,-1.19,-0.36,0.23,0.34,0.36,-0.28,1.80,2.21,2.74,3.24,5.89,3.37,6.09,2.89,1.56,3.33,2.07,1.07,-0.07,1.67,2 -1.72,-1.31,0.10,1.31,1.47,1.35,2.16,0.11,2.38,0.58,1.61,3.14,1.52,4.55,4.70,3.31,3.00,2.26,0.53,0.41,0.36,0 -1.13,-0.26,1.00,0.80,0.42,0.90,1.32,0.08,1.36,1.11,4.20,5.08,4.40,2.33,4.77,5.61,3.41,2.35,2.90,0.11,-0.57,2 -0.21,0.71,1.12,3.30,2.83,5.60,5.25,3.45,3.64,3.45,0.69,-1.05,1.75,0.93,-0.89,-0.72,-0.30,0.52,-1.29,1.36,0.04,0 --1.33,1.04,1.42,-0.66,0.62,2.51,4.41,2.20,5.02,6.09,3.58,5.33,3.96,0.74,1.77,1.57,0.89,-0.26,1.54,2.54,2.87,1 -0.72,1.93,0.93,1.05,0.88,0.83,1.18,2.13,-0.84,2.26,2.46,0.94,4.45,4.68,3.67,3.19,4.64,4.78,0.88,0.75,-1.99,0 --0.16,-1.19,0.68,2.36,2.41,2.46,1.89,1.34,2.68,3.31,2.77,3.53,3.47,4.25,2.03,2.51,2.95,1.67,0.12,0.17,0.27,0 --1.21,1.26,0.99,0.61,1.16,-0.08,-0.27,1.00,1.67,2.13,3.50,3.52,2.93,3.52,5.34,3.54,1.62,1.42,2.62,1.39,-1.90,2 -2.23,-0.28,-0.51,-0.46,0.88,1.36,1.36,3.12,3.09,4.13,5.14,4.15,4.34,5.47,2.93,2.58,1.99,1.96,1.31,1.03,1.04,2 --0.07,1.93,-0.13,0.23,-0.35,1.50,2.56,4.58,3.19,6.40,6.76,5.21,2.61,2.22,1.51,1.47,0.72,-0.39,-0.42,-0.80,0.42,1 --1.40,2.03,0.60,2.86,3.01,4.82,5.09,4.89,1.82,3.24,1.30,2.67,0.51,-0.67,0.92,-0.86,-0.83,-0.10,-1.82,-0.35,0.84,1 -1.99,-1.44,0.00,-3.05,-0.07,-0.45,2.42,1.03,1.76,2.03,4.14,6.39,3.44,2.51,2.84,4.29,1.21,1.40,-0.16,-0.56,-2.06,2 --0.80,1.30,0.42,1.58,1.29,5.25,4.24,3.30,4.76,3.03,1.58,0.15,1.01,-0.59,1.42,1.05,3.19,1.28,0.05,-0.04,0.90,0 -0.28,-0.41,-1.05,-1.90,1.26,-0.13,0.66,-0.67,0.45,2.42,3.06,1.39,5.17,4.53,5.75,2.03,3.94,1.45,2.77,1.05,0.04,2 --0.66,-1.48,0.99,1.75,2.39,3.85,2.12,4.15,5.13,3.67,4.50,3.01,4.73,-0.34,0.67,-0.55,0.32,0.76,0.39,0.15,-0.09,1 -0.53,-0.41,-0.11,1.44,0.81,2.10,1.52,4.37,0.49,2.22,0.60,3.48,2.40,4.30,4.05,3.31,2.19,3.89,2.52,2.58,-1.19,0 -0.46,-0.30,1.35,0.73,-0.34,-0.52,0.40,1.78,3.74,3.39,3.42,2.83,4.06,4.95,5.18,1.82,0.44,1.99,0.55,-0.48,-1.00,2 -0.34,1.18,1.05,1.60,0.28,-0.36,0.27,-0.11,2.19,1.24,1.38,4.85,4.66,3.44,4.72,2.55,1.87,2.12,1.71,-0.23,1.08,2 --1.60,0.79,-0.81,-0.45,-0.79,2.78,1.33,3.17,3.36,5.05,3.77,3.95,5.28,4.57,4.10,3.03,1.90,1.38,-0.18,-1.07,1.48,2 --0.26,1.96,0.82,1.54,-0.54,1.60,2.16,4.59,5.59,5.29,3.23,5.31,4.32,2.54,1.77,1.58,-1.30,-0.16,-0.11,-1.53,0.06,1 --0.45,-0.05,1.40,0.40,0.46,-0.60,1.80,0.67,1.62,4.88,6.51,2.99,4.49,3.54,1.60,1.19,-0.62,0.85,1.82,0.59,0.27,2 --0.30,1.15,0.85,0.61,-0.34,0.06,0.97,2.14,2.20,5.81,2.64,5.08,2.67,3.50,3.28,2.39,1.05,-1.46,-0.65,0.95,1.28,2 --0.24,0.51,0.00,0.93,1.10,3.39,4.06,3.60,4.16,4.40,6.21,4.43,2.45,1.30,1.83,0.60,0.58,1.18,-1.00,-1.33,-0.66,1 -0.44,-0.11,0.76,0.58,1.21,3.20,6.05,4.11,4.70,3.29,1.72,2.85,1.42,1.00,-1.00,0.13,0.37,-1.44,1.83,-0.61,0.41,1 --1.32,3.21,1.53,3.51,1.67,4.54,4.15,3.83,2.40,1.22,0.11,-0.65,2.03,-0.23,0.12,0.46,-0.32,1.24,-0.75,0.73,-0.46,0 --0.67,-1.36,0.51,1.78,1.54,0.57,2.82,1.51,6.05,3.90,5.36,3.46,2.15,3.03,2.37,1.11,-0.74,0.65,-0.75,0.76,-1.02,1 --0.49,1.91,2.01,4.33,4.40,4.68,5.54,5.54,4.40,2.44,1.76,1.68,1.98,1.33,-1.50,-0.10,0.16,-0.59,1.38,0.32,-1.81,1 -0.18,-0.52,-1.28,0.92,0.41,2.87,2.52,3.93,3.98,3.12,2.21,3.27,5.35,2.20,1.08,-0.23,-2.31,-1.22,-0.11,-0.13,0.62,1 -1.08,0.71,-0.29,2.30,1.81,3.35,3.19,2.64,4.46,5.34,2.85,3.46,3.28,1.39,1.54,1.58,1.53,-0.56,-0.22,-0.29,-0.46,1 -0.49,-0.74,1.35,0.73,1.72,1.78,1.71,1.37,1.31,1.00,2.59,0.30,3.90,3.97,3.60,5.32,3.11,3.39,2.27,-0.43,0.82,0 --0.38,2.10,-1.44,-0.31,0.88,0.01,0.58,3.01,1.93,6.18,3.41,5.09,3.35,3.21,2.33,2.02,1.38,1.43,1.63,-0.34,0.46,2 --1.63,1.82,1.04,-0.94,-2.14,-2.06,0.63,0.93,0.94,-0.32,1.96,2.60,4.01,1.94,4.91,4.71,2.88,2.73,1.49,1.58,-1.26,2 --0.43,-0.60,-1.05,0.42,-0.24,3.01,2.42,3.96,3.53,4.47,6.03,5.23,3.78,2.31,2.18,2.41,-1.12,-0.22,-0.47,-0.03,0.82,1 --1.23,1.62,2.93,1.36,2.31,2.22,3.38,5.37,3.07,2.37,1.29,1.37,1.66,0.79,0.54,1.44,3.29,1.08,0.69,0.16,-0.05,0 --0.86,-0.31,2.49,2.92,3.81,5.27,5.37,6.23,2.01,5.24,2.97,0.59,1.20,0.77,1.04,1.45,-0.62,-0.04,-1.77,-2.45,-0.27,0 -0.33,1.05,1.03,-1.16,-2.53,0.25,0.56,1.71,2.20,2.11,4.35,3.02,4.11,5.45,3.54,2.93,1.70,2.98,0.64,2.28,0.67,2 --0.40,1.25,1.64,0.17,4.09,4.98,1.99,4.17,3.48,4.96,4.76,1.47,1.89,0.57,1.01,0.58,2.17,-2.22,0.04,1.08,-0.45,1 -1.04,0.99,0.78,0.39,-0.05,0.59,0.58,0.57,-0.01,1.37,3.05,3.03,2.63,5.95,5.76,3.32,3.85,2.78,3.48,-0.13,0.90,2 --0.50,1.47,1.58,1.21,3.86,4.26,5.67,5.19,3.22,2.40,2.03,2.88,-0.09,0.88,-0.46,-0.77,-0.41,-1.06,-0.87,1.05,0.31,1 -0.62,0.88,-0.73,-0.66,-0.57,0.85,0.71,1.63,1.62,4.80,3.54,3.67,3.92,3.66,2.81,3.33,2.98,0.61,-0.91,0.44,0.54,2 -0.06,0.25,1.58,0.00,1.12,-0.36,2.14,0.10,0.70,2.99,2.42,3.30,3.73,5.65,5.23,2.60,2.48,3.17,1.43,-0.29,-0.11,2 --0.85,-1.09,0.83,-0.79,2.69,1.95,2.66,3.95,6.15,5.48,7.60,3.29,4.30,0.95,1.32,0.66,-0.03,0.15,0.47,-0.16,2.35,1 -0.24,-1.05,1.95,3.08,4.33,3.29,4.55,4.10,4.34,3.59,4.20,1.81,1.79,2.41,0.34,-0.42,-0.26,0.15,-0.30,-1.15,-1.28,1 --0.07,-0.03,-0.10,-0.41,-0.98,1.70,1.14,2.40,0.48,2.58,1.76,3.49,4.04,3.48,5.48,3.01,2.88,2.09,-0.78,-0.13,0.98,2 -0.97,2.23,1.33,-0.86,0.69,-1.34,3.86,-0.01,1.02,0.61,2.94,1.67,2.22,2.69,3.31,3.23,4.02,2.96,1.22,0.70,0.10,0 --1.12,0.37,0.68,-2.31,-1.23,-0.35,-0.69,2.54,1.74,3.53,1.91,5.86,3.34,3.52,3.39,4.13,2.29,1.67,0.93,0.47,0.60,2 --0.95,-1.27,-0.85,0.44,-0.35,-0.74,1.69,0.48,2.19,1.49,3.05,3.45,5.02,6.11,4.88,4.88,3.37,2.01,1.62,0.02,-0.58,2 --0.68,0.75,0.10,1.57,-0.25,0.52,1.84,2.25,3.60,7.36,5.50,5.79,3.95,1.32,2.59,1.23,0.53,-0.50,-0.37,1.22,0.63,1 -1.36,-0.46,-0.99,1.09,0.90,1.85,2.93,3.00,3.42,4.71,4.13,4.21,2.25,2.79,-0.47,-0.64,-0.37,0.65,0.38,1.45,-0.17,1 -1.13,-0.68,-1.94,-1.15,1.70,1.25,0.28,0.28,0.28,1.85,2.02,5.21,4.26,3.83,6.97,3.81,1.73,3.52,0.86,0.94,-1.21,2 --1.89,0.10,0.91,3.03,4.14,3.46,5.46,4.74,3.79,2.67,4.23,1.22,-0.73,-0.46,1.22,-1.31,2.50,-2.07,-1.62,0.94,-0.37,1 -2.82,0.77,1.96,2.67,2.79,4.23,6.40,5.11,4.79,1.95,1.43,0.94,-0.09,1.63,0.77,1.76,-0.55,-0.09,-0.25,-1.06,-1.17,1 -0.57,-1.42,-0.47,-0.91,-0.68,0.67,-0.08,1.22,1.73,3.62,5.09,3.11,4.12,4.08,2.98,2.73,3.08,-0.70,0.70,1.69,1.32,2 -0.82,-0.76,2.06,0.83,1.09,1.68,3.63,3.94,3.55,4.59,5.79,3.82,3.79,2.41,-0.50,0.53,-1.03,-0.28,0.02,1.54,-0.19,1 -0.72,-0.04,0.66,-0.07,0.57,1.60,-0.45,-0.61,0.77,0.90,1.81,3.20,4.61,4.03,5.08,5.30,2.65,3.04,2.85,0.08,0.21,0 --0.14,-0.04,1.37,3.77,0.32,2.68,4.60,2.88,4.91,3.12,2.87,1.89,-0.40,0.38,-1.33,0.77,0.62,-1.03,-0.13,-1.86,0.26,1 --0.27,1.91,2.46,1.61,3.41,2.46,3.90,5.28,4.55,3.79,1.54,-0.38,0.29,-1.38,0.06,1.80,1.73,-0.18,-0.27,0.91,-0.57,1 -1.05,0.27,0.64,-0.04,1.06,0.93,-0.64,-0.16,0.84,1.33,3.39,3.93,4.16,3.58,6.60,2.85,6.48,3.20,2.72,2.08,0.03,0 --1.22,1.52,-0.01,0.47,2.98,2.44,3.55,2.55,5.29,3.53,4.99,3.58,1.11,2.01,1.11,-0.06,-0.27,0.37,1.45,0.73,-1.23,1 --0.84,-0.24,0.05,1.03,0.13,-0.75,0.98,0.73,0.81,1.39,1.61,3.70,3.85,4.10,5.14,3.19,4.32,1.82,3.20,-0.43,-1.23,0 -1.34,0.30,1.85,2.94,4.29,4.43,3.18,5.07,3.10,3.24,3.22,0.57,1.09,0.02,1.60,0.92,0.70,-1.15,0.80,0.63,-0.55,1 --1.60,0.38,2.45,2.55,3.31,4.85,5.38,1.38,0.84,2.57,2.16,2.36,1.14,2.70,1.22,1.85,2.17,-0.01,0.69,0.23,1.09,0 -0.02,2.42,0.54,-1.00,-0.70,-0.14,2.18,0.72,3.22,2.06,4.99,2.21,2.94,4.55,3.36,3.13,0.56,1.67,0.43,-0.92,-1.56,2 --1.85,-0.24,1.73,2.33,3.03,3.88,5.69,5.34,4.80,2.36,2.12,1.88,2.19,-0.67,0.21,0.46,-0.20,-0.84,0.95,-1.14,0.99,1 --0.37,-1.05,0.05,-0.33,1.77,-0.49,1.30,-0.21,0.77,0.48,2.03,2.11,4.35,5.53,4.66,4.93,4.01,4.46,2.12,0.22,0.12,2 --1.17,1.17,2.63,3.37,2.25,5.93,8.76,4.35,5.17,2.87,2.07,1.11,0.94,-2.37,-0.65,-0.30,-2.17,-1.21,-0.82,-1.47,1.39,1 --0.28,0.65,0.75,0.31,0.96,0.89,2.78,1.94,3.86,5.09,4.91,4.07,4.12,1.67,3.76,1.84,3.74,2.73,1.05,-0.52,-1.41,2 --0.96,1.15,0.22,-0.86,1.19,2.10,3.33,0.61,0.60,3.72,3.15,2.68,5.27,5.39,4.11,3.68,2.32,2.24,0.66,1.22,-1.19,2 --0.24,0.34,0.30,2.75,1.47,3.92,5.68,3.86,3.73,4.15,3.25,2.10,3.47,3.65,1.77,-0.20,-1.18,-0.27,-0.27,0.70,0.55,1 -1.32,1.01,2.40,0.69,1.99,2.49,2.38,3.55,3.18,1.73,1.29,2.07,1.22,-0.13,2.21,2.41,4.23,2.70,2.02,1.01,0.76,0 --0.12,0.16,0.77,3.21,3.82,4.29,3.74,4.26,2.50,2.44,2.29,1.55,-0.59,-0.37,0.66,1.28,0.10,-0.54,-0.17,-1.87,-1.71,0 -2.33,1.05,-0.47,1.45,-0.35,1.69,1.20,-0.13,1.91,1.53,2.19,4.30,3.90,3.73,5.79,3.66,3.28,3.01,3.66,1.23,1.50,0 -1.52,-1.62,2.50,1.23,-0.25,3.27,2.87,0.01,0.03,1.30,1.43,1.81,2.85,2.54,3.16,3.70,2.15,2.19,2.66,0.00,0.48,0 -0.44,0.67,3.62,3.16,1.32,1.99,2.73,1.36,1.88,3.29,1.48,1.57,3.28,1.92,1.05,1.75,4.75,0.71,1.55,1.81,0.87,0 -0.18,-0.81,2.51,-0.58,-1.05,1.82,3.76,3.59,4.34,3.34,6.65,5.66,4.30,4.07,1.59,1.98,-1.01,-0.53,0.85,0.11,-0.93,2 -1.39,2.50,1.69,2.67,2.28,4.09,2.59,4.89,2.01,6.32,4.50,3.12,0.96,1.32,1.26,0.63,0.41,-1.22,-0.79,1.06,0.16,1 --0.81,-0.13,-0.99,2.20,0.11,0.12,0.24,1.11,1.15,2.35,3.40,5.65,2.87,4.08,3.07,4.49,1.71,1.75,0.91,0.45,1.65,2 -0.91,0.99,0.28,0.63,-1.34,1.30,2.41,2.16,3.98,3.78,5.12,4.62,3.75,3.86,2.90,2.14,-1.67,-1.43,-0.52,0.01,-0.39,2 -0.41,-0.26,0.15,-1.27,0.01,-1.12,0.97,3.62,1.52,2.40,5.26,4.49,3.54,3.48,4.25,3.06,0.99,0.26,0.19,1.76,-0.62,2 -1.14,-0.04,-0.89,0.27,-0.86,0.97,-0.31,1.08,1.74,0.70,4.43,3.95,4.87,4.07,5.52,1.41,2.30,2.52,2.72,0.07,-1.41,2 -0.38,0.59,1.10,0.11,-0.56,0.76,0.46,1.29,2.96,4.55,6.59,3.97,3.93,3.18,2.93,1.00,0.64,2.44,0.39,0.59,-0.30,2 --1.02,-0.36,0.15,1.34,0.05,0.58,1.68,3.63,2.71,3.67,7.17,4.16,4.05,3.20,1.81,2.14,0.02,-0.54,-0.22,-0.02,-3.46,2 --1.33,1.02,0.16,1.34,2.39,1.75,5.03,4.75,2.81,4.70,3.57,4.99,1.04,2.15,-1.45,-0.29,0.26,1.94,1.01,-1.99,-0.65,1 --1.08,0.97,1.57,0.65,3.14,2.39,4.60,0.93,-0.12,0.23,1.22,2.41,1.72,2.09,4.65,1.64,1.46,3.34,1.34,-0.23,-1.13,0 -0.37,-0.71,-2.12,-1.25,0.82,3.37,0.63,-0.75,-0.72,0.20,0.45,3.45,2.38,4.63,4.90,3.54,4.07,2.36,0.59,0.87,0.22,0 --0.50,0.79,-1.39,0.19,-0.40,1.15,2.01,2.37,5.03,3.72,2.92,2.28,4.66,3.76,2.37,2.57,1.52,1.46,1.45,-0.02,0.53,2 --3.00,0.14,-0.46,0.47,1.75,2.27,1.00,0.44,0.03,1.55,2.55,2.99,3.23,3.66,3.42,1.90,2.09,0.64,0.81,1.25,0.94,0 -1.90,1.65,0.26,2.16,0.43,1.87,1.45,4.78,4.55,4.70,4.52,1.61,4.20,3.91,1.90,0.15,-0.86,-0.01,-0.07,0.73,0.77,1 --0.33,-0.21,0.71,1.92,1.83,2.83,3.46,3.30,2.19,0.98,-0.22,2.06,1.84,2.62,3.15,0.33,-0.19,-1.29,0.87,-0.94,-0.72,0 --0.30,0.73,0.38,1.85,-1.04,1.45,3.02,4.57,4.83,5.82,4.86,4.94,2.04,1.68,1.66,-0.61,1.17,0.84,0.09,-0.93,-1.35,1 --1.27,2.07,1.27,3.37,4.09,4.58,4.99,4.82,2.39,2.24,0.65,0.60,-1.27,1.30,0.24,-0.08,-1.15,-1.23,1.53,1.50,-0.53,0 -0.83,1.97,1.69,1.16,1.86,3.92,5.38,3.10,3.56,3.92,3.47,0.55,2.17,2.63,3.34,0.86,1.85,1.74,-0.13,-1.56,0.90,0 --1.63,-1.72,2.15,2.16,2.19,1.55,3.41,4.90,3.04,4.40,3.54,3.16,2.31,1.85,0.40,1.18,-0.67,-0.40,-0.92,0.10,-0.46,1 --0.24,0.38,-0.65,1.21,0.98,3.19,3.13,5.49,2.94,5.69,4.12,3.95,1.73,1.81,2.74,0.04,0.37,-0.66,0.95,1.06,-0.54,1 --0.52,0.67,1.53,1.92,0.94,1.82,4.45,3.81,2.83,1.76,1.90,2.74,1.32,3.93,2.94,4.49,1.87,1.47,-0.90,0.87,0.03,0 --0.38,2.07,0.36,4.67,2.98,5.34,4.59,3.74,2.43,1.55,2.95,0.28,0.83,0.46,0.26,1.15,-2.07,-1.61,0.77,1.15,-0.48,0 -0.57,0.46,0.87,-0.74,-0.17,2.45,1.53,0.82,5.10,4.61,5.09,4.73,4.30,4.56,3.05,1.83,-0.52,0.96,-0.67,-1.36,0.92,2 -0.61,1.22,0.50,2.48,0.01,2.08,0.17,2.59,0.24,3.52,5.57,5.10,3.66,4.46,2.14,3.90,2.30,0.56,0.42,3.50,0.75,2 -0.81,1.21,1.21,2.68,3.60,4.17,6.51,4.81,3.15,2.79,3.33,1.44,2.22,-1.31,-0.31,1.42,-0.14,-0.49,-0.26,1.42,1.33,1 -0.27,1.61,0.66,1.22,1.82,4.35,4.42,3.84,3.19,4.57,5.10,3.07,1.33,2.89,1.28,0.28,1.95,0.29,0.35,-0.08,1.02,1 -0.92,1.07,0.46,-0.88,-0.55,-0.20,0.14,-0.02,1.75,2.25,2.46,3.68,3.53,3.05,6.19,3.63,3.70,2.94,2.83,0.52,0.71,2 -1.57,-0.18,3.76,1.32,2.94,3.70,4.52,4.64,3.79,2.70,3.65,1.70,0.33,2.01,-0.42,2.05,1.03,0.78,1.22,0.75,-0.89,1 -1.08,0.42,1.22,0.80,0.07,1.51,-0.97,-1.88,0.08,0.74,2.48,2.33,4.12,4.43,5.35,4.87,5.67,3.15,1.50,1.33,0.10,2 -0.80,-0.15,1.36,1.43,1.21,1.65,-0.61,2.42,0.89,-0.24,2.70,1.93,3.01,4.47,5.12,3.46,2.43,3.61,0.15,2.12,-1.19,0 -0.78,1.14,0.25,-0.24,0.06,1.08,-0.87,2.77,2.85,4.20,3.06,2.45,3.82,3.28,3.29,1.30,0.61,2.09,-1.28,0.30,-1.23,2 --0.33,0.75,-0.73,-0.70,-0.79,-0.40,0.61,1.60,1.39,2.89,4.09,2.94,4.40,4.64,5.04,2.79,2.36,2.41,3.42,-0.41,-1.57,2 --1.20,1.99,-0.16,-0.63,0.92,-1.03,1.74,2.71,1.37,2.37,2.77,2.03,3.39,2.42,4.18,3.57,1.88,2.57,1.88,-0.12,-0.73,2 --0.25,-1.72,0.84,-0.54,-0.68,-1.26,1.89,2.96,1.48,4.35,3.25,3.67,4.22,3.32,4.79,3.42,1.04,2.27,0.07,1.84,-0.08,2 -1.03,1.72,0.92,2.77,5.86,5.12,5.07,4.90,3.39,0.98,1.96,1.95,-1.96,-1.77,2.05,1.25,1.15,1.46,0.85,-0.58,0.03,0 -0.82,0.65,-1.28,2.35,2.43,5.21,3.69,5.47,6.13,4.11,2.75,2.80,1.28,1.16,0.02,1.27,-0.92,-1.04,-0.90,-1.86,-0.99,1 --0.34,0.49,-2.24,-0.12,-1.11,0.26,0.63,0.30,-0.56,1.63,2.66,5.39,3.09,4.36,5.77,2.26,3.56,1.09,0.19,-0.01,0.31,2 -0.09,1.64,-0.24,-0.41,0.31,2.01,0.65,3.65,2.75,4.38,6.59,4.57,4.90,2.21,2.45,1.42,0.70,0.94,-1.26,-0.73,2.16,1 --0.59,-0.44,-0.01,2.22,1.34,1.96,3.03,4.05,3.33,4.56,5.07,4.34,2.02,3.73,0.66,1.57,0.41,-0.87,-0.45,0.44,-0.57,1 --0.13,0.35,3.14,3.06,1.95,4.23,4.85,4.81,2.23,2.58,2.17,2.08,1.84,2.95,2.01,-0.05,2.02,0.86,-0.09,1.23,-0.44,0 -1.14,2.30,0.87,-0.84,-0.46,4.36,1.10,-0.13,3.68,3.60,4.98,3.36,3.93,4.36,4.39,3.22,0.13,-1.04,0.24,0.22,-0.71,2 --0.40,1.19,-0.22,-1.33,-0.16,0.26,0.04,-0.18,1.28,1.10,2.27,1.48,5.87,4.49,3.56,2.89,2.81,2.31,0.89,0.44,0.32,2 --0.43,-0.73,1.40,2.07,2.64,2.99,2.50,4.72,2.49,2.64,3.16,1.66,-0.16,2.57,2.89,2.59,1.16,2.93,1.75,0.95,0.50,0 -1.43,1.81,1.60,1.75,2.16,3.57,2.66,3.22,1.98,0.45,2.01,1.20,1.43,1.71,2.39,3.76,2.84,-0.75,-0.01,1.39,0.67,0 --0.97,2.01,0.13,1.61,1.44,2.75,4.59,2.19,2.66,4.68,3.60,3.74,2.50,1.25,1.59,1.14,-0.31,0.78,0.61,0.55,-0.13,1 --2.29,1.03,1.95,0.74,3.37,4.35,5.73,4.31,4.08,3.86,1.45,1.54,-0.05,0.64,1.22,-0.78,-0.76,-0.65,0.45,0.83,-0.87,1 --2.75,-0.18,1.13,2.79,2.24,6.62,5.43,6.26,3.07,4.42,2.94,1.76,-0.28,0.32,0.09,-1.84,-0.82,0.82,-0.79,0.01,1.45,1 --1.63,1.83,1.83,1.47,2.13,2.25,3.96,2.71,5.59,4.51,5.22,4.00,3.27,2.22,1.62,1.59,1.16,-0.88,0.94,-1.57,-0.52,1 --0.90,-0.08,1.93,2.95,1.30,1.58,6.34,3.83,2.50,2.82,3.17,3.57,0.39,2.59,1.30,0.87,-1.21,-0.16,1.82,1.43,-0.35,1 --1.59,0.39,0.46,-0.07,2.07,-0.74,-0.69,1.38,1.57,4.76,3.44,4.12,3.53,3.92,3.66,2.41,1.08,2.46,3.79,0.10,-0.04,2 -1.82,-1.24,2.53,1.04,-0.40,0.91,1.50,2.44,4.00,4.93,4.01,4.47,4.31,3.12,3.17,0.70,0.67,-0.74,-0.12,-1.46,0.83,2 --0.40,0.66,-0.04,0.32,0.70,0.77,2.08,2.00,3.29,5.21,3.95,5.54,3.99,3.14,1.84,1.32,-0.36,-1.16,-0.51,-0.47,-1.21,1 -1.41,-1.11,2.30,0.13,2.16,1.21,1.03,2.08,1.85,2.48,4.73,4.13,1.82,5.23,4.41,4.47,0.70,2.69,1.44,0.62,0.06,2 --0.42,1.63,0.49,1.82,4.64,4.12,5.32,3.42,5.23,3.94,2.14,2.70,0.90,0.90,-1.61,1.11,-0.36,-0.76,0.21,-0.80,-0.06,1 -0.63,0.33,0.63,1.51,0.31,1.65,1.45,3.16,1.82,3.56,5.11,3.35,2.86,4.91,5.08,1.45,3.53,1.88,0.17,-0.52,0.18,2 --1.12,-0.21,1.05,1.72,0.60,-0.33,2.41,1.17,-0.62,0.01,-0.01,2.34,2.94,3.52,4.16,5.36,3.38,3.50,0.39,1.44,0.98,0 --0.47,0.58,0.56,0.80,-1.08,0.85,1.96,0.38,1.41,2.02,3.08,3.77,3.96,3.74,3.78,4.08,2.96,1.89,1.04,1.42,0.08,2 -0.19,-1.00,-0.11,-0.40,0.58,0.35,2.90,1.05,2.61,3.92,5.86,6.49,2.59,3.16,4.94,1.07,-0.18,0.10,1.66,2.35,1.13,2 --0.04,0.05,2.80,1.65,1.91,2.18,3.54,3.87,3.93,3.38,4.48,3.07,2.78,2.36,0.94,0.07,0.70,0.78,-0.03,0.64,1.67,1 -1.54,1.26,1.42,1.11,0.81,2.51,2.85,2.73,4.49,5.37,4.41,2.49,2.67,0.71,-0.36,0.38,-0.53,0.44,0.29,-0.50,0.87,1 -0.33,-0.36,1.06,0.29,-0.82,0.17,2.09,3.92,2.91,4.03,4.63,5.08,5.86,3.47,4.16,2.84,2.24,0.09,0.47,0.06,-0.34,2 -0.69,-0.31,0.93,1.14,0.16,-0.19,3.01,0.69,0.87,0.85,-0.06,4.53,2.40,2.82,3.21,4.23,2.06,2.87,0.85,-0.27,1.18,0 --0.07,-0.51,0.33,-0.90,0.39,0.78,0.06,2.89,3.11,4.22,7.29,3.54,5.66,3.82,1.42,2.34,0.79,-0.79,1.12,-0.54,0.38,1 --0.70,-0.06,0.43,0.12,1.54,2.15,2.83,5.38,1.52,1.66,3.35,2.22,1.82,1.48,4.68,4.30,3.65,1.58,-0.25,0.71,0.38,0 -1.43,0.41,0.83,0.08,1.22,-0.12,1.31,0.91,1.57,1.55,3.45,4.79,5.73,5.03,5.47,3.38,3.34,1.77,2.12,-0.30,0.20,2 --0.74,-1.54,2.32,2.25,0.39,3.15,2.17,2.05,0.93,1.50,2.78,3.83,0.19,2.39,3.46,1.70,1.99,1.60,0.52,1.05,0.13,0 -0.27,-0.17,2.76,2.42,3.91,4.63,6.07,2.97,2.92,2.80,2.92,0.87,1.26,0.61,-0.47,-0.68,-2.42,-0.86,-0.08,-0.33,0.05,1 --1.01,1.20,2.99,1.48,3.71,3.78,3.82,3.73,3.22,1.61,2.01,3.13,0.94,0.81,1.60,-0.03,0.13,-0.04,0.23,0.86,-0.21,1 --1.82,2.26,1.73,0.52,3.04,1.27,3.03,3.92,2.53,2.98,4.48,4.22,3.22,1.38,1.15,0.80,-0.30,0.61,-1.02,1.28,-1.16,1 -1.36,1.16,-1.12,-1.26,-0.58,2.13,1.04,0.75,2.38,2.87,2.93,1.36,3.51,5.07,4.21,3.49,2.87,0.67,-0.26,-0.81,0.00,2 --1.72,-1.13,-1.14,-0.24,-0.51,0.63,0.22,0.03,-2.17,1.20,2.58,4.21,2.25,4.48,5.33,5.42,4.71,2.43,1.90,-0.01,0.74,2 --0.88,0.20,2.54,2.92,2.99,3.12,5.05,1.88,3.55,0.94,1.73,0.28,-0.55,0.99,0.93,1.05,1.39,-1.75,-0.26,1.05,1.18,0 -0.23,0.54,1.95,1.61,2.65,4.60,4.91,6.12,3.32,4.70,3.96,-0.35,-0.38,1.51,1.02,-0.83,0.11,0.75,-2.04,0.39,-2.45,0 --0.38,-0.52,-0.67,-0.40,-0.09,0.66,1.77,2.57,4.74,6.58,3.88,5.47,2.26,4.04,0.72,0.12,1.98,0.09,-0.63,-0.91,-0.24,1 --0.41,-0.39,0.39,1.81,1.23,1.32,2.76,1.73,0.19,2.56,2.52,2.92,2.16,3.27,4.05,4.79,4.96,4.04,2.05,0.03,-1.23,0 -0.25,-0.47,2.16,3.33,2.42,4.58,5.80,6.97,3.30,4.32,3.17,2.54,-0.23,1.17,-1.04,-0.62,-0.62,-0.62,1.15,0.18,-1.55,1 --0.26,0.39,3.34,3.15,4.42,5.69,4.11,3.35,5.85,3.80,1.96,1.86,1.05,1.96,1.00,-0.70,1.17,-2.50,0.54,0.00,0.02,1 --1.63,0.85,2.24,1.17,3.06,2.36,4.81,2.08,0.56,2.68,2.71,4.39,-0.63,4.85,2.18,0.87,2.78,3.02,0.12,0.64,-1.43,0 --1.18,1.40,-2.03,-0.10,-2.03,0.60,0.10,-0.45,1.12,-0.23,3.02,3.88,3.22,4.20,6.73,4.16,1.82,5.36,2.30,1.55,-0.15,0 -0.09,1.59,-0.81,-1.17,-1.84,0.19,2.53,1.27,1.41,1.65,3.50,2.26,3.28,3.24,4.81,4.91,3.02,1.99,1.60,1.73,0.13,2 -1.06,0.02,0.63,2.76,1.74,1.03,3.44,1.09,1.39,1.40,4.07,3.42,1.48,0.90,2.81,1.11,2.21,0.99,0.95,-1.04,-1.03,0 -1.28,-0.08,-0.84,-0.16,0.15,1.11,2.52,3.00,4.74,4.88,6.88,5.01,4.75,2.45,0.92,2.48,1.23,0.27,-0.18,0.43,-0.08,1 -0.46,0.00,1.20,0.33,0.64,1.74,0.01,3.81,2.69,5.09,7.44,4.49,3.55,3.10,1.41,1.15,-0.59,-0.92,-0.78,0.70,1.56,1 --0.10,-0.76,2.19,1.44,1.73,0.84,2.08,4.13,4.80,3.91,3.71,3.54,2.31,2.03,2.99,-0.86,-1.23,-0.46,-0.71,-0.76,0.83,1 -0.41,-0.65,-0.83,-0.67,0.38,1.84,1.07,1.10,4.10,6.20,6.17,4.30,4.55,2.67,0.56,0.03,0.87,0.28,0.17,-0.40,-0.95,2 --1.98,1.49,1.49,1.84,3.16,1.68,3.93,1.78,1.30,1.69,2.91,2.29,2.15,2.87,3.97,3.85,2.06,0.86,0.22,0.51,-0.05,0 -0.20,0.86,0.70,-1.48,1.48,1.18,2.85,1.28,4.38,5.11,5.75,6.36,2.25,2.29,1.49,0.46,0.53,0.20,1.43,0.13,-1.29,1 -3.17,0.53,-0.60,2.20,0.33,2.03,3.84,4.75,3.94,5.99,5.03,5.37,4.27,2.54,1.20,1.59,0.20,-1.21,-1.81,0.44,1.13,1 --0.01,1.36,-0.63,2.73,3.01,4.73,2.24,2.10,0.25,2.70,1.93,2.09,1.81,1.74,2.27,1.91,0.90,-0.06,-1.38,1.28,0.54,0 -1.43,1.52,1.58,2.13,2.84,3.57,5.99,5.59,3.54,2.61,2.23,2.32,0.56,0.24,1.58,1.16,0.43,1.44,0.32,0.74,1.04,0 -0.33,1.03,-0.22,0.01,1.69,2.27,1.57,4.32,4.95,7.25,5.12,5.14,3.36,4.26,1.32,-0.13,-0.37,0.34,0.40,1.33,0.24,1 -1.00,-0.06,0.43,0.84,0.67,1.28,1.43,1.15,2.17,2.43,4.12,4.46,5.05,4.15,2.93,3.70,0.62,1.16,0.24,0.64,1.09,2 -1.61,1.01,-1.42,-0.57,0.92,0.20,2.64,3.16,2.01,3.09,4.73,3.27,4.33,2.18,2.16,3.02,0.74,0.81,-0.39,-1.07,-0.29,2 --0.73,1.30,1.91,0.22,1.98,1.86,2.05,2.84,0.28,1.96,1.09,-0.85,3.87,1.92,3.02,3.44,4.18,1.12,1.96,0.17,-1.53,0 --0.68,0.18,0.45,-0.64,0.36,3.39,3.66,4.51,1.95,2.30,7.01,4.13,2.07,4.84,1.53,1.08,0.29,0.39,1.28,0.27,0.14,1 -0.50,1.69,1.93,2.98,2.48,5.43,5.65,4.71,3.87,2.11,1.74,0.29,-0.61,-0.85,-0.35,1.09,-0.55,0.97,1.52,-0.51,-0.11,1 --0.55,-0.47,-0.72,-0.17,0.12,2.18,3.69,2.61,3.19,5.42,5.30,3.39,1.65,3.34,1.78,0.71,1.57,-1.17,-0.63,2.48,0.28,1 -1.50,-1.09,0.20,-0.23,1.89,2.62,1.88,3.02,5.09,6.08,4.81,5.19,2.86,4.20,2.98,1.79,-0.82,-0.81,1.58,-0.98,0.05,1 -0.46,-0.36,0.79,2.72,3.62,4.17,5.19,5.83,4.14,3.22,1.02,0.97,2.32,0.31,-1.49,1.07,0.35,0.77,-0.04,-0.31,-1.14,1 -1.92,-0.78,-0.93,1.03,1.45,1.84,3.28,3.99,4.70,4.09,4.70,5.84,3.02,1.89,2.23,1.90,0.71,-0.26,0.30,0.95,0.94,1 --0.00,-0.11,-1.10,-1.84,-0.98,0.75,1.92,1.03,4.46,5.89,4.74,3.76,2.53,2.67,3.10,4.33,2.98,2.61,-0.73,-0.14,-1.03,2 --0.23,0.25,0.64,1.96,1.27,1.69,2.06,-0.36,1.47,1.72,0.83,2.47,2.61,2.94,4.12,2.56,2.85,1.36,1.13,-0.27,1.28,0 --1.93,0.12,-0.51,-0.57,1.42,0.24,1.87,-0.05,0.44,3.14,3.60,4.35,3.80,1.85,2.05,4.32,0.22,0.25,1.58,2.00,0.87,2 --0.58,0.68,-0.05,3.07,4.68,2.52,6.17,4.33,4.53,2.42,1.58,3.80,1.32,1.61,0.47,1.46,-1.31,0.76,-0.89,-1.34,-0.26,1 --1.49,-1.62,0.97,0.14,0.37,1.33,1.53,2.55,3.68,3.92,6.05,3.77,1.78,3.35,3.91,1.61,0.95,0.56,-0.55,2.32,-0.37,2 --1.18,1.40,0.27,-0.10,1.35,0.94,1.23,1.04,1.56,1.41,2.00,3.89,4.27,5.04,6.17,3.41,4.11,2.22,2.23,2.04,2.33,2 -0.21,1.14,0.14,0.54,-1.10,0.03,-0.21,0.09,-0.76,0.83,0.66,3.09,5.28,4.47,5.47,3.10,2.25,3.08,2.23,1.50,0.19,2 --0.61,1.18,2.32,1.91,4.01,3.65,5.74,5.42,1.29,2.93,2.02,2.01,-1.03,-0.61,1.27,2.00,0.74,1.03,-0.04,-2.15,0.24,0 -1.51,-0.36,0.45,0.33,3.80,3.67,5.77,3.59,4.25,4.47,3.00,3.54,1.92,5.09,0.77,-0.14,0.72,-1.79,-0.36,-0.72,0.42,1 --0.54,-1.60,0.78,-0.10,1.83,2.12,2.42,4.16,5.90,3.89,6.07,3.72,1.37,2.31,1.10,-0.47,-0.47,-0.51,0.05,-0.02,1.19,1 --0.28,0.14,-1.84,-0.77,0.43,1.41,1.78,0.97,0.77,2.46,5.67,5.14,5.05,3.38,1.97,2.24,2.80,1.93,1.09,-0.74,-0.81,2 -2.26,-0.40,0.39,0.94,-0.41,0.36,0.83,0.82,1.52,4.16,4.76,5.04,3.42,1.97,3.48,4.70,1.95,2.43,1.15,0.74,-0.86,2 --0.83,1.48,1.37,-0.44,2.31,2.60,2.06,3.49,2.89,4.13,3.93,2.87,1.06,1.05,2.15,2.24,0.90,-0.42,0.15,-0.87,0.29,0 --0.09,1.62,0.50,4.06,2.56,2.73,2.32,4.01,3.70,2.80,3.18,3.49,1.21,1.04,0.77,0.92,-0.70,-0.00,1.54,-0.76,1.01,1 -0.15,0.58,1.90,3.36,2.77,4.38,5.11,6.16,3.04,4.44,2.41,0.59,-0.41,0.45,-0.17,1.14,-0.97,0.23,0.55,-0.42,0.92,1 --0.54,-0.37,3.53,4.45,1.63,4.46,5.26,3.11,3.30,4.58,2.52,2.84,0.41,0.96,1.43,1.73,2.24,2.63,0.36,-0.60,-0.53,1 -1.26,1.65,3.06,2.05,4.09,3.70,5.81,4.17,4.48,0.76,2.06,1.13,-1.21,1.09,1.00,1.77,-0.86,0.34,2.03,0.27,-1.10,0 --0.95,-0.32,-0.22,1.11,1.77,-0.13,1.94,1.98,2.98,5.77,7.27,4.76,4.05,2.31,1.33,1.76,1.51,0.96,1.25,-1.38,0.54,2 --0.68,1.23,0.76,1.58,1.70,0.89,4.00,1.78,1.41,1.16,2.63,2.27,3.87,3.78,3.89,3.04,3.08,2.23,2.20,1.98,-1.74,0 --0.07,0.86,0.99,1.80,1.10,3.76,4.31,4.29,2.95,3.17,4.43,3.49,1.78,1.13,0.27,-2.36,-1.08,-1.09,0.73,-3.21,0.27,1 --0.16,0.33,1.86,2.46,3.39,4.88,4.90,5.76,4.12,5.43,2.92,1.14,0.57,-1.47,0.81,0.96,-0.38,0.03,1.81,-0.03,-0.63,1 -0.58,1.10,1.48,1.11,2.96,3.99,5.32,5.22,5.97,3.01,4.14,1.34,0.63,1.41,0.97,-0.75,-0.35,-0.06,1.10,0.26,-1.00,1 -0.99,0.08,1.37,-0.34,-0.16,0.68,2.60,2.20,3.41,2.84,5.12,3.70,3.26,4.26,2.37,2.35,-0.50,2.02,-1.48,-0.39,0.99,2 -0.17,0.55,0.79,-0.87,1.09,0.47,-0.12,1.68,3.62,2.61,4.75,5.98,2.98,3.85,3.90,1.65,2.03,0.10,-0.34,0.03,-1.68,2 --1.32,1.13,-0.16,1.33,-0.79,0.80,-0.04,-1.91,0.44,1.95,3.91,3.68,3.48,6.65,3.92,4.87,2.23,2.19,1.12,0.03,-1.72,2 --0.57,-0.11,1.23,1.45,1.05,0.30,2.07,1.98,2.91,4.91,5.71,4.23,4.09,1.30,1.72,0.98,-0.78,-1.54,0.03,0.04,0.59,1 --0.83,-0.19,-1.79,1.17,-0.45,-0.98,0.96,0.26,0.15,1.68,3.54,3.20,4.66,3.70,6.81,5.39,4.34,2.62,1.24,0.13,-0.15,2 -0.28,2.04,0.96,2.30,3.97,3.87,5.04,4.25,5.28,3.24,1.73,1.72,0.23,-0.87,0.90,-0.75,-0.29,-0.05,0.44,-0.10,-0.44,0 --1.27,1.10,-0.09,2.01,3.18,2.90,5.65,5.27,0.66,3.76,2.47,0.96,2.06,1.25,1.03,1.27,-0.93,1.31,0.30,0.55,0.92,0 --0.64,-0.49,0.41,-2.64,-0.83,-0.60,2.07,-0.14,1.92,1.11,3.63,1.60,2.72,4.11,6.82,4.08,2.71,2.71,1.44,1.76,0.87,2 -0.27,1.05,0.38,-0.23,1.42,3.20,2.72,3.02,2.81,2.83,2.44,4.78,1.54,4.58,-1.15,2.07,0.39,-0.05,0.77,-1.49,-0.47,1 --0.60,-0.13,2.78,1.06,1.17,0.87,2.94,4.26,2.27,3.41,5.58,3.24,3.44,2.29,0.65,0.47,-0.29,0.92,-1.11,-0.05,0.21,1 -0.50,0.86,2.55,1.25,3.06,4.53,4.19,2.98,2.33,3.58,2.20,1.85,1.69,1.55,1.14,2.93,2.85,1.20,1.18,-1.05,0.47,0 --1.08,-0.67,0.92,2.47,1.95,2.99,2.13,0.38,0.82,2.27,1.98,3.61,2.04,2.99,3.94,3.54,2.07,0.78,0.42,2.40,0.44,0 --1.00,1.32,1.72,2.53,4.09,4.45,4.52,4.35,4.60,3.64,4.89,3.82,1.90,2.08,1.23,0.05,0.09,-0.64,-0.68,0.01,0.56,1 --1.27,-0.24,1.40,-0.62,0.88,0.98,0.97,2.24,-0.22,2.32,1.73,2.96,3.65,4.25,5.59,3.74,3.54,3.23,1.31,0.41,0.22,0 -0.55,1.25,1.99,2.21,2.08,2.90,4.40,4.05,3.49,1.32,1.66,2.16,0.86,2.15,2.47,2.01,1.44,0.93,1.33,2.99,-0.93,0 -0.93,0.32,1.47,0.57,0.54,-0.61,-1.01,-0.59,1.20,0.99,2.10,4.52,3.45,6.10,5.78,4.37,2.37,3.28,1.13,0.07,0.28,2 --0.51,0.75,1.92,3.56,4.61,6.10,4.00,4.95,6.00,3.90,2.64,1.45,0.76,0.64,0.82,-0.75,-1.94,1.25,1.55,-0.84,0.42,1 -0.99,0.41,1.60,2.39,4.36,4.74,3.87,5.03,4.35,2.38,3.20,0.30,1.61,1.36,0.10,-0.56,0.69,-0.35,-1.04,-2.49,0.78,1 --1.29,-0.20,1.29,0.05,0.06,-0.52,0.36,-1.27,1.26,-0.37,0.58,1.40,3.26,5.58,4.47,3.93,3.10,2.68,2.55,-0.64,-1.04,0 -0.43,1.89,1.24,2.38,3.23,3.15,4.91,4.29,3.72,1.20,3.06,2.86,1.55,0.86,-0.44,-0.30,-0.36,0.24,0.80,-0.63,-0.59,1 --0.45,0.12,2.43,2.33,3.85,4.06,5.50,5.33,3.53,2.45,0.84,0.16,-1.59,1.46,-2.56,-0.84,-1.64,-0.66,0.07,0.94,-2.37,0 --2.07,1.65,1.50,1.31,1.56,1.60,1.23,2.34,0.39,0.11,1.97,2.54,4.18,4.15,4.28,3.58,3.06,1.51,0.89,0.42,0.16,0 -1.35,-0.29,0.20,-0.65,-1.13,2.36,2.32,0.38,2.04,0.98,4.05,3.94,4.11,3.59,5.90,3.17,2.88,2.78,1.36,0.22,0.78,2 --1.25,0.69,1.88,0.69,4.46,4.49,5.32,3.10,4.34,2.11,2.11,1.09,0.88,-0.14,0.38,1.13,0.98,0.71,1.13,1.13,-0.27,0 --0.47,1.06,0.68,2.96,4.17,4.74,5.04,5.58,5.92,2.99,3.58,1.74,1.76,1.12,1.25,0.79,-0.10,1.92,1.28,0.54,-0.39,1 --0.32,2.13,3.85,0.32,3.64,3.86,3.21,3.97,1.90,5.05,3.28,3.20,-0.29,0.17,0.76,-0.18,-1.56,1.12,-0.76,0.05,-1.82,1 --1.22,0.65,-0.02,-1.17,-0.29,0.86,0.29,0.34,3.11,4.55,4.64,4.50,3.62,2.59,3.19,4.33,0.16,3.29,-0.18,1.20,0.48,2 --0.65,-2.80,0.11,1.36,3.88,3.37,4.38,4.57,3.15,2.22,4.27,3.44,0.77,1.45,2.18,0.88,-1.07,-1.68,-0.22,-0.02,0.70,1 -0.24,0.62,-0.55,0.75,1.77,1.31,2.51,2.66,3.67,1.84,2.63,3.11,3.03,3.71,4.25,1.00,2.00,1.97,2.31,0.71,-0.29,0 --0.98,-0.34,0.67,0.50,1.39,0.20,3.10,1.28,3.52,1.72,4.97,5.05,3.99,2.84,2.92,1.75,-0.57,-0.48,-0.58,0.92,0.64,2 -1.01,-0.43,0.39,0.01,1.49,2.15,0.52,-0.33,0.07,0.88,1.19,2.68,3.79,4.89,4.88,5.34,5.16,3.88,1.49,1.89,-1.02,0 --0.69,0.58,0.40,0.87,-0.40,-0.39,-0.69,1.28,0.45,0.04,0.09,3.82,3.88,3.53,6.36,5.75,2.94,2.38,2.01,0.47,1.24,0 --1.83,0.09,0.16,0.83,2.56,2.60,4.39,2.84,4.40,1.49,3.22,1.92,0.68,0.72,1.27,0.56,1.55,0.75,-0.45,-0.09,0.48,1 --2.55,0.44,2.30,-0.63,-2.00,-1.31,0.46,2.29,1.40,3.21,3.84,3.22,4.75,2.79,3.02,4.23,-0.18,0.33,-0.78,1.17,0.05,2 --0.14,0.75,2.31,3.06,4.75,5.57,6.28,3.20,4.94,4.05,2.37,2.29,-0.24,1.72,0.20,-1.85,-1.29,-0.85,-0.93,0.16,-0.30,1 -0.51,1.82,0.35,0.33,0.35,-0.37,1.77,0.70,-0.63,0.00,2.92,1.65,4.75,3.97,6.96,6.22,2.73,0.55,2.62,2.05,-1.09,0 --0.61,0.35,4.39,1.71,3.52,5.27,5.18,5.21,2.77,1.63,-0.15,1.35,-0.03,1.02,0.73,0.27,0.50,0.23,0.31,0.15,-0.68,0 --0.41,-0.08,-1.83,-1.34,-1.20,1.38,-0.58,0.55,1.03,1.53,2.26,2.80,3.20,5.21,5.26,3.90,2.66,4.62,1.85,2.10,-1.38,0 -1.00,-1.11,-0.56,1.13,0.26,-0.47,0.92,0.62,1.49,2.50,1.37,2.60,2.22,4.11,6.47,4.11,2.58,2.08,0.92,1.07,0.82,0 --0.94,0.26,1.38,-0.45,0.10,1.35,1.99,2.80,4.83,4.80,3.51,3.75,3.60,1.87,1.69,-0.52,-2.16,-0.16,-1.07,1.04,0.15,1 --0.60,1.05,1.86,1.85,4.33,2.09,4.46,4.97,3.38,1.91,2.93,1.45,1.39,1.40,0.92,1.29,0.62,0.94,0.33,0.10,1.50,0 --1.52,2.49,1.46,0.59,2.67,2.76,2.99,2.69,3.92,3.08,2.12,2.22,0.48,2.25,0.50,-0.21,1.99,-0.57,0.55,-0.05,-0.42,1 -0.34,-2.33,1.46,-0.32,2.10,-0.77,0.23,-0.01,0.19,1.10,0.75,3.92,3.96,2.57,4.80,3.28,3.56,1.96,1.49,1.22,-0.60,2 -1.57,1.51,0.45,0.97,0.52,4.43,3.37,2.81,2.58,3.30,2.10,2.17,1.58,0.68,-0.40,1.27,1.49,-1.11,1.86,2.30,0.04,0 --0.82,1.43,0.17,0.20,-2.04,0.40,1.43,3.53,3.62,3.51,5.46,3.47,4.28,2.57,4.07,3.00,1.06,1.41,-0.05,-0.55,-1.06,2 --0.02,0.24,1.39,1.65,1.24,3.85,3.02,3.77,2.03,2.30,1.87,1.04,0.92,0.44,2.56,1.50,0.07,1.46,-0.10,2.25,-1.08,0 -0.05,1.59,-0.96,-0.63,-0.25,0.22,1.17,0.93,3.38,2.01,2.91,4.89,2.98,1.79,2.80,3.18,1.94,0.11,-0.78,0.02,-0.11,2 -1.09,-0.80,0.91,2.22,0.98,1.36,4.06,4.51,5.59,5.22,4.12,2.78,2.52,2.56,2.03,0.38,0.65,-1.44,-0.75,0.47,-0.76,1 --1.27,-1.50,-0.07,-0.47,0.15,1.11,0.21,0.52,-2.05,1.49,3.43,2.81,3.57,4.38,3.81,4.62,3.11,0.68,2.47,1.90,0.81,2 --0.94,1.57,1.09,2.05,3.88,3.98,3.59,5.75,1.79,1.17,2.32,0.94,1.94,0.55,1.47,0.77,1.75,1.38,0.10,0.90,0.04,0 --0.48,-0.47,1.75,2.14,3.46,2.46,5.20,4.34,4.68,2.78,3.25,1.56,0.47,0.33,-0.21,0.41,0.07,1.19,0.52,-1.46,0.88,1 -0.86,0.79,0.52,2.14,-0.32,0.95,3.26,2.83,3.57,3.61,3.79,3.66,2.61,0.59,0.93,2.97,1.29,-0.51,-0.05,0.12,-1.03,1 --0.56,1.13,0.86,-0.19,2.11,-0.68,0.33,1.94,-1.01,3.44,4.22,3.83,3.66,4.96,4.63,3.89,2.26,1.63,0.66,0.84,1.73,2 -0.57,0.65,1.10,0.41,2.68,2.75,3.72,4.44,3.05,2.52,1.69,1.03,0.92,1.66,2.82,1.13,1.46,0.81,-0.48,-2.38,1.74,0 --0.65,-0.28,1.43,-1.78,-0.55,0.35,2.26,0.76,-0.16,2.02,3.63,1.85,4.04,2.82,5.01,4.12,4.30,3.68,1.26,0.28,0.82,2 --0.25,0.35,2.72,3.31,5.19,5.08,7.83,4.03,3.62,1.74,1.92,2.04,1.35,-1.92,1.12,2.02,-0.20,-0.28,0.13,2.49,0.33,0 --2.21,0.31,-0.25,-0.45,-0.30,-0.80,1.23,1.84,4.68,5.76,6.16,4.43,3.91,4.22,4.01,1.74,1.31,0.34,2.00,2.45,-0.59,2 --0.91,-0.95,1.63,-1.67,1.75,0.73,1.33,2.86,3.09,3.64,5.38,6.27,5.39,4.32,1.78,1.36,0.55,0.05,0.27,-0.15,1.28,2 -1.13,0.51,0.60,1.35,2.65,3.23,4.32,5.24,4.19,2.39,3.03,2.19,1.21,0.56,0.09,0.08,-0.02,-0.26,1.70,-0.23,0.47,1 --0.06,0.59,-0.18,2.24,-1.77,-1.88,-0.01,1.23,2.37,3.04,4.51,4.70,5.86,3.14,3.48,3.45,1.08,1.23,-0.54,-0.05,-0.13,2 --0.49,0.09,-0.86,1.60,2.26,-0.25,-1.93,-0.53,2.03,1.06,2.92,3.02,3.39,5.02,6.35,4.19,4.02,2.57,0.75,1.72,-0.08,2 --1.07,0.38,-0.04,0.83,0.07,1.18,-1.80,0.02,-0.10,2.55,1.24,3.36,4.00,4.40,5.58,6.61,1.79,3.24,1.79,2.60,1.52,2 --2.04,0.96,-0.24,1.01,0.44,-0.10,2.87,1.31,4.51,7.21,4.49,2.92,4.61,1.34,1.60,1.89,-0.38,1.31,0.16,-0.65,-0.25,2 --2.43,0.54,1.16,2.39,2.88,2.95,5.58,5.27,4.16,3.00,1.47,1.43,0.37,1.67,1.21,1.30,-0.40,0.04,3.25,-1.28,1.10,0 --0.04,-0.19,-0.03,-0.16,-0.07,2.31,2.41,1.89,2.28,4.16,4.99,4.76,3.61,3.46,2.10,3.81,0.44,1.94,0.52,-0.21,1.97,2 --2.47,-1.18,1.30,1.56,-0.99,0.32,1.54,0.08,1.50,0.05,1.85,3.26,3.66,2.97,4.40,4.55,3.45,3.19,0.82,2.00,1.40,0 --0.08,0.44,-0.52,-0.45,0.44,0.35,-0.35,-1.03,0.20,1.59,1.43,1.72,4.55,4.61,4.28,5.53,2.42,2.41,1.50,1.29,-1.76,0 -1.80,0.94,1.42,0.95,2.33,1.18,1.90,3.32,2.85,2.72,1.42,1.78,2.73,2.18,2.99,0.08,2.03,0.76,0.11,0.70,0.87,0 --0.72,-0.28,1.94,2.05,3.84,5.76,6.01,5.11,3.39,4.07,0.68,2.37,-1.01,0.88,-0.33,0.08,0.82,-1.71,-1.19,0.70,-0.62,1 -0.53,0.41,3.19,2.15,4.44,5.57,5.84,2.32,1.83,1.22,3.00,2.27,2.81,0.88,1.71,-0.38,0.68,-0.44,-0.53,-0.19,0.00,0 -0.19,1.57,0.67,-0.96,-0.47,1.12,2.57,-0.13,0.64,3.88,3.86,5.52,3.58,3.98,4.91,2.36,0.92,1.23,1.34,1.26,-0.80,2 -1.09,-0.10,-0.81,-0.56,2.33,2.93,1.24,1.46,4.17,4.05,3.85,6.56,6.07,4.59,3.13,1.54,0.26,-2.01,-0.54,1.45,0.38,2 -1.34,0.88,0.30,2.11,1.12,2.64,3.58,1.21,0.02,1.87,3.10,2.42,3.03,3.26,5.12,3.13,2.61,-0.31,1.77,1.34,0.37,0 --0.48,0.55,-1.08,-2.39,1.31,1.06,0.97,4.26,3.59,3.52,5.63,4.78,4.27,3.20,2.53,0.01,-1.47,1.46,0.45,1.28,-0.78,2 --0.15,1.20,3.05,3.71,2.35,6.15,6.31,3.39,3.58,3.00,3.97,1.84,0.14,0.97,-0.98,-0.08,0.58,-0.14,1.14,0.17,-1.29,0 --0.33,0.95,1.68,1.82,4.53,4.61,4.58,5.19,5.02,3.81,4.09,2.81,2.43,-1.19,-0.14,-0.89,-0.78,0.31,0.16,1.15,-0.33,1 -0.80,-0.63,1.89,0.07,-0.42,0.72,1.89,3.88,3.67,4.23,5.64,6.64,3.16,3.04,2.08,0.68,-0.54,1.10,-1.15,1.46,-1.27,1 -0.71,-2.03,0.55,-0.82,1.16,1.90,-0.30,1.39,1.79,2.66,3.64,1.83,1.87,5.72,5.30,2.18,2.30,1.46,1.27,0.29,0.53,2 --1.29,1.74,-0.87,1.64,-0.89,1.27,1.02,3.02,3.17,2.53,2.93,4.11,4.97,3.65,3.24,4.50,0.43,1.34,1.26,-0.68,-0.62,2 -1.01,2.30,2.32,0.98,0.33,3.03,2.25,3.75,4.68,2.98,3.63,3.34,1.39,-0.26,2.16,0.80,0.24,1.30,-0.56,-0.78,-0.00,1 -1.40,-0.90,-0.87,-0.33,0.46,1.64,0.55,0.43,2.10,1.94,4.05,2.30,3.32,3.40,3.41,3.07,0.60,2.97,1.33,-0.67,-0.75,2 --1.23,2.03,3.22,3.06,4.69,3.45,4.71,5.19,3.18,3.33,1.79,1.20,1.05,0.83,1.69,0.12,0.63,2.48,1.16,0.81,-0.97,0 --1.30,0.20,1.01,0.11,-0.34,2.57,2.57,2.83,2.44,6.62,5.11,4.63,5.88,3.42,4.72,2.33,-0.44,0.63,2.69,-0.06,-1.39,2 --1.47,0.48,1.77,2.16,1.62,0.49,4.42,3.27,2.21,1.15,2.30,0.50,1.62,0.75,1.80,1.62,2.41,0.81,1.10,-0.67,0.27,0 --0.07,0.58,1.90,0.40,0.42,1.73,3.35,3.84,3.42,4.39,6.44,4.54,3.28,1.80,1.20,0.72,-0.04,0.66,0.59,-1.32,0.05,1 -0.34,-0.98,1.28,2.32,3.59,2.43,4.72,4.06,3.11,4.54,4.01,2.26,1.64,2.11,0.40,-1.44,0.43,-1.72,0.41,-1.44,0.38,1 --1.20,1.09,-0.28,-0.78,0.71,0.75,0.78,0.74,1.26,2.82,2.58,2.78,5.52,3.08,3.84,2.99,1.18,0.89,2.78,0.11,1.14,2 --1.07,0.68,0.44,-0.75,0.92,1.41,3.59,1.86,5.45,3.13,5.02,4.73,2.69,1.18,0.75,1.06,0.19,-2.65,2.34,0.37,0.76,1 --1.68,1.99,-0.55,0.94,1.00,1.16,3.62,0.69,2.21,3.12,2.87,5.36,3.62,4.96,3.06,3.49,3.35,1.76,0.03,0.76,-0.80,2 --0.94,-0.64,0.54,1.34,1.70,-0.26,-0.64,1.24,-1.12,0.64,1.60,2.33,1.67,3.49,4.80,4.52,4.59,1.26,1.46,0.86,-0.67,0 -1.00,-0.08,-0.29,2.96,0.61,1.17,3.86,2.97,4.39,1.67,3.56,2.26,0.96,1.41,2.87,0.57,1.63,1.10,0.22,2.00,0.20,0 -0.66,1.32,-0.76,0.42,0.75,2.33,1.92,2.17,2.55,4.64,5.27,4.91,4.27,3.82,1.36,1.31,-0.72,-2.02,0.31,-0.60,0.88,1 -1.52,0.35,1.49,1.05,1.12,1.70,0.84,2.72,3.12,2.31,1.23,2.97,1.92,1.75,3.52,3.87,2.99,3.34,2.19,0.20,1.67,0 -1.75,0.64,-1.75,-0.42,2.03,2.08,4.18,3.25,5.37,3.19,4.53,3.41,4.45,1.19,2.64,1.25,0.25,-1.22,2.13,-0.72,0.96,1 -1.08,0.57,0.31,2.70,4.39,2.94,3.80,4.25,1.79,3.07,1.34,1.72,0.04,-0.67,0.36,0.56,-0.11,-1.10,-0.53,0.41,-1.11,1 -0.61,-0.59,0.36,0.49,-0.79,-0.17,0.82,2.01,3.43,6.51,4.70,4.07,5.22,3.79,2.49,1.36,0.37,3.28,0.28,0.46,0.26,2 -0.84,1.25,1.81,4.87,6.50,4.64,4.97,4.42,5.69,1.59,2.61,2.05,0.76,1.04,1.34,0.10,-1.10,0.78,2.03,0.46,-0.27,1 --0.27,-0.47,0.41,-0.66,-0.54,-0.99,0.26,2.62,2.60,3.38,4.32,5.32,5.11,5.19,3.26,0.75,1.23,1.80,2.31,0.56,-0.41,2 -0.59,-1.74,0.77,-0.96,-0.37,-0.99,2.35,3.38,1.08,3.43,2.26,3.26,5.97,3.36,4.50,3.30,1.62,2.27,0.57,2.45,-0.69,2 --0.49,-1.42,1.30,1.40,-0.07,0.35,1.96,1.85,1.47,3.37,2.27,3.01,3.13,4.72,5.43,4.52,2.40,2.03,0.43,-0.75,-0.14,0 -0.57,1.09,-0.54,1.35,-0.18,1.26,1.06,2.18,4.33,4.52,5.55,5.16,4.56,4.99,4.56,3.21,1.49,-0.47,1.35,1.07,-1.09,2 -2.26,0.25,2.39,-0.06,-1.16,1.43,2.43,3.08,5.01,3.53,4.92,5.60,3.67,2.87,1.79,1.57,-0.07,1.90,-0.22,-0.03,-0.43,2 -2.08,-1.37,-0.13,1.61,2.25,0.88,-0.05,3.09,2.83,1.15,2.44,2.55,1.97,2.48,2.33,3.11,1.66,1.69,0.60,1.00,1.02,0 -0.59,0.45,1.80,0.29,-1.49,-0.24,1.72,0.91,2.26,2.49,4.67,5.20,5.17,4.38,3.78,2.12,1.63,1.59,-0.51,0.04,0.40,2 --1.36,-0.18,0.89,-0.44,1.33,-1.62,-1.61,-0.26,1.68,2.06,2.52,4.83,3.79,4.67,4.97,4.90,3.57,4.48,3.28,0.98,1.95,2 -1.83,0.54,1.88,0.38,-0.91,1.28,2.19,4.83,3.13,4.49,4.82,4.45,2.99,1.35,1.31,1.89,-1.31,-0.24,1.70,-1.16,0.88,1 --0.45,0.59,0.76,3.71,3.22,3.73,4.64,4.37,4.23,2.82,1.85,2.45,2.29,-0.31,2.33,0.79,0.95,2.30,-1.05,-0.77,1.28,0 -0.53,0.90,2.37,1.38,-0.51,-0.83,3.05,0.87,2.29,1.27,6.22,3.63,3.93,4.85,3.66,3.06,0.38,2.97,1.41,0.28,-0.32,2 --0.36,1.66,1.34,2.45,4.26,5.14,7.08,4.76,5.78,3.11,0.93,1.24,0.29,0.89,1.94,-0.32,-1.45,0.39,-1.19,-0.11,1.50,1 -0.50,2.82,-0.98,2.28,1.37,1.25,2.53,2.93,5.23,3.45,2.55,4.91,1.09,2.85,1.43,-1.43,0.91,-1.46,-0.45,0.62,1.27,1 -0.34,0.82,-0.22,0.61,2.61,1.44,1.51,0.98,-1.72,0.04,2.38,1.74,3.74,5.26,6.69,3.63,3.37,2.36,1.42,-0.71,0.78,0 -0.27,0.12,-0.70,-1.56,1.01,1.21,1.47,2.25,1.79,3.99,5.83,3.84,3.69,3.30,3.77,2.15,1.27,2.79,0.61,0.32,0.95,2 --1.82,0.94,1.31,0.43,0.96,2.22,1.02,0.84,-0.37,1.35,1.14,3.87,2.36,4.01,3.65,3.29,2.72,2.77,1.92,1.01,-1.46,0 --0.10,0.26,-0.30,3.66,2.73,4.33,5.71,4.57,4.22,4.58,1.42,2.37,1.15,-0.23,1.77,1.02,0.65,0.97,-1.38,1.11,0.16,1 --1.59,-0.45,1.61,-0.76,1.61,0.54,0.85,1.72,1.62,1.61,3.27,4.00,2.96,4.82,5.20,5.44,2.46,1.52,0.50,3.27,2.35,2 -0.11,-0.00,-0.32,1.09,0.92,3.59,4.21,2.63,1.50,3.42,2.15,2.24,0.83,2.31,3.35,3.25,1.62,2.27,1.11,1.79,1.92,0 -1.45,-0.15,-1.52,-0.35,0.26,-0.62,1.01,-0.82,0.66,3.52,3.30,1.28,2.23,3.40,3.71,4.09,2.40,2.98,1.94,0.53,0.00,2 -0.80,1.31,1.01,2.91,3.01,5.81,7.09,4.86,5.23,2.89,1.78,2.17,1.74,-0.95,0.35,-1.58,0.72,-1.93,0.83,-1.14,1.12,0 -1.60,0.20,-1.04,-0.98,0.14,-1.67,2.44,3.48,4.32,3.27,6.19,4.89,4.04,1.57,1.47,1.82,-0.34,1.06,-0.56,-2.13,-0.41,1 --0.41,0.68,2.30,1.40,-0.76,2.72,1.78,2.36,-0.73,2.64,1.44,2.28,2.79,3.77,2.24,3.26,-0.07,2.57,1.96,0.51,0.78,0 --1.00,1.56,-0.21,-0.71,0.08,2.92,2.72,1.41,3.57,1.03,3.52,3.50,4.67,3.81,4.50,1.76,2.13,3.13,1.02,1.66,0.24,2 -0.75,2.43,1.42,2.39,5.11,5.43,5.51,4.44,5.78,3.34,2.74,2.36,-0.09,1.13,0.67,-1.92,0.32,1.26,-1.67,-1.51,1.37,1 -0.78,3.07,-0.02,2.44,2.49,4.70,5.29,2.39,2.91,3.29,4.75,2.03,0.94,1.82,-0.47,1.72,-1.37,1.47,0.53,0.77,-0.17,1 -0.52,-0.22,2.16,3.45,2.20,2.41,3.87,7.03,4.57,3.30,3.66,0.95,1.27,1.56,-1.47,-0.02,-0.08,0.54,-0.84,-1.24,-1.24,1 -1.02,-2.76,-1.17,1.29,-0.07,-2.71,-0.60,0.14,-1.36,-0.81,2.48,2.83,4.19,4.62,5.74,4.20,3.03,2.30,3.16,1.72,1.09,2 -0.32,0.83,1.80,1.94,2.36,4.05,5.85,3.82,2.97,2.93,3.36,2.74,1.48,0.49,1.36,1.08,-1.01,1.54,-0.86,-0.78,-1.83,1 -1.04,0.63,1.50,2.57,5.19,3.64,5.75,4.82,3.67,5.25,0.89,0.75,1.34,-0.07,-0.84,-1.62,-1.58,1.16,0.73,-0.09,0.17,0 --0.37,0.51,-0.26,-0.92,0.62,0.55,1.84,2.68,4.16,4.08,5.98,5.51,3.37,2.72,2.38,0.06,0.42,2.35,-0.26,-0.37,-0.35,1 -1.51,-1.64,0.52,1.38,2.15,-0.28,-0.63,-0.28,1.95,1.67,-0.66,3.56,2.71,5.20,4.80,4.10,1.94,2.69,1.07,3.08,-0.08,0 -1.77,0.12,1.29,3.85,2.94,5.11,4.76,3.87,2.75,3.37,0.80,2.29,0.93,2.35,1.88,1.18,-0.75,1.72,-0.55,0.91,-0.37,0 -1.14,-0.98,-0.36,-1.21,-1.13,0.88,0.08,2.04,0.71,3.89,5.51,5.58,3.34,4.54,3.30,2.74,0.44,0.41,-0.80,-0.59,0.93,2 -0.45,-1.79,0.12,-0.60,-0.79,1.19,3.23,1.62,5.43,5.53,7.14,3.60,4.72,4.39,2.33,1.25,0.34,-0.55,-0.68,0.63,2.17,2 --0.92,0.27,1.03,-1.28,1.75,1.24,3.78,4.41,5.20,6.20,5.57,4.89,4.70,1.43,0.70,1.49,0.62,1.04,-0.85,-0.50,0.96,1 -1.65,-0.20,0.55,1.23,-0.42,2.63,1.85,4.75,3.77,5.41,6.12,3.14,3.38,3.69,2.21,0.50,-0.32,-0.75,-1.45,0.32,-0.50,1 --0.49,-1.63,0.17,-1.31,0.40,0.32,2.45,2.50,2.67,6.20,3.57,5.06,3.60,1.33,0.68,-1.53,-1.88,-0.86,0.68,2.09,0.16,1 --0.30,1.03,1.10,4.06,4.56,4.20,5.86,3.90,3.93,2.80,2.43,1.39,1.43,0.44,-1.52,-0.07,0.95,0.25,1.02,-1.23,1.23,1 -0.58,1.80,2.34,4.16,5.18,4.54,4.32,4.19,2.28,3.72,3.15,1.59,0.53,-0.98,-0.93,0.22,-1.38,-1.10,-0.34,-0.50,-0.56,1 -1.45,-0.28,-0.32,1.41,1.65,0.96,1.87,3.56,2.91,5.05,5.31,6.09,3.51,0.76,0.51,-0.37,0.16,-1.39,-0.31,1.46,-0.91,1 -0.24,1.07,-0.34,-1.19,1.03,-1.38,-0.08,0.60,1.34,1.53,1.72,4.19,4.36,3.11,4.22,4.12,4.26,2.63,0.82,2.08,-1.90,2 -1.44,0.79,-0.48,1.33,1.88,4.77,3.65,5.71,4.13,3.73,3.23,2.02,3.00,0.09,2.55,0.87,-1.56,-0.94,1.60,-0.46,1.23,1 --0.75,0.66,1.79,1.09,0.58,4.49,3.94,2.04,3.08,4.46,7.05,3.57,3.62,3.97,1.59,0.77,-0.77,0.33,1.56,-0.91,-0.45,1 -0.08,-2.03,0.26,0.84,0.17,-1.02,-0.06,-0.44,2.32,1.04,3.63,3.77,4.15,1.33,5.02,4.39,3.25,2.96,2.07,-1.23,-0.49,2 -1.36,1.75,-0.50,-0.11,-0.27,1.68,4.51,3.94,3.56,5.59,4.85,4.63,2.48,3.67,-0.64,0.72,1.19,0.67,0.63,-0.66,-0.61,1 --0.85,-0.93,1.64,1.29,0.95,1.28,2.60,1.93,1.07,1.34,3.79,3.01,2.57,2.31,3.68,2.91,2.48,2.18,0.69,0.68,-0.46,0 --1.43,-0.46,0.36,-0.30,0.53,0.65,1.21,0.84,0.07,1.75,0.95,1.73,4.52,4.65,6.27,5.42,4.28,1.12,2.06,-0.16,-0.57,0 -2.72,-0.77,1.78,0.35,-0.22,-0.27,-1.17,2.13,1.82,4.33,4.30,4.87,5.82,3.69,2.40,3.64,1.78,1.90,1.04,0.10,-2.19,2 -1.25,-0.61,0.02,4.15,2.56,3.43,4.69,2.71,3.31,3.58,1.95,2.42,0.66,-0.54,1.56,0.68,0.79,0.57,0.34,1.83,-1.01,1 --2.03,0.88,-0.71,0.05,-1.13,2.01,1.21,0.84,2.54,2.53,4.10,2.82,3.69,4.98,3.55,4.28,4.68,1.47,0.78,1.63,0.80,2 -0.10,0.24,2.92,2.41,3.57,2.99,4.64,4.26,3.46,3.82,3.11,2.81,-0.28,1.42,1.44,0.38,-0.04,2.13,-0.23,0.81,-1.63,0 -0.46,-0.34,1.85,0.97,-0.53,1.64,1.58,2.17,1.78,2.37,3.21,4.64,3.39,3.08,3.12,-0.77,0.50,0.92,1.15,0.42,0.94,2 -0.86,2.46,0.72,0.78,0.80,2.42,2.94,4.44,3.18,3.36,5.31,3.82,2.74,2.76,2.64,0.36,-1.16,0.41,1.10,-0.12,0.28,1 --0.73,1.99,-0.03,2.17,3.47,3.78,4.88,3.01,2.56,2.23,2.89,2.38,-0.19,0.21,1.85,0.58,2.25,1.83,1.40,0.37,-0.48,0 --0.15,-0.87,-0.35,0.46,0.02,0.54,2.70,1.93,1.38,2.96,3.70,4.59,5.63,4.23,4.45,4.24,1.75,1.48,-0.17,1.78,0.54,2 --0.31,1.29,0.40,0.15,0.28,3.39,1.48,2.29,1.22,1.89,3.46,2.17,4.40,4.33,4.13,6.24,2.93,2.87,2.97,0.61,-0.89,0 -0.10,0.07,1.53,0.39,0.77,1.33,0.96,-0.14,-0.24,1.64,2.06,3.32,5.43,4.04,4.99,4.70,3.51,4.91,2.42,0.35,1.20,2 -0.48,1.03,-0.62,1.04,3.63,4.93,5.42,3.26,4.35,3.18,2.04,2.12,1.65,0.24,2.36,1.54,0.05,-0.92,0.29,0.69,0.86,0 --0.62,0.41,-0.93,-1.23,0.61,-0.19,0.77,2.11,1.07,3.36,4.55,3.95,2.89,5.55,4.60,4.71,2.74,2.04,2.32,0.31,0.14,2 -0.33,1.02,0.06,1.95,3.03,2.26,2.85,4.21,3.33,4.92,3.78,2.34,3.14,2.76,1.92,0.67,-0.02,1.05,1.43,-0.40,-1.21,1 --1.45,0.62,-2.01,-1.37,-1.01,1.22,2.60,2.81,3.95,6.31,5.90,5.80,4.68,1.62,2.42,1.53,-0.30,-1.41,-0.16,0.08,-2.26,2 --1.71,1.09,0.18,0.55,1.04,3.45,4.08,3.50,2.38,3.30,6.08,2.71,2.42,-0.12,2.62,-0.26,0.72,0.48,-1.74,-0.64,-1.20,1 --0.89,0.26,1.81,1.18,-0.26,1.63,1.91,1.63,3.36,0.77,2.53,0.41,1.38,3.89,3.66,2.94,0.79,2.38,0.12,0.90,0.19,0 --0.08,0.81,2.95,3.80,4.78,5.53,4.35,4.01,3.34,3.91,2.83,1.54,0.66,0.17,-1.15,-1.70,0.73,-2.22,0.13,1.41,2.93,1 -0.41,1.52,-0.45,-0.26,2.11,2.12,2.88,3.31,3.31,5.40,4.33,2.69,2.13,1.47,2.85,-0.12,0.14,-1.43,0.08,0.63,-0.88,1 -0.55,1.03,0.50,1.19,0.33,0.99,0.54,1.44,2.81,2.96,5.05,3.18,5.15,3.90,5.15,2.49,2.07,3.42,1.39,3.61,0.21,2 -1.52,-1.04,1.49,2.94,1.12,0.46,1.67,2.26,-0.05,1.43,2.42,2.38,4.60,4.84,5.68,3.37,3.60,1.13,0.89,0.98,0.45,0 -0.90,0.98,-0.56,-1.07,2.87,1.88,5.25,1.46,1.59,1.85,1.78,3.66,3.09,2.07,2.53,1.58,2.02,-0.16,1.03,-0.74,-1.24,0 --0.18,0.05,1.53,0.76,3.00,5.35,5.02,5.90,4.88,4.60,4.00,1.76,0.97,0.16,1.21,0.05,-0.56,0.50,-0.27,-0.84,-0.45,1 -0.46,-0.22,-0.54,0.47,0.19,1.00,3.22,5.75,3.79,4.76,5.78,5.73,5.37,2.49,2.46,-0.24,-0.38,0.57,0.46,0.35,-0.32,1 --1.48,-0.10,1.45,2.51,1.65,2.46,3.70,2.77,1.92,4.26,2.74,1.81,2.51,3.96,2.58,2.75,1.90,2.40,1.25,-0.92,0.82,0 --1.45,-0.67,-0.37,0.79,0.66,2.95,3.19,3.12,3.88,3.04,8.48,4.33,3.59,2.57,1.05,0.44,1.38,1.14,-0.26,-0.21,1.07,2 -0.36,-0.35,-0.15,0.45,0.26,0.06,1.96,1.47,1.82,3.12,2.65,4.91,3.32,4.28,2.85,2.29,1.32,1.95,-0.40,-0.76,-0.19,2 -0.69,-1.60,-0.80,0.44,2.22,1.01,0.48,0.18,0.43,2.11,3.26,2.75,1.99,5.62,7.34,2.63,5.50,1.86,-0.33,1.26,0.01,2 -0.09,-1.11,0.74,0.07,2.05,2.36,4.48,4.13,3.77,4.25,3.65,4.54,3.31,1.70,1.83,-1.02,-1.20,-0.22,1.52,-0.67,-0.49,1 -2.60,2.11,1.32,-0.15,2.41,1.94,5.24,5.21,4.21,2.35,3.90,3.50,2.21,1.27,0.39,-1.19,1.08,0.38,-1.29,-1.19,0.01,1 --0.49,2.85,0.03,3.79,2.15,4.53,4.60,3.88,3.71,3.59,2.49,1.41,3.26,2.37,2.41,1.42,-0.02,0.18,-1.02,-0.59,-1.34,1 -1.22,0.61,1.99,-0.76,-1.54,-0.00,1.74,2.19,0.95,0.67,4.59,2.21,4.38,5.40,2.60,3.04,0.99,1.37,2.32,-0.05,0.89,2 --2.16,0.74,1.36,1.92,2.03,2.48,4.14,3.83,0.50,0.85,2.47,2.01,2.87,3.63,3.64,2.54,1.92,1.45,-0.11,1.72,0.39,0 --0.08,0.01,0.99,-1.51,-0.55,0.55,2.66,2.86,5.42,5.75,6.34,5.07,0.38,4.33,1.84,1.20,-0.62,-0.34,-1.51,0.61,-0.55,2 --0.24,1.31,0.03,0.20,0.95,1.08,1.25,0.53,0.38,2.50,1.52,0.51,2.54,4.09,4.87,3.09,1.97,2.13,1.85,0.11,0.81,0 --2.06,1.22,-0.60,1.51,0.96,-0.14,0.13,1.38,0.50,3.29,4.22,3.72,4.01,4.09,3.37,4.74,2.32,2.26,0.25,2.86,0.92,2 --1.75,-1.06,0.92,0.81,0.67,1.95,3.08,3.18,3.49,5.20,5.88,5.16,3.99,1.96,2.53,2.52,-1.37,1.36,0.16,0.16,0.42,1 --0.65,0.53,1.05,1.90,2.94,2.03,3.30,3.39,1.49,2.54,-0.29,0.71,2.27,2.58,1.71,3.46,2.06,0.72,0.98,0.25,0.51,0 --0.38,0.18,2.10,3.37,1.20,2.71,4.10,5.88,4.24,2.74,2.34,0.58,3.61,1.58,0.41,0.94,0.54,-0.58,0.03,-0.77,-0.88,1 --0.64,-1.11,-1.83,-1.06,-1.55,-0.64,0.48,-0.99,-0.08,0.63,0.94,3.02,2.57,4.97,7.66,7.55,5.24,4.51,1.88,1.89,0.68,2 --0.47,1.41,1.36,0.72,1.44,0.37,3.22,4.29,4.90,5.42,6.73,2.97,1.64,1.22,1.93,0.58,1.21,-0.53,-1.38,0.11,0.47,1 --0.40,-1.82,0.80,-0.66,-0.67,0.65,3.80,4.65,2.69,4.92,5.65,4.50,4.13,2.74,1.10,2.27,-0.18,-0.36,-0.31,-0.17,0.96,1 --1.54,-2.91,-0.58,-0.38,0.02,0.06,1.18,1.31,0.20,4.01,2.56,2.40,6.34,3.99,7.17,3.79,2.63,4.10,2.64,2.08,-0.94,2 -0.76,0.01,-0.39,-0.71,1.29,1.65,2.99,2.68,3.52,5.75,7.09,3.59,4.92,3.02,2.56,0.51,1.15,-2.12,0.66,-1.71,0.25,2 --0.61,-2.38,0.07,0.66,1.30,1.65,1.23,-0.13,0.06,0.85,1.15,1.60,3.18,4.99,6.09,3.58,3.31,1.00,3.27,0.04,0.65,0 -1.39,0.91,1.58,2.50,4.35,2.71,6.25,3.90,5.45,2.91,3.31,1.19,0.14,0.49,-0.01,0.63,1.13,0.31,-0.92,1.26,0.28,0 --0.82,-0.56,0.07,-0.32,-0.72,0.56,3.30,3.39,1.99,3.11,4.22,4.27,5.14,1.79,2.72,2.55,1.72,0.07,1.63,-1.23,1.17,2 --0.94,0.31,2.95,2.12,0.43,1.80,4.21,4.50,3.56,4.96,2.69,4.55,1.92,2.34,0.68,1.23,0.67,-0.48,0.54,1.37,0.11,1 --0.83,1.57,1.71,0.23,2.19,1.50,3.51,4.92,4.47,3.53,5.62,2.90,1.85,0.38,0.69,0.49,1.25,-1.21,2.42,-0.43,1.46,1 -0.37,3.88,-0.14,-0.77,-0.98,0.61,-1.46,0.08,0.44,0.58,3.27,4.37,2.64,4.29,5.84,5.47,3.06,2.67,1.98,1.77,0.77,0 -1.50,0.25,0.02,1.12,4.07,4.47,4.17,4.65,3.84,2.57,2.08,2.17,0.34,-0.79,0.12,0.99,-0.05,1.74,2.35,-1.15,-0.36,0 -0.81,-0.58,2.02,3.89,4.02,2.93,4.79,5.41,4.69,2.42,2.60,1.97,-0.48,0.49,0.50,0.37,0.41,-0.72,0.91,0.36,0.27,0 --1.08,-0.09,-1.08,1.24,1.21,0.51,0.36,2.42,2.87,5.27,3.77,2.98,3.47,4.51,4.15,0.03,0.81,1.85,0.80,0.65,-0.45,2 --0.58,3.61,1.57,2.30,3.90,4.25,7.00,2.92,2.51,2.69,2.12,1.46,1.74,-0.61,1.08,-2.22,-1.10,0.25,-2.10,-2.55,-0.27,0 -0.77,0.74,-1.33,-0.21,-1.37,1.08,2.54,0.94,4.41,4.88,4.62,4.38,4.33,4.07,2.21,3.33,3.49,0.75,1.17,-0.93,-0.89,2 -0.44,-0.68,-1.59,0.56,0.82,0.01,0.25,0.82,3.81,1.30,3.31,4.21,3.14,5.01,5.16,4.72,2.14,2.99,1.90,-1.01,1.06,2 -0.64,0.72,0.26,0.89,-0.82,0.77,1.20,1.99,1.92,0.74,2.25,1.16,2.97,2.36,6.12,2.98,2.88,2.41,0.33,2.14,0.12,0 --0.66,-0.81,1.08,0.29,-0.27,-0.18,0.61,-1.14,0.46,0.06,3.13,2.42,4.07,4.64,5.17,4.80,3.61,1.91,0.54,2.92,0.99,0 -1.77,0.56,-0.04,1.28,-0.53,1.39,2.67,1.81,3.45,5.18,4.05,4.50,4.89,3.61,3.47,2.67,3.09,1.43,1.15,-0.50,0.32,2 -0.30,0.53,0.01,1.08,-1.10,0.07,-0.06,0.85,1.37,1.89,2.09,2.16,2.36,4.27,5.99,3.55,2.20,3.96,2.27,0.41,-2.07,2 --0.60,1.43,-0.42,1.97,0.46,2.12,3.44,0.83,2.71,1.75,4.38,4.01,0.88,2.47,5.23,3.45,4.59,2.07,-0.56,0.68,-0.61,0 --0.60,0.88,0.62,1.42,3.69,4.20,1.01,2.00,1.38,2.13,2.38,3.21,2.42,3.72,2.74,3.09,0.83,-0.34,-0.29,1.14,2.75,0 -0.86,2.08,-0.12,1.27,0.88,-0.39,0.25,1.35,-0.30,2.16,2.72,3.62,4.08,5.69,5.19,3.77,3.81,5.26,2.30,0.07,0.50,0 --0.95,0.39,2.68,2.62,1.32,3.31,4.34,5.10,4.48,2.56,2.97,2.43,2.73,1.08,-0.20,-2.49,-0.67,1.29,0.53,1.34,1.02,1 --0.97,-0.03,2.13,4.77,4.47,5.64,5.49,4.26,3.30,2.99,3.97,1.43,-0.56,-0.00,-0.25,0.89,-0.28,-0.67,1.08,-1.56,0.90,1 -0.21,0.12,-0.09,0.20,-0.36,1.60,0.58,0.72,2.91,1.66,3.95,3.19,4.67,5.47,4.06,3.58,4.22,1.58,1.17,1.86,0.34,2 --0.04,0.73,-0.11,0.01,-1.01,0.84,1.97,3.08,2.68,2.41,5.47,6.01,2.47,1.97,2.34,3.59,-0.65,-0.16,-0.38,1.12,0.55,1 -0.75,1.40,1.88,1.47,0.74,3.79,3.72,4.12,3.99,2.49,1.62,3.81,-0.27,-0.44,0.50,1.44,0.59,-0.43,-1.08,0.11,-1.67,1 --2.40,1.17,0.26,-0.15,1.17,0.55,3.58,3.98,4.82,3.85,2.43,4.25,1.57,1.63,1.34,-1.20,-0.01,0.72,0.38,-0.25,-0.93,1 -1.71,-0.36,0.34,0.42,-0.59,1.06,-0.15,-0.01,1.60,4.63,3.72,3.23,2.48,3.39,3.79,4.74,1.43,2.24,2.63,1.66,0.31,2 -0.94,0.88,2.40,3.44,2.91,5.15,5.26,5.70,5.08,2.55,1.56,2.00,1.48,0.90,0.11,1.39,2.65,-0.97,0.14,-0.14,0.47,0 --1.29,1.22,1.83,-1.58,-0.19,0.90,1.69,2.73,2.95,3.53,5.45,6.18,2.79,4.04,1.64,1.46,1.49,-0.69,1.07,0.41,-0.84,2 -0.19,0.82,1.09,0.78,2.84,2.81,4.76,1.87,3.71,1.39,2.38,2.57,0.78,1.44,4.30,3.24,3.69,1.03,-1.01,-1.72,-0.01,0 --2.63,-0.99,0.92,-0.63,0.43,-0.67,-1.40,-0.26,0.89,2.27,1.60,3.80,4.88,5.13,4.72,7.15,3.37,0.90,1.77,-0.22,-1.40,2 --0.29,1.55,1.74,4.40,2.50,3.88,3.76,4.59,1.96,2.40,1.07,4.30,0.90,0.03,-0.45,0.30,0.43,-0.05,3.56,1.13,-1.12,0 -0.72,0.40,0.10,0.18,-0.52,1.27,1.89,1.92,2.75,1.91,5.37,1.86,3.45,6.09,5.84,3.05,1.96,2.24,0.30,-0.44,-0.25,2 -0.72,0.16,-1.22,1.15,1.14,2.88,-0.37,1.55,-0.96,0.94,3.43,3.77,4.69,6.46,6.04,4.60,3.39,2.97,2.48,2.09,-0.09,2 -1.35,-0.49,-0.92,0.57,-0.54,1.42,1.19,-1.69,0.14,0.11,2.22,1.92,3.15,2.74,6.69,3.99,5.30,-0.32,0.74,3.03,-1.78,0 -0.04,0.53,1.02,0.74,2.82,2.21,3.25,2.53,2.76,0.07,2.72,3.45,1.79,3.42,1.05,1.90,1.13,0.35,0.94,-1.96,0.42,0 --0.39,1.35,1.19,2.55,2.92,4.59,3.46,2.99,4.91,2.49,1.76,2.50,1.55,-0.37,0.92,-0.17,2.05,2.57,0.78,0.16,-1.59,0 -1.80,-3.25,-0.07,0.63,-1.02,0.42,0.59,1.23,1.88,3.62,5.72,4.90,5.72,2.94,1.99,3.33,1.40,0.88,2.59,2.16,0.22,2 --0.90,0.30,-0.44,0.42,0.22,1.76,1.10,1.60,6.00,6.14,8.00,5.54,2.22,3.82,2.66,0.15,-2.29,0.64,-1.60,-0.26,0.45,1 -0.32,0.61,1.86,2.30,2.91,2.04,2.05,2.36,0.51,1.70,2.76,2.66,2.83,2.30,2.42,3.95,1.82,2.74,1.19,1.24,1.52,0 --2.12,0.72,3.06,1.49,2.08,2.91,1.14,2.19,2.02,2.29,2.90,1.31,2.08,3.63,4.92,3.52,3.02,2.68,-0.60,-0.16,0.38,0 -0.80,0.51,1.67,1.79,1.08,0.44,3.61,1.53,0.73,2.27,2.57,2.20,3.52,2.92,2.80,3.32,2.85,0.13,1.24,0.08,0.86,0 -0.01,1.09,1.52,2.06,2.80,3.06,4.50,3.65,2.49,1.28,1.12,1.89,2.36,-0.70,-0.68,0.77,0.04,1.95,-0.14,-0.37,0.82,0 --0.25,-0.35,1.46,-2.44,0.60,0.33,1.31,4.02,0.56,3.96,3.73,3.21,3.59,4.11,3.70,2.37,2.53,0.98,0.62,2.02,-0.55,2 -0.35,-1.56,0.55,0.66,-0.61,1.26,1.94,2.10,2.58,5.19,7.58,4.11,3.14,3.55,3.17,0.83,0.05,0.99,-0.67,-1.57,0.80,2 -0.44,-0.24,0.66,0.69,0.81,3.74,2.72,3.40,4.43,3.61,3.65,3.41,3.36,3.53,3.11,-0.40,0.87,0.62,0.56,-0.88,-0.15,1 --0.57,0.79,-0.10,2.50,2.13,2.63,2.43,2.94,4.07,5.15,3.97,1.12,1.88,0.62,1.78,-0.22,0.32,-0.84,-0.13,-0.14,0.24,1 --1.09,1.10,-0.32,-1.63,1.75,1.53,0.84,3.19,4.28,4.99,6.25,4.32,2.16,3.50,2.38,1.62,0.48,-0.99,-0.38,-0.24,0.71,2 -0.44,0.39,1.04,0.90,1.42,3.33,2.89,5.62,2.69,4.98,5.84,4.00,1.12,3.47,0.46,-0.32,-0.09,0.52,-0.74,-0.09,-0.12,1 --0.60,-1.24,1.69,-1.45,-1.64,0.19,0.44,2.47,4.42,5.04,5.40,4.32,5.08,2.16,3.05,2.11,1.28,0.50,0.76,0.20,1.41,2 --2.06,-0.64,0.72,-0.80,-0.65,-0.34,2.08,0.69,1.08,3.18,3.40,2.84,3.27,2.55,3.55,4.59,1.30,1.02,1.04,0.18,-0.56,2 -1.75,0.73,-1.72,0.72,0.00,-0.12,3.16,1.28,4.28,3.37,4.96,4.24,4.84,3.47,2.20,2.94,1.04,1.46,0.54,0.25,0.31,2 -0.67,1.30,1.94,0.81,1.76,3.34,3.44,5.92,1.23,2.85,1.70,1.30,-0.23,1.56,1.52,0.86,1.03,1.55,1.26,0.49,0.48,0 --0.90,1.06,1.29,0.78,1.93,2.43,3.80,1.18,-0.19,2.63,1.40,2.76,2.71,4.26,4.33,3.89,2.29,2.54,1.59,-0.23,-0.65,0 --1.90,-0.37,-0.37,1.52,0.07,2.54,1.05,1.40,0.15,1.23,3.41,3.75,4.38,4.61,5.39,1.75,2.71,3.96,0.65,-0.45,0.68,2 --1.21,-0.76,-0.79,1.72,-0.25,1.74,0.07,0.90,0.01,2.34,1.18,4.27,4.09,5.88,5.33,3.76,4.72,3.06,2.23,1.40,-0.51,0 --0.71,-0.29,2.43,3.52,4.58,5.52,5.92,5.05,3.33,0.49,1.03,0.50,0.84,0.60,-0.76,0.36,1.52,0.74,0.03,0.76,0.44,0 -1.09,-0.32,0.01,0.78,0.50,3.28,4.71,4.14,4.00,4.83,3.59,3.18,3.37,1.52,0.53,1.50,0.16,-0.25,-1.55,-0.32,0.74,1 -0.45,-0.34,-0.14,0.20,-0.57,0.16,0.98,-0.21,1.62,4.11,4.90,5.40,4.01,5.67,3.33,4.96,3.74,0.97,1.70,1.35,0.56,2 --1.47,-0.40,-0.45,1.38,2.14,1.77,1.12,3.25,0.35,0.09,1.46,3.50,3.02,2.92,3.10,3.98,1.98,0.24,-0.37,0.36,0.76,0 -0.34,0.03,1.37,-1.51,0.37,2.06,1.40,2.51,5.36,4.24,8.02,4.06,4.60,3.10,1.42,2.48,0.90,0.29,1.45,1.58,-0.05,1 --0.46,0.14,-0.09,0.84,0.36,2.19,3.18,3.79,5.84,4.96,5.65,4.54,5.00,4.95,2.28,2.16,-0.10,0.67,0.62,0.76,1.84,1 -0.41,0.07,-1.62,-2.33,-0.90,1.53,0.92,2.72,3.83,4.85,2.24,4.24,5.59,3.58,2.06,1.60,2.62,1.22,1.48,2.05,0.35,2 -0.38,-0.21,-1.59,0.75,-0.53,0.63,1.19,2.49,4.31,4.84,5.55,4.23,2.50,2.61,1.04,1.83,0.54,0.89,-0.13,-0.11,-0.90,2 --1.01,-1.36,1.06,-0.35,-0.64,-0.40,-0.02,1.00,-0.39,-0.32,3.10,2.51,3.05,6.00,6.41,3.28,4.31,3.12,1.23,0.15,-0.42,2 -0.02,1.12,1.34,1.27,0.07,0.02,0.16,1.32,1.61,2.49,1.60,3.08,3.26,4.58,5.06,5.20,4.89,2.22,2.21,2.27,-1.17,0 -0.01,0.61,0.97,1.02,1.23,1.13,2.64,3.56,3.43,5.17,6.69,4.27,4.67,4.54,4.23,1.65,2.36,-2.91,-0.53,0.24,1.14,2 -1.11,0.69,2.24,-0.56,2.04,3.34,6.43,4.28,2.82,6.01,4.93,1.57,2.75,-0.22,1.64,0.80,-0.42,0.21,0.35,0.07,1.79,1 --0.31,-0.17,3.73,2.55,3.73,4.18,4.53,3.00,3.61,3.07,2.32,1.15,3.06,-0.03,0.56,2.02,1.41,0.93,-0.99,0.83,0.77,0 -0.85,1.45,1.59,-0.25,1.44,2.93,1.30,3.42,3.19,5.55,6.73,3.61,2.03,3.89,0.63,-0.93,-2.07,1.82,-0.12,0.38,-0.10,1 -0.70,0.67,0.59,-0.59,2.34,0.64,1.99,1.71,1.96,1.72,3.38,1.68,1.14,3.96,2.70,1.85,4.21,1.57,-0.69,-0.39,-1.17,0 -0.75,0.13,0.18,1.08,-0.43,0.89,3.95,4.28,6.17,4.27,4.33,3.09,1.82,1.28,0.57,1.45,-0.73,1.09,0.88,-2.51,-1.19,1 --0.84,1.25,0.23,1.54,1.64,1.61,5.05,4.11,5.47,2.80,3.25,2.33,1.39,0.24,2.10,0.91,-0.93,-1.02,1.16,0.44,0.04,1 -0.60,-1.36,0.05,0.94,0.19,2.84,-1.34,-0.13,0.60,0.17,3.37,3.08,2.01,3.30,5.60,4.48,3.07,2.98,-0.04,-0.31,-0.10,0 --1.18,2.21,0.89,1.93,0.21,3.93,2.95,2.76,4.69,5.50,3.64,2.75,2.70,2.55,0.94,0.54,0.03,0.25,-0.47,0.85,1.33,1 -1.54,0.08,-0.65,-0.50,-0.34,0.42,1.41,0.97,0.69,3.69,3.68,3.84,4.64,4.45,4.97,2.05,3.15,1.89,1.75,0.51,1.22,2 --1.43,0.85,0.55,3.07,1.46,2.14,4.80,5.04,3.13,4.19,4.75,2.49,1.13,-0.52,1.50,1.26,1.29,0.91,-1.54,1.30,-0.36,1 --0.99,-0.92,0.20,2.17,1.12,3.74,3.21,2.82,1.12,0.98,0.77,2.42,3.88,2.57,3.95,1.98,0.87,2.60,-0.26,0.43,-0.79,0 -1.61,0.54,0.29,-1.76,0.29,2.47,2.02,4.61,3.99,5.12,5.62,5.13,4.67,3.95,2.14,0.11,0.76,0.27,-1.65,1.49,-1.55,2 -1.05,-2.28,1.21,0.02,-0.33,-0.06,1.72,5.27,3.66,4.36,4.24,4.80,2.66,2.38,2.32,-1.51,-0.52,0.80,0.34,2.91,0.12,1 -0.75,-0.05,-1.11,-1.25,0.80,-0.14,-1.14,-1.90,0.91,0.81,0.87,4.69,3.01,3.24,5.56,3.70,5.33,2.39,1.94,0.47,-1.73,2 --0.78,0.96,0.14,1.26,0.26,4.33,0.74,4.05,4.58,3.10,4.39,4.44,3.40,4.07,1.88,1.21,0.68,-0.73,-0.66,0.55,-0.45,1 --0.37,1.00,0.30,0.74,1.49,2.65,4.01,4.79,4.14,3.45,4.81,5.27,4.39,0.53,0.44,-0.27,0.28,0.98,-0.45,-0.18,1.01,1 -1.51,1.69,-0.40,2.10,0.80,2.59,0.95,2.68,1.48,2.82,1.83,3.34,2.20,2.15,4.93,2.78,3.67,1.47,1.02,-0.19,0.06,0 -0.13,0.28,1.00,1.49,2.74,4.39,3.19,-0.09,-1.14,1.26,3.71,2.26,2.35,3.56,3.48,3.38,2.07,2.24,1.73,1.46,-0.48,0 --1.45,0.49,0.18,-0.36,0.99,0.90,2.41,2.15,-0.87,1.54,3.69,1.42,2.47,4.22,4.25,6.29,4.32,3.13,1.80,-0.52,-0.50,0 --0.11,0.63,1.87,1.03,1.39,4.39,4.47,2.54,4.31,4.36,3.77,2.69,1.96,0.00,-0.07,-1.84,-1.10,0.62,-0.29,1.83,0.92,1 --0.33,0.94,-1.13,-1.42,-0.27,0.24,0.63,0.79,3.90,4.19,5.40,5.65,4.92,4.62,4.44,2.88,1.96,0.04,-0.04,0.47,0.21,2 --1.37,0.97,0.73,-0.81,0.26,0.95,1.84,1.88,4.72,1.99,6.63,4.09,3.29,0.91,2.64,0.54,-1.29,0.50,1.20,1.69,-1.24,1 -1.10,-0.64,-0.12,2.00,1.15,2.22,2.78,2.52,1.46,0.12,4.05,3.37,4.44,4.54,5.88,5.79,2.47,2.82,3.08,0.32,1.92,0 -0.76,-1.83,-0.64,1.21,-0.21,-0.82,1.09,0.65,-1.81,1.56,1.16,4.73,5.08,5.86,4.90,5.82,4.37,5.01,2.55,1.95,-1.65,0 -0.05,0.61,0.36,0.64,-0.09,0.49,-1.17,0.53,-0.44,1.14,1.98,3.03,3.14,4.69,7.32,6.35,5.53,1.59,1.61,0.57,-0.62,2 -1.86,-0.84,1.30,0.36,-0.44,0.23,2.67,2.68,3.65,4.79,6.49,5.96,2.85,3.65,2.65,1.51,-0.81,-0.07,1.73,-0.11,-1.14,2 --1.92,-1.88,-0.90,0.41,0.96,-1.02,2.20,1.13,1.12,1.78,2.65,2.66,3.15,5.11,6.36,3.38,3.01,3.41,-0.56,0.84,0.69,2 -0.20,3.38,0.98,0.82,2.31,3.81,3.52,3.85,3.86,3.33,5.63,4.05,1.19,2.98,1.20,0.85,-1.07,0.34,-2.59,0.71,0.45,1 --1.47,0.60,1.39,1.71,0.22,0.63,-0.52,2.13,2.61,2.50,3.66,3.55,4.42,4.11,5.52,1.18,2.23,1.35,2.10,2.18,-0.39,2 --0.91,-0.13,-0.33,-0.28,2.77,4.11,4.44,3.25,1.30,1.33,1.30,2.49,1.39,1.86,0.89,1.05,2.96,1.52,0.29,0.25,0.70,0 --1.32,-0.61,1.66,-1.63,1.00,1.44,3.17,4.30,5.29,4.64,8.20,3.35,5.48,1.97,1.75,0.03,0.47,-0.19,0.61,-0.08,-0.15,1 --1.67,-0.05,1.53,-1.21,-0.82,1.06,2.30,1.70,4.36,5.55,4.62,5.64,3.62,4.31,1.91,1.86,0.76,0.67,-0.47,0.14,0.17,2 -0.57,0.20,-0.67,2.07,0.94,2.90,4.17,3.41,3.64,6.12,2.89,3.91,1.61,1.54,0.36,-0.23,0.69,-0.02,-1.10,-0.33,-0.09,1 --0.52,0.59,1.84,3.04,3.70,4.79,4.39,5.07,4.24,4.11,1.87,0.19,1.19,-0.82,-0.30,-0.31,0.88,1.37,-0.90,2.45,0.15,1 --0.27,-1.32,-1.21,0.46,-0.25,-2.41,0.19,-0.75,-0.71,0.68,1.85,2.64,5.16,3.26,6.32,5.07,3.46,3.50,3.38,1.61,-0.56,0 --2.77,1.64,0.65,2.81,3.49,5.33,4.35,3.98,4.12,3.32,2.54,1.60,1.12,0.26,0.94,-0.48,0.76,0.49,2.04,1.28,-1.74,1 --0.01,0.59,2.35,2.97,2.74,6.08,4.83,5.96,2.91,2.02,2.97,1.89,0.59,1.75,-0.94,0.32,-0.19,0.31,0.85,-0.36,0.52,0 -1.13,-1.17,1.60,-1.41,-0.04,2.02,1.25,5.25,2.87,4.84,6.23,6.42,7.50,3.07,1.42,1.46,0.61,0.63,-0.48,0.91,-0.70,1 -0.34,2.54,0.51,0.79,1.55,2.55,4.06,3.38,4.85,6.07,5.25,4.02,2.20,2.39,2.53,0.92,0.11,-0.04,-0.34,-0.80,2.29,1 --0.75,0.68,1.19,1.06,2.39,3.12,2.54,2.25,3.98,4.79,5.66,2.90,2.70,1.15,0.91,-0.05,0.25,1.43,-1.85,-1.08,-0.53,1 -0.29,-0.01,0.33,-0.69,2.45,0.43,-0.18,1.10,3.58,6.02,4.64,2.85,2.76,3.92,1.75,2.06,0.15,1.87,0.19,2.05,-0.50,2 -0.53,0.04,0.67,1.92,0.12,2.00,0.10,0.25,2.33,4.60,4.97,4.52,4.09,3.93,2.89,1.80,3.52,1.12,0.66,0.40,-0.09,2 -1.01,-0.65,-0.17,0.10,1.35,0.31,0.78,0.50,1.52,2.07,4.83,3.23,4.57,3.98,5.30,1.98,1.71,2.37,-0.57,0.23,-0.11,2 -2.49,-1.17,-0.14,2.61,2.61,6.65,3.99,3.74,4.59,3.02,2.95,1.49,1.38,-0.22,-0.74,-0.45,-1.13,0.36,-0.69,1.34,0.36,0 -1.16,0.12,-0.23,-1.99,-0.76,0.79,0.97,1.81,3.39,4.04,6.07,4.71,3.19,3.06,2.11,0.90,-0.32,-0.81,1.50,-0.48,-0.51,2 -0.04,0.32,2.82,3.26,2.59,2.56,4.36,2.73,0.18,2.38,2.64,2.80,1.83,2.26,1.56,1.68,4.33,2.23,1.73,-0.59,-0.68,0 -0.32,1.01,0.45,0.12,0.04,0.10,1.95,2.26,3.89,3.90,3.99,3.63,4.02,3.55,2.21,0.62,0.36,1.22,-0.41,1.71,1.26,2 -1.17,0.04,0.55,-0.56,-1.73,0.62,1.15,1.60,1.21,5.08,3.29,4.96,3.70,0.85,3.14,3.17,1.23,0.97,2.29,-0.47,-1.33,2 --0.05,0.93,-0.07,1.99,2.73,2.05,1.72,1.70,3.25,2.04,0.30,1.72,1.75,2.10,2.38,2.20,1.79,-0.35,0.62,1.30,-1.13,0 -0.60,-0.66,2.61,3.91,4.18,4.49,6.24,3.46,2.82,4.31,2.91,2.95,-1.49,-0.21,-0.47,-0.09,0.35,-0.87,-1.20,0.52,-0.14,0 --0.92,0.65,0.87,0.79,0.94,0.86,1.54,1.30,0.37,0.01,1.91,1.56,3.39,3.21,3.02,3.39,3.24,4.06,1.25,1.08,-1.13,0 --0.05,-0.54,0.71,2.07,-0.31,2.57,1.59,3.08,5.35,6.45,6.12,3.72,5.62,4.28,0.34,0.67,1.47,-1.95,1.54,-0.29,-0.01,1 --0.19,-0.14,0.41,-0.92,-0.41,0.83,0.68,2.03,5.86,4.23,5.21,4.79,2.49,5.10,2.81,0.93,-0.24,1.60,2.56,-0.01,-1.15,2 -0.54,-1.13,0.21,-0.09,-0.70,-0.20,0.73,-0.87,-0.16,3.05,1.87,1.44,3.80,4.61,7.38,5.61,3.01,3.22,2.58,1.23,2.64,2 --1.16,0.74,0.65,2.57,1.86,3.94,4.38,3.06,2.27,1.12,2.44,2.12,1.39,2.56,0.98,1.31,1.64,1.31,-1.07,1.40,0.39,0 --1.32,2.20,0.83,2.19,-0.98,2.25,3.54,2.55,4.89,3.93,3.97,4.62,1.33,3.00,-1.32,-1.89,-0.70,0.13,-0.65,0.35,0.48,1 --0.86,-0.05,2.04,2.76,2.77,6.34,3.80,3.99,3.79,2.53,2.72,3.16,0.32,2.41,1.15,0.49,0.09,0.67,0.18,0.35,-1.80,0 --0.17,-1.69,3.22,3.64,4.45,3.38,5.41,5.19,3.03,3.96,2.23,1.22,-0.24,-0.84,-0.13,-1.63,-1.62,0.84,0.76,-1.45,-0.24,1 --0.01,-0.47,-0.79,0.47,0.40,0.78,1.23,1.86,0.13,0.34,3.43,2.45,3.36,3.87,5.19,5.04,4.50,2.18,2.58,-1.05,-0.34,0 -2.84,-0.97,2.71,0.95,2.51,2.84,5.92,4.70,3.96,2.75,1.43,2.38,0.13,1.25,-0.41,1.85,1.22,-0.65,-0.53,0.57,0.95,0 -1.98,0.56,-1.15,0.54,0.28,-0.54,2.98,2.32,1.66,3.93,5.06,5.27,1.68,2.79,2.55,0.63,0.81,-0.39,-1.72,0.43,-0.71,2 -0.78,1.39,1.00,4.50,3.86,3.03,3.63,5.36,3.51,3.70,3.02,2.55,2.50,1.64,0.68,1.90,1.63,-0.61,0.18,-0.54,-0.74,1 -1.91,-0.64,-0.25,-0.58,0.06,0.54,0.72,-0.63,0.85,1.12,2.30,3.70,4.32,3.98,5.39,4.85,2.87,2.76,1.09,0.53,0.03,0 --0.32,-0.14,-0.26,0.77,1.59,2.82,1.90,2.09,1.52,3.31,2.54,3.00,2.78,4.49,2.23,2.06,3.91,3.67,2.39,0.36,0.08,0 --1.22,1.27,2.39,3.70,4.71,5.34,5.99,5.31,3.12,3.75,2.39,0.97,-0.03,-0.83,1.20,0.23,0.36,-0.19,-0.99,0.61,1.59,1 --0.32,1.26,1.57,0.59,1.02,4.03,5.22,3.62,4.89,4.81,4.33,1.94,1.56,1.76,1.14,0.02,-0.75,0.21,-1.09,-0.70,1.71,1 -0.67,0.43,-0.07,0.56,2.59,0.50,-0.35,1.56,0.55,3.36,3.35,2.95,2.04,3.55,3.47,3.65,2.89,3.87,3.09,1.62,0.44,0 -0.05,0.93,-0.93,-0.36,-1.28,1.21,1.09,0.24,0.32,0.65,2.86,3.82,5.15,2.55,5.05,4.27,1.55,3.61,0.40,1.21,0.88,0 --2.23,0.23,0.56,-0.73,0.21,0.95,2.55,3.13,2.83,4.11,6.09,3.70,2.22,1.13,0.22,-1.78,0.17,-0.12,1.10,-1.64,-1.53,1 --0.58,0.91,0.91,-0.32,1.41,4.08,1.44,3.44,1.71,2.58,2.75,-0.11,2.44,3.05,0.96,2.97,0.47,1.38,1.93,0.90,-1.46,0 --1.72,-0.77,2.50,3.46,3.32,4.63,6.06,5.32,2.45,3.44,3.30,1.99,0.83,1.70,-0.07,-0.63,0.16,-0.36,0.30,0.08,-0.17,1 --0.26,-0.51,1.87,-0.25,0.64,0.43,-0.24,0.26,1.63,4.54,4.61,4.62,5.07,2.98,3.78,2.12,3.85,1.57,1.93,1.46,-0.01,2 --0.64,-0.87,1.51,-0.84,0.43,2.82,1.77,2.75,3.54,3.60,5.90,3.89,4.92,2.85,3.83,-0.02,2.21,-0.41,1.59,-1.82,2.10,2 --0.12,-0.26,-0.32,0.73,-0.33,2.76,4.80,3.22,4.31,4.00,3.29,4.53,2.90,-0.03,0.49,0.10,0.40,1.42,-0.32,-0.47,0.58,1 -0.51,0.79,0.12,3.28,2.23,3.24,5.01,3.74,2.39,1.86,1.46,1.65,2.71,1.89,2.10,2.39,0.75,0.81,1.09,-0.99,0.23,0 --1.05,1.05,-1.80,1.24,0.97,-0.42,0.09,1.93,2.23,3.22,3.00,3.14,0.82,3.40,2.87,0.94,3.01,-0.40,2.92,-0.58,-0.82,2 --1.41,-1.22,0.16,-0.62,1.22,0.69,2.34,2.90,3.97,5.44,5.17,5.06,3.82,2.12,1.60,1.57,0.35,1.85,-0.66,-0.13,1.59,1 --0.82,-0.89,1.61,-0.00,1.62,1.42,1.69,0.78,1.55,1.23,1.74,1.29,2.64,3.29,5.53,4.54,4.28,2.58,2.49,0.43,0.66,0 -1.07,-0.94,-0.34,0.39,-0.62,1.49,2.85,2.77,3.53,5.80,5.25,4.54,4.74,3.35,1.38,1.58,-0.60,0.48,1.65,2.42,-0.30,2 -0.38,0.54,0.54,0.15,-0.56,0.39,1.61,0.79,1.49,2.28,2.59,1.53,5.11,5.57,5.18,2.15,2.35,1.56,1.74,1.02,-0.17,2 -1.65,-1.79,2.31,0.83,-0.34,2.55,1.52,1.59,4.62,5.12,2.62,4.11,3.76,2.62,0.80,0.18,0.48,0.35,0.48,-0.98,-0.62,1 -0.33,0.87,-0.49,1.23,0.12,0.06,1.22,0.75,0.07,3.48,1.91,2.54,4.51,4.31,6.06,4.14,2.87,3.90,2.25,3.21,-0.02,0 --0.88,-0.52,0.11,1.96,3.06,4.80,5.88,3.51,3.40,4.19,2.85,2.41,1.33,0.41,1.51,0.09,-0.91,-1.26,-0.71,1.44,0.64,1 -0.50,-0.53,0.48,0.95,0.86,-0.30,1.60,1.84,2.26,4.81,3.87,3.87,4.37,4.52,5.21,1.75,2.37,2.59,1.20,1.03,1.21,2 -0.12,-0.72,-1.17,1.56,2.62,1.49,4.84,3.33,4.78,4.18,4.25,2.58,1.67,2.05,1.19,1.47,-0.14,-0.42,-0.95,-0.95,-1.17,1 --0.81,1.27,2.44,-0.44,0.69,3.04,5.08,1.43,2.99,1.29,1.73,1.30,-0.00,1.10,3.09,1.70,1.99,-0.12,1.38,-0.33,-0.87,0 -0.22,-0.87,0.91,0.86,3.90,1.04,2.38,2.59,2.74,3.30,3.00,-0.22,-1.05,2.01,3.44,2.79,3.28,2.01,1.35,-0.38,-2.13,0 -1.51,1.82,-0.19,2.63,3.21,2.57,3.04,6.16,3.13,3.04,3.08,0.95,-0.11,0.80,1.51,-0.81,0.38,-0.08,0.45,0.20,0.35,1 -0.59,0.00,1.07,1.60,1.93,2.79,2.41,4.73,4.18,5.04,3.94,2.57,3.34,1.40,0.13,2.13,0.64,1.00,1.66,-1.40,-1.57,1 -0.17,0.88,1.69,-0.40,-0.85,-0.80,2.44,3.11,1.85,3.29,5.48,4.52,4.46,3.69,2.13,1.11,0.70,1.98,0.44,1.09,-0.56,2 -1.15,0.71,-0.19,1.07,0.21,2.34,1.97,1.89,3.97,6.25,5.60,5.43,4.89,3.95,1.67,0.95,0.33,0.22,3.61,0.03,-1.03,2 --1.16,0.69,0.72,-1.80,1.56,1.75,2.31,1.01,1.29,1.54,2.83,2.68,2.73,4.46,4.70,4.19,3.22,3.35,1.18,-0.18,-0.82,0 -0.76,0.62,0.72,0.12,1.33,2.03,1.54,-0.51,-0.38,1.84,2.72,2.29,2.29,2.21,3.70,3.38,3.57,2.73,1.46,0.97,-1.52,0 -0.32,0.79,-0.49,1.17,-0.33,1.60,3.05,4.67,4.65,6.05,5.52,3.73,4.70,3.37,0.85,0.12,-0.57,0.79,-0.51,-1.34,0.10,2 --0.19,-0.28,1.17,1.49,2.72,1.17,4.51,1.84,3.87,0.41,2.32,1.18,0.19,1.40,1.33,3.18,0.96,2.12,0.60,-0.32,0.67,0 -0.76,-1.93,-0.10,-0.28,-0.86,1.30,2.79,0.18,0.14,-0.95,1.92,4.29,2.40,5.57,5.09,4.96,3.70,2.02,1.27,1.63,-1.01,0 -0.52,0.83,1.96,-0.07,1.92,5.03,5.20,4.61,5.51,4.45,4.20,3.91,2.36,1.08,2.04,-0.80,0.68,0.41,-0.75,-0.63,-0.58,1 --1.47,-0.15,0.95,0.97,-1.77,0.24,1.84,0.78,4.21,5.34,5.93,5.54,4.00,5.10,3.28,1.94,-0.86,-1.18,-1.19,-2.06,-0.66,2 --0.72,2.37,3.09,2.49,2.73,4.64,5.87,4.11,3.43,4.21,3.56,2.05,0.24,-0.31,0.73,2.01,0.06,-0.05,-1.08,0.26,-1.81,0 -1.18,0.43,-0.47,0.86,2.38,2.58,3.13,2.22,2.77,4.43,4.41,2.68,2.49,0.38,2.66,0.46,-0.25,-0.62,-0.27,1.19,-0.58,1 -0.36,0.94,0.61,0.35,-0.54,-0.59,3.15,1.90,2.26,4.00,5.92,4.19,4.52,0.74,2.04,3.76,-0.64,0.12,0.26,0.05,-0.86,2 --0.26,0.70,0.28,-0.51,2.53,3.28,4.19,1.21,0.97,1.17,1.29,2.51,0.73,3.08,1.30,3.07,2.84,2.55,1.09,0.15,-0.08,0 --0.45,-1.82,-2.45,0.43,-2.36,-0.22,1.81,0.29,-0.52,0.93,1.40,3.02,2.15,3.60,5.39,2.94,3.51,1.30,1.49,1.48,-0.94,2 -0.42,1.19,-0.27,1.47,2.93,3.74,2.64,3.37,1.91,2.57,1.27,-0.02,1.99,1.53,4.39,0.23,1.10,1.73,-0.66,-0.67,-2.36,0 --0.56,-0.57,-0.22,-1.78,0.14,-0.62,0.86,0.27,2.68,3.48,1.51,3.65,3.61,3.25,1.94,2.79,2.08,0.20,2.01,1.64,-0.17,2 --0.07,-0.56,0.84,2.88,0.65,3.97,3.27,3.84,2.57,1.01,2.81,2.85,1.10,2.39,1.44,3.66,0.91,0.26,1.71,0.17,-0.08,0 --1.76,-0.71,0.13,0.05,0.77,-0.25,-0.05,-0.24,1.15,0.86,2.95,3.83,3.27,4.90,5.88,3.66,3.85,3.12,3.07,1.57,1.21,2 --1.29,-1.40,-4.05,0.57,1.11,-1.14,0.36,0.52,0.21,0.92,1.48,2.46,5.54,6.04,6.18,3.63,3.69,2.78,0.76,2.18,-1.26,0 --0.21,0.02,-0.27,-1.64,-0.19,0.59,-2.20,-0.11,0.34,0.85,3.11,4.61,3.29,6.57,6.31,5.63,4.18,1.97,2.12,1.30,1.84,2 -1.10,1.45,-0.43,0.55,-0.13,-0.63,2.64,1.61,2.49,4.76,7.05,3.99,4.42,5.61,3.94,0.07,1.79,0.95,1.66,0.26,-0.17,2 --1.14,0.85,1.73,0.23,2.38,2.54,3.02,1.45,0.63,2.46,1.89,4.21,2.30,1.08,3.84,3.48,3.18,1.22,0.72,0.13,1.16,0 --0.88,1.63,-0.45,3.00,4.77,4.67,5.35,3.52,2.73,2.82,1.69,-0.27,-0.22,-0.09,0.95,0.96,-0.91,1.19,-0.04,0.98,-0.70,0 --0.58,1.02,1.72,2.20,1.23,2.65,4.07,3.30,0.89,-0.39,1.80,2.64,2.80,0.74,2.93,2.42,2.30,2.46,-0.77,1.08,1.08,0 -1.04,1.69,0.56,2.06,4.39,5.22,4.78,6.32,3.90,4.13,1.63,2.86,-0.07,-0.40,-0.26,0.25,0.77,-0.46,-1.64,-1.39,0.26,0 --1.08,1.30,1.85,4.28,4.60,3.34,6.16,6.05,3.62,3.01,1.51,0.77,1.30,-1.64,0.04,-0.89,-1.96,-0.81,-0.16,-0.08,2.48,1 -0.39,-1.35,-0.31,-1.39,1.79,1.25,0.08,-0.53,-0.95,0.90,1.42,2.55,4.62,4.24,5.33,3.97,2.16,2.08,1.00,0.49,0.20,0 --1.33,-0.54,0.93,1.96,3.66,4.19,4.36,5.53,2.81,2.57,4.70,1.09,0.52,0.23,0.53,0.16,-0.36,-0.20,-1.02,-0.11,-0.41,1 --0.19,0.17,-0.14,-2.01,0.42,0.14,0.76,1.53,2.98,2.26,3.03,3.73,2.05,3.24,4.93,3.92,3.17,0.07,-0.33,0.44,0.75,2 --1.59,1.01,2.07,2.58,4.33,4.95,4.86,3.31,3.55,2.30,2.00,1.41,0.34,-0.70,1.12,0.02,-1.80,-1.71,0.68,-0.24,0.32,1 --1.48,0.34,1.24,0.65,1.95,3.68,2.89,2.40,5.69,5.14,6.76,5.31,3.39,2.52,1.63,0.12,-0.05,-0.26,0.28,1.41,1.23,1 --0.48,1.25,1.14,0.50,1.86,1.69,2.50,4.17,1.49,2.03,2.24,1.97,3.24,3.14,4.41,-0.08,-0.06,2.10,1.52,-0.30,-0.24,0 --1.11,0.12,2.38,1.25,1.20,0.84,4.49,1.28,1.64,2.23,1.69,1.88,2.92,1.19,1.14,2.79,1.90,0.28,0.26,3.05,-0.07,0 -0.41,0.71,1.01,1.45,5.23,5.02,5.30,4.39,0.57,3.71,3.13,0.96,0.71,-0.23,-1.29,1.85,0.15,-0.56,0.86,-0.83,-0.52,1 --1.14,0.90,-0.21,3.19,2.84,2.02,5.50,2.43,4.24,2.15,2.03,2.23,2.20,1.77,0.82,-1.52,-1.75,1.25,1.77,-1.53,-0.28,1 -2.08,1.17,0.79,0.26,1.44,1.72,1.51,0.65,4.39,5.85,5.37,2.74,4.01,0.98,1.83,-0.70,-1.82,0.49,1.03,-1.01,0.31,1 --1.30,0.76,-0.74,-0.37,0.07,0.53,2.47,2.38,5.05,5.55,6.98,4.05,5.03,2.32,5.45,2.55,-0.66,-0.88,0.06,-0.22,0.50,2 -0.22,-0.10,-0.14,-0.32,-1.06,1.41,0.42,2.96,3.36,4.03,3.28,5.24,3.42,6.19,3.81,2.01,0.19,-0.18,-1.41,0.05,1.44,2 --2.01,0.27,0.70,0.06,-0.49,1.08,2.77,2.39,1.64,3.77,6.12,5.63,3.31,5.80,0.32,3.99,0.96,1.49,1.35,1.92,0.83,2 -0.58,0.22,1.62,2.08,0.05,1.54,1.83,1.86,1.66,-0.35,0.23,2.18,3.35,3.25,3.11,2.21,2.20,0.88,0.29,-0.64,-0.14,0 --1.41,0.16,0.49,-0.27,-1.45,-1.58,-0.53,2.60,0.00,1.94,2.74,2.25,4.29,3.57,5.19,5.68,3.74,2.71,0.04,0.66,-0.12,2 -0.14,-1.56,0.80,1.75,4.02,2.65,7.00,5.59,5.60,4.53,1.47,-1.45,0.09,0.33,1.14,1.56,-1.05,-0.52,-0.85,-1.45,0.43,1 -0.34,1.26,-0.89,-1.54,1.42,1.20,-0.97,0.91,-1.12,1.39,2.50,3.38,2.64,3.99,6.12,4.86,3.30,2.95,1.76,0.58,0.74,0 -0.77,1.09,0.05,-1.28,0.32,-0.88,-2.77,0.51,0.77,0.62,3.19,3.77,4.30,6.44,7.19,4.65,2.95,2.55,3.28,2.05,0.42,2 -1.36,1.54,2.60,4.71,4.93,4.49,6.52,4.73,4.10,4.69,3.32,1.99,0.37,-0.80,-2.02,-1.16,0.12,-1.11,0.15,1.57,-1.19,0 -0.52,0.68,-0.42,0.46,0.65,1.34,0.94,2.43,1.75,1.58,2.56,2.47,2.58,2.55,5.71,1.90,2.70,2.12,4.11,-0.16,1.56,0 -0.09,0.51,-1.80,-0.71,-0.01,1.03,-0.86,2.03,2.06,1.94,1.65,3.95,5.26,4.18,5.65,3.51,2.19,2.44,2.03,0.35,-0.51,2 -0.56,-0.66,1.19,-0.15,3.04,0.88,2.48,4.21,1.25,-0.55,1.94,3.20,1.67,2.87,4.03,1.99,1.53,0.12,1.34,-0.81,-0.59,0 --1.07,0.14,0.99,1.17,3.43,5.31,4.64,7.15,3.50,3.70,2.28,2.90,1.41,-0.84,-1.79,-0.84,-0.37,-0.97,0.74,-0.12,0.70,1 -0.10,2.14,2.46,-1.27,-2.37,-0.23,-0.41,3.24,1.91,4.37,5.49,5.82,3.63,3.04,3.49,1.44,0.11,1.63,1.63,0.82,-0.09,2 -0.01,-0.29,3.90,1.63,3.70,4.48,6.66,4.81,5.55,2.73,1.83,2.75,-1.31,-2.11,1.01,1.82,-1.33,-2.14,-0.85,0.27,-1.06,0 -1.64,1.93,0.84,3.27,5.91,4.65,6.44,6.29,1.77,3.34,2.20,-0.38,-2.20,0.20,-0.92,1.20,-1.38,-0.54,1.59,-1.26,-0.07,1 --0.73,0.29,0.32,3.84,0.84,3.33,5.01,5.65,3.69,2.50,3.62,2.25,-0.18,1.18,2.79,1.66,1.66,0.36,0.42,1.86,-0.20,0 --0.03,-0.68,1.87,1.81,1.12,2.42,1.44,1.18,0.64,1.01,3.12,2.50,2.08,2.91,2.86,2.54,2.51,1.20,2.70,-0.50,0.93,0 -0.02,-0.86,-0.31,-0.00,-1.24,-0.55,-0.49,-0.95,1.77,2.84,2.93,3.73,4.05,3.42,4.33,4.30,2.38,1.73,2.78,0.37,1.06,2 --2.36,-1.03,-1.06,0.58,-0.12,0.14,0.43,-0.70,2.57,1.75,4.02,3.02,3.73,4.00,3.71,2.57,3.38,3.27,1.09,0.12,1.40,2 --0.88,-0.65,1.41,2.56,2.90,3.37,4.77,5.52,3.27,4.78,4.13,1.36,1.43,-1.27,-0.67,-0.40,-0.84,-0.35,0.64,1.00,0.34,1 --0.24,-0.17,0.70,-0.09,-1.41,0.95,2.12,3.11,2.37,3.97,5.41,4.29,5.85,3.95,4.16,3.70,1.53,2.10,0.18,1.41,0.24,2 -1.19,0.99,1.94,1.00,4.11,5.27,4.54,2.25,3.49,2.25,1.50,0.40,0.28,-0.13,0.16,1.58,0.42,1.17,-0.39,-0.01,0.32,1 -0.03,1.44,0.08,2.17,-0.46,-0.62,2.01,-0.67,3.27,-0.17,2.05,2.93,2.11,4.64,2.94,3.03,2.93,1.97,0.36,-0.42,-0.98,0 -1.30,2.37,1.71,2.99,1.85,2.22,5.40,4.48,4.14,4.87,2.44,1.53,0.07,1.94,0.48,2.10,0.74,1.33,0.01,-1.19,-1.90,1 --0.98,0.63,3.07,2.94,2.69,2.75,3.23,3.15,3.08,0.20,1.15,3.35,2.12,1.91,3.13,1.66,1.27,0.85,1.95,-0.36,-0.30,0 -0.64,1.22,1.29,-1.58,1.51,-0.22,2.67,4.65,3.66,3.94,6.06,4.55,3.88,4.22,2.83,1.69,0.77,-1.39,1.41,0.71,-0.25,1 -0.78,1.16,1.82,2.34,2.45,3.98,4.52,4.65,3.94,2.29,3.10,2.77,0.54,1.72,0.17,-0.86,0.23,2.00,2.09,1.05,-0.71,1 --1.20,-0.85,0.54,0.96,-0.42,0.91,2.16,2.52,3.16,5.42,3.85,5.01,4.74,3.47,2.38,1.07,2.14,0.43,0.70,0.10,-0.31,2 -0.50,0.93,1.93,0.63,2.13,1.65,4.22,4.03,4.19,1.33,0.91,4.12,0.57,-0.18,2.91,2.17,0.27,1.79,0.32,0.83,1.06,0 --1.02,-1.29,-1.24,-1.96,0.60,0.18,1.28,4.06,3.24,3.23,5.02,7.40,3.94,4.27,2.44,1.75,-0.66,-0.38,0.14,0.24,-0.20,2 --0.88,-0.40,0.83,2.62,0.99,2.94,5.41,2.60,3.57,1.07,2.86,1.75,0.73,2.23,3.11,4.37,0.19,1.62,-0.56,-0.11,-0.50,0 --0.54,0.51,1.51,0.72,3.07,3.74,4.04,1.09,5.29,3.87,4.62,2.39,1.08,1.52,0.78,0.91,0.69,0.42,0.12,0.93,1.34,1 --0.17,-0.02,-2.10,2.57,0.25,1.89,2.68,3.11,4.33,3.66,5.19,3.28,1.30,2.17,2.08,0.20,-1.88,-0.35,-0.77,1.21,-1.04,1 --0.41,-0.85,1.44,1.67,1.86,1.51,5.19,3.28,4.10,3.32,3.54,4.96,1.75,0.56,0.48,-0.72,-0.15,-3.03,1.74,-1.08,0.74,1 -3.94,1.10,-0.34,1.33,1.92,3.09,2.20,3.98,3.84,5.08,6.92,3.82,4.05,3.01,0.90,0.44,0.30,0.56,-0.74,1.10,-0.02,1 --0.48,-1.94,0.63,1.35,0.01,-1.43,0.74,-0.77,1.65,1.55,2.05,2.43,3.90,6.71,5.30,4.12,4.43,2.75,1.06,0.34,-0.61,0 -0.70,-0.65,0.11,0.65,0.19,-0.83,1.08,0.14,-1.04,0.06,2.08,2.92,4.00,6.48,5.50,4.80,4.54,2.88,0.42,1.09,0.48,2 --0.58,2.15,1.08,1.28,2.92,2.63,5.82,3.78,3.51,3.54,3.80,3.55,2.02,0.62,1.59,0.09,0.57,-0.31,1.11,-0.53,-1.48,1 -1.48,-0.77,0.93,-0.41,1.43,0.75,1.34,1.40,0.09,1.87,2.98,2.20,3.25,3.45,4.87,3.25,2.76,3.57,0.79,0.84,0.36,0 --0.73,1.59,0.28,1.63,3.14,1.86,3.65,3.16,1.24,2.81,1.00,3.48,2.34,2.04,4.79,2.64,2.60,2.00,-0.29,1.46,1.42,0 --0.76,0.25,1.77,-2.19,2.01,-1.01,1.08,1.11,0.97,2.60,4.54,3.00,4.31,3.36,4.03,2.92,1.22,1.47,0.38,3.04,0.87,2 -2.42,-0.87,-0.91,1.37,-0.92,1.31,1.96,0.79,3.56,4.07,5.10,3.68,3.22,5.14,3.29,1.93,0.37,1.40,0.79,0.05,0.95,2 --1.11,1.59,1.12,0.39,0.75,2.08,3.89,3.73,0.78,3.14,0.11,0.66,1.06,3.42,2.25,2.57,1.76,1.98,-0.51,1.26,-0.75,0 --1.66,0.77,2.03,0.18,2.01,0.48,0.80,0.59,-0.21,0.59,3.23,2.59,3.36,2.05,3.73,5.56,3.90,2.80,0.64,1.34,-0.34,0 --0.82,1.75,1.02,0.48,0.95,1.57,2.41,0.07,-0.76,1.78,1.78,3.64,4.44,2.88,5.54,6.13,4.96,1.27,3.06,1.50,-0.59,0 -2.60,-1.64,1.68,0.80,3.11,4.50,3.89,4.56,0.28,6.00,2.51,4.16,0.27,1.95,1.15,0.57,0.61,-0.94,-0.61,-1.37,0.27,1 -0.92,0.24,1.74,0.53,1.12,2.15,3.51,5.17,3.34,4.61,2.43,3.38,0.22,1.28,0.10,-0.18,-1.49,-0.05,0.78,1.11,-1.04,1 -0.77,-0.16,0.80,1.23,-0.58,1.14,1.63,1.51,1.27,1.23,1.71,3.75,2.26,4.37,4.56,4.45,2.83,2.58,2.10,0.88,-1.74,2 -0.96,-0.12,-1.59,2.23,1.82,-0.71,1.52,0.78,2.25,2.78,3.39,3.77,2.72,4.48,3.65,2.56,2.04,2.51,1.99,0.03,-2.68,2 --1.51,0.19,0.75,-1.50,-0.74,-0.35,1.45,-0.44,0.24,0.40,2.48,3.57,4.09,4.59,5.58,3.70,3.03,1.85,1.78,3.74,0.20,2 --0.63,0.32,2.21,1.86,2.79,1.89,1.72,2.49,2.63,2.86,4.68,2.80,1.02,1.23,0.05,2.92,0.43,-1.68,-0.46,-0.51,0.15,1 -0.43,-0.10,-1.18,0.06,-0.96,-0.59,-1.02,1.06,0.82,0.15,2.61,0.83,3.18,5.95,6.44,2.70,3.94,2.42,1.41,1.91,-0.98,2 -0.54,-0.63,2.71,1.63,0.90,1.07,1.66,3.20,3.86,4.86,3.65,4.23,1.51,2.67,0.59,-0.20,0.88,0.34,1.64,0.89,-1.37,1 -1.18,0.18,1.30,3.11,4.68,2.14,5.61,2.71,2.70,2.08,3.39,1.21,0.96,1.97,0.52,2.27,0.67,-0.99,0.30,-0.25,0.13,0 --0.36,-0.84,-1.47,-0.21,-0.86,0.64,0.40,2.54,3.74,4.36,5.15,4.17,4.22,3.67,3.60,0.67,2.51,0.15,-1.61,1.22,0.12,2 -1.32,0.17,-0.17,-1.98,-0.87,-0.05,1.69,-0.02,0.51,1.25,2.33,1.69,3.40,3.19,6.26,4.34,5.48,1.91,0.35,2.23,-0.06,0 --0.27,1.28,0.92,0.18,-1.40,-0.30,0.86,-0.28,1.10,-0.04,0.98,4.27,3.55,6.38,3.05,4.59,4.38,1.59,-0.58,-1.28,0.07,0 -0.39,1.11,0.74,-1.41,-0.64,-0.29,-0.47,2.16,-0.43,0.36,0.92,3.11,3.96,5.11,3.23,4.14,1.81,2.25,2.16,-0.85,-1.29,2 -0.07,2.02,0.15,1.43,-0.41,0.70,2.40,0.55,0.48,2.77,1.64,2.32,4.32,3.79,5.64,5.26,3.45,3.97,1.36,0.41,0.91,0 -0.55,1.21,0.06,0.10,2.71,0.42,3.64,4.16,0.56,3.01,1.90,1.36,1.65,4.09,3.83,2.81,2.04,2.09,-1.26,2.70,-1.12,0 --1.05,-0.52,0.03,2.85,-0.26,-1.37,0.73,1.02,1.63,-0.61,1.47,3.93,2.91,5.24,4.72,5.18,6.06,3.41,3.83,1.52,0.50,2 --0.47,2.01,0.68,2.55,4.41,3.25,5.07,4.84,6.27,3.78,3.65,3.54,0.99,0.96,-1.49,0.49,-0.09,-0.40,1.67,-0.97,0.89,1 --1.29,-0.05,0.97,2.61,2.93,2.12,0.83,3.17,1.45,1.45,1.45,1.58,2.11,3.73,2.16,2.23,1.68,0.03,1.14,-0.01,-1.23,0 --1.72,-1.85,0.54,-0.78,-2.60,0.08,1.28,1.07,1.44,1.84,1.92,4.76,2.84,4.50,5.22,4.17,3.57,3.75,1.21,-0.46,0.35,2 -0.76,-0.43,-0.25,-0.12,-0.09,1.90,1.80,2.52,3.63,3.90,4.97,4.02,3.84,2.44,2.09,0.79,1.38,-0.52,1.63,-0.20,1.17,1 --0.16,0.25,0.39,0.39,0.46,0.44,1.36,0.57,1.94,2.67,5.38,4.52,2.41,5.39,3.49,2.55,0.70,0.68,0.63,-0.01,-0.32,2 -1.87,-0.24,0.01,0.15,-0.21,0.66,0.48,3.44,4.38,6.04,5.57,3.59,4.83,2.11,1.34,1.96,1.55,0.83,1.55,0.37,0.21,2 -1.31,0.22,-0.12,-1.36,-0.51,0.86,1.15,1.47,-1.51,1.63,1.14,4.62,3.82,4.69,8.17,4.84,4.96,2.82,1.87,1.77,-1.04,0 --0.73,1.01,2.11,2.41,2.89,4.43,4.87,7.09,4.14,2.91,3.33,2.13,1.72,1.82,1.57,-0.43,-0.18,-2.19,0.27,-0.30,-1.58,1 --0.51,0.37,-0.34,-0.30,-1.47,-1.51,0.19,1.76,-0.68,2.29,2.33,4.11,2.88,2.46,4.47,2.58,3.54,2.02,1.60,-0.62,-0.17,2 -0.50,0.07,1.21,-0.24,0.29,-0.47,0.58,-1.05,0.40,1.28,1.92,4.37,4.42,4.19,5.07,3.93,4.84,1.86,1.35,1.27,1.19,2 --0.05,-0.02,-1.18,-0.76,-1.09,0.12,-0.82,1.20,0.63,0.77,3.03,1.75,4.39,5.02,5.47,5.09,3.34,2.69,1.60,0.39,-2.69,0 -0.86,0.58,1.49,1.57,3.84,4.33,3.80,3.74,3.97,5.54,4.55,3.36,4.04,2.49,0.25,1.67,-1.76,-0.88,-0.42,1.49,-0.88,1 --0.07,-0.17,-2.37,3.94,2.34,2.21,4.09,4.07,2.64,3.00,3.72,1.74,1.63,1.69,2.65,-0.88,0.06,1.33,0.88,-1.01,2.12,1 -0.70,-0.08,0.86,1.58,2.43,2.61,3.45,3.24,2.88,4.08,0.38,0.91,2.96,0.88,3.20,1.89,2.95,0.56,1.03,0.46,-1.36,0 --2.95,-0.08,-0.54,0.63,0.83,0.81,2.03,2.63,2.41,1.86,1.71,1.71,2.64,3.94,2.98,2.83,1.67,-0.02,2.18,2.36,0.81,0 --0.27,1.45,1.34,1.48,3.03,4.05,4.23,3.63,2.98,4.70,3.26,2.43,1.82,1.26,1.20,0.23,-0.24,0.75,-0.75,0.18,-1.13,1 --0.97,-0.17,0.90,-0.85,-0.13,0.44,0.79,-0.27,1.17,0.77,3.18,3.46,2.86,3.38,5.49,6.11,3.38,1.58,1.14,0.94,-0.71,2 --0.59,1.16,2.92,2.76,5.39,6.43,4.82,3.30,3.09,1.32,3.02,1.97,-0.35,-0.27,-0.58,-0.98,-0.43,-0.01,0.48,-1.66,-0.57,0 -0.46,0.48,3.25,1.82,5.57,3.18,3.48,4.12,4.36,1.64,4.14,1.39,1.09,1.77,0.67,-0.70,-1.04,-0.53,-0.15,-1.97,1.03,1 -1.29,0.25,1.02,-0.91,2.87,3.09,3.99,3.20,3.35,0.34,2.61,2.47,0.34,0.20,2.06,2.49,1.04,0.08,0.94,0.08,0.11,0 -0.85,0.95,1.13,0.46,2.86,4.18,5.39,4.48,2.03,3.15,1.53,2.63,0.21,-0.26,1.76,2.35,1.44,-1.13,-0.20,-1.06,0.49,0 -0.72,0.74,0.61,-0.17,-0.17,0.56,3.60,3.94,4.89,2.73,6.81,2.23,1.04,3.07,0.09,-0.75,1.30,1.72,-0.41,-0.04,2.03,1 -0.05,1.22,1.03,3.34,2.51,3.02,5.65,5.04,4.23,2.90,2.95,2.36,0.05,1.61,0.87,0.61,1.07,-0.76,-0.30,-0.87,-0.02,1 --1.26,1.90,-0.53,0.49,-0.57,1.14,-0.36,0.69,0.19,1.11,3.21,2.14,3.69,5.83,4.63,3.71,3.76,2.35,0.72,0.91,1.06,0 --1.23,0.50,0.64,1.10,3.85,4.00,6.53,4.91,3.56,4.37,2.74,1.45,-0.05,-1.51,0.75,0.37,-0.18,-0.73,-0.58,0.26,-0.39,1 --0.62,1.69,2.42,1.76,1.77,-1.12,-1.06,1.55,1.14,1.00,0.88,3.25,2.28,5.14,5.34,5.04,4.23,2.77,2.80,0.86,-1.61,2 --0.20,0.34,3.86,-0.05,4.67,1.62,4.08,4.44,3.92,5.55,2.47,2.49,2.81,-0.08,1.62,2.11,0.94,0.82,-0.35,0.65,1.00,1 --1.45,-0.82,0.35,-0.19,0.84,1.78,1.07,0.82,0.41,0.68,0.90,2.76,2.74,3.37,5.17,3.53,3.78,2.08,3.99,-1.14,0.39,0 -2.25,1.17,0.09,1.88,3.17,3.31,5.30,3.91,4.10,2.33,2.14,2.66,-0.26,0.40,-0.67,-0.88,-0.59,-0.86,-1.07,0.14,1.13,0 -0.10,-0.28,-1.93,0.39,-1.10,0.54,0.93,0.59,0.07,3.54,2.76,4.47,2.15,6.65,5.93,4.24,2.67,2.90,2.26,0.59,-0.02,2 --0.41,0.50,1.07,2.01,3.76,5.30,4.85,5.20,4.31,2.87,2.92,2.28,1.78,0.97,-0.09,-0.07,-0.17,-0.85,1.36,0.00,0.22,1 -0.13,1.05,-1.57,-1.20,0.60,-0.79,0.63,0.46,2.03,2.83,2.01,3.84,3.14,3.55,4.50,4.31,1.54,1.59,4.07,0.09,0.09,2 -0.52,0.12,-1.23,-1.03,-0.85,-0.37,-0.31,-1.20,0.34,1.47,1.87,2.18,5.16,4.59,5.80,4.90,3.94,1.91,0.78,1.56,0.13,2 --0.01,0.63,1.77,0.49,3.73,0.69,3.45,3.48,2.69,-0.52,0.49,1.55,1.98,1.78,4.14,4.03,1.74,2.39,1.92,-1.44,0.28,0 -1.17,1.29,1.52,0.16,-0.88,2.08,0.61,0.52,1.42,1.17,2.06,2.53,5.77,4.93,5.42,3.85,3.62,3.92,1.37,-0.60,0.08,0 --0.58,0.39,0.83,2.17,1.51,1.98,3.67,1.22,1.09,2.17,3.13,1.12,-0.26,3.74,1.60,2.12,2.89,2.51,1.60,0.52,1.34,0 --0.05,-0.35,0.07,1.72,-0.57,0.76,0.08,-0.64,1.16,3.40,3.12,5.01,4.02,3.75,4.04,0.79,1.74,1.31,0.49,0.44,1.10,2 -0.37,0.47,2.49,3.15,4.87,4.47,5.71,4.38,3.57,2.90,2.89,0.08,-0.18,-0.05,1.00,0.41,-0.64,-0.76,-1.34,1.03,1.87,1 --0.85,0.91,-0.67,-0.79,-0.95,1.35,0.38,0.26,1.72,3.60,3.75,2.91,4.38,6.22,7.09,5.52,2.59,2.70,3.15,2.46,-0.70,2 -0.58,-0.49,-0.80,0.98,2.54,-0.03,0.51,-1.32,-1.87,1.11,2.92,2.43,4.07,2.80,4.57,3.29,1.82,3.29,3.07,0.37,0.24,2 --1.00,-0.14,0.72,0.18,0.92,1.89,1.02,0.37,0.65,1.22,3.42,2.24,4.26,2.17,4.52,3.67,1.26,1.96,1.33,0.94,0.22,2 -0.66,-2.32,0.50,0.17,-0.97,-0.05,-0.52,-0.22,-0.27,1.57,2.29,3.84,4.12,4.68,5.11,6.36,3.28,1.28,3.89,0.69,0.68,2 -0.00,-0.83,0.71,0.72,0.51,1.38,1.22,2.09,3.31,4.49,5.03,5.80,4.00,2.34,0.74,1.59,1.64,-0.59,-0.60,0.92,0.53,1 --0.89,-0.87,-0.01,1.04,1.02,-0.22,3.14,1.12,0.33,1.95,2.02,1.40,1.83,3.17,4.96,3.99,4.18,3.54,1.62,0.90,1.02,0 -1.22,2.39,0.71,3.77,2.90,3.23,4.58,4.82,2.58,2.67,1.68,2.08,0.39,0.97,0.96,1.26,-2.24,-0.38,1.37,-0.32,-1.04,1 --0.32,1.06,0.78,0.69,0.88,-0.75,0.33,-1.51,0.27,2.01,1.91,3.49,3.28,4.43,4.46,5.01,1.83,2.98,2.21,0.39,0.68,2 --1.90,0.57,0.12,-1.00,1.33,-0.54,-0.25,0.31,0.90,1.34,1.11,2.72,3.58,3.33,7.06,6.81,2.97,4.27,2.52,1.54,-0.72,2 -0.84,0.87,1.66,2.13,1.28,3.61,5.42,2.88,4.38,3.78,3.12,2.36,0.85,2.18,-1.24,-1.61,1.64,1.01,-0.41,-0.28,0.44,1 -0.20,0.23,-0.20,0.20,-0.96,0.56,3.16,3.65,4.22,4.86,7.57,4.63,1.61,3.31,3.36,0.05,1.82,-1.24,-1.32,0.24,-0.64,1 -0.39,-0.92,-1.01,0.27,-0.69,2.08,2.23,0.85,4.65,4.83,5.82,5.40,3.31,2.15,3.54,-0.22,1.05,-0.08,-1.93,0.76,0.69,2 -0.95,1.90,3.91,1.59,2.09,2.37,4.42,3.93,2.25,2.14,3.89,2.00,1.40,1.82,2.27,3.54,1.76,0.85,1.08,-0.35,0.28,0 --0.58,0.31,0.38,0.58,1.97,2.87,0.44,0.51,1.52,3.83,5.23,2.74,5.65,4.08,3.39,1.99,0.81,1.80,0.96,1.11,1.36,2 --1.16,-2.96,0.22,2.18,-1.63,-0.11,0.26,0.32,-0.76,1.89,1.95,1.15,3.56,3.98,6.40,4.51,3.71,2.04,3.36,2.74,-0.18,2 -0.96,-1.02,-0.89,2.49,0.15,0.46,2.39,1.68,1.14,1.34,2.32,1.38,1.61,3.09,4.22,4.56,4.90,1.23,1.62,-0.44,-0.06,0 --0.82,-1.19,0.49,-0.40,1.33,-0.57,3.28,1.78,5.30,4.47,5.68,4.24,4.15,3.54,-0.09,1.24,2.68,0.61,-0.22,0.38,0.34,2 --2.30,0.62,2.50,1.63,2.40,2.97,3.28,3.51,4.01,1.18,0.91,3.42,-1.16,2.20,1.55,-0.30,1.56,1.01,-0.17,-1.06,-1.10,0 --2.95,1.03,0.78,2.65,3.26,3.80,4.35,5.38,3.50,5.61,5.22,2.12,1.02,1.34,0.92,1.13,0.33,-1.03,0.76,-0.79,-0.07,1 -1.95,-0.54,0.23,0.53,1.61,0.30,-0.12,-0.74,0.17,-0.36,3.17,2.41,3.96,4.62,5.69,3.70,4.49,-0.07,0.24,0.87,0.97,2 --1.02,1.23,-0.02,1.56,1.80,2.14,4.06,5.42,5.42,5.44,4.77,3.99,1.92,3.18,0.23,1.46,0.20,-0.81,0.05,0.47,-1.43,1 --0.33,-1.36,0.89,0.97,3.85,2.07,3.83,3.59,0.19,1.53,2.03,1.13,1.21,1.73,2.39,2.41,2.57,1.35,-0.50,-0.77,0.47,0 --0.27,-0.16,1.66,2.77,1.93,3.53,6.04,5.48,3.10,2.77,2.30,1.77,1.94,-0.02,-0.18,0.40,1.19,0.21,1.00,1.45,0.20,1 --0.21,-0.52,0.17,1.06,-0.89,0.01,-0.32,2.30,2.72,5.66,3.86,5.05,6.80,2.59,2.88,1.81,-0.42,2.36,0.12,-0.11,0.56,2 -0.36,-1.43,1.68,3.31,2.08,2.16,5.77,3.35,4.30,3.05,3.66,0.54,2.36,0.73,-0.17,-1.77,0.78,-1.51,-0.49,0.92,-0.48,1 -0.77,-1.32,1.88,1.65,0.27,1.65,1.76,1.72,5.35,4.19,4.66,4.86,6.15,3.15,1.29,-0.10,0.93,-1.75,1.36,0.04,1.73,2 --0.40,3.00,1.00,0.80,1.88,2.16,2.01,2.90,5.02,3.62,3.54,4.84,3.22,1.13,-1.21,0.95,-0.98,-0.10,0.15,-0.03,-1.35,1 --0.63,-0.67,2.58,1.38,1.46,0.71,0.96,2.08,3.23,2.18,1.02,3.23,3.50,1.25,2.72,4.08,3.43,1.57,2.87,0.84,2.12,0 --1.53,1.27,0.01,1.85,0.60,2.16,2.13,3.29,4.57,5.11,7.39,3.71,2.74,2.57,1.25,-0.45,-0.25,1.06,-0.67,0.25,-0.07,1 --0.12,-1.31,0.57,0.96,-0.48,0.50,0.69,0.84,0.20,1.67,5.25,2.34,3.86,5.25,7.41,4.46,3.27,3.29,1.97,0.38,-0.29,2 --1.24,0.54,-0.52,-0.11,-0.17,-0.09,3.08,2.37,4.88,4.69,6.89,5.56,2.74,1.96,2.92,1.49,0.77,1.03,0.32,-0.86,-0.07,1 -0.36,0.39,1.19,0.03,1.95,2.12,2.65,0.88,1.03,0.70,2.83,2.27,2.36,4.55,4.30,3.07,2.60,1.06,-0.83,0.93,2.34,0 -0.71,-0.66,0.72,-0.13,1.20,1.87,2.40,2.18,5.24,4.99,6.26,3.61,4.01,1.48,3.74,0.96,-2.16,-0.17,0.07,-0.68,-0.18,1 --0.53,0.12,2.56,1.95,2.40,2.82,4.84,3.31,3.26,1.97,2.93,0.98,1.38,2.62,0.12,0.15,1.55,0.86,2.34,-1.21,1.65,0 --0.67,0.37,0.76,2.19,2.33,4.85,4.61,6.18,3.13,5.67,3.27,0.45,1.27,1.54,1.82,1.00,-1.42,-0.07,-1.27,1.80,0.59,1 -1.15,1.64,1.05,0.92,2.69,5.00,3.69,1.82,3.67,3.41,3.72,2.82,1.78,0.90,0.14,0.16,-0.32,-0.17,0.91,2.07,-0.87,1 -1.08,2.06,-1.55,-0.80,0.18,-0.28,0.29,-0.28,1.44,4.40,3.18,4.48,1.88,4.04,1.94,3.14,2.39,0.86,-0.03,2.92,0.20,2 -1.78,1.93,-0.56,0.14,-0.27,-0.72,0.26,-0.56,2.31,1.05,3.35,3.01,5.96,2.28,4.66,5.31,4.00,-0.20,1.03,-0.75,1.18,2 -0.32,0.29,1.06,-0.96,1.14,2.18,1.89,3.36,4.55,2.28,5.34,4.34,3.18,2.50,2.40,-0.17,0.81,-1.77,-0.11,0.20,0.45,1 --0.34,1.37,0.49,-0.61,0.02,1.23,1.42,2.19,3.82,1.55,4.54,3.46,2.90,5.55,3.51,2.69,3.33,1.84,0.64,1.03,-0.78,2 --0.31,-0.10,-1.18,1.56,2.20,0.52,0.72,2.66,1.44,3.41,4.94,3.50,4.85,4.02,4.03,3.60,3.88,1.03,1.06,2.90,0.35,2 --0.09,1.57,1.46,3.24,0.43,0.80,1.41,1.04,1.15,3.11,-0.27,2.07,3.40,4.62,4.72,3.73,1.17,2.61,2.14,0.66,-0.29,0 -0.76,-0.32,0.30,-0.23,0.48,0.91,4.56,2.50,2.08,4.07,3.12,4.48,4.14,2.57,0.72,1.78,0.62,-1.04,0.90,-2.03,-0.37,1 --0.33,-0.52,0.19,2.20,2.16,3.52,3.61,3.98,3.02,2.41,2.95,1.40,2.48,1.97,2.53,3.05,1.83,2.05,2.54,1.53,-1.81,0 -1.05,1.31,0.37,-2.27,0.05,2.16,3.22,2.92,1.24,4.04,6.15,5.89,3.46,3.12,2.23,1.76,0.23,0.18,1.40,-0.93,-0.47,2 --0.27,1.72,2.26,0.69,0.53,-0.73,-1.23,1.29,2.09,3.28,3.57,5.44,4.19,4.46,3.04,3.17,2.72,2.35,1.43,0.45,1.47,2 -1.28,0.98,-0.79,0.96,0.78,2.04,2.77,5.42,2.28,3.09,1.06,0.69,2.77,1.78,2.79,2.84,3.36,3.17,0.55,1.20,-2.11,0 --0.33,0.23,3.15,2.59,5.00,5.74,4.77,5.46,3.15,4.58,1.02,1.38,0.45,-0.19,1.43,0.14,1.57,1.56,-0.12,1.86,-0.14,0 --0.24,0.17,1.28,4.37,3.72,2.10,2.53,4.43,5.32,1.68,2.98,2.16,-0.70,2.29,-0.55,0.09,-0.33,-1.12,0.33,-0.30,-0.46,1 --0.93,1.11,3.14,3.46,3.86,4.34,6.06,3.79,3.98,3.54,-0.15,3.23,0.68,1.57,1.35,-0.24,0.30,-0.95,-0.81,-0.91,-2.77,0 -1.71,0.67,2.47,2.64,2.48,4.83,7.36,6.32,4.46,2.23,3.56,3.91,1.07,1.04,1.35,-0.17,0.37,-0.49,1.53,0.09,1.04,1 --0.50,1.22,1.06,3.63,3.42,5.47,5.71,6.34,3.55,3.91,2.36,1.11,-0.06,-0.74,0.62,-1.34,-0.18,-0.66,-0.25,0.50,0.34,0 -0.06,0.66,0.86,2.15,3.72,4.05,4.36,4.07,4.89,3.94,-0.34,1.69,0.68,-0.23,-1.91,-0.68,-1.79,-1.64,-1.46,0.87,-0.38,1 --0.53,-1.64,-0.44,-0.82,1.23,1.41,0.43,0.21,0.29,2.54,1.33,2.28,2.59,3.23,8.40,5.22,4.89,2.14,0.83,2.03,1.24,0 -2.22,1.59,-0.28,1.36,-0.09,0.86,1.19,1.20,0.05,-0.59,3.51,2.98,3.63,4.19,5.27,3.59,4.00,2.82,1.57,1.13,-1.56,0 --0.43,0.89,0.59,1.36,0.07,2.64,-0.22,0.85,4.02,3.36,4.13,4.49,4.39,2.94,3.41,1.18,2.09,0.63,1.75,1.83,-2.39,2 --0.09,1.24,0.08,1.14,1.62,3.72,3.41,3.65,3.02,3.96,3.08,2.25,0.38,1.29,0.08,-0.48,0.02,1.77,-1.95,-0.60,0.28,1 --1.78,-0.42,1.68,-0.59,-0.67,-0.15,0.01,0.00,0.95,1.92,1.72,3.09,5.31,4.99,4.89,4.20,4.63,1.73,1.25,2.00,-0.34,0 --0.59,1.20,-0.24,0.77,0.23,1.58,0.07,-0.14,2.56,1.57,2.87,3.14,2.26,4.42,4.84,3.56,3.44,1.78,1.25,2.43,-0.40,2 --0.30,0.22,1.58,0.40,-0.07,1.47,2.99,4.04,1.96,5.39,5.67,3.53,3.94,1.80,1.96,0.95,-0.89,-1.39,0.11,-1.00,3.10,1 -0.18,-1.19,0.62,1.87,4.05,1.83,3.35,3.64,2.01,3.13,0.48,2.71,1.81,3.08,2.13,3.79,0.89,1.16,0.58,0.97,0.15,0 -0.36,0.37,0.40,-0.02,3.17,3.54,3.59,3.57,3.57,3.81,3.46,1.58,2.59,1.67,-0.70,0.14,-1.59,0.21,-1.36,0.50,0.81,1 --0.17,-0.99,0.72,4.11,2.48,2.75,4.53,4.38,5.21,5.23,0.88,4.44,-0.16,0.76,1.68,-1.61,1.35,-0.04,1.19,-1.25,-0.26,1 --0.97,0.53,0.19,1.70,0.49,0.93,3.39,2.53,4.22,5.41,7.33,5.69,2.24,1.33,0.67,0.85,-1.36,-0.64,-0.63,-0.26,-1.37,1 --0.31,2.35,1.51,0.29,1.16,-1.03,-0.30,0.40,1.83,2.32,2.45,2.47,3.80,3.94,5.03,5.51,3.97,2.74,0.91,1.68,-0.53,2 --0.28,1.07,0.41,0.10,0.20,1.36,1.94,4.02,3.46,6.39,7.11,5.02,3.47,3.32,1.62,0.37,-0.24,1.87,-1.47,1.03,0.31,1 -1.94,-0.37,1.13,2.37,3.63,5.42,5.39,5.16,4.12,2.20,1.41,2.64,0.91,1.11,-0.37,0.06,-0.16,-0.08,0.95,0.70,0.02,0 -1.68,0.45,0.53,2.78,-0.08,2.09,0.95,1.16,1.78,-0.49,1.28,2.71,2.42,2.43,2.97,1.43,3.34,1.89,0.82,0.67,0.67,0 -0.99,-0.65,0.53,-0.96,0.98,0.36,-0.01,1.61,0.96,2.95,2.23,3.10,4.15,4.26,4.49,4.23,3.14,1.75,1.61,0.40,-0.22,2 -0.17,0.55,0.89,0.22,0.68,1.14,2.57,3.92,3.35,4.94,6.57,3.65,4.71,1.67,1.28,2.16,-1.33,-0.86,1.11,-0.11,0.64,1 -0.08,0.05,1.77,1.39,-0.32,4.51,2.87,1.95,1.25,3.74,2.72,3.58,2.53,3.34,2.30,4.76,2.39,0.71,0.57,-0.34,1.13,0 -0.58,-0.25,-0.26,0.41,-0.33,0.90,2.33,3.39,5.01,2.95,7.60,5.91,4.33,2.37,2.45,-0.26,1.73,-0.14,0.83,0.23,0.17,2 -0.03,1.85,1.07,0.33,0.90,2.28,2.22,1.24,4.30,3.17,1.19,0.45,3.04,3.69,2.09,3.07,1.59,2.95,0.88,0.34,0.36,0 -0.73,0.84,1.06,-0.11,-0.33,-0.21,0.83,2.46,2.16,4.48,3.75,5.51,4.14,2.64,1.45,1.58,0.90,2.68,-1.70,-0.29,0.29,2 --0.67,2.07,0.27,-0.36,1.20,-0.28,1.34,-1.46,0.91,1.12,1.38,3.22,3.33,4.74,6.46,4.93,1.31,2.67,2.22,-0.50,0.47,0 -1.77,0.21,-1.04,0.13,-0.19,1.13,0.16,1.83,2.84,1.93,4.26,1.75,4.38,6.40,5.65,2.35,2.02,2.12,1.59,0.77,-0.88,2 --1.38,0.87,-0.73,0.57,-0.12,1.52,4.12,2.52,4.04,5.74,6.60,3.57,2.94,2.09,0.25,0.20,0.48,-1.15,-1.03,0.77,-0.91,1 -0.05,-1.23,0.14,0.91,-0.58,3.08,2.35,0.51,0.84,2.98,2.18,2.28,2.05,1.86,4.10,3.39,2.61,2.29,0.96,0.19,0.66,0 --0.06,0.61,0.84,0.30,2.22,2.58,2.19,3.14,0.54,3.05,1.38,3.20,2.12,2.64,4.52,3.59,2.71,2.04,1.11,0.52,0.34,0 -1.23,-0.55,0.71,3.86,4.64,4.05,6.19,4.40,4.77,2.66,2.91,1.23,-0.41,-0.86,-1.19,-0.95,-0.51,-1.10,0.24,-0.78,-0.36,1 --2.39,0.37,0.96,4.29,3.89,2.47,2.07,4.20,4.29,2.79,3.26,1.17,0.97,-0.65,-0.08,-0.44,0.69,-0.29,0.83,-0.05,-2.18,0 -0.52,2.88,3.25,2.72,2.43,0.97,1.99,2.23,3.11,1.75,2.59,1.88,3.28,2.93,4.16,2.08,2.06,1.17,0.82,0.05,-0.31,0 --0.40,1.40,1.26,3.36,4.01,5.46,4.96,5.33,5.62,3.13,1.82,1.52,-0.60,0.02,-0.22,1.74,1.26,0.71,-0.26,-0.67,1.20,1 --0.89,-0.21,1.19,-1.12,0.54,-0.01,1.08,2.91,2.55,5.37,4.41,3.29,3.07,3.25,3.82,1.40,-0.40,0.51,-0.51,0.54,0.81,2 -0.45,-0.49,0.64,-1.29,-0.06,-0.29,0.24,0.87,0.60,0.41,3.28,3.27,3.65,5.77,5.38,3.33,4.41,2.37,-0.06,0.45,-1.62,2 -0.56,1.23,0.77,0.90,1.55,2.44,3.40,5.51,4.52,4.94,5.36,3.70,3.47,3.44,-0.35,0.36,0.35,-0.52,0.60,0.32,1.32,1 --0.39,-0.89,0.06,0.43,0.64,1.28,1.35,0.72,0.54,1.93,1.58,3.98,3.74,3.34,5.30,4.01,2.55,2.54,-0.32,3.00,-1.24,2 --1.43,1.41,1.33,2.76,2.68,4.65,5.89,6.57,3.90,2.85,3.13,2.13,-0.28,1.84,1.11,-1.99,1.03,-0.68,-0.66,-0.42,-2.07,1 -1.25,-0.28,0.49,-0.33,1.08,2.05,1.92,1.42,4.10,7.16,5.09,4.75,2.61,0.24,3.07,2.26,1.09,-0.22,1.03,0.79,-0.06,1 -1.20,-0.48,0.80,1.72,0.17,0.87,0.76,2.72,3.55,4.12,5.44,4.42,3.41,1.86,1.62,-0.55,-1.15,-1.21,0.54,1.57,-2.09,2 --0.06,-0.16,-0.72,0.08,-0.04,2.06,0.87,-1.01,0.76,1.76,2.71,4.24,4.91,4.74,4.93,3.81,4.34,3.22,2.22,-0.85,0.55,2 -1.37,0.97,1.09,2.12,2.60,3.21,5.85,4.69,4.42,3.86,4.36,0.57,2.62,1.54,1.71,-0.28,0.11,-0.79,2.40,0.06,-2.04,1 --1.26,-2.86,3.07,2.76,2.83,5.46,2.95,4.77,4.51,4.25,4.73,2.11,1.21,0.96,0.01,-0.26,0.07,0.26,-0.03,-0.08,-1.21,1 --1.76,0.07,0.03,0.19,-0.24,-1.48,1.09,3.59,3.89,3.90,4.32,5.25,4.87,3.83,2.12,1.28,0.37,-0.21,0.59,-0.29,1.73,2 --1.93,1.11,0.45,-1.02,1.24,-0.77,1.83,0.72,2.01,1.47,3.14,3.19,5.38,4.28,5.50,4.97,3.18,1.20,1.91,0.97,0.86,2 --2.14,-0.30,1.58,0.49,-0.04,4.59,5.89,4.06,4.48,4.28,2.01,2.05,1.33,1.62,-0.35,1.19,0.61,0.36,0.63,-1.20,0.79,1 --1.55,0.28,1.51,1.98,3.42,3.38,5.09,2.45,3.80,1.66,3.54,0.54,1.92,1.39,2.54,0.42,2.83,0.44,1.76,-0.26,-0.96,0 -0.72,0.52,-0.61,0.76,0.45,0.47,1.68,6.01,4.04,5.60,5.50,5.97,6.67,2.20,2.13,1.00,-0.34,-0.36,0.09,1.61,1.67,1 -0.46,1.07,0.84,-0.19,0.61,2.48,2.69,1.95,3.70,1.40,3.26,4.12,3.99,4.14,4.01,1.56,3.99,0.88,0.66,0.98,-1.47,2 -1.66,0.77,0.53,-0.43,1.38,-0.36,1.17,2.96,1.32,2.59,4.14,4.14,4.40,5.03,3.64,3.84,1.35,1.43,1.60,-1.18,0.14,2 --0.16,1.00,1.05,2.65,0.76,3.35,3.35,3.55,4.24,2.66,3.89,1.54,1.76,0.67,1.28,0.91,-1.07,1.57,-0.77,1.26,-0.85,1 --0.57,0.38,-1.02,0.64,1.36,1.81,1.59,4.42,2.59,4.21,6.01,7.18,4.26,2.92,3.67,1.79,0.60,-1.85,-2.10,-0.24,-0.79,1 -1.47,0.94,1.12,0.38,-0.12,-0.88,2.57,-0.11,1.86,1.53,1.39,2.81,2.77,5.69,4.33,4.13,2.62,3.89,1.37,0.55,-1.98,0 --2.59,-2.15,1.49,0.46,1.92,4.02,4.98,2.80,0.72,4.18,2.19,3.95,2.30,0.36,3.15,2.94,1.27,0.54,1.22,0.24,2.14,0 --1.18,-0.48,0.32,1.32,1.61,0.89,-0.26,1.64,2.05,2.85,2.65,4.07,5.12,3.71,5.37,4.37,3.99,0.59,2.24,-0.10,0.29,2 --0.14,0.78,0.24,-1.81,-0.35,1.55,0.25,-0.03,-1.66,1.42,2.01,0.19,4.28,6.26,6.74,3.01,4.08,1.91,3.09,1.38,0.07,0 --0.05,0.40,-0.81,0.14,-1.55,-1.35,1.37,1.50,1.45,1.88,4.15,5.20,3.84,5.39,6.83,4.61,3.96,2.37,0.97,0.28,1.08,2 --1.74,1.27,-0.61,-0.98,0.79,-0.01,0.76,3.12,4.28,2.91,4.51,4.16,2.20,4.86,2.40,2.85,1.43,2.44,1.40,0.74,1.17,2 -0.20,-1.31,-1.01,-1.38,-1.69,0.98,2.35,2.05,3.35,4.63,5.88,3.41,4.00,4.75,3.06,2.29,0.62,0.95,2.11,-0.39,0.31,2 -0.72,0.94,-0.43,3.46,2.82,5.56,5.66,3.56,5.81,4.07,3.05,2.51,1.56,-0.92,0.51,-0.79,0.37,-0.46,0.37,0.61,1.12,1 -0.42,1.68,0.85,3.60,2.49,5.08,5.65,3.93,5.83,3.28,1.82,2.08,1.19,2.46,1.34,2.11,0.67,0.22,0.23,1.28,-0.18,0 --0.04,-0.43,-0.36,-0.92,0.47,1.78,0.08,2.61,2.76,5.18,6.12,3.67,5.03,2.49,3.30,0.81,0.42,0.53,-0.38,0.34,0.88,2 --1.11,-0.60,-2.39,-1.02,-0.18,0.15,0.37,-0.65,-0.97,0.12,3.11,2.11,2.12,5.38,6.27,6.54,3.73,2.34,4.57,0.33,1.19,0 --2.18,1.04,1.42,1.41,2.34,3.14,5.14,3.34,3.87,2.83,3.42,3.52,1.11,0.58,-0.37,-0.91,-0.05,0.96,-2.70,0.12,-2.02,1 -0.02,2.17,-0.25,1.48,-0.23,-0.27,2.78,0.85,3.50,4.28,4.55,6.23,3.97,3.99,0.65,0.22,1.51,-0.47,0.42,-0.11,-0.15,2 -0.33,0.20,0.55,1.40,0.09,0.77,1.15,1.48,3.04,3.20,4.96,3.58,3.60,3.43,3.56,2.95,2.52,3.75,1.18,1.61,-0.70,2 --0.10,1.76,-0.40,3.22,2.92,2.72,3.03,2.47,2.41,1.06,2.62,1.34,2.48,3.57,2.31,3.89,-0.13,1.12,1.98,0.42,0.80,0 --0.47,0.64,0.99,0.89,-3.00,1.55,1.03,-0.44,0.20,2.12,2.94,2.71,5.57,5.20,4.64,4.18,3.22,1.49,2.81,0.66,0.49,2 -0.09,-0.17,0.97,-0.68,2.24,0.21,2.83,3.59,3.66,4.71,6.36,5.45,4.41,1.90,1.29,1.59,0.11,1.27,0.37,-0.99,-0.02,1 --2.29,1.04,-0.15,2.18,1.66,4.08,3.85,5.15,3.86,4.07,4.68,2.11,1.57,1.93,-0.12,-0.16,-1.12,-0.12,0.74,-0.74,-0.08,1 --0.78,0.21,1.12,-0.76,1.06,2.28,2.94,2.56,1.67,1.36,0.81,2.62,2.78,1.12,1.96,1.66,1.17,2.07,0.94,1.57,0.37,0 --0.77,0.20,1.07,1.42,2.82,3.44,5.23,5.32,4.95,4.19,2.73,1.71,0.25,-1.15,0.08,-0.79,-0.88,-1.87,3.13,0.31,-2.23,1 -1.32,0.81,1.19,3.61,4.42,4.02,4.43,5.41,4.57,1.33,1.87,0.76,-1.76,1.56,1.57,0.50,1.43,1.72,1.81,2.04,-1.78,0 --1.90,0.72,1.21,3.14,5.48,4.34,7.25,5.19,3.27,1.63,1.96,1.54,0.42,0.05,0.06,-0.49,0.12,-1.06,0.34,0.50,-2.60,1 --1.48,0.31,0.94,-0.41,1.41,1.59,1.88,-1.91,-0.78,0.25,1.73,2.41,4.03,2.67,6.86,1.62,3.95,2.96,2.48,-0.55,0.43,0 -0.48,1.40,3.79,2.73,4.23,3.54,5.08,6.59,1.48,3.57,2.84,1.85,-2.61,0.52,-1.57,0.85,2.63,0.27,-1.09,0.33,-1.56,1 -1.54,0.82,-0.27,0.11,-0.19,0.80,2.41,1.90,1.83,2.11,3.01,3.52,4.34,3.40,2.67,2.51,1.25,2.52,2.05,1.88,0.95,2 -0.22,-0.35,2.41,1.79,5.32,4.95,5.63,4.35,4.43,2.79,2.13,2.29,-0.80,1.77,1.09,0.50,2.64,-0.28,0.52,-0.88,0.56,1 --1.96,-0.72,0.98,0.11,1.37,1.78,3.55,3.88,5.38,5.43,5.70,5.16,4.34,3.05,1.74,2.15,0.40,1.39,-0.23,-2.11,-1.47,1 -0.07,-0.85,2.42,2.60,2.23,4.12,3.68,0.59,2.88,3.19,1.99,1.71,1.81,2.78,2.06,0.93,1.55,-0.11,1.41,1.55,-1.15,0 -0.48,-0.10,0.42,-0.36,0.52,0.72,2.82,1.07,4.08,5.00,7.37,5.65,4.91,2.56,0.72,0.64,0.92,0.32,1.16,-0.99,-2.24,2 -1.48,0.48,0.09,2.87,1.87,3.88,3.91,4.70,1.67,1.47,1.02,2.38,1.22,4.94,2.38,0.42,2.46,-0.39,0.03,0.90,-0.40,0 --0.32,-0.25,-1.42,1.35,0.26,-0.19,-0.72,0.07,-1.29,1.35,1.74,6.58,4.07,5.30,5.90,4.02,4.37,2.86,1.78,0.16,-1.04,0 --0.74,0.85,3.46,1.51,3.42,4.95,6.28,5.38,1.05,2.19,2.89,2.50,-0.22,1.38,-0.66,1.55,0.14,-1.43,-1.14,-0.51,-0.16,1 -0.26,-0.19,-0.18,1.03,2.63,2.16,5.39,3.81,4.09,3.79,4.72,1.92,2.07,3.15,1.75,0.65,0.46,0.70,-1.11,-0.43,-0.29,1 --0.28,-0.72,-0.18,-0.11,3.62,2.37,3.98,3.47,2.71,3.24,4.96,2.48,4.46,1.43,0.32,0.61,-0.74,-1.43,-1.63,-0.78,0.63,1 --1.28,1.29,3.63,3.61,2.87,4.46,3.78,4.99,3.03,3.51,2.22,1.96,0.31,1.73,1.15,1.04,1.26,0.78,0.11,-0.88,0.37,1 -0.16,0.77,1.04,2.01,0.82,-0.16,-1.02,0.26,-1.19,0.80,1.45,1.81,4.28,5.70,7.01,4.83,5.29,0.77,0.91,0.99,-1.03,2 -1.30,2.31,1.52,3.47,4.08,4.99,4.67,5.15,4.40,2.70,3.53,2.18,1.55,-0.24,0.19,0.26,-1.18,0.48,-0.42,0.38,2.15,1 --0.47,1.21,1.61,2.03,3.49,5.96,7.62,4.31,3.47,3.48,2.21,0.89,1.68,-0.78,0.27,1.74,-0.17,0.73,-0.83,-1.01,-0.36,1 --1.21,2.39,2.60,1.17,1.48,2.68,4.99,4.34,3.66,3.43,4.03,3.15,1.26,0.99,-1.01,-0.14,-0.08,0.11,-0.61,1.29,-0.57,1 --1.33,-0.98,-0.76,1.05,1.20,-0.34,0.41,2.21,2.72,5.28,4.27,2.62,4.72,3.49,2.51,3.48,1.65,0.11,0.01,1.90,-1.08,2 -0.65,0.17,0.06,-0.05,1.08,0.25,3.57,1.63,4.11,3.89,5.14,3.43,3.03,2.15,1.73,-0.02,-0.55,2.01,1.03,0.45,0.06,1 -1.02,0.06,0.30,0.84,-0.25,-0.26,2.53,1.15,0.95,1.22,1.11,2.94,3.05,3.20,4.35,5.02,5.09,2.43,2.44,-0.14,-0.10,0 --1.22,-1.50,0.23,-1.61,0.02,0.11,-0.81,0.24,2.71,1.89,4.16,4.35,3.75,4.22,3.88,2.92,3.27,1.12,2.02,2.04,0.91,2 -1.32,-1.88,0.10,3.29,2.94,3.37,4.30,5.32,4.94,5.46,4.57,3.87,1.42,1.61,0.01,1.11,-1.93,-0.83,0.81,1.63,0.11,1 -0.67,-0.16,-1.29,1.40,1.11,2.42,3.32,3.18,2.85,5.55,5.91,4.10,4.25,1.87,1.32,-0.83,0.28,0.53,-0.39,-0.55,1.03,1 -0.66,-1.19,0.18,-0.97,0.91,3.55,3.19,3.15,4.18,4.01,5.24,4.79,3.12,3.85,1.07,2.09,-0.49,0.37,0.65,2.41,0.04,1 --0.08,1.08,1.04,1.18,1.96,0.09,2.16,0.53,0.43,3.10,2.30,3.40,2.92,5.94,4.53,6.71,4.59,1.03,1.91,1.51,-0.31,0 -0.41,-0.14,-1.23,0.18,0.33,0.58,1.79,1.47,4.92,3.13,4.09,4.00,5.18,3.47,1.94,2.34,1.08,0.31,-0.18,-1.80,0.09,2 --1.46,-0.89,1.13,-0.61,-1.21,2.18,1.47,1.51,2.38,3.47,6.88,5.54,2.60,2.83,0.36,1.55,0.48,0.97,0.67,-0.93,1.66,2 --1.27,1.14,-0.32,0.60,0.44,0.99,1.80,2.75,4.58,6.67,5.60,6.34,1.26,0.55,0.97,0.19,-0.69,0.52,-1.45,0.67,-0.92,1 -1.63,-0.32,0.56,0.86,-0.41,0.53,0.94,1.44,0.23,3.56,6.54,4.47,5.19,4.20,4.54,3.09,1.98,0.96,1.91,0.88,0.14,2 --0.56,-2.03,0.56,0.14,0.92,0.92,3.27,1.69,4.32,2.71,6.55,4.40,4.01,1.44,2.23,2.96,1.45,0.38,3.05,1.97,-0.54,2 --0.03,-0.29,0.07,-0.56,0.43,2.04,2.54,4.70,3.45,6.21,4.69,2.86,5.08,2.35,0.04,0.92,-0.11,-1.67,0.39,-0.41,0.41,1 -2.12,1.87,0.08,-0.97,0.39,-0.18,1.48,2.87,3.18,5.96,4.29,3.48,4.49,3.68,1.57,0.89,1.16,-0.47,0.45,0.29,0.00,2 -0.27,1.23,-0.01,1.05,1.24,-0.07,3.48,3.59,4.62,3.40,3.57,4.69,4.72,1.69,2.47,3.05,1.46,-0.30,-2.01,0.99,1.91,1 --0.11,2.01,1.18,1.28,4.05,4.98,4.26,3.57,2.44,1.04,1.83,1.78,1.33,-0.92,-0.01,1.85,1.08,-1.02,1.88,0.39,0.28,0 -0.47,0.23,-0.29,0.55,2.09,1.41,2.03,3.71,6.09,5.18,3.63,3.40,3.26,1.37,1.57,2.28,0.22,0.25,-0.06,-0.99,0.19,1 -1.13,-0.45,-1.38,-0.25,-0.76,0.84,0.69,2.65,1.10,2.69,3.23,2.66,3.17,4.96,5.23,2.06,4.29,0.87,1.71,0.51,0.22,2 -0.57,-0.19,1.86,1.03,0.09,-0.73,1.34,-1.13,0.29,2.16,1.99,1.61,2.50,5.78,4.60,5.27,5.29,2.58,2.27,2.08,0.69,2 --1.07,0.68,0.65,-0.81,-0.73,0.86,-0.17,0.51,-0.03,1.63,2.66,2.05,3.64,5.12,4.94,4.10,2.90,1.78,0.80,0.60,-0.95,0 --0.55,0.46,1.36,1.91,4.00,4.54,6.17,5.30,2.79,3.13,2.21,1.21,2.01,0.26,-0.21,-0.62,0.18,-0.75,-0.37,0.06,-0.25,1 --1.69,0.50,-0.02,-2.79,1.37,0.27,0.88,2.72,1.77,2.59,3.04,3.52,3.00,6.69,5.43,4.54,2.88,0.58,2.36,0.68,-0.15,2 --1.35,0.49,-1.21,0.59,-0.41,0.59,-0.69,0.81,2.00,1.92,3.21,4.82,4.68,4.24,3.66,4.50,3.07,2.72,1.85,0.39,0.54,2 --0.32,1.37,-0.42,3.71,2.54,4.36,5.47,3.69,3.26,2.52,2.22,0.32,1.97,1.23,0.63,2.03,0.15,1.58,-0.62,-0.42,1.22,0 -0.87,0.07,1.32,-0.05,0.95,0.35,2.22,6.05,3.00,6.16,5.67,5.63,2.59,3.02,1.34,1.88,0.76,-1.41,1.58,1.32,-0.91,1 -0.36,1.27,0.02,0.84,0.33,0.15,0.42,2.17,2.41,4.38,6.46,4.10,3.69,2.92,3.82,2.50,1.12,-0.00,-0.67,-0.53,-0.87,2 -0.20,2.55,-0.28,0.23,0.54,-0.05,1.13,-1.04,1.75,1.41,1.50,2.67,4.99,5.85,6.58,4.65,3.86,3.18,1.44,1.61,0.10,0 -0.10,-0.55,0.82,0.93,0.14,0.80,2.19,1.62,2.33,4.60,3.79,4.22,4.41,3.95,4.34,2.73,1.52,2.19,1.53,2.60,-0.39,2 -1.46,3.18,-0.26,2.10,2.28,4.72,5.49,4.88,3.13,2.69,2.63,0.88,0.80,1.09,-0.17,0.06,2.00,1.08,-1.73,-0.25,0.29,0 -0.25,1.31,2.23,0.95,3.84,3.84,3.99,3.07,3.26,2.87,1.77,1.74,0.38,0.45,2.66,2.02,0.21,-0.81,0.52,2.01,-0.07,0 --0.93,0.94,2.44,0.59,1.91,3.28,3.49,4.25,2.97,4.21,3.77,0.77,2.63,1.80,0.40,-1.05,-1.45,0.25,0.01,1.65,-1.76,1 --0.52,-0.27,0.04,0.91,-0.04,-1.33,1.60,2.34,0.82,2.57,3.39,1.69,5.08,3.87,5.38,6.00,1.06,1.28,0.93,1.78,0.67,2 --0.10,0.71,-0.62,1.18,0.02,0.32,0.19,0.69,2.17,2.41,1.85,4.80,4.76,5.70,4.18,5.06,1.31,3.98,0.98,0.48,-2.68,2 --0.65,0.69,2.29,-0.16,0.51,0.26,2.34,-0.42,0.49,0.31,0.34,4.54,3.46,4.81,5.49,5.19,3.10,3.86,2.96,1.09,-1.42,0 --0.02,0.67,2.34,3.18,2.16,4.77,6.70,4.54,4.92,3.39,2.56,1.50,1.53,2.52,1.14,-1.56,-1.18,-0.56,0.02,-1.05,-0.18,1 -0.01,-1.99,0.16,2.30,-0.53,1.93,3.61,3.00,4.61,5.73,4.53,4.25,3.14,3.04,1.61,0.60,-0.52,0.62,1.00,1.21,-0.27,1 --0.40,0.41,-0.48,1.04,0.79,-0.66,1.18,0.52,2.20,0.59,0.85,4.85,3.64,3.62,5.97,2.63,3.83,1.72,2.08,1.31,1.37,0 -0.63,-0.07,2.71,2.55,3.36,3.22,3.69,4.67,3.45,3.87,4.15,1.46,-0.52,1.90,0.88,3.15,1.27,-0.53,0.09,0.01,0.60,1 diff --git a/samples/cpp/Qt_sample/CMakeLists.txt b/samples/cpp/Qt_sample/CMakeLists.txt deleted file mode 100644 index e831f752f..000000000 --- a/samples/cpp/Qt_sample/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ -#http://www.cmake.org/cmake/help/cmake2.6docs.html -cmake_minimum_required (VERSION 2.6) -project (OpenGL_Qt_Binding) - - -FIND_PACKAGE( OpenCV REQUIRED ) -find_package (OpenGL REQUIRED) - - -ADD_EXECUTABLE(OpenGL_Qt_Binding main.cpp) -TARGET_LINK_LIBRARIES(OpenGL_Qt_Binding ${OpenCV_LIBS} ${OPENGL_LIBRARIES} ) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cube4.avi ${CMAKE_CURRENT_BINARY_DIR}/cube4.avi COPYONLY) diff --git a/samples/cpp/Qt_sample/cube4.avi b/samples/cpp/Qt_sample/cube4.avi deleted file mode 100644 index 70ec42bbf..000000000 Binary files a/samples/cpp/Qt_sample/cube4.avi and /dev/null differ diff --git a/samples/cpp/baboon.jpg b/samples/cpp/baboon.jpg deleted file mode 100644 index 2f98d8359..000000000 Binary files a/samples/cpp/baboon.jpg and /dev/null differ diff --git a/samples/cpp/bagofwords_classification.cpp b/samples/cpp/bagofwords_classification.cpp deleted file mode 100644 index e24a770f8..000000000 --- a/samples/cpp/bagofwords_classification.cpp +++ /dev/null @@ -1,2608 +0,0 @@ -#include "opencv2/highgui/highgui.hpp" -#include "opencv2/imgproc/imgproc.hpp" -#include "opencv2/features2d/features2d.hpp" -#include "opencv2/nonfree/nonfree.hpp" -#include "opencv2/ml/ml.hpp" - -#include -#include -#include -#include - -#if defined WIN32 || defined _WIN32 -#define WIN32_LEAN_AND_MEAN -#include -#undef min -#undef max -#include "sys/types.h" -#endif -#include - -#define DEBUG_DESC_PROGRESS - -using namespace cv; -using namespace std; - -const string paramsFile = "params.xml"; -const string vocabularyFile = "vocabulary.xml.gz"; -const string bowImageDescriptorsDir = "/bowImageDescriptors"; -const string svmsDir = "/svms"; -const string plotsDir = "/plots"; - -static void help(char** argv) -{ - cout << "\nThis program shows how to read in, train on and produce test results for the PASCAL VOC (Visual Object Challenge) data. \n" - << "It shows how to use detectors, descriptors and recognition methods \n" - "Using OpenCV version %s\n" << CV_VERSION << "\n" - << "Call: \n" - << "Format:\n ./" << argv[0] << " [VOC path] [result directory] \n" - << " or: \n" - << " ./" << argv[0] << " [VOC path] [result directory] [feature detector] [descriptor extractor] [descriptor matcher] \n" - << "\n" - << "Input parameters: \n" - << "[VOC path] Path to Pascal VOC data (e.g. /home/my/VOCdevkit/VOC2010). Note: VOC2007-VOC2010 are supported. \n" - << "[result directory] Path to result diractory. Following folders will be created in [result directory]: \n" - << " bowImageDescriptors - to store image descriptors, \n" - << " svms - to store trained svms, \n" - << " plots - to store files for plots creating. \n" - << "[feature detector] Feature detector name (e.g. SURF, FAST...) - see createFeatureDetector() function in detectors.cpp \n" - << " Currently 12/2010, this is FAST, STAR, SIFT, SURF, MSER, GFTT, HARRIS \n" - << "[descriptor extractor] Descriptor extractor name (e.g. SURF, SIFT) - see createDescriptorExtractor() function in descriptors.cpp \n" - << " Currently 12/2010, this is SURF, OpponentSIFT, SIFT, OpponentSURF, BRIEF \n" - << "[descriptor matcher] Descriptor matcher name (e.g. BruteForce) - see createDescriptorMatcher() function in matchers.cpp \n" - << " Currently 12/2010, this is BruteForce, BruteForce-L1, FlannBased, BruteForce-Hamming, BruteForce-HammingLUT \n" - << "\n"; -} - - - - - -static void makeDir( const string& dir ) -{ -#if defined WIN32 || defined _WIN32 - CreateDirectory( dir.c_str(), 0 ); -#else - mkdir( dir.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH ); -#endif -} - -static void makeUsedDirs( const string& rootPath ) -{ - makeDir(rootPath + bowImageDescriptorsDir); - makeDir(rootPath + svmsDir); - makeDir(rootPath + plotsDir); -} - -/****************************************************************************************\ -* Classes to work with PASCAL VOC dataset * -\****************************************************************************************/ -// -// TODO: refactor this part of the code -// - - -//used to specify the (sub-)dataset over which operations are performed -enum ObdDatasetType {CV_OBD_TRAIN, CV_OBD_TEST}; - -class ObdObject -{ -public: - string object_class; - Rect boundingBox; -}; - -//extended object data specific to VOC -enum VocPose {CV_VOC_POSE_UNSPECIFIED, CV_VOC_POSE_FRONTAL, CV_VOC_POSE_REAR, CV_VOC_POSE_LEFT, CV_VOC_POSE_RIGHT}; -class VocObjectData -{ -public: - bool difficult; - bool occluded; - bool truncated; - VocPose pose; -}; -//enum VocDataset {CV_VOC2007, CV_VOC2008, CV_VOC2009, CV_VOC2010}; -enum VocPlotType {CV_VOC_PLOT_SCREEN, CV_VOC_PLOT_PNG}; -enum VocGT {CV_VOC_GT_NONE, CV_VOC_GT_DIFFICULT, CV_VOC_GT_PRESENT}; -enum VocConfCond {CV_VOC_CCOND_RECALL, CV_VOC_CCOND_SCORETHRESH}; -enum VocTask {CV_VOC_TASK_CLASSIFICATION, CV_VOC_TASK_DETECTION}; - -class ObdImage -{ -public: - ObdImage(string p_id, string p_path) : id(p_id), path(p_path) {} - string id; - string path; -}; - -//used by getDetectorGroundTruth to sort a two dimensional list of floats in descending order -class ObdScoreIndexSorter -{ -public: - float score; - int image_idx; - int obj_idx; - bool operator < (const ObdScoreIndexSorter& compare) const {return (score < compare.score);} -}; - -class VocData -{ -public: - VocData( const string& vocPath, bool useTestDataset ) - { initVoc( vocPath, useTestDataset ); } - ~VocData(){} - /* functions for returning classification/object data for multiple images given an object class */ - void getClassImages(const string& obj_class, const ObdDatasetType dataset, vector& images, vector& object_present); - void getClassObjects(const string& obj_class, const ObdDatasetType dataset, vector& images, vector >& objects); - void getClassObjects(const string& obj_class, const ObdDatasetType dataset, vector& images, vector >& objects, vector >& object_data, vector& ground_truth); - /* functions for returning object data for a single image given an image id */ - ObdImage getObjects(const string& id, vector& objects); - ObdImage getObjects(const string& id, vector& objects, vector& object_data); - ObdImage getObjects(const string& obj_class, const string& id, vector& objects, vector& object_data, VocGT& ground_truth); - /* functions for returning the ground truth (present/absent) for groups of images */ - void getClassifierGroundTruth(const string& obj_class, const vector& images, vector& ground_truth); - void getClassifierGroundTruth(const string& obj_class, const vector& images, vector& ground_truth); - int getDetectorGroundTruth(const string& obj_class, const ObdDatasetType dataset, const vector& images, const vector >& bounding_boxes, const vector >& scores, vector >& ground_truth, vector >& detection_difficult, bool ignore_difficult = true); - /* functions for writing VOC-compatible results files */ - void writeClassifierResultsFile(const string& out_dir, const string& obj_class, const ObdDatasetType dataset, const vector& images, const vector& scores, const int competition = 1, const bool overwrite_ifexists = false); - /* functions for calculating metrics from a set of classification/detection results */ - string getResultsFilename(const string& obj_class, const VocTask task, const ObdDatasetType dataset, const int competition = -1, const int number = -1); - void calcClassifierPrecRecall(const string& obj_class, const vector& images, const vector& scores, vector& precision, vector& recall, float& ap, vector& ranking); - void calcClassifierPrecRecall(const string& obj_class, const vector& images, const vector& scores, vector& precision, vector& recall, float& ap); - void calcClassifierPrecRecall(const string& input_file, vector& precision, vector& recall, float& ap, bool outputRankingFile = false); - /* functions for calculating confusion matrices */ - void calcClassifierConfMatRow(const string& obj_class, const vector& images, const vector& scores, const VocConfCond cond, const float threshold, vector& output_headers, vector& output_values); - void calcDetectorConfMatRow(const string& obj_class, const ObdDatasetType dataset, const vector& images, const vector >& scores, const vector >& bounding_boxes, const VocConfCond cond, const float threshold, vector& output_headers, vector& output_values, bool ignore_difficult = true); - /* functions for outputting gnuplot output files */ - void savePrecRecallToGnuplot(const string& output_file, const vector& precision, const vector& recall, const float ap, const string title = string(), const VocPlotType plot_type = CV_VOC_PLOT_SCREEN); - /* functions for reading in result/ground truth files */ - void readClassifierGroundTruth(const string& obj_class, const ObdDatasetType dataset, vector& images, vector& object_present); - void readClassifierResultsFile(const std:: string& input_file, vector& images, vector& scores); - void readDetectorResultsFile(const string& input_file, vector& images, vector >& scores, vector >& bounding_boxes); - /* functions for getting dataset info */ - const vector& getObjectClasses(); - string getResultsDirectory(); -protected: - void initVoc( const string& vocPath, const bool useTestDataset ); - void initVoc2007to2010( const string& vocPath, const bool useTestDataset); - void readClassifierGroundTruth(const string& filename, vector& image_codes, vector& object_present); - void readClassifierResultsFile(const string& input_file, vector& image_codes, vector& scores); - void readDetectorResultsFile(const string& input_file, vector& image_codes, vector >& scores, vector >& bounding_boxes); - void extractVocObjects(const string filename, vector& objects, vector& object_data); - string getImagePath(const string& input_str); - - void getClassImages_impl(const string& obj_class, const string& dataset_str, vector& images, vector& object_present); - void calcPrecRecall_impl(const vector& ground_truth, const vector& scores, vector& precision, vector& recall, float& ap, vector& ranking, int recall_normalization = -1); - - //test two bounding boxes to see if they meet the overlap criteria defined in the VOC documentation - float testBoundingBoxesForOverlap(const Rect detection, const Rect ground_truth); - //extract class and dataset name from a VOC-standard classification/detection results filename - void extractDataFromResultsFilename(const string& input_file, string& class_name, string& dataset_name); - //get classifier ground truth for a single image - bool getClassifierGroundTruthImage(const string& obj_class, const string& id); - - //utility functions - void getSortOrder(const vector& values, vector& order, bool descending = true); - int stringToInteger(const string input_str); - void readFileToString(const string filename, string& file_contents); - string integerToString(const int input_int); - string checkFilenamePathsep(const string filename, bool add_trailing_slash = false); - void convertImageCodesToObdImages(const vector& image_codes, vector& images); - int extractXMLBlock(const string src, const string tag, const int searchpos, string& tag_contents); - //utility sorter - struct orderingSorter - { - bool operator ()(std::pair::const_iterator> const& a, std::pair::const_iterator> const& b) - { - return (*a.second) > (*b.second); - } - }; - //data members - string m_vocPath; - string m_vocName; - //string m_resPath; - - string m_annotation_path; - string m_image_path; - string m_imageset_path; - string m_class_imageset_path; - - vector m_classifier_gt_all_ids; - vector m_classifier_gt_all_present; - string m_classifier_gt_class; - - //data members - string m_train_set; - string m_test_set; - - vector m_object_classes; - - - float m_min_overlap; - bool m_sampled_ap; -}; - - -//Return the classification ground truth data for all images of a given VOC object class -//-------------------------------------------------------------------------------------- -//INPUTS: -// - obj_class The VOC object class identifier string -// - dataset Specifies whether to extract images from the training or test set -//OUTPUTS: -// - images An array of ObdImage containing info of all images extracted from the ground truth file -// - object_present An array of bools specifying whether the object defined by 'obj_class' is present in each image or not -//NOTES: -// This function is primarily useful for the classification task, where only -// whether a given object is present or not in an image is required, and not each object instance's -// position etc. -void VocData::getClassImages(const string& obj_class, const ObdDatasetType dataset, vector& images, vector& object_present) -{ - string dataset_str; - //generate the filename of the classification ground-truth textfile for the object class - if (dataset == CV_OBD_TRAIN) - { - dataset_str = m_train_set; - } else { - dataset_str = m_test_set; - } - - getClassImages_impl(obj_class, dataset_str, images, object_present); -} - -void VocData::getClassImages_impl(const string& obj_class, const string& dataset_str, vector& images, vector& object_present) -{ - //generate the filename of the classification ground-truth textfile for the object class - string gtFilename = m_class_imageset_path; - gtFilename.replace(gtFilename.find("%s"),2,obj_class); - gtFilename.replace(gtFilename.find("%s"),2,dataset_str); - - //parse the ground truth file, storing in two separate vectors - //for the image code and the ground truth value - vector image_codes; - readClassifierGroundTruth(gtFilename, image_codes, object_present); - - //prepare output arrays - images.clear(); - - convertImageCodesToObdImages(image_codes, images); -} - -//Return the object data for all images of a given VOC object class -//----------------------------------------------------------------- -//INPUTS: -// - obj_class The VOC object class identifier string -// - dataset Specifies whether to extract images from the training or test set -//OUTPUTS: -// - images An array of ObdImage containing info of all images in chosen dataset (tag, path etc.) -// - objects Contains the extended object info (bounding box etc.) for each object instance in each image -// - object_data Contains VOC-specific extended object info (marked difficult etc.) -// - ground_truth Specifies whether there are any difficult/non-difficult instances of the current -// object class within each image -//NOTES: -// This function returns extended object information in addition to the absent/present -// classification data returned by getClassImages. The objects returned for each image in the 'objects' -// array are of all object classes present in the image, and not just the class defined by 'obj_class'. -// 'ground_truth' can be used to determine quickly whether an object instance of the given class is present -// in an image or not. -void VocData::getClassObjects(const string& obj_class, const ObdDatasetType dataset, vector& images, vector >& objects) -{ - vector > object_data; - vector ground_truth; - - getClassObjects(obj_class,dataset,images,objects,object_data,ground_truth); -} - -void VocData::getClassObjects(const string& obj_class, const ObdDatasetType dataset, vector& images, vector >& objects, vector >& object_data, vector& ground_truth) -{ - //generate the filename of the classification ground-truth textfile for the object class - string gtFilename = m_class_imageset_path; - gtFilename.replace(gtFilename.find("%s"),2,obj_class); - if (dataset == CV_OBD_TRAIN) - { - gtFilename.replace(gtFilename.find("%s"),2,m_train_set); - } else { - gtFilename.replace(gtFilename.find("%s"),2,m_test_set); - } - - //parse the ground truth file, storing in two separate vectors - //for the image code and the ground truth value - vector image_codes; - vector object_present; - readClassifierGroundTruth(gtFilename, image_codes, object_present); - - //prepare output arrays - images.clear(); - objects.clear(); - object_data.clear(); - ground_truth.clear(); - - string annotationFilename; - vector image_objects; - vector image_object_data; - VocGT image_gt; - - //transfer to output arrays and read in object data for each image - for (size_t i = 0; i < image_codes.size(); ++i) - { - ObdImage image = getObjects(obj_class, image_codes[i], image_objects, image_object_data, image_gt); - - images.push_back(image); - objects.push_back(image_objects); - object_data.push_back(image_object_data); - ground_truth.push_back(image_gt); - } -} - -//Return ground truth data for the objects present in an image with a given UID -//----------------------------------------------------------------------------- -//INPUTS: -// - id VOC Dataset unique identifier (string code in form YYYY_XXXXXX where YYYY is the year) -//OUTPUTS: -// - obj_class (*3) Specifies the object class to use to resolve 'ground_truth' -// - objects Contains the extended object info (bounding box etc.) for each object in the image -// - object_data (*2,3) Contains VOC-specific extended object info (marked difficult etc.) -// - ground_truth (*3) Specifies whether there are any difficult/non-difficult instances of the current -// object class within the image -//RETURN VALUE: -// ObdImage containing path and other details of image file with given code -//NOTES: -// There are three versions of this function -// * One returns a simple array of objects given an id [1] -// * One returns the same as (1) plus VOC specific object data [2] -// * One returns the same as (2) plus the ground_truth flag. This also requires an extra input obj_class [3] -ObdImage VocData::getObjects(const string& id, vector& objects) -{ - vector object_data; - ObdImage image = getObjects(id, objects, object_data); - - return image; -} - -ObdImage VocData::getObjects(const string& id, vector& objects, vector& object_data) -{ - //first generate the filename of the annotation file - string annotationFilename = m_annotation_path; - - annotationFilename.replace(annotationFilename.find("%s"),2,id); - - //extract objects contained in the current image from the xml - extractVocObjects(annotationFilename,objects,object_data); - - //generate image path from extracted string code - string path = getImagePath(id); - - ObdImage image(id, path); - return image; -} - -ObdImage VocData::getObjects(const string& obj_class, const string& id, vector& objects, vector& object_data, VocGT& ground_truth) -{ - - //extract object data (except for ground truth flag) - ObdImage image = getObjects(id,objects,object_data); - - //pregenerate a flag to indicate whether the current class is present or not in the image - ground_truth = CV_VOC_GT_NONE; - //iterate through all objects in current image - for (size_t j = 0; j < objects.size(); ++j) - { - if (objects[j].object_class == obj_class) - { - if (object_data[j].difficult == false) - { - //if at least one non-difficult example is present, this flag is always set to CV_VOC_GT_PRESENT - ground_truth = CV_VOC_GT_PRESENT; - break; - } else { - //set if at least one object instance is present, but it is marked difficult - ground_truth = CV_VOC_GT_DIFFICULT; - } - } - } - - return image; -} - -//Return ground truth data for the presence/absence of a given object class in an arbitrary array of images -//--------------------------------------------------------------------------------------------------------- -//INPUTS: -// - obj_class The VOC object class identifier string -// - images An array of ObdImage OR strings containing the images for which ground truth -// will be computed -//OUTPUTS: -// - ground_truth An output array indicating the presence/absence of obj_class within each image -void VocData::getClassifierGroundTruth(const string& obj_class, const vector& images, vector& ground_truth) -{ - vector(images.size()).swap(ground_truth); - - vector objects; - vector object_data; - vector::iterator gt_it = ground_truth.begin(); - for (vector::const_iterator it = images.begin(); it != images.end(); ++it, ++gt_it) - { - //getObjects(obj_class, it->id, objects, object_data, voc_ground_truth); - (*gt_it) = (getClassifierGroundTruthImage(obj_class, it->id)); - } -} - -void VocData::getClassifierGroundTruth(const string& obj_class, const vector& images, vector& ground_truth) -{ - vector(images.size()).swap(ground_truth); - - vector objects; - vector object_data; - vector::iterator gt_it = ground_truth.begin(); - for (vector::const_iterator it = images.begin(); it != images.end(); ++it, ++gt_it) - { - //getObjects(obj_class, (*it), objects, object_data, voc_ground_truth); - (*gt_it) = (getClassifierGroundTruthImage(obj_class, (*it))); - } -} - -//Return ground truth data for the accuracy of detection results -//-------------------------------------------------------------- -//INPUTS: -// - obj_class The VOC object class identifier string -// - images An array of ObdImage containing the images for which ground truth -// will be computed -// - bounding_boxes A 2D input array containing the bounding box rects of the objects of -// obj_class which were detected in each image -//OUTPUTS: -// - ground_truth A 2D output array indicating whether each object detection was accurate -// or not -// - detection_difficult A 2D output array indicating whether the detection fired on an object -// marked as 'difficult'. This allows it to be ignored if necessary -// (the voc documentation specifies objects marked as difficult -// have no effects on the results and are effectively ignored) -// - (ignore_difficult) If set to true, objects marked as difficult will be ignored when returning -// the number of hits for p-r normalization (default = true) -//RETURN VALUE: -// Returns the number of object hits in total in the gt to allow proper normalization -// of a p-r curve -//NOTES: -// As stated in the VOC documentation, multiple detections of the same object in an image are -// considered FALSE detections e.g. 5 detections of a single object is counted as 1 correct -// detection and 4 false detections - it is the responsibility of the participant's system -// to filter multiple detections from its output -int VocData::getDetectorGroundTruth(const string& obj_class, const ObdDatasetType dataset, const vector& images, const vector >& bounding_boxes, const vector >& scores, vector >& ground_truth, vector >& detection_difficult, bool ignore_difficult) -{ - int recall_normalization = 0; - - /* first create a list of indices referring to the elements of bounding_boxes and scores in - * descending order of scores */ - vector sorted_ids; - { - /* first count how many objects to allow preallocation */ - size_t obj_count = 0; - CV_Assert(images.size() == bounding_boxes.size()); - CV_Assert(scores.size() == bounding_boxes.size()); - for (size_t im_idx = 0; im_idx < scores.size(); ++im_idx) - { - CV_Assert(scores[im_idx].size() == bounding_boxes[im_idx].size()); - obj_count += scores[im_idx].size(); - } - /* preallocate id vector */ - sorted_ids.resize(obj_count); - /* now copy across scores and indexes to preallocated vector */ - int flat_pos = 0; - for (size_t im_idx = 0; im_idx < scores.size(); ++im_idx) - { - for (size_t ob_idx = 0; ob_idx < scores[im_idx].size(); ++ob_idx) - { - sorted_ids[flat_pos].score = scores[im_idx][ob_idx]; - sorted_ids[flat_pos].image_idx = (int)im_idx; - sorted_ids[flat_pos].obj_idx = (int)ob_idx; - ++flat_pos; - } - } - /* and sort the vector in descending order of score */ - std::sort(sorted_ids.begin(),sorted_ids.end()); - std::reverse(sorted_ids.begin(),sorted_ids.end()); - } - - /* prepare ground truth + difficult vector (1st dimension) */ - vector >(images.size()).swap(ground_truth); - vector >(images.size()).swap(detection_difficult); - vector > detected(images.size()); - - vector > img_objects(images.size()); - vector > img_object_data(images.size()); - /* preload object ground truth bounding box data */ - { - vector > img_objects_all(images.size()); - vector > img_object_data_all(images.size()); - for (size_t image_idx = 0; image_idx < images.size(); ++image_idx) - { - /* prepopulate ground truth bounding boxes */ - getObjects(images[image_idx].id, img_objects_all[image_idx], img_object_data_all[image_idx]); - /* meanwhile, also set length of target ground truth + difficult vector to same as number of object detections (2nd dimension) */ - ground_truth[image_idx].resize(bounding_boxes[image_idx].size()); - detection_difficult[image_idx].resize(bounding_boxes[image_idx].size()); - } - - /* save only instances of the object class concerned */ - for (size_t image_idx = 0; image_idx < images.size(); ++image_idx) - { - for (size_t obj_idx = 0; obj_idx < img_objects_all[image_idx].size(); ++obj_idx) - { - if (img_objects_all[image_idx][obj_idx].object_class == obj_class) - { - img_objects[image_idx].push_back(img_objects_all[image_idx][obj_idx]); - img_object_data[image_idx].push_back(img_object_data_all[image_idx][obj_idx]); - } - } - detected[image_idx].resize(img_objects[image_idx].size(), false); - } - } - - /* calculate the total number of objects in the ground truth for the current dataset */ - { - vector gt_images; - vector gt_object_present; - getClassImages(obj_class, dataset, gt_images, gt_object_present); - - for (size_t image_idx = 0; image_idx < gt_images.size(); ++image_idx) - { - vector gt_img_objects; - vector gt_img_object_data; - getObjects(gt_images[image_idx].id, gt_img_objects, gt_img_object_data); - for (size_t obj_idx = 0; obj_idx < gt_img_objects.size(); ++obj_idx) - { - if (gt_img_objects[obj_idx].object_class == obj_class) - { - if ((gt_img_object_data[obj_idx].difficult == false) || (ignore_difficult == false)) - ++recall_normalization; - } - } - } - } - -#ifdef PR_DEBUG - int printed_count = 0; -#endif - /* now iterate through detections in descending order of score, assigning to ground truth bounding boxes if possible */ - for (size_t detect_idx = 0; detect_idx < sorted_ids.size(); ++detect_idx) - { - //read in indexes to make following code easier to read - int im_idx = sorted_ids[detect_idx].image_idx; - int ob_idx = sorted_ids[detect_idx].obj_idx; - //set ground truth for the current object to false by default - ground_truth[im_idx][ob_idx] = false; - detection_difficult[im_idx][ob_idx] = false; - float maxov = -1.0; - bool max_is_difficult = false; - int max_gt_obj_idx = -1; - //-- for each detected object iterate through objects present in the bounding box ground truth -- - for (size_t gt_obj_idx = 0; gt_obj_idx < img_objects[im_idx].size(); ++gt_obj_idx) - { - if (detected[im_idx][gt_obj_idx] == false) - { - //check if the detected object and ground truth object overlap by a sufficient margin - float ov = testBoundingBoxesForOverlap(bounding_boxes[im_idx][ob_idx], img_objects[im_idx][gt_obj_idx].boundingBox); - if (ov != -1.0) - { - //if all conditions are met store the overlap score and index (as objects are assigned to the highest scoring match) - if (ov > maxov) - { - maxov = ov; - max_gt_obj_idx = (int)gt_obj_idx; - //store whether the maximum detection is marked as difficult or not - max_is_difficult = (img_object_data[im_idx][gt_obj_idx].difficult); - } - } - } - } - //-- if a match was found, set the ground truth of the current object to true -- - if (maxov != -1.0) - { - CV_Assert(max_gt_obj_idx != -1); - ground_truth[im_idx][ob_idx] = true; - //store whether the maximum detection was marked as 'difficult' or not - detection_difficult[im_idx][ob_idx] = max_is_difficult; - //remove the ground truth object so it doesn't match with subsequent detected objects - //** this is the behaviour defined by the voc documentation ** - detected[im_idx][max_gt_obj_idx] = true; - } -#ifdef PR_DEBUG - if (printed_count < 10) - { - cout << printed_count << ": id=" << images[im_idx].id << ", score=" << scores[im_idx][ob_idx] << " (" << ob_idx << ") [" << bounding_boxes[im_idx][ob_idx].x << "," << - bounding_boxes[im_idx][ob_idx].y << "," << bounding_boxes[im_idx][ob_idx].width + bounding_boxes[im_idx][ob_idx].x << - "," << bounding_boxes[im_idx][ob_idx].height + bounding_boxes[im_idx][ob_idx].y << "] detected=" << ground_truth[im_idx][ob_idx] << - ", difficult=" << detection_difficult[im_idx][ob_idx] << endl; - ++printed_count; - /* print ground truth */ - for (int gt_obj_idx = 0; gt_obj_idx < img_objects[im_idx].size(); ++gt_obj_idx) - { - cout << " GT: [" << img_objects[im_idx][gt_obj_idx].boundingBox.x << "," << - img_objects[im_idx][gt_obj_idx].boundingBox.y << "," << img_objects[im_idx][gt_obj_idx].boundingBox.width + img_objects[im_idx][gt_obj_idx].boundingBox.x << - "," << img_objects[im_idx][gt_obj_idx].boundingBox.height + img_objects[im_idx][gt_obj_idx].boundingBox.y << "]"; - if (gt_obj_idx == max_gt_obj_idx) cout << " <--- (" << maxov << " overlap)"; - cout << endl; - } - } -#endif - } - - return recall_normalization; -} - -//Write VOC-compliant classifier results file -//------------------------------------------- -//INPUTS: -// - obj_class The VOC object class identifier string -// - dataset Specifies whether working with the training or test set -// - images An array of ObdImage containing the images for which data will be saved to the result file -// - scores A corresponding array of confidence scores given a query -// - (competition) If specified, defines which competition the results are for (see VOC documentation - default 1) -//NOTES: -// The result file path and filename are determined automatically using m_results_directory as a base -void VocData::writeClassifierResultsFile( const string& out_dir, const string& obj_class, const ObdDatasetType dataset, const vector& images, const vector& scores, const int competition, const bool overwrite_ifexists) -{ - CV_Assert(images.size() == scores.size()); - - string output_file_base, output_file; - if (dataset == CV_OBD_TRAIN) - { - output_file_base = out_dir + "/comp" + integerToString(competition) + "_cls_" + m_train_set + "_" + obj_class; - } else { - output_file_base = out_dir + "/comp" + integerToString(competition) + "_cls_" + m_test_set + "_" + obj_class; - } - output_file = output_file_base + ".txt"; - - //check if file exists, and if so create a numbered new file instead - if (overwrite_ifexists == false) - { - struct stat stFileInfo; - if (stat(output_file.c_str(),&stFileInfo) == 0) - { - string output_file_new; - int filenum = 0; - do - { - ++filenum; - output_file_new = output_file_base + "_" + integerToString(filenum); - output_file = output_file_new + ".txt"; - } while (stat(output_file.c_str(),&stFileInfo) == 0); - } - } - - //output data to file - std::ofstream result_file(output_file.c_str()); - if (result_file.is_open()) - { - for (size_t i = 0; i < images.size(); ++i) - { - result_file << images[i].id << " " << scores[i] << endl; - } - result_file.close(); - } else { - string err_msg = "could not open classifier results file '" + output_file + "' for writing. Before running for the first time, a 'results' subdirectory should be created within the VOC dataset base directory. e.g. if the VOC data is stored in /VOC/VOC2010 then the path /VOC/results must be created."; - CV_Error(CV_StsError,err_msg.c_str()); - } -} - -//--------------------------------------- -//CALCULATE METRICS FROM VOC RESULTS DATA -//--------------------------------------- - -//Utility function to construct a VOC-standard classification results filename -//---------------------------------------------------------------------------- -//INPUTS: -// - obj_class The VOC object class identifier string -// - task Specifies whether to generate a filename for the classification or detection task -// - dataset Specifies whether working with the training or test set -// - (competition) If specified, defines which competition the results are for (see VOC documentation -// default of -1 means this is set to 1 for the classification task and 3 for the detection task) -// - (number) If specified and above 0, defines which of a number of duplicate results file produced for a given set of -// of settings should be used (this number will be added as a postfix to the filename) -//NOTES: -// This is primarily useful for returning the filename of a classification file previously computed using writeClassifierResultsFile -// for example when calling calcClassifierPrecRecall -string VocData::getResultsFilename(const string& obj_class, const VocTask task, const ObdDatasetType dataset, const int competition, const int number) -{ - if ((competition < 1) && (competition != -1)) - CV_Error(CV_StsBadArg,"competition argument should be a positive non-zero number or -1 to accept the default"); - if ((number < 1) && (number != -1)) - CV_Error(CV_StsBadArg,"number argument should be a positive non-zero number or -1 to accept the default"); - - string dset, task_type; - - if (dataset == CV_OBD_TRAIN) - { - dset = m_train_set; - } else { - dset = m_test_set; - } - - int comp = competition; - if (task == CV_VOC_TASK_CLASSIFICATION) - { - task_type = "cls"; - if (comp == -1) comp = 1; - } else { - task_type = "det"; - if (comp == -1) comp = 3; - } - - stringstream ss; - if (number < 1) - { - ss << "comp" << comp << "_" << task_type << "_" << dset << "_" << obj_class << ".txt"; - } else { - ss << "comp" << comp << "_" << task_type << "_" << dset << "_" << obj_class << "_" << number << ".txt"; - } - - string filename = ss.str(); - return filename; -} - -//Calculate metrics for classification results -//-------------------------------------------- -//INPUTS: -// - ground_truth A vector of booleans determining whether the currently tested class is present in each input image -// - scores A vector containing the similarity score for each input image (higher is more similar) -//OUTPUTS: -// - precision A vector containing the precision calculated at each datapoint of a p-r curve generated from the result set -// - recall A vector containing the recall calculated at each datapoint of a p-r curve generated from the result set -// - ap The ap metric calculated from the result set -// - (ranking) A vector of the same length as 'ground_truth' and 'scores' containing the order of the indices in both of -// these arrays when sorting by the ranking score in descending order -//NOTES: -// The result file path and filename are determined automatically using m_results_directory as a base -void VocData::calcClassifierPrecRecall(const string& obj_class, const vector& images, const vector& scores, vector& precision, vector& recall, float& ap, vector& ranking) -{ - vector res_ground_truth; - getClassifierGroundTruth(obj_class, images, res_ground_truth); - - calcPrecRecall_impl(res_ground_truth, scores, precision, recall, ap, ranking); -} - -void VocData::calcClassifierPrecRecall(const string& obj_class, const vector& images, const vector& scores, vector& precision, vector& recall, float& ap) -{ - vector res_ground_truth; - getClassifierGroundTruth(obj_class, images, res_ground_truth); - - vector ranking; - calcPrecRecall_impl(res_ground_truth, scores, precision, recall, ap, ranking); -} - -//< Overloaded version which accepts VOC classification result file input instead of array of scores/ground truth > -//INPUTS: -// - input_file The path to the VOC standard results file to use for calculating precision/recall -// If a full path is not specified, it is assumed this file is in the VOC standard results directory -// A VOC standard filename can be retrieved (as used by writeClassifierResultsFile) by calling getClassifierResultsFilename - -void VocData::calcClassifierPrecRecall(const string& input_file, vector& precision, vector& recall, float& ap, bool outputRankingFile) -{ - //read in classification results file - vector res_image_codes; - vector res_scores; - - string input_file_std = checkFilenamePathsep(input_file); - readClassifierResultsFile(input_file_std, res_image_codes, res_scores); - - //extract the object class and dataset from the results file filename - string class_name, dataset_name; - extractDataFromResultsFilename(input_file_std, class_name, dataset_name); - - //generate the ground truth for the images extracted from the results file - vector res_ground_truth; - - getClassifierGroundTruth(class_name, res_image_codes, res_ground_truth); - - if (outputRankingFile) - { - /* 1. store sorting order by score (descending) in 'order' */ - vector::const_iterator> > order(res_scores.size()); - - size_t n = 0; - for (vector::const_iterator it = res_scores.begin(); it != res_scores.end(); ++it, ++n) - order[n] = make_pair(n, it); - - std::sort(order.begin(),order.end(),orderingSorter()); - - /* 2. save ranking results to text file */ - string input_file_std1 = checkFilenamePathsep(input_file); - size_t fnamestart = input_file_std1.rfind("/"); - string scoregt_file_str = input_file_std1.substr(0,fnamestart+1) + "scoregt_" + class_name + ".txt"; - std::ofstream scoregt_file(scoregt_file_str.c_str()); - if (scoregt_file.is_open()) - { - for (size_t i = 0; i < res_scores.size(); ++i) - { - scoregt_file << res_image_codes[order[i].first] << " " << res_scores[order[i].first] << " " << res_ground_truth[order[i].first] << endl; - } - scoregt_file.close(); - } else { - string err_msg = "could not open scoregt file '" + scoregt_file_str + "' for writing."; - CV_Error(CV_StsError,err_msg.c_str()); - } - } - - //finally, calculate precision+recall+ap - vector ranking; - calcPrecRecall_impl(res_ground_truth,res_scores,precision,recall,ap,ranking); -} - -//< Protected implementation of Precision-Recall calculation used by both calcClassifierPrecRecall and calcDetectorPrecRecall > - -void VocData::calcPrecRecall_impl(const vector& ground_truth, const vector& scores, vector& precision, vector& recall, float& ap, vector& ranking, int recall_normalization) -{ - CV_Assert(ground_truth.size() == scores.size()); - - //add extra element for p-r at 0 recall (in case that first retrieved is positive) - vector(scores.size()+1).swap(precision); - vector(scores.size()+1).swap(recall); - - // SORT RESULTS BY THEIR SCORE - /* 1. store sorting order in 'order' */ - VocData::getSortOrder(scores, ranking); - -#ifdef PR_DEBUG - std::ofstream scoregt_file("D:/pr.txt"); - if (scoregt_file.is_open()) - { - for (int i = 0; i < scores.size(); ++i) - { - scoregt_file << scores[ranking[i]] << " " << ground_truth[ranking[i]] << endl; - } - scoregt_file.close(); - } -#endif - - // CALCULATE PRECISION+RECALL - - int retrieved_hits = 0; - - int recall_norm; - if (recall_normalization != -1) - { - recall_norm = recall_normalization; - } else { - recall_norm = (int)std::count_if(ground_truth.begin(),ground_truth.end(),std::bind2nd(std::equal_to(),(char)1)); - } - - ap = 0; - recall[0] = 0; - for (size_t idx = 0; idx < ground_truth.size(); ++idx) - { - if (ground_truth[ranking[idx]] != 0) ++retrieved_hits; - - precision[idx+1] = static_cast(retrieved_hits)/static_cast(idx+1); - recall[idx+1] = static_cast(retrieved_hits)/static_cast(recall_norm); - - if (idx == 0) - { - //add further point at 0 recall with the same precision value as the first computed point - precision[idx] = precision[idx+1]; - } - if (recall[idx+1] == 1.0) - { - //if recall = 1, then end early as all positive images have been found - recall.resize(idx+2); - precision.resize(idx+2); - break; - } - } - - /* ap calculation */ - if (m_sampled_ap == false) - { - // FOR VOC2010+ AP IS CALCULATED FROM ALL DATAPOINTS - /* make precision monotonically decreasing for purposes of calculating ap */ - vector precision_monot(precision.size()); - vector::iterator prec_m_it = precision_monot.begin(); - for (vector::iterator prec_it = precision.begin(); prec_it != precision.end(); ++prec_it, ++prec_m_it) - { - vector::iterator max_elem; - max_elem = std::max_element(prec_it,precision.end()); - (*prec_m_it) = (*max_elem); - } - /* calculate ap */ - for (size_t idx = 0; idx < (recall.size()-1); ++idx) - { - ap += (recall[idx+1] - recall[idx])*precision_monot[idx+1] + //no need to take min of prec - is monotonically decreasing - 0.5f*(recall[idx+1] - recall[idx])*std::abs(precision_monot[idx+1] - precision_monot[idx]); - } - } else { - // FOR BEFORE VOC2010 AP IS CALCULATED BY SAMPLING PRECISION AT RECALL 0.0,0.1,..,1.0 - - for (float recall_pos = 0.f; recall_pos <= 1.f; recall_pos += 0.1f) - { - //find iterator of the precision corresponding to the first recall >= recall_pos - vector::iterator recall_it = recall.begin(); - vector::iterator prec_it = precision.begin(); - - while ((*recall_it) < recall_pos) - { - ++recall_it; - ++prec_it; - if (recall_it == recall.end()) break; - } - - /* if no recall >= recall_pos found, this level of recall is never reached so stop adding to ap */ - if (recall_it == recall.end()) break; - - /* if the prec_it is valid, compute the max precision at this level of recall or higher */ - vector::iterator max_prec = std::max_element(prec_it,precision.end()); - - ap += (*max_prec)/11; - } - } -} - -/* functions for calculating confusion matrix rows */ - -//Calculate rows of a confusion matrix -//------------------------------------ -//INPUTS: -// - obj_class The VOC object class identifier string for the confusion matrix row to compute -// - images An array of ObdImage containing the images to use for the computation -// - scores A corresponding array of confidence scores for the presence of obj_class in each image -// - cond Defines whether to use a cut off point based on recall (CV_VOC_CCOND_RECALL) or score -// (CV_VOC_CCOND_SCORETHRESH) the latter is useful for classifier detections where positive -// values are positive detections and negative values are negative detections -// - threshold Threshold value for cond. In case of CV_VOC_CCOND_RECALL, is proportion recall (e.g. 0.5). -// In the case of CV_VOC_CCOND_SCORETHRESH is the value above which to count results. -//OUTPUTS: -// - output_headers An output vector of object class headers for the confusion matrix row -// - output_values An output vector of values for the confusion matrix row corresponding to the classes -// defined in output_headers -//NOTES: -// The methodology used by the classifier version of this function is that true positives have a single unit -// added to the obj_class column in the confusion matrix row, whereas false positives have a single unit -// distributed in proportion between all the columns in the confusion matrix row corresponding to the objects -// present in the image. -void VocData::calcClassifierConfMatRow(const string& obj_class, const vector& images, const vector& scores, const VocConfCond cond, const float threshold, vector& output_headers, vector& output_values) -{ - CV_Assert(images.size() == scores.size()); - - // SORT RESULTS BY THEIR SCORE - /* 1. store sorting order in 'ranking' */ - vector ranking; - VocData::getSortOrder(scores, ranking); - - // CALCULATE CONFUSION MATRIX ENTRIES - /* prepare object category headers */ - output_headers = m_object_classes; - vector(output_headers.size(),0.0).swap(output_values); - /* find the index of the target object class in the headers for later use */ - int target_idx; - { - vector::iterator target_idx_it = std::find(output_headers.begin(),output_headers.end(),obj_class); - /* if the target class can not be found, raise an exception */ - if (target_idx_it == output_headers.end()) - { - string err_msg = "could not find the target object class '" + obj_class + "' in list of valid classes."; - CV_Error(CV_StsError,err_msg.c_str()); - } - /* convert iterator to index */ - target_idx = (int)std::distance(output_headers.begin(),target_idx_it); - } - - /* prepare variables related to calculating recall if using the recall threshold */ - int retrieved_hits = 0; - int total_relevant = 0; - if (cond == CV_VOC_CCOND_RECALL) - { - vector ground_truth; - /* in order to calculate the total number of relevant images for normalization of recall - it's necessary to extract the ground truth for the images under consideration */ - getClassifierGroundTruth(obj_class, images, ground_truth); - total_relevant = (int)std::count_if(ground_truth.begin(),ground_truth.end(),std::bind2nd(std::equal_to(),(char)1)); - } - - /* iterate through images */ - vector img_objects; - vector img_object_data; - int total_images = 0; - for (size_t image_idx = 0; image_idx < images.size(); ++image_idx) - { - /* if using the score as the break condition, check for it now */ - if (cond == CV_VOC_CCOND_SCORETHRESH) - { - if (scores[ranking[image_idx]] <= threshold) break; - } - /* if continuing for this iteration, increment the image counter for later normalization */ - ++total_images; - /* for each image retrieve the objects contained */ - getObjects(images[ranking[image_idx]].id, img_objects, img_object_data); - //check if the tested for object class is present - if (getClassifierGroundTruthImage(obj_class, images[ranking[image_idx]].id)) - { - //if the target class is present, assign fully to the target class element in the confusion matrix row - output_values[target_idx] += 1.0; - if (cond == CV_VOC_CCOND_RECALL) ++retrieved_hits; - } else { - //first delete all objects marked as difficult - for (size_t obj_idx = 0; obj_idx < img_objects.size(); ++obj_idx) - { - if (img_object_data[obj_idx].difficult == true) - { - vector::iterator it1 = img_objects.begin(); - std::advance(it1,obj_idx); - img_objects.erase(it1); - vector::iterator it2 = img_object_data.begin(); - std::advance(it2,obj_idx); - img_object_data.erase(it2); - --obj_idx; - } - } - //if the target class is not present, add values to the confusion matrix row in equal proportions to all objects present in the image - for (size_t obj_idx = 0; obj_idx < img_objects.size(); ++obj_idx) - { - //find the index of the currently considered object - vector::iterator class_idx_it = std::find(output_headers.begin(),output_headers.end(),img_objects[obj_idx].object_class); - //if the class name extracted from the ground truth file could not be found in the list of available classes, raise an exception - if (class_idx_it == output_headers.end()) - { - string err_msg = "could not find object class '" + img_objects[obj_idx].object_class + "' specified in the ground truth file of '" + images[ranking[image_idx]].id +"'in list of valid classes."; - CV_Error(CV_StsError,err_msg.c_str()); - } - /* convert iterator to index */ - int class_idx = (int)std::distance(output_headers.begin(),class_idx_it); - //add to confusion matrix row in proportion - output_values[class_idx] += 1.f/static_cast(img_objects.size()); - } - } - //check break conditions if breaking on certain level of recall - if (cond == CV_VOC_CCOND_RECALL) - { - if(static_cast(retrieved_hits)/static_cast(total_relevant) >= threshold) break; - } - } - /* finally, normalize confusion matrix row */ - for (vector::iterator it = output_values.begin(); it < output_values.end(); ++it) - { - (*it) /= static_cast(total_images); - } -} - -// NOTE: doesn't ignore repeated detections -void VocData::calcDetectorConfMatRow(const string& obj_class, const ObdDatasetType dataset, const vector& images, const vector >& scores, const vector >& bounding_boxes, const VocConfCond cond, const float threshold, vector& output_headers, vector& output_values, bool ignore_difficult) -{ - CV_Assert(images.size() == scores.size()); - CV_Assert(images.size() == bounding_boxes.size()); - - //collapse scores and ground_truth vectors into 1D vectors to allow ranking - /* define final flat vectors */ - vector images_flat; - vector scores_flat; - vector bounding_boxes_flat; - { - /* first count how many objects to allow preallocation */ - int obj_count = 0; - CV_Assert(scores.size() == bounding_boxes.size()); - for (size_t img_idx = 0; img_idx < scores.size(); ++img_idx) - { - CV_Assert(scores[img_idx].size() == bounding_boxes[img_idx].size()); - for (size_t obj_idx = 0; obj_idx < scores[img_idx].size(); ++obj_idx) - { - ++obj_count; - } - } - /* preallocate vectors */ - images_flat.resize(obj_count); - scores_flat.resize(obj_count); - bounding_boxes_flat.resize(obj_count); - /* now copy across to preallocated vectors */ - int flat_pos = 0; - for (size_t img_idx = 0; img_idx < scores.size(); ++img_idx) - { - for (size_t obj_idx = 0; obj_idx < scores[img_idx].size(); ++obj_idx) - { - images_flat[flat_pos] = images[img_idx].id; - scores_flat[flat_pos] = scores[img_idx][obj_idx]; - bounding_boxes_flat[flat_pos] = bounding_boxes[img_idx][obj_idx]; - ++flat_pos; - } - } - } - - // SORT RESULTS BY THEIR SCORE - /* 1. store sorting order in 'ranking' */ - vector ranking; - VocData::getSortOrder(scores_flat, ranking); - - // CALCULATE CONFUSION MATRIX ENTRIES - /* prepare object category headers */ - output_headers = m_object_classes; - output_headers.push_back("background"); - vector(output_headers.size(),0.0).swap(output_values); - - /* prepare variables related to calculating recall if using the recall threshold */ - int retrieved_hits = 0; - int total_relevant = 0; - if (cond == CV_VOC_CCOND_RECALL) - { -// vector ground_truth; -// /* in order to calculate the total number of relevant images for normalization of recall -// it's necessary to extract the ground truth for the images under consideration */ -// getClassifierGroundTruth(obj_class, images, ground_truth); -// total_relevant = std::count_if(ground_truth.begin(),ground_truth.end(),std::bind2nd(std::equal_to(),true)); - /* calculate the total number of objects in the ground truth for the current dataset */ - vector gt_images; - vector gt_object_present; - getClassImages(obj_class, dataset, gt_images, gt_object_present); - - for (size_t image_idx = 0; image_idx < gt_images.size(); ++image_idx) - { - vector gt_img_objects; - vector gt_img_object_data; - getObjects(gt_images[image_idx].id, gt_img_objects, gt_img_object_data); - for (size_t obj_idx = 0; obj_idx < gt_img_objects.size(); ++obj_idx) - { - if (gt_img_objects[obj_idx].object_class == obj_class) - { - if ((gt_img_object_data[obj_idx].difficult == false) || (ignore_difficult == false)) - ++total_relevant; - } - } - } - } - - /* iterate through objects */ - vector img_objects; - vector img_object_data; - int total_objects = 0; - for (size_t image_idx = 0; image_idx < images.size(); ++image_idx) - { - /* if using the score as the break condition, check for it now */ - if (cond == CV_VOC_CCOND_SCORETHRESH) - { - if (scores_flat[ranking[image_idx]] <= threshold) break; - } - /* increment the image counter for later normalization */ - ++total_objects; - /* for each image retrieve the objects contained */ - getObjects(images[ranking[image_idx]].id, img_objects, img_object_data); - - //find the ground truth object which has the highest overlap score with the detected object - float maxov = -1.0; - int max_gt_obj_idx = -1; - //-- for each detected object iterate through objects present in ground truth -- - for (size_t gt_obj_idx = 0; gt_obj_idx < img_objects.size(); ++gt_obj_idx) - { - //check difficulty flag - if (ignore_difficult || (img_object_data[gt_obj_idx].difficult == false)) - { - //if the class matches, then check if the detected object and ground truth object overlap by a sufficient margin - float ov = testBoundingBoxesForOverlap(bounding_boxes_flat[ranking[image_idx]], img_objects[gt_obj_idx].boundingBox); - if (ov != -1.f) - { - //if all conditions are met store the overlap score and index (as objects are assigned to the highest scoring match) - if (ov > maxov) - { - maxov = ov; - max_gt_obj_idx = (int)gt_obj_idx; - } - } - } - } - - //assign to appropriate object class if an object was detected - if (maxov != -1.0) - { - //find the index of the currently considered object - vector::iterator class_idx_it = std::find(output_headers.begin(),output_headers.end(),img_objects[max_gt_obj_idx].object_class); - //if the class name extracted from the ground truth file could not be found in the list of available classes, raise an exception - if (class_idx_it == output_headers.end()) - { - string err_msg = "could not find object class '" + img_objects[max_gt_obj_idx].object_class + "' specified in the ground truth file of '" + images[ranking[image_idx]].id +"'in list of valid classes."; - CV_Error(CV_StsError,err_msg.c_str()); - } - /* convert iterator to index */ - int class_idx = (int)std::distance(output_headers.begin(),class_idx_it); - //add to confusion matrix row in proportion - output_values[class_idx] += 1.0; - } else { - //otherwise assign to background class - output_values[output_values.size()-1] += 1.0; - } - - //check break conditions if breaking on certain level of recall - if (cond == CV_VOC_CCOND_RECALL) - { - if(static_cast(retrieved_hits)/static_cast(total_relevant) >= threshold) break; - } - } - - /* finally, normalize confusion matrix row */ - for (vector::iterator it = output_values.begin(); it < output_values.end(); ++it) - { - (*it) /= static_cast(total_objects); - } -} - -//Save Precision-Recall results to a p-r curve in GNUPlot format -//-------------------------------------------------------------- -//INPUTS: -// - output_file The file to which to save the GNUPlot data file. If only a filename is specified, the data -// file is saved to the standard VOC results directory. -// - precision Vector of precisions as returned from calcClassifier/DetectorPrecRecall -// - recall Vector of recalls as returned from calcClassifier/DetectorPrecRecall -// - ap ap as returned from calcClassifier/DetectorPrecRecall -// - (title) Title to use for the plot (if not specified, just the ap is printed as the title) -// This also specifies the filename of the output file if printing to pdf -// - (plot_type) Specifies whether to instruct GNUPlot to save to a PDF file (CV_VOC_PLOT_PDF) or directly -// to screen (CV_VOC_PLOT_SCREEN) in the datafile -//NOTES: -// The GNUPlot data file can be executed using GNUPlot from the commandline in the following way: -// >> GNUPlot -// This will then display the p-r curve on the screen or save it to a pdf file depending on plot_type - -void VocData::savePrecRecallToGnuplot(const string& output_file, const vector& precision, const vector& recall, const float ap, const string title, const VocPlotType plot_type) -{ - string output_file_std = checkFilenamePathsep(output_file); - - //if no directory is specified, by default save the output file in the results directory -// if (output_file_std.find("/") == output_file_std.npos) -// { -// output_file_std = m_results_directory + output_file_std; -// } - - std::ofstream plot_file(output_file_std.c_str()); - - if (plot_file.is_open()) - { - plot_file << "set xrange [0:1]" << endl; - plot_file << "set yrange [0:1]" << endl; - plot_file << "set size square" << endl; - string title_text = title; - if (title_text.size() == 0) title_text = "Precision-Recall Curve"; - plot_file << "set title \"" << title_text << " (ap: " << ap << ")\"" << endl; - plot_file << "set xlabel \"Recall\"" << endl; - plot_file << "set ylabel \"Precision\"" << endl; - plot_file << "set style data lines" << endl; - plot_file << "set nokey" << endl; - if (plot_type == CV_VOC_PLOT_PNG) - { - plot_file << "set terminal png" << endl; - string pdf_filename; - if (title.size() != 0) - { - pdf_filename = title; - } else { - pdf_filename = "prcurve"; - } - plot_file << "set out \"" << title << ".png\"" << endl; - } - plot_file << "plot \"-\" using 1:2" << endl; - plot_file << "# X Y" << endl; - CV_Assert(precision.size() == recall.size()); - for (size_t i = 0; i < precision.size(); ++i) - { - plot_file << " " << recall[i] << " " << precision[i] << endl; - } - plot_file << "end" << endl; - if (plot_type == CV_VOC_PLOT_SCREEN) - { - plot_file << "pause -1" << endl; - } - plot_file.close(); - } else { - string err_msg = "could not open plot file '" + output_file_std + "' for writing."; - CV_Error(CV_StsError,err_msg.c_str()); - } -} - -void VocData::readClassifierGroundTruth(const string& obj_class, const ObdDatasetType dataset, vector& images, vector& object_present) -{ - images.clear(); - - string gtFilename = m_class_imageset_path; - gtFilename.replace(gtFilename.find("%s"),2,obj_class); - if (dataset == CV_OBD_TRAIN) - { - gtFilename.replace(gtFilename.find("%s"),2,m_train_set); - } else { - gtFilename.replace(gtFilename.find("%s"),2,m_test_set); - } - - vector image_codes; - readClassifierGroundTruth(gtFilename, image_codes, object_present); - - convertImageCodesToObdImages(image_codes, images); -} - -void VocData::readClassifierResultsFile(const std:: string& input_file, vector& images, vector& scores) -{ - images.clear(); - - string input_file_std = checkFilenamePathsep(input_file); - - //if no directory is specified, by default search for the input file in the results directory -// if (input_file_std.find("/") == input_file_std.npos) -// { -// input_file_std = m_results_directory + input_file_std; -// } - - vector image_codes; - readClassifierResultsFile(input_file_std, image_codes, scores); - - convertImageCodesToObdImages(image_codes, images); -} - -void VocData::readDetectorResultsFile(const string& input_file, vector& images, vector >& scores, vector >& bounding_boxes) -{ - images.clear(); - - string input_file_std = checkFilenamePathsep(input_file); - - //if no directory is specified, by default search for the input file in the results directory -// if (input_file_std.find("/") == input_file_std.npos) -// { -// input_file_std = m_results_directory + input_file_std; -// } - - vector image_codes; - readDetectorResultsFile(input_file_std, image_codes, scores, bounding_boxes); - - convertImageCodesToObdImages(image_codes, images); -} - -const vector& VocData::getObjectClasses() -{ - return m_object_classes; -} - -//string VocData::getResultsDirectory() -//{ -// return m_results_directory; -//} - -//--------------------------------------------------------- -// Protected Functions ------------------------------------ -//--------------------------------------------------------- - -static string getVocName( const string& vocPath ) -{ - size_t found = vocPath.rfind( '/' ); - if( found == string::npos ) - { - found = vocPath.rfind( '\\' ); - if( found == string::npos ) - return vocPath; - } - return vocPath.substr(found + 1, vocPath.size() - found); -} - -void VocData::initVoc( const string& vocPath, const bool useTestDataset ) -{ - initVoc2007to2010( vocPath, useTestDataset ); -} - -//Initialize file paths and settings for the VOC 2010 dataset -//----------------------------------------------------------- -void VocData::initVoc2007to2010( const string& vocPath, const bool useTestDataset ) -{ - //check format of root directory and modify if necessary - - m_vocName = getVocName( vocPath ); - - CV_Assert( !m_vocName.compare("VOC2007") || !m_vocName.compare("VOC2008") || - !m_vocName.compare("VOC2009") || !m_vocName.compare("VOC2010") ); - - m_vocPath = checkFilenamePathsep( vocPath, true ); - - if (useTestDataset) - { - m_train_set = "trainval"; - m_test_set = "test"; - } else { - m_train_set = "train"; - m_test_set = "val"; - } - - // initialize main classification/detection challenge paths - m_annotation_path = m_vocPath + "/Annotations/%s.xml"; - m_image_path = m_vocPath + "/JPEGImages/%s.jpg"; - m_imageset_path = m_vocPath + "/ImageSets/Main/%s.txt"; - m_class_imageset_path = m_vocPath + "/ImageSets/Main/%s_%s.txt"; - - //define available object_classes for VOC2010 dataset - m_object_classes.push_back("aeroplane"); - m_object_classes.push_back("bicycle"); - m_object_classes.push_back("bird"); - m_object_classes.push_back("boat"); - m_object_classes.push_back("bottle"); - m_object_classes.push_back("bus"); - m_object_classes.push_back("car"); - m_object_classes.push_back("cat"); - m_object_classes.push_back("chair"); - m_object_classes.push_back("cow"); - m_object_classes.push_back("diningtable"); - m_object_classes.push_back("dog"); - m_object_classes.push_back("horse"); - m_object_classes.push_back("motorbike"); - m_object_classes.push_back("person"); - m_object_classes.push_back("pottedplant"); - m_object_classes.push_back("sheep"); - m_object_classes.push_back("sofa"); - m_object_classes.push_back("train"); - m_object_classes.push_back("tvmonitor"); - - m_min_overlap = 0.5; - - //up until VOC 2010, ap was calculated by sampling p-r curve, not taking complete curve - m_sampled_ap = ((m_vocName == "VOC2007") || (m_vocName == "VOC2008") || (m_vocName == "VOC2009")); -} - -//Read a VOC classification ground truth text file for a given object class and dataset -//------------------------------------------------------------------------------------- -//INPUTS: -// - filename The path of the text file to read -//OUTPUTS: -// - image_codes VOC image codes extracted from the GT file in the form 20XX_XXXXXX where the first four -// digits specify the year of the dataset, and the last group specifies a unique ID -// - object_present For each image in the 'image_codes' array, specifies whether the object class described -// in the loaded GT file is present or not -void VocData::readClassifierGroundTruth(const string& filename, vector& image_codes, vector& object_present) -{ - image_codes.clear(); - object_present.clear(); - - std::ifstream gtfile(filename.c_str()); - if (!gtfile.is_open()) - { - string err_msg = "could not open VOC ground truth textfile '" + filename + "'."; - CV_Error(CV_StsError,err_msg.c_str()); - } - - string line; - string image; - int obj_present = 0; - while (!gtfile.eof()) - { - std::getline(gtfile,line); - std::istringstream iss(line); - iss >> image >> obj_present; - if (!iss.fail()) - { - image_codes.push_back(image); - object_present.push_back(obj_present == 1); - } else { - if (!gtfile.eof()) CV_Error(CV_StsParseError,"error parsing VOC ground truth textfile."); - } - } - gtfile.close(); -} - -void VocData::readClassifierResultsFile(const string& input_file, vector& image_codes, vector& scores) -{ - //check if results file exists - std::ifstream result_file(input_file.c_str()); - if (result_file.is_open()) - { - string line; - string image; - float score; - //read in the results file - while (!result_file.eof()) - { - std::getline(result_file,line); - std::istringstream iss(line); - iss >> image >> score; - if (!iss.fail()) - { - image_codes.push_back(image); - scores.push_back(score); - } else { - if(!result_file.eof()) CV_Error(CV_StsParseError,"error parsing VOC classifier results file."); - } - } - result_file.close(); - } else { - string err_msg = "could not open classifier results file '" + input_file + "' for reading."; - CV_Error(CV_StsError,err_msg.c_str()); - } -} - -void VocData::readDetectorResultsFile(const string& input_file, vector& image_codes, vector >& scores, vector >& bounding_boxes) -{ - image_codes.clear(); - scores.clear(); - bounding_boxes.clear(); - - //check if results file exists - std::ifstream result_file(input_file.c_str()); - if (result_file.is_open()) - { - string line; - string image; - Rect bounding_box; - float score; - //read in the results file - while (!result_file.eof()) - { - std::getline(result_file,line); - std::istringstream iss(line); - iss >> image >> score >> bounding_box.x >> bounding_box.y >> bounding_box.width >> bounding_box.height; - if (!iss.fail()) - { - //convert right and bottom positions to width and height - bounding_box.width -= bounding_box.x; - bounding_box.height -= bounding_box.y; - //convert to 0-indexing - bounding_box.x -= 1; - bounding_box.y -= 1; - //store in output vectors - /* first check if the current image code has been seen before */ - vector::iterator image_codes_it = std::find(image_codes.begin(),image_codes.end(),image); - if (image_codes_it == image_codes.end()) - { - image_codes.push_back(image); - vector score_vect(1); - score_vect[0] = score; - scores.push_back(score_vect); - vector bounding_box_vect(1); - bounding_box_vect[0] = bounding_box; - bounding_boxes.push_back(bounding_box_vect); - } else { - /* if the image index has been seen before, add the current object below it in the 2D arrays */ - int image_idx = (int)std::distance(image_codes.begin(),image_codes_it); - scores[image_idx].push_back(score); - bounding_boxes[image_idx].push_back(bounding_box); - } - } else { - if(!result_file.eof()) CV_Error(CV_StsParseError,"error parsing VOC detector results file."); - } - } - result_file.close(); - } else { - string err_msg = "could not open detector results file '" + input_file + "' for reading."; - CV_Error(CV_StsError,err_msg.c_str()); - } -} - - -//Read a VOC annotation xml file for a given image -//------------------------------------------------ -//INPUTS: -// - filename The path of the xml file to read -//OUTPUTS: -// - objects Array of VocObject describing all object instances present in the given image -void VocData::extractVocObjects(const string filename, vector& objects, vector& object_data) -{ -#ifdef PR_DEBUG - int block = 1; - cout << "SAMPLE VOC OBJECT EXTRACTION for " << filename << ":" << endl; -#endif - objects.clear(); - object_data.clear(); - - string contents, object_contents, tag_contents; - - readFileToString(filename, contents); - - //keep on extracting 'object' blocks until no more can be found - if (extractXMLBlock(contents, "annotation", 0, contents) != -1) - { - int searchpos = 0; - searchpos = extractXMLBlock(contents, "object", searchpos, object_contents); - while (searchpos != -1) - { -#ifdef PR_DEBUG - cout << "SEARCHPOS:" << searchpos << endl; - cout << "start block " << block << " ---------" << endl; - cout << object_contents << endl; - cout << "end block " << block << " -----------" << endl; - ++block; -#endif - - ObdObject object; - VocObjectData object_d; - - //object class ------------- - - if (extractXMLBlock(object_contents, "name", 0, tag_contents) == -1) CV_Error(CV_StsError,"missing tag in object definition of '" + filename + "'"); - object.object_class.swap(tag_contents); - - //object bounding box ------------- - - int xmax, xmin, ymax, ymin; - - if (extractXMLBlock(object_contents, "xmax", 0, tag_contents) == -1) CV_Error(CV_StsError,"missing tag in object definition of '" + filename + "'"); - xmax = stringToInteger(tag_contents); - - if (extractXMLBlock(object_contents, "xmin", 0, tag_contents) == -1) CV_Error(CV_StsError,"missing tag in object definition of '" + filename + "'"); - xmin = stringToInteger(tag_contents); - - if (extractXMLBlock(object_contents, "ymax", 0, tag_contents) == -1) CV_Error(CV_StsError,"missing tag in object definition of '" + filename + "'"); - ymax = stringToInteger(tag_contents); - - if (extractXMLBlock(object_contents, "ymin", 0, tag_contents) == -1) CV_Error(CV_StsError,"missing tag in object definition of '" + filename + "'"); - ymin = stringToInteger(tag_contents); - - object.boundingBox.x = xmin-1; //convert to 0-based indexing - object.boundingBox.width = xmax - xmin; - object.boundingBox.y = ymin-1; - object.boundingBox.height = ymax - ymin; - - CV_Assert(xmin != 0); - CV_Assert(xmax > xmin); - CV_Assert(ymin != 0); - CV_Assert(ymax > ymin); - - - //object tags ------------- - - if (extractXMLBlock(object_contents, "difficult", 0, tag_contents) != -1) - { - object_d.difficult = (tag_contents == "1"); - } else object_d.difficult = false; - if (extractXMLBlock(object_contents, "occluded", 0, tag_contents) != -1) - { - object_d.occluded = (tag_contents == "1"); - } else object_d.occluded = false; - if (extractXMLBlock(object_contents, "truncated", 0, tag_contents) != -1) - { - object_d.truncated = (tag_contents == "1"); - } else object_d.truncated = false; - if (extractXMLBlock(object_contents, "pose", 0, tag_contents) != -1) - { - if (tag_contents == "Frontal") object_d.pose = CV_VOC_POSE_FRONTAL; - if (tag_contents == "Rear") object_d.pose = CV_VOC_POSE_REAR; - if (tag_contents == "Left") object_d.pose = CV_VOC_POSE_LEFT; - if (tag_contents == "Right") object_d.pose = CV_VOC_POSE_RIGHT; - } - - //add to array of objects - objects.push_back(object); - object_data.push_back(object_d); - - //extract next 'object' block from file if it exists - searchpos = extractXMLBlock(contents, "object", searchpos, object_contents); - } - } -} - -//Converts an image identifier string in the format YYYY_XXXXXX to a single index integer of form XXXXXXYYYY -//where Y represents a year and returns the image path -//---------------------------------------------------------------------------------------------------------- -string VocData::getImagePath(const string& input_str) -{ - string path = m_image_path; - path.replace(path.find("%s"),2,input_str); - return path; -} - -//Tests two boundary boxes for overlap (using the intersection over union metric) and returns the overlap if the objects -//defined by the two bounding boxes are considered to be matched according to the criterion outlined in -//the VOC documentation [namely intersection/union > some threshold] otherwise returns -1.0 (no match) -//---------------------------------------------------------------------------------------------------------- -float VocData::testBoundingBoxesForOverlap(const Rect detection, const Rect ground_truth) -{ - int detection_x2 = detection.x + detection.width; - int detection_y2 = detection.y + detection.height; - int ground_truth_x2 = ground_truth.x + ground_truth.width; - int ground_truth_y2 = ground_truth.y + ground_truth.height; - //first calculate the boundaries of the intersection of the rectangles - int intersection_x = std::max(detection.x, ground_truth.x); //rightmost left - int intersection_y = std::max(detection.y, ground_truth.y); //bottommost top - int intersection_x2 = std::min(detection_x2, ground_truth_x2); //leftmost right - int intersection_y2 = std::min(detection_y2, ground_truth_y2); //topmost bottom - //then calculate the width and height of the intersection rect - int intersection_width = intersection_x2 - intersection_x + 1; - int intersection_height = intersection_y2 - intersection_y + 1; - //if there is no overlap then return false straight away - if ((intersection_width <= 0) || (intersection_height <= 0)) return -1.0; - //otherwise calculate the intersection - int intersection_area = intersection_width*intersection_height; - - //now calculate the union - int union_area = (detection.width+1)*(detection.height+1) + (ground_truth.width+1)*(ground_truth.height+1) - intersection_area; - - //calculate the intersection over union and use as threshold as per VOC documentation - float overlap = static_cast(intersection_area)/static_cast(union_area); - if (overlap > m_min_overlap) - { - return overlap; - } else { - return -1.0; - } -} - -//Extracts the object class and dataset from the filename of a VOC standard results text file, which takes -//the format 'comp_{cls/det}__.txt' -//---------------------------------------------------------------------------------------------------------- -void VocData::extractDataFromResultsFilename(const string& input_file, string& class_name, string& dataset_name) -{ - string input_file_std = checkFilenamePathsep(input_file); - - size_t fnamestart = input_file_std.rfind("/"); - size_t fnameend = input_file_std.rfind(".txt"); - - if ((fnamestart == input_file_std.npos) || (fnameend == input_file_std.npos)) - CV_Error(CV_StsError,"Could not extract filename of results file."); - - ++fnamestart; - if (fnamestart >= fnameend) - CV_Error(CV_StsError,"Could not extract filename of results file."); - - //extract dataset and class names, triggering exception if the filename format is not correct - string filename = input_file_std.substr(fnamestart, fnameend-fnamestart); - size_t datasetstart = filename.find("_"); - datasetstart = filename.find("_",datasetstart+1); - size_t classstart = filename.find("_",datasetstart+1); - //allow for appended index after a further '_' by discarding this part if it exists - size_t classend = filename.find("_",classstart+1); - if (classend == filename.npos) classend = filename.size(); - if ((datasetstart == filename.npos) || (classstart == filename.npos)) - CV_Error(CV_StsError,"Error parsing results filename. Is it in standard format of 'comp_{cls/det}__.txt'?"); - ++datasetstart; - ++classstart; - if (((datasetstart-classstart) < 1) || ((classend-datasetstart) < 1)) - CV_Error(CV_StsError,"Error parsing results filename. Is it in standard format of 'comp_{cls/det}__.txt'?"); - - dataset_name = filename.substr(datasetstart,classstart-datasetstart-1); - class_name = filename.substr(classstart,classend-classstart); -} - -bool VocData::getClassifierGroundTruthImage(const string& obj_class, const string& id) -{ - /* if the classifier ground truth data for all images of the current class has not been loaded yet, load it now */ - if (m_classifier_gt_all_ids.empty() || (m_classifier_gt_class != obj_class)) - { - m_classifier_gt_all_ids.clear(); - m_classifier_gt_all_present.clear(); - m_classifier_gt_class = obj_class; - for (int i=0; i<2; ++i) //run twice (once over test set and once over training set) - { - //generate the filename of the classification ground-truth textfile for the object class - string gtFilename = m_class_imageset_path; - gtFilename.replace(gtFilename.find("%s"),2,obj_class); - if (i == 0) - { - gtFilename.replace(gtFilename.find("%s"),2,m_train_set); - } else { - gtFilename.replace(gtFilename.find("%s"),2,m_test_set); - } - - //parse the ground truth file, storing in two separate vectors - //for the image code and the ground truth value - vector image_codes; - vector object_present; - readClassifierGroundTruth(gtFilename, image_codes, object_present); - - m_classifier_gt_all_ids.insert(m_classifier_gt_all_ids.end(),image_codes.begin(),image_codes.end()); - m_classifier_gt_all_present.insert(m_classifier_gt_all_present.end(),object_present.begin(),object_present.end()); - - CV_Assert(m_classifier_gt_all_ids.size() == m_classifier_gt_all_present.size()); - } - } - - - //search for the image code - vector::iterator it = find (m_classifier_gt_all_ids.begin(), m_classifier_gt_all_ids.end(), id); - if (it != m_classifier_gt_all_ids.end()) - { - //image found, so return corresponding ground truth - return m_classifier_gt_all_present[std::distance(m_classifier_gt_all_ids.begin(),it)] != 0; - } else { - string err_msg = "could not find classifier ground truth for image '" + id + "' and class '" + obj_class + "'"; - CV_Error(CV_StsError,err_msg.c_str()); - } - - return true; -} - -//------------------------------------------------------------------- -// Protected Functions (utility) ------------------------------------ -//------------------------------------------------------------------- - -//returns a vector containing indexes of the input vector in sorted ascending/descending order -void VocData::getSortOrder(const vector& values, vector& order, bool descending) -{ - /* 1. store sorting order in 'order_pair' */ - vector::const_iterator> > order_pair(values.size()); - - size_t n = 0; - for (vector::const_iterator it = values.begin(); it != values.end(); ++it, ++n) - order_pair[n] = make_pair(n, it); - - std::sort(order_pair.begin(),order_pair.end(),orderingSorter()); - if (descending == false) std::reverse(order_pair.begin(),order_pair.end()); - - vector(order_pair.size()).swap(order); - for (size_t i = 0; i < order_pair.size(); ++i) - { - order[i] = order_pair[i].first; - } -} - -void VocData::readFileToString(const string filename, string& file_contents) -{ - std::ifstream ifs(filename.c_str()); - if (!ifs.is_open()) CV_Error(CV_StsError,"could not open text file"); - - stringstream oss; - oss << ifs.rdbuf(); - - file_contents = oss.str(); -} - -int VocData::stringToInteger(const string input_str) -{ - int result = 0; - - stringstream ss(input_str); - if ((ss >> result).fail()) - { - CV_Error(CV_StsBadArg,"could not perform string to integer conversion"); - } - return result; -} - -string VocData::integerToString(const int input_int) -{ - string result; - - stringstream ss; - if ((ss << input_int).fail()) - { - CV_Error(CV_StsBadArg,"could not perform integer to string conversion"); - } - result = ss.str(); - return result; -} - -string VocData::checkFilenamePathsep( const string filename, bool add_trailing_slash ) -{ - string filename_new = filename; - - size_t pos = filename_new.find("\\\\"); - while (pos != filename_new.npos) - { - filename_new.replace(pos,2,"/"); - pos = filename_new.find("\\\\", pos); - } - pos = filename_new.find("\\"); - while (pos != filename_new.npos) - { - filename_new.replace(pos,1,"/"); - pos = filename_new.find("\\", pos); - } - if (add_trailing_slash) - { - //add training slash if this is missing - if (filename_new.rfind("/") != filename_new.length()-1) filename_new += "/"; - } - - return filename_new; -} - -void VocData::convertImageCodesToObdImages(const vector& image_codes, vector& images) -{ - images.clear(); - images.reserve(image_codes.size()); - - string path; - //transfer to output arrays - for (size_t i = 0; i < image_codes.size(); ++i) - { - //generate image path and indices from extracted string code - path = getImagePath(image_codes[i]); - images.push_back(ObdImage(image_codes[i], path)); - } -} - -//Extract text from within a given tag from an XML file -//----------------------------------------------------- -//INPUTS: -// - src XML source file -// - tag XML tag delimiting block to extract -// - searchpos position within src at which to start search -//OUTPUTS: -// - tag_contents text extracted between and tags -//RETURN VALUE: -// - the position of the final character extracted in tag_contents within src -// (can be used to call extractXMLBlock recursively to extract multiple blocks) -// returns -1 if the tag could not be found -int VocData::extractXMLBlock(const string src, const string tag, const int searchpos, string& tag_contents) -{ - size_t startpos, next_startpos, endpos; - int embed_count = 1; - - //find position of opening tag - startpos = src.find("<" + tag + ">", searchpos); - if (startpos == string::npos) return -1; - - //initialize endpos - - // start searching for end tag anywhere after opening tag - endpos = startpos; - - //find position of next opening tag - next_startpos = src.find("<" + tag + ">", startpos+1); - - //match opening tags with closing tags, and only - //accept final closing tag of same level as original - //opening tag - while (embed_count > 0) - { - endpos = src.find("", endpos+1); - if (endpos == string::npos) return -1; - - //the next code is only executed if there are embedded tags with the same name - if (next_startpos != string::npos) - { - while (next_startpos", next_startpos+1); - if (next_startpos == string::npos) break; - } - } - //passing end tag so decrement nesting level - --embed_count; - } - - //finally, extract the tag region - startpos += tag.length() + 2; - if (startpos > src.length()) return -1; - if (endpos > src.length()) return -1; - tag_contents = src.substr(startpos,endpos-startpos); - return static_cast(endpos); -} - -/****************************************************************************************\ -* Sample on image classification * -\****************************************************************************************/ -// -// This part of the code was a little refactor -// -struct DDMParams -{ - DDMParams() : detectorType("SURF"), descriptorType("SURF"), matcherType("BruteForce") {} - DDMParams( const string _detectorType, const string _descriptorType, const string& _matcherType ) : - detectorType(_detectorType), descriptorType(_descriptorType), matcherType(_matcherType){} - void read( const FileNode& fn ) - { - fn["detectorType"] >> detectorType; - fn["descriptorType"] >> descriptorType; - fn["matcherType"] >> matcherType; - } - void write( FileStorage& fs ) const - { - fs << "detectorType" << detectorType; - fs << "descriptorType" << descriptorType; - fs << "matcherType" << matcherType; - } - void print() const - { - cout << "detectorType: " << detectorType << endl; - cout << "descriptorType: " << descriptorType << endl; - cout << "matcherType: " << matcherType << endl; - } - - string detectorType; - string descriptorType; - string matcherType; -}; - -struct VocabTrainParams -{ - VocabTrainParams() : trainObjClass("chair"), vocabSize(1000), memoryUse(200), descProportion(0.3f) {} - VocabTrainParams( const string _trainObjClass, size_t _vocabSize, size_t _memoryUse, float _descProportion ) : - trainObjClass(_trainObjClass), vocabSize((int)_vocabSize), memoryUse((int)_memoryUse), descProportion(_descProportion) {} - void read( const FileNode& fn ) - { - fn["trainObjClass"] >> trainObjClass; - fn["vocabSize"] >> vocabSize; - fn["memoryUse"] >> memoryUse; - fn["descProportion"] >> descProportion; - } - void write( FileStorage& fs ) const - { - fs << "trainObjClass" << trainObjClass; - fs << "vocabSize" << vocabSize; - fs << "memoryUse" << memoryUse; - fs << "descProportion" << descProportion; - } - void print() const - { - cout << "trainObjClass: " << trainObjClass << endl; - cout << "vocabSize: " << vocabSize << endl; - cout << "memoryUse: " << memoryUse << endl; - cout << "descProportion: " << descProportion << endl; - } - - - string trainObjClass; // Object class used for training visual vocabulary. - // It shouldn't matter which object class is specified here - visual vocab will still be the same. - int vocabSize; //number of visual words in vocabulary to train - int memoryUse; // Memory to preallocate (in MB) when training vocab. - // Change this depending on the size of the dataset/available memory. - float descProportion; // Specifies the number of descriptors to use from each image as a proportion of the total num descs. -}; - -struct SVMTrainParamsExt -{ - SVMTrainParamsExt() : descPercent(0.5f), targetRatio(0.4f), balanceClasses(true) {} - SVMTrainParamsExt( float _descPercent, float _targetRatio, bool _balanceClasses ) : - descPercent(_descPercent), targetRatio(_targetRatio), balanceClasses(_balanceClasses) {} - void read( const FileNode& fn ) - { - fn["descPercent"] >> descPercent; - fn["targetRatio"] >> targetRatio; - fn["balanceClasses"] >> balanceClasses; - } - void write( FileStorage& fs ) const - { - fs << "descPercent" << descPercent; - fs << "targetRatio" << targetRatio; - fs << "balanceClasses" << balanceClasses; - } - void print() const - { - cout << "descPercent: " << descPercent << endl; - cout << "targetRatio: " << targetRatio << endl; - cout << "balanceClasses: " << balanceClasses << endl; - } - - float descPercent; // Percentage of extracted descriptors to use for training. - float targetRatio; // Try to get this ratio of positive to negative samples (minimum). - bool balanceClasses; // Balance class weights by number of samples in each (if true cSvmTrainTargetRatio is ignored). -}; - -static void readUsedParams( const FileNode& fn, string& vocName, DDMParams& ddmParams, VocabTrainParams& vocabTrainParams, SVMTrainParamsExt& svmTrainParamsExt ) -{ - fn["vocName"] >> vocName; - - FileNode currFn = fn; - - currFn = fn["ddmParams"]; - ddmParams.read( currFn ); - - currFn = fn["vocabTrainParams"]; - vocabTrainParams.read( currFn ); - - currFn = fn["svmTrainParamsExt"]; - svmTrainParamsExt.read( currFn ); -} - -static void writeUsedParams( FileStorage& fs, const string& vocName, const DDMParams& ddmParams, const VocabTrainParams& vocabTrainParams, const SVMTrainParamsExt& svmTrainParamsExt ) -{ - fs << "vocName" << vocName; - - fs << "ddmParams" << "{"; - ddmParams.write(fs); - fs << "}"; - - fs << "vocabTrainParams" << "{"; - vocabTrainParams.write(fs); - fs << "}"; - - fs << "svmTrainParamsExt" << "{"; - svmTrainParamsExt.write(fs); - fs << "}"; -} - -static void printUsedParams( const string& vocPath, const string& resDir, - const DDMParams& ddmParams, const VocabTrainParams& vocabTrainParams, - const SVMTrainParamsExt& svmTrainParamsExt ) -{ - cout << "CURRENT CONFIGURATION" << endl; - cout << "----------------------------------------------------------------" << endl; - cout << "vocPath: " << vocPath << endl; - cout << "resDir: " << resDir << endl; - cout << endl; ddmParams.print(); - cout << endl; vocabTrainParams.print(); - cout << endl; svmTrainParamsExt.print(); - cout << "----------------------------------------------------------------" << endl << endl; -} - -static bool readVocabulary( const string& filename, Mat& vocabulary ) -{ - cout << "Reading vocabulary..."; - FileStorage fs( filename, FileStorage::READ ); - if( fs.isOpened() ) - { - fs["vocabulary"] >> vocabulary; - cout << "done" << endl; - return true; - } - return false; -} - -static bool writeVocabulary( const string& filename, const Mat& vocabulary ) -{ - cout << "Saving vocabulary..." << endl; - FileStorage fs( filename, FileStorage::WRITE ); - if( fs.isOpened() ) - { - fs << "vocabulary" << vocabulary; - return true; - } - return false; -} - -static Mat trainVocabulary( const string& filename, VocData& vocData, const VocabTrainParams& trainParams, - const Ptr& fdetector, const Ptr& dextractor ) -{ - Mat vocabulary; - if( !readVocabulary( filename, vocabulary) ) - { - CV_Assert( dextractor->descriptorType() == CV_32FC1 ); - const int elemSize = CV_ELEM_SIZE(dextractor->descriptorType()); - const int descByteSize = dextractor->descriptorSize() * elemSize; - const int bytesInMB = 1048576; - const int maxDescCount = (trainParams.memoryUse * bytesInMB) / descByteSize; // Total number of descs to use for training. - - cout << "Extracting VOC data..." << endl; - vector images; - vector objectPresent; - vocData.getClassImages( trainParams.trainObjClass, CV_OBD_TRAIN, images, objectPresent ); - - cout << "Computing descriptors..." << endl; - RNG& rng = theRNG(); - TermCriteria terminate_criterion; - terminate_criterion.epsilon = FLT_EPSILON; - BOWKMeansTrainer bowTrainer( trainParams.vocabSize, terminate_criterion, 3, KMEANS_PP_CENTERS ); - - while( images.size() > 0 ) - { - if( bowTrainer.descripotorsCount() > maxDescCount ) - { -#ifdef DEBUG_DESC_PROGRESS - cout << "Breaking due to full memory ( descriptors count = " << bowTrainer.descripotorsCount() - << "; descriptor size in bytes = " << descByteSize << "; all used memory = " - << bowTrainer.descripotorsCount()*descByteSize << endl; -#endif - break; - } - - // Randomly pick an image from the dataset which hasn't yet been seen - // and compute the descriptors from that image. - int randImgIdx = rng( (unsigned)images.size() ); - Mat colorImage = imread( images[randImgIdx].path ); - vector imageKeypoints; - fdetector->detect( colorImage, imageKeypoints ); - Mat imageDescriptors; - dextractor->compute( colorImage, imageKeypoints, imageDescriptors ); - - //check that there were descriptors calculated for the current image - if( !imageDescriptors.empty() ) - { - int descCount = imageDescriptors.rows; - // Extract trainParams.descProportion descriptors from the image, breaking if the 'allDescriptors' matrix becomes full - int descsToExtract = static_cast(trainParams.descProportion * static_cast(descCount)); - // Fill mask of used descriptors - vector usedMask( descCount, false ); - fill( usedMask.begin(), usedMask.begin() + descsToExtract, true ); - for( int i = 0; i < descCount; i++ ) - { - int i1 = rng(descCount), i2 = rng(descCount); - char tmp = usedMask[i1]; usedMask[i1] = usedMask[i2]; usedMask[i2] = tmp; - } - - for( int i = 0; i < descCount; i++ ) - { - if( usedMask[i] && bowTrainer.descripotorsCount() < maxDescCount ) - bowTrainer.add( imageDescriptors.row(i) ); - } - } - -#ifdef DEBUG_DESC_PROGRESS - cout << images.size() << " images left, " << images[randImgIdx].id << " processed - " - <(bowTrainer.descripotorsCount())/static_cast(maxDescCount))*100.0) - << " % memory used" << ( imageDescriptors.empty() ? " -> no descriptors extracted, skipping" : "") << endl; -#endif - - // Delete the current element from images so it is not added again - images.erase( images.begin() + randImgIdx ); - } - - cout << "Maximum allowed descriptor count: " << maxDescCount << ", Actual descriptor count: " << bowTrainer.descripotorsCount() << endl; - - cout << "Training vocabulary..." << endl; - vocabulary = bowTrainer.cluster(); - - if( !writeVocabulary(filename, vocabulary) ) - { - cout << "Error: file " << filename << " can not be opened to write" << endl; - exit(-1); - } - } - return vocabulary; -} - -static bool readBowImageDescriptor( const string& file, Mat& bowImageDescriptor ) -{ - FileStorage fs( file, FileStorage::READ ); - if( fs.isOpened() ) - { - fs["imageDescriptor"] >> bowImageDescriptor; - return true; - } - return false; -} - -static bool writeBowImageDescriptor( const string& file, const Mat& bowImageDescriptor ) -{ - FileStorage fs( file, FileStorage::WRITE ); - if( fs.isOpened() ) - { - fs << "imageDescriptor" << bowImageDescriptor; - return true; - } - return false; -} - -// Load in the bag of words vectors for a set of images, from file if possible -static void calculateImageDescriptors( const vector& images, vector& imageDescriptors, - Ptr& bowExtractor, const Ptr& fdetector, - const string& resPath ) -{ - CV_Assert( !bowExtractor->getVocabulary().empty() ); - imageDescriptors.resize( images.size() ); - - for( size_t i = 0; i < images.size(); i++ ) - { - string filename = resPath + bowImageDescriptorsDir + "/" + images[i].id + ".xml.gz"; - if( readBowImageDescriptor( filename, imageDescriptors[i] ) ) - { -#ifdef DEBUG_DESC_PROGRESS - cout << "Loaded bag of word vector for image " << i+1 << " of " << images.size() << " (" << images[i].id << ")" << endl; -#endif - } - else - { - Mat colorImage = imread( images[i].path ); -#ifdef DEBUG_DESC_PROGRESS - cout << "Computing descriptors for image " << i+1 << " of " << images.size() << " (" << images[i].id << ")" << flush; -#endif - vector keypoints; - fdetector->detect( colorImage, keypoints ); -#ifdef DEBUG_DESC_PROGRESS - cout << " + generating BoW vector" << std::flush; -#endif - bowExtractor->compute( colorImage, keypoints, imageDescriptors[i] ); -#ifdef DEBUG_DESC_PROGRESS - cout << " ...DONE " << static_cast(static_cast(i+1)/static_cast(images.size())*100.0) - << " % complete" << endl; -#endif - if( !imageDescriptors[i].empty() ) - { - if( !writeBowImageDescriptor( filename, imageDescriptors[i] ) ) - { - cout << "Error: file " << filename << "can not be opened to write bow image descriptor" << endl; - exit(-1); - } - } - } - } -} - -static void removeEmptyBowImageDescriptors( vector& images, vector& bowImageDescriptors, - vector& objectPresent ) -{ - CV_Assert( !images.empty() ); - for( int i = (int)images.size() - 1; i >= 0; i-- ) - { - bool res = bowImageDescriptors[i].empty(); - if( res ) - { - cout << "Removing image " << images[i].id << " due to no descriptors..." << endl; - images.erase( images.begin() + i ); - bowImageDescriptors.erase( bowImageDescriptors.begin() + i ); - objectPresent.erase( objectPresent.begin() + i ); - } - } -} - -static void removeBowImageDescriptorsByCount( vector& images, vector bowImageDescriptors, vector objectPresent, - const SVMTrainParamsExt& svmParamsExt, int descsToDelete ) -{ - RNG& rng = theRNG(); - int pos_ex = (int)std::count( objectPresent.begin(), objectPresent.end(), (char)1 ); - int neg_ex = (int)std::count( objectPresent.begin(), objectPresent.end(), (char)0 ); - - while( descsToDelete != 0 ) - { - int randIdx = rng((unsigned)images.size()); - - // Prefer positive training examples according to svmParamsExt.targetRatio if required - if( objectPresent[randIdx] ) - { - if( (static_cast(pos_ex)/static_cast(neg_ex+pos_ex) < svmParamsExt.targetRatio) && - (neg_ex > 0) && (svmParamsExt.balanceClasses == false) ) - { continue; } - else - { pos_ex--; } - } - else - { neg_ex--; } - - images.erase( images.begin() + randIdx ); - bowImageDescriptors.erase( bowImageDescriptors.begin() + randIdx ); - objectPresent.erase( objectPresent.begin() + randIdx ); - - descsToDelete--; - } - CV_Assert( bowImageDescriptors.size() == objectPresent.size() ); -} - -static void setSVMParams( CvSVMParams& svmParams, CvMat& class_wts_cv, const Mat& responses, bool balanceClasses ) -{ - int pos_ex = countNonZero(responses == 1); - int neg_ex = countNonZero(responses == -1); - cout << pos_ex << " positive training samples; " << neg_ex << " negative training samples" << endl; - - svmParams.svm_type = CvSVM::C_SVC; - svmParams.kernel_type = CvSVM::RBF; - if( balanceClasses ) - { - Mat class_wts( 2, 1, CV_32FC1 ); - // The first training sample determines the '+1' class internally, even if it is negative, - // so store whether this is the case so that the class weights can be reversed accordingly. - bool reversed_classes = (responses.at(0) < 0.f); - if( reversed_classes == false ) - { - class_wts.at(0) = static_cast(pos_ex)/static_cast(pos_ex+neg_ex); // weighting for costs of positive class + 1 (i.e. cost of false positive - larger gives greater cost) - class_wts.at(1) = static_cast(neg_ex)/static_cast(pos_ex+neg_ex); // weighting for costs of negative class - 1 (i.e. cost of false negative) - } - else - { - class_wts.at(0) = static_cast(neg_ex)/static_cast(pos_ex+neg_ex); - class_wts.at(1) = static_cast(pos_ex)/static_cast(pos_ex+neg_ex); - } - class_wts_cv = class_wts; - svmParams.class_weights = &class_wts_cv; - } -} - -static void setSVMTrainAutoParams( CvParamGrid& c_grid, CvParamGrid& gamma_grid, - CvParamGrid& p_grid, CvParamGrid& nu_grid, - CvParamGrid& coef_grid, CvParamGrid& degree_grid ) -{ - c_grid = CvSVM::get_default_grid(CvSVM::C); - - gamma_grid = CvSVM::get_default_grid(CvSVM::GAMMA); - - p_grid = CvSVM::get_default_grid(CvSVM::P); - p_grid.step = 0; - - nu_grid = CvSVM::get_default_grid(CvSVM::NU); - nu_grid.step = 0; - - coef_grid = CvSVM::get_default_grid(CvSVM::COEF); - coef_grid.step = 0; - - degree_grid = CvSVM::get_default_grid(CvSVM::DEGREE); - degree_grid.step = 0; -} - -static void trainSVMClassifier( CvSVM& svm, const SVMTrainParamsExt& svmParamsExt, const string& objClassName, VocData& vocData, - Ptr& bowExtractor, const Ptr& fdetector, - const string& resPath ) -{ - /* first check if a previously trained svm for the current class has been saved to file */ - string svmFilename = resPath + svmsDir + "/" + objClassName + ".xml.gz"; - - FileStorage fs( svmFilename, FileStorage::READ); - if( fs.isOpened() ) - { - cout << "*** LOADING SVM CLASSIFIER FOR CLASS " << objClassName << " ***" << endl; - svm.load( svmFilename.c_str() ); - } - else - { - cout << "*** TRAINING CLASSIFIER FOR CLASS " << objClassName << " ***" << endl; - cout << "CALCULATING BOW VECTORS FOR TRAINING SET OF " << objClassName << "..." << endl; - - // Get classification ground truth for images in the training set - vector images; - vector bowImageDescriptors; - vector objectPresent; - vocData.getClassImages( objClassName, CV_OBD_TRAIN, images, objectPresent ); - - // Compute the bag of words vector for each image in the training set. - calculateImageDescriptors( images, bowImageDescriptors, bowExtractor, fdetector, resPath ); - - // Remove any images for which descriptors could not be calculated - removeEmptyBowImageDescriptors( images, bowImageDescriptors, objectPresent ); - - CV_Assert( svmParamsExt.descPercent > 0.f && svmParamsExt.descPercent <= 1.f ); - if( svmParamsExt.descPercent < 1.f ) - { - int descsToDelete = static_cast(static_cast(images.size())*(1.0-svmParamsExt.descPercent)); - - cout << "Using " << (images.size() - descsToDelete) << " of " << images.size() << - " descriptors for training (" << svmParamsExt.descPercent*100.0 << " %)" << endl; - removeBowImageDescriptorsByCount( images, bowImageDescriptors, objectPresent, svmParamsExt, descsToDelete ); - } - - // Prepare the input matrices for SVM training. - Mat trainData( (int)images.size(), bowExtractor->getVocabulary().rows, CV_32FC1 ); - Mat responses( (int)images.size(), 1, CV_32SC1 ); - - // Transfer bag of words vectors and responses across to the training data matrices - for( size_t imageIdx = 0; imageIdx < images.size(); imageIdx++ ) - { - // Transfer image descriptor (bag of words vector) to training data matrix - Mat submat = trainData.row((int)imageIdx); - if( bowImageDescriptors[imageIdx].cols != bowExtractor->descriptorSize() ) - { - cout << "Error: computed bow image descriptor size " << bowImageDescriptors[imageIdx].cols - << " differs from vocabulary size" << bowExtractor->getVocabulary().cols << endl; - exit(-1); - } - bowImageDescriptors[imageIdx].copyTo( submat ); - - // Set response value - responses.at((int)imageIdx) = objectPresent[imageIdx] ? 1 : -1; - } - - cout << "TRAINING SVM FOR CLASS ..." << objClassName << "..." << endl; - CvSVMParams svmParams; - CvMat class_wts_cv; - setSVMParams( svmParams, class_wts_cv, responses, svmParamsExt.balanceClasses ); - CvParamGrid c_grid, gamma_grid, p_grid, nu_grid, coef_grid, degree_grid; - setSVMTrainAutoParams( c_grid, gamma_grid, p_grid, nu_grid, coef_grid, degree_grid ); - svm.train_auto( trainData, responses, Mat(), Mat(), svmParams, 10, c_grid, gamma_grid, p_grid, nu_grid, coef_grid, degree_grid ); - cout << "SVM TRAINING FOR CLASS " << objClassName << " COMPLETED" << endl; - - svm.save( svmFilename.c_str() ); - cout << "SAVED CLASSIFIER TO FILE" << endl; - } -} - -static void computeConfidences( CvSVM& svm, const string& objClassName, VocData& vocData, - Ptr& bowExtractor, const Ptr& fdetector, - const string& resPath ) -{ - cout << "*** CALCULATING CONFIDENCES FOR CLASS " << objClassName << " ***" << endl; - cout << "CALCULATING BOW VECTORS FOR TEST SET OF " << objClassName << "..." << endl; - // Get classification ground truth for images in the test set - vector images; - vector bowImageDescriptors; - vector objectPresent; - vocData.getClassImages( objClassName, CV_OBD_TEST, images, objectPresent ); - - // Compute the bag of words vector for each image in the test set - calculateImageDescriptors( images, bowImageDescriptors, bowExtractor, fdetector, resPath ); - // Remove any images for which descriptors could not be calculated - removeEmptyBowImageDescriptors( images, bowImageDescriptors, objectPresent); - - // Use the bag of words vectors to calculate classifier output for each image in test set - cout << "CALCULATING CONFIDENCE SCORES FOR CLASS " << objClassName << "..." << endl; - vector confidences( images.size() ); - float signMul = 1.f; - for( size_t imageIdx = 0; imageIdx < images.size(); imageIdx++ ) - { - if( imageIdx == 0 ) - { - // In the first iteration, determine the sign of the positive class - float classVal = confidences[imageIdx] = svm.predict( bowImageDescriptors[imageIdx], false ); - float scoreVal = confidences[imageIdx] = svm.predict( bowImageDescriptors[imageIdx], true ); - signMul = (classVal < 0) == (scoreVal < 0) ? 1.f : -1.f; - } - // svm output of decision function - confidences[imageIdx] = signMul * svm.predict( bowImageDescriptors[imageIdx], true ); - } - - cout << "WRITING QUERY RESULTS TO VOC RESULTS FILE FOR CLASS " << objClassName << "..." << endl; - vocData.writeClassifierResultsFile( resPath + plotsDir, objClassName, CV_OBD_TEST, images, confidences, 1, true ); - - cout << "DONE - " << objClassName << endl; - cout << "---------------------------------------------------------------" << endl; -} - -static void computeGnuPlotOutput( const string& resPath, const string& objClassName, VocData& vocData ) -{ - vector precision, recall; - float ap; - - const string resultFile = vocData.getResultsFilename( objClassName, CV_VOC_TASK_CLASSIFICATION, CV_OBD_TEST); - const string plotFile = resultFile.substr(0, resultFile.size()-4) + ".plt"; - - cout << "Calculating precision recall curve for class '" < featureDetector = FeatureDetector::create( ddmParams.detectorType ); - Ptr descExtractor = DescriptorExtractor::create( ddmParams.descriptorType ); - Ptr bowExtractor; - if( featureDetector.empty() || descExtractor.empty() ) - { - cout << "featureDetector or descExtractor was not created" << endl; - return -1; - } - { - Ptr descMatcher = DescriptorMatcher::create( ddmParams.matcherType ); - if( featureDetector.empty() || descExtractor.empty() || descMatcher.empty() ) - { - cout << "descMatcher was not created" << endl; - return -1; - } - bowExtractor = new BOWImgDescriptorExtractor( descExtractor, descMatcher ); - } - - // Print configuration to screen - printUsedParams( vocPath, resPath, ddmParams, vocabTrainParams, svmTrainParamsExt ); - // Create object to work with VOC - VocData vocData( vocPath, false ); - - // 1. Train visual word vocabulary if a pre-calculated vocabulary file doesn't already exist from previous run - Mat vocabulary = trainVocabulary( resPath + "/" + vocabularyFile, vocData, vocabTrainParams, - featureDetector, descExtractor ); - bowExtractor->setVocabulary( vocabulary ); - - // 2. Train a classifier and run a sample query for each object class - const vector& objClasses = vocData.getObjectClasses(); // object class list - for( size_t classIdx = 0; classIdx < objClasses.size(); ++classIdx ) - { - // Train a classifier on train dataset - CvSVM svm; - trainSVMClassifier( svm, svmTrainParamsExt, objClasses[classIdx], vocData, - bowExtractor, featureDetector, resPath ); - - // Now use the classifier over all images on the test dataset and rank according to score order - // also calculating precision-recall etc. - computeConfidences( svm, objClasses[classIdx], vocData, - bowExtractor, featureDetector, resPath ); - // Calculate precision/recall/ap and use GNUPlot to output to a pdf file - computeGnuPlotOutput( resPath, objClasses[classIdx], vocData ); - } - return 0; -} diff --git a/samples/cpp/board.jpg b/samples/cpp/board.jpg deleted file mode 100644 index 2e10e6fe2..000000000 Binary files a/samples/cpp/board.jpg and /dev/null differ diff --git a/samples/cpp/building.jpg b/samples/cpp/building.jpg deleted file mode 100644 index 6056492f2..000000000 Binary files a/samples/cpp/building.jpg and /dev/null differ diff --git a/samples/cpp/fabmap/stlucia_test_small0000.jpeg b/samples/cpp/fabmap/stlucia_test_small0000.jpeg deleted file mode 100755 index cc4d54ec7..000000000 Binary files a/samples/cpp/fabmap/stlucia_test_small0000.jpeg and /dev/null differ diff --git a/samples/cpp/fabmap/stlucia_test_small0001.jpeg b/samples/cpp/fabmap/stlucia_test_small0001.jpeg deleted file mode 100755 index e849f4936..000000000 Binary files a/samples/cpp/fabmap/stlucia_test_small0001.jpeg and /dev/null differ diff --git a/samples/cpp/fabmap/stlucia_test_small0002.jpeg b/samples/cpp/fabmap/stlucia_test_small0002.jpeg deleted file mode 100755 index 1823ac138..000000000 Binary files a/samples/cpp/fabmap/stlucia_test_small0002.jpeg and /dev/null differ diff --git a/samples/cpp/fabmap/stlucia_test_small0003.jpeg b/samples/cpp/fabmap/stlucia_test_small0003.jpeg deleted file mode 100755 index f7858dc05..000000000 Binary files a/samples/cpp/fabmap/stlucia_test_small0003.jpeg and /dev/null differ diff --git a/samples/cpp/fabmap/stlucia_test_small0004.jpeg b/samples/cpp/fabmap/stlucia_test_small0004.jpeg deleted file mode 100755 index d28d71878..000000000 Binary files a/samples/cpp/fabmap/stlucia_test_small0004.jpeg and /dev/null differ diff --git a/samples/cpp/fabmap/stlucia_test_small0005.jpeg b/samples/cpp/fabmap/stlucia_test_small0005.jpeg deleted file mode 100755 index 32a3c4e8f..000000000 Binary files a/samples/cpp/fabmap/stlucia_test_small0005.jpeg and /dev/null differ diff --git a/samples/cpp/fabmap/stlucia_test_small0006.jpeg b/samples/cpp/fabmap/stlucia_test_small0006.jpeg deleted file mode 100755 index 4ea53c0a4..000000000 Binary files a/samples/cpp/fabmap/stlucia_test_small0006.jpeg and /dev/null differ diff --git a/samples/cpp/fabmap/stlucia_test_small0007.jpeg b/samples/cpp/fabmap/stlucia_test_small0007.jpeg deleted file mode 100755 index 443f1ffe2..000000000 Binary files a/samples/cpp/fabmap/stlucia_test_small0007.jpeg and /dev/null differ diff --git a/samples/cpp/fabmap/stlucia_test_small0008.jpeg b/samples/cpp/fabmap/stlucia_test_small0008.jpeg deleted file mode 100755 index ca163a26c..000000000 Binary files a/samples/cpp/fabmap/stlucia_test_small0008.jpeg and /dev/null differ diff --git a/samples/cpp/fabmap/stlucia_test_small0009.jpeg b/samples/cpp/fabmap/stlucia_test_small0009.jpeg deleted file mode 100755 index ce51ea3f4..000000000 Binary files a/samples/cpp/fabmap/stlucia_test_small0009.jpeg and /dev/null differ diff --git a/samples/cpp/fabmap/train_data_small.yml b/samples/cpp/fabmap/train_data_small.yml deleted file mode 100644 index 956cb9512..000000000 --- a/samples/cpp/fabmap/train_data_small.yml +++ /dev/null @@ -1,9197 +0,0 @@ -%YAML:1.0 -BOWImageDescs: !!opencv-matrix - rows: 162 - cols: 545 - dt: f - data: [ 1.27388537e-002, 0., 1.27388537e-002, 3.82165611e-002, - 1.91082805e-002, 0., 0., 6.36942685e-003, 0., 1.27388537e-002, 0., - 0., 6.36942685e-003, 1.27388537e-002, 6.36942685e-003, - 6.36942685e-003, 0., 1.27388537e-002, 2.54777074e-002, - 1.91082805e-002, 0., 1.91082805e-002, 1.91082805e-002, 0., 0., 0., - 1.27388537e-002, 0., 0., 1.27388537e-002, 6.36942685e-003, - 2.54777074e-002, 0., 6.36942685e-003, 0., 6.36942685e-003, 0., 0., - 1.27388537e-002, 1.27388537e-002, 6.36942685e-003, 0., - 6.36942685e-003, 0., 0., 6.36942685e-003, 0., 6.36942685e-003, - 2.54777074e-002, 6.36942685e-003, 0., 0., 6.36942685e-003, - 6.36942685e-003, 6.36942685e-003, 6.36942685e-003, - 6.36942685e-003, 0., 6.36942685e-003, 6.36942685e-003, 0., 0., 0., - 6.36942685e-003, 1.91082805e-002, 0., 0., 0., 6.36942685e-003, 0., - 1.27388537e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 6.36942685e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.27388537e-002, 6.36942685e-003, 0., 0., 0., 0., 0., - 6.36942685e-003, 2.54777074e-002, 0., 0., 0., 1.27388537e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.36942685e-003, - 1.27388537e-002, 0., 6.36942685e-003, 0., 0., 6.36942685e-003, 0., - 0., 0., 6.36942685e-003, 0., 0., 0., 0., 6.36942685e-003, 0., - 6.36942685e-003, 0., 0., 0., 6.36942685e-003, 0., 0., 0., - 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.27388537e-002, 0., 0., 0., 6.36942685e-003, - 0., 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.36942685e-003, 0., 6.36942685e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.27388537e-002, 0., 0., 0., 0., 0., - 1.27388537e-002, 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.27388537e-002, 6.36942685e-003, 0., 0., 0., - 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., 0., 0., - 6.36942685e-003, 0., 0., 6.36942685e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.27388537e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., - 1.27388537e-002, 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.36942685e-003, 0., - 0., 0., 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.36942685e-003, 0., 1.27388537e-002, 0., - 6.36942685e-003, 0., 0., 0., 6.36942685e-003, 0., 0., 0., - 1.27388537e-002, 0., 1.91082805e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., - 6.36942685e-003, 0., 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.36942685e-003, - 0., 0., 0., 0., 0., 1.27388537e-002, 0., 0., 0., 0., - 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.36942685e-003, 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., - 0., 1.27388537e-002, 0., 0., 0., 0., 0., 6.36942685e-003, - 6.36942685e-003, 0., 1.27388537e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 6.36942685e-003, 0., 6.36942685e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.36942685e-003, 6.36942685e-003, 6.36942685e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 1.27388537e-002, 0., 6.36942685e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.24719103e-002, - 2.24719103e-002, 5.61797759e-003, 2.80898884e-002, - 5.61797759e-003, 1.68539323e-002, 0., 0., 5.61797759e-003, 0., - 1.12359552e-002, 0., 1.68539323e-002, 0., 1.12359552e-002, 0., 0., - 5.61797759e-003, 5.61797759e-003, 5.61797759e-003, - 5.61797759e-003, 1.12359552e-002, 2.24719103e-002, 0., 0., - 5.61797759e-003, 3.37078646e-002, 0., 5.61797759e-003, - 1.68539323e-002, 5.61797759e-003, 0., 0., 1.12359552e-002, - 1.12359552e-002, 1.12359552e-002, 0., 5.61797759e-003, - 3.37078646e-002, 0., 0., 0., 0., 0., 5.61797759e-003, - 5.61797759e-003, 5.61797759e-003, 0., 5.61797759e-003, 0., 0., - 1.68539323e-002, 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 1.12359552e-002, 0., 0., 0., 0., 5.61797759e-003, 5.61797759e-003, - 0., 0., 5.61797759e-003, 0., 5.61797759e-003, 0., 5.61797759e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 1.12359552e-002, 0., 0., 0., 0., - 1.68539323e-002, 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., - 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 5.61797759e-003, - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 1.68539323e-002, 0., 0., - 5.61797759e-003, 1.12359552e-002, 5.61797759e-003, 0., 0., 0., 0., - 5.61797759e-003, 0., 1.68539323e-002, 0., 0., 0., 0., - 1.12359552e-002, 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 5.61797759e-003, - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 5.61797759e-003, 0., 0., 0., 1.12359552e-002, 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 0., 2.24719103e-002, 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.61797759e-003, 0., 1.12359552e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.12359552e-002, 0., - 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.61797759e-003, 0., 0., 0., 0., 0., 1.68539323e-002, - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 5.61797759e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 1.12359552e-002, 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 1.12359552e-002, 0., 0., 0., 0., 0., 5.61797759e-003, - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.12359552e-002, 5.61797759e-003, 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 0., 5.61797759e-003, 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 3.37078646e-002, 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 1.12359552e-002, 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.12359552e-002, 0., 0., 5.61797759e-003, 0., 1.68539323e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 5.61797759e-003, 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.18343197e-002, 5.91715984e-003, 0., 3.55029590e-002, - 1.18343197e-002, 1.18343197e-002, 0., 0., 1.18343197e-002, 0., 0., - 5.91715984e-003, 5.91715984e-003, 1.18343197e-002, 0., 0., - 5.91715984e-003, 1.77514795e-002, 5.91715984e-003, 0., - 5.91715984e-003, 5.91715984e-003, 1.77514795e-002, 0., - 5.91715984e-003, 5.91715984e-003, 5.91715984e-003, 0., - 5.91715984e-003, 0., 5.91715984e-003, 0., 0., 1.18343197e-002, - 5.91715984e-003, 5.91715984e-003, 0., 0., 1.18343197e-002, 0., 0., - 5.91715984e-003, 0., 0., 0., 2.36686394e-002, 5.91715984e-003, - 5.91715984e-003, 1.18343197e-002, 0., 0., 5.91715984e-003, 0., 0., - 5.91715984e-003, 1.77514795e-002, 0., 5.91715984e-003, 0., 0., 0., - 0., 5.91715984e-003, 0., 0., 0., 0., 0., 5.91715984e-003, 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.18343197e-002, 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., - 5.91715984e-003, 5.91715984e-003, 0., 5.91715984e-003, - 5.91715984e-003, 0., 0., 0., 1.18343197e-002, 0., 5.91715984e-003, - 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., - 1.77514795e-002, 0., 0., 5.91715984e-003, 0., 0., 1.18343197e-002, - 0., 5.91715984e-003, 5.91715984e-003, 0., 0., 0., 0., - 3.55029590e-002, 0., 0., 5.91715984e-003, 2.95857992e-002, 0., 0., - 0., 0., 5.91715984e-003, 0., 0., 5.91715984e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., - 5.91715984e-003, 5.91715984e-003, 0., 5.91715984e-003, 0., 0., 0., - 0., 5.91715984e-003, 0., 1.77514795e-002, 0., 0., 0., 0., 0., 0., - 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., - 1.18343197e-002, 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 1.18343197e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 5.91715984e-003, 5.91715984e-003, 0., - 5.91715984e-003, 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., - 1.77514795e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 2.95857992e-002, 0., 0., 5.91715984e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.18343197e-002, 0., 0., 0., 5.91715984e-003, 0., 5.91715984e-003, - 0., 0., 0., 0., 0., 0., 0., 1.77514795e-002, 0., 0., - 2.36686394e-002, 0., 5.91715984e-003, 0., 0., 0., 5.91715984e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 1.18343197e-002, 0., 0., 5.91715984e-003, - 0., 0., 0., 5.91715984e-003, 5.91715984e-003, 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.18343197e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.91715984e-003, 1.18343197e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.18343197e-002, 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, - 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.91715984e-003, 0., 0., 5.91715984e-003, 0., 0., - 5.91715984e-003, 0., 5.91715984e-003, 0., 1.18343197e-002, 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, - 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.10497242e-002, 0., 5.52486209e-003, 5.52486209e-003, 0., 0., 0., - 5.52486209e-003, 1.10497242e-002, 0., 0., 0., 1.10497242e-002, - 1.10497242e-002, 0., 5.52486209e-003, 0., 5.52486209e-003, - 1.10497242e-002, 0., 0., 5.52486209e-003, 1.65745858e-002, - 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 5.52486209e-003, - 2.20994484e-002, 5.52486209e-003, 0., 0., 0., 1.10497242e-002, - 1.10497242e-002, 0., 5.52486209e-003, 1.10497242e-002, - 1.65745858e-002, 0., 0., 0., 5.52486209e-003, 0., 1.10497242e-002, - 5.52486209e-003, 0., 1.10497242e-002, 1.65745858e-002, 0., - 1.10497242e-002, 0., 0., 5.52486209e-003, 1.65745858e-002, 0., 0., - 5.52486209e-003, 2.76243109e-002, 5.52486209e-003, 0., 0., 0., 0., - 0., 0., 0., 1.10497242e-002, 0., 0., 0., 1.10497242e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., - 0., 0., 5.52486209e-003, 1.65745858e-002, 0., 1.10497242e-002, 0., - 0., 0., 0., 0., 5.52486209e-003, 5.52486209e-003, 0., 0., - 5.52486209e-003, 5.52486209e-003, 0., 0., 0., 5.52486209e-003, - 1.10497242e-002, 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., - 0., 2.20994484e-002, 5.52486209e-003, 0., 5.52486209e-003, 0., - 5.52486209e-003, 1.10497242e-002, 0., 1.10497242e-002, 0., 0., 0., - 0., 0., 5.52486209e-003, 0., 5.52486209e-003, 0., 0., - 5.52486209e-003, 1.10497242e-002, 0., 0., 0., 5.52486209e-003, 0., - 0., 0., 0., 1.10497242e-002, 0., 0., 0., 0., 1.10497242e-002, - 1.10497242e-002, 0., 0., 0., 1.10497242e-002, 0., 0., - 1.10497242e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.52486209e-003, 0., 0., 5.52486209e-003, 1.10497242e-002, - 0., 0., 5.52486209e-003, 0., 5.52486209e-003, 0., 5.52486209e-003, - 1.10497242e-002, 0., 0., 1.10497242e-002, 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., - 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., - 0., 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 1.65745858e-002, - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., - 1.10497242e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 5.52486209e-003, 0., 5.52486209e-003, 0., 0., - 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.10497242e-002, 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., - 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., - 0., 5.52486209e-003, 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., - 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 5.52486209e-003, - 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 5.52486209e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., - 1.10497242e-002, 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 5.52486209e-003, 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 5.52486209e-003, - 1.10497242e-002, 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 5.52486209e-003, 0., 5.52486209e-003, 0., 0., - 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., - 5.52486209e-003, 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 5.52486209e-003, 1.10497242e-002, - 0., 0., 0., 0., 0., 5.52486209e-003, 0., 5.52486209e-003, 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.92307699e-002, 9.61538497e-003, 0., 9.61538497e-003, 0., - 1.92307699e-002, 9.61538497e-003, 0., 1.92307699e-002, 0., 0., 0., - 0., 1.92307699e-002, 1.92307699e-002, 1.92307699e-002, - 9.61538497e-003, 0., 1.92307699e-002, 0., 9.61538497e-003, 0., - 1.92307699e-002, 0., 1.92307699e-002, 0., 9.61538497e-003, 0., 0., - 9.61538497e-003, 0., 0., 1.92307699e-002, 0., 0., 0., - 9.61538497e-003, 9.61538497e-003, 0., 0., 0., 0., 0., - 1.92307699e-002, 0., 0., 2.88461559e-002, 0., 0., 9.61538497e-003, - 0., 9.61538497e-003, 0., 0., 0., 9.61538497e-003, 9.61538497e-003, - 0., 0., 0., 9.61538497e-003, 0., 9.61538497e-003, 0., 0., 0., 0., - 9.61538497e-003, 0., 0., 0., 0., 0., 0., 0., 9.61538497e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.61538497e-003, 0., 0., 0., 0., 1.92307699e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.61538497e-003, 0., - 9.61538497e-003, 9.61538497e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 3.84615399e-002, 9.61538497e-003, 0., 9.61538497e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.92307699e-002, - 9.61538497e-003, 0., 0., 9.61538497e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.61538497e-003, 0., 0., 0., 0., 0., 0., - 9.61538497e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.61538497e-003, 0., 0., 0., 0., 0., 0., - 9.61538497e-003, 0., 0., 0., 9.61538497e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 4.80769239e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.61538497e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.61538497e-003, 0., 9.61538497e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.92307699e-002, 2.88461559e-002, 9.61538497e-003, - 0., 0., 0., 9.61538497e-003, 9.61538497e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.61538497e-003, 0., 0., 0., - 1.92307699e-002, 0., 0., 0., 9.61538497e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.92307699e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.61538497e-003, 0., 1.92307699e-002, 0., 0., - 9.61538497e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.61538497e-003, 0., - 0., 0., 0., 9.61538497e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.92307699e-002, 9.61538497e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.61538497e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.61538497e-003, 0., 0., 2.88461559e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.61538497e-003, 0., 0., 0., 0., 0., 0., 9.61538497e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 9.61538497e-003, 0., 0., 0., - 9.61538497e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.61538497e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.39860138e-002, 6.99300691e-003, 6.99300691e-003, 0., - 6.99300691e-003, 6.99300691e-003, 0., 1.39860138e-002, - 6.99300691e-003, 0., 6.99300691e-003, 6.99300691e-003, - 1.39860138e-002, 6.99300691e-003, 0., 0., 0., 1.39860138e-002, 0., - 6.99300691e-003, 6.99300691e-003, 0., 6.99300691e-003, - 6.99300691e-003, 6.99300691e-003, 6.99300691e-003, - 2.79720277e-002, 0., 0., 2.09790207e-002, 0., 6.99300691e-003, 0., - 6.99300691e-003, 0., 6.99300691e-003, 0., 0., 3.49650346e-002, 0., - 0., 0., 0., 0., 0., 2.09790207e-002, 1.39860138e-002, - 6.99300691e-003, 6.99300691e-003, 0., 0., 1.39860138e-002, 0., 0., - 0., 0., 0., 0., 0., 1.39860138e-002, 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.99300691e-003, 0., 0., 0., 6.99300691e-003, - 6.99300691e-003, 1.39860138e-002, 0., 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 1.39860138e-002, 0., 0., 0., - 6.99300691e-003, 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 2.79720277e-002, 0., 0., 0., 2.09790207e-002, 0., - 0., 6.99300691e-003, 6.99300691e-003, 0., 0., 0., 6.99300691e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., - 6.99300691e-003, 0., 0., 6.99300691e-003, 0., 6.99300691e-003, 0., - 0., 6.99300691e-003, 0., 0., 6.99300691e-003, 0., 0., 0., - 6.99300691e-003, 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 6.99300691e-003, 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 6.99300691e-003, 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 2.09790207e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., - 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., - 6.99300691e-003, 0., 0., 0., 0., 1.39860138e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., - 0., 1.39860138e-002, 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.39860138e-002, 6.99300691e-003, 0., 0., 1.39860138e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., 0., 0., 0., - 6.99300691e-003, 0., 1.39860138e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.99300691e-003, 0., 2.79720277e-002, 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.39860138e-002, 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 2.09790207e-002, 0., - 0., 6.99300691e-003, 0., 0., 0., 0., 1.39860138e-002, - 6.99300691e-003, 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 2.09790207e-002, - 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 6.99300691e-003, 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., - 7.29927002e-003, 7.29927002e-003, 0., 7.29927002e-003, 0., - 1.45985400e-002, 0., 7.29927002e-003, 1.45985400e-002, 0., - 1.45985400e-002, 7.29927002e-003, 1.45985400e-002, - 7.29927002e-003, 0., 0., 0., 2.18978096e-002, 0., 2.91970801e-002, - 7.29927002e-003, 0., 7.29927002e-003, 0., 0., 0., 1.45985400e-002, - 0., 0., 4.37956192e-002, 0., 7.29927002e-003, 0., 1.45985400e-002, - 0., 0., 0., 0., 0., 7.29927002e-003, 0., 0., 7.29927002e-003, - 1.45985400e-002, 0., 7.29927002e-003, 2.18978096e-002, - 2.18978096e-002, 0., 0., 7.29927002e-003, 0., 0., 0., - 1.45985400e-002, 7.29927002e-003, 0., 0., 7.29927002e-003, 0., 0., - 0., 7.29927002e-003, 0., 0., 0., 0., 7.29927002e-003, - 2.91970801e-002, 0., 0., 0., 7.29927002e-003, 0., 0., 0., - 7.29927002e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.29927002e-003, 0., 0., 0., 7.29927002e-003, 0., 7.29927002e-003, - 0., 0., 0., 1.45985400e-002, 1.45985400e-002, 0., 0., 0., - 7.29927002e-003, 0., 0., 0., 7.29927002e-003, 0., 0., 0., - 1.45985400e-002, 0., 0., 0., 0., 1.45985400e-002, 0., 0., 0., 0., - 7.29927002e-003, 0., 0., 0., 7.29927002e-003, 0., 0., 0., - 2.91970801e-002, 0., 0., 0., 7.29927002e-003, 0., 0., 0., 0., 0., - 0., 7.29927002e-003, 0., 0., 0., 0., 0., 0., 0., 1.45985400e-002, - 0., 0., 7.29927002e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.45985400e-002, 0., 1.45985400e-002, 0., 2.18978096e-002, - 0., 0., 0., 0., 7.29927002e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.29927002e-003, 0., 0., 0., 0., 0., 0., 1.45985400e-002, 0., - 0., 7.29927002e-003, 0., 0., 7.29927002e-003, 0., 7.29927002e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.29927002e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.29927002e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.29927002e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.29927002e-003, 0., 0., 0., 0., - 7.29927002e-003, 0., 0., 1.45985400e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.29927002e-003, 0., 0., 0., 0., - 1.45985400e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.29927002e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.45985400e-002, 0., 0., 0., 7.29927002e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.29927002e-003, 0., 0., 0., 0., 0., - 1.45985400e-002, 0., 0., 0., 0., 0., 0., 0., 0., 7.29927002e-003, - 7.29927002e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.29927002e-003, 0., 0., 0., 0., 0., 0., 7.29927002e-003, 0., 0., - 0., 0., 0., 7.29927002e-003, 0., 0., 0., 7.29927002e-003, - 7.29927002e-003, 0., 1.45985400e-002, 0., 7.29927002e-003, 0., 0., - 0., 0., 7.29927002e-003, 0., 0., 0., 0., 0., 7.29927002e-003, 0., - 0., 7.29927002e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.29927002e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.29927002e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.29927002e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.29927002e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.29927002e-003, 0., 7.29927002e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.29927002e-003, 0., 0., 0., 0., 0., 0., 0., 7.29927002e-003, 0., - 0., 0., 7.29927002e-003, 0., 0., 0., 7.29927002e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.29927002e-003, 0., 0., 0., 0., - 6.41025649e-003, 6.41025649e-003, 1.92307699e-002, - 6.41025649e-003, 0., 1.28205130e-002, 0., 0., 0., 6.41025649e-003, - 1.28205130e-002, 1.28205130e-002, 0., 0., 6.41025649e-003, 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., - 6.41025649e-003, 6.41025649e-003, 6.41025649e-003, 0., 0., 0., - 6.41025649e-003, 0., 0., 6.41025649e-003, 6.41025649e-003, 0., - 6.41025649e-003, 6.41025649e-003, 0., 0., 1.92307699e-002, - 6.41025649e-003, 6.41025649e-003, 1.28205130e-002, - 6.41025649e-003, 0., 6.41025649e-003, 0., 0., 6.41025649e-003, - 1.92307699e-002, 0., 0., 0., 0., 0., 0., 0., 0., 1.28205130e-002, - 0., 0., 6.41025649e-003, 1.28205130e-002, 0., 1.28205130e-002, 0., - 6.41025649e-003, 6.41025649e-003, 0., 6.41025649e-003, 0., 0., 0., - 0., 0., 0., 6.41025649e-003, 0., 6.41025649e-003, 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., - 6.41025649e-003, 0., 0., 0., 1.28205130e-002, 0., 0., 0., - 1.28205130e-002, 6.41025649e-003, 0., 0., 0., 6.41025649e-003, - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., - 6.41025649e-003, 1.28205130e-002, 0., 0., 0., 6.41025649e-003, 0., - 1.92307699e-002, 0., 0., 1.28205130e-002, 3.20512839e-002, 0., 0., - 0., 0., 0., 1.28205130e-002, 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 1.92307699e-002, 0., 0., 0., - 6.41025649e-003, 6.41025649e-003, 0., 0., 6.41025649e-003, 0., - 1.28205130e-002, 0., 1.28205130e-002, 0., 0., 0., 1.28205130e-002, - 0., 3.20512839e-002, 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 6.41025649e-003, - 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 6.41025649e-003, 0., - 0., 6.41025649e-003, 0., 0., 0., 0., 6.41025649e-003, 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 6.41025649e-003, 0., - 6.41025649e-003, 0., 0., 0., 1.28205130e-002, 6.41025649e-003, 0., - 6.41025649e-003, 0., 6.41025649e-003, 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., - 6.41025649e-003, 0., 6.41025649e-003, 0., 6.41025649e-003, - 1.28205130e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.41025649e-003, 0., 6.41025649e-003, 6.41025649e-003, 0., - 1.92307699e-002, 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., 6.41025649e-003, 0., - 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.41025649e-003, 0., 6.41025649e-003, 0., 0., 0., - 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 1.28205130e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 1.28205130e-002, 0., 0., 0., 0., 0., 6.41025649e-003, - 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., 6.41025649e-003, - 0., 0., 2.56410260e-002, 0., 0., 0., 0., 0., 1.28205130e-002, 0., - 0., 0., 0., 1.28205130e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., - 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 6.41025649e-003, 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.61290318e-002, - 2.15053763e-002, 0., 5.37634408e-003, 2.68817209e-002, 0., - 1.07526882e-002, 1.61290318e-002, 0., 0., 5.37634408e-003, - 5.37634408e-003, 0., 1.07526882e-002, 0., 0., 0., 0., 0., 0., 0., - 1.07526882e-002, 1.07526882e-002, 5.37634408e-003, - 1.07526882e-002, 5.37634408e-003, 5.37634408e-003, 0., - 5.37634408e-003, 0., 5.37634408e-003, 5.37634408e-003, - 5.37634408e-003, 0., 0., 0., 0., 2.15053763e-002, 0., - 5.37634408e-003, 0., 0., 0., 0., 2.15053763e-002, 1.61290318e-002, - 2.68817209e-002, 0., 0., 0., 0., 0., 0., 0., 2.15053763e-002, 0., - 1.07526882e-002, 0., 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.37634408e-003, 0., 5.37634408e-003, 5.37634408e-003, - 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.37634408e-003, 0., 5.37634408e-003, - 1.07526882e-002, 0., 5.37634408e-003, 0., 5.37634408e-003, 0., - 5.37634408e-003, 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.07526882e-002, 0., 5.37634408e-003, 5.37634408e-003, 0., - 5.37634408e-003, 0., 5.37634408e-003, 5.37634408e-003, - 5.37634408e-003, 0., 0., 0., 5.37634408e-003, 0., 3.22580636e-002, - 0., 0., 5.37634408e-003, 1.61290318e-002, 5.37634408e-003, 0., - 5.37634408e-003, 0., 1.07526882e-002, 5.37634408e-003, 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 5.37634408e-003, - 5.37634408e-003, 1.07526882e-002, 5.37634408e-003, 0., - 2.68817209e-002, 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, 0., - 1.07526882e-002, 0., 0., 0., 0., 5.37634408e-003, 1.61290318e-002, - 0., 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.37634408e-003, 5.37634408e-003, 5.37634408e-003, 0., 0., - 1.07526882e-002, 0., 0., 0., 0., 0., 1.07526882e-002, 0., 0., 0., - 0., 0., 1.61290318e-002, 0., 1.07526882e-002, 0., 5.37634408e-003, - 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, 1.07526882e-002, - 5.37634408e-003, 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.37634408e-003, 0., 0., 0., 0., 0., 0., - 5.37634408e-003, 0., 5.37634408e-003, 1.07526882e-002, 0., 0., 0., - 0., 5.37634408e-003, 5.37634408e-003, 0., 0., 0., 0., 0., 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.07526882e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.37634408e-003, 0., 5.37634408e-003, 0., 0., 0., 0., 0., - 5.37634408e-003, 0., 5.37634408e-003, 0., 5.37634408e-003, 0., 0., - 0., 1.07526882e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.37634408e-003, 5.37634408e-003, 0., 5.37634408e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 1.61290318e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.37634408e-003, 0., 5.37634408e-003, 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, 0., 0., 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 5.37634408e-003, - 5.37634408e-003, 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.37634408e-003, 0., 1.07526882e-002, 0., 0., 5.37634408e-003, 0., - 0., 5.37634408e-003, 0., 0., 0., 0., 0., 1.61290318e-002, 0., 0., - 0., 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.37634408e-003, 0., 0., 0., 0., 5.37634408e-003, - 0., 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, - 5.37634408e-003, 0., 0., 0., 5.37634408e-003, 0., 0., 0., 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, 0., 0., 0., 0., - 5.37634408e-003, 0., 0., 5.37634408e-003, 0., 0., 5.37634408e-003, - 0., 1.01522841e-002, 0., 2.03045681e-002, 5.07614203e-003, 0., - 2.53807101e-002, 0., 5.07614203e-003, 0., 0., 5.07614203e-003, - 5.07614203e-003, 1.01522841e-002, 5.07614203e-003, 0., 0., 0., 0., - 1.01522841e-002, 1.52284261e-002, 5.07614203e-003, 0., - 5.07614203e-003, 0., 5.07614203e-003, 5.07614203e-003, 0., - 1.01522841e-002, 0., 1.52284261e-002, 0., 0., 0., 1.01522841e-002, - 0., 0., 5.07614203e-003, 5.07614203e-003, 1.01522841e-002, - 1.01522841e-002, 5.07614203e-003, 0., 5.07614203e-003, 0., 0., - 1.01522841e-002, 5.07614203e-003, 0., 2.03045681e-002, - 1.52284261e-002, 0., 1.01522841e-002, 0., 5.07614203e-003, - 5.07614203e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.01522841e-002, 0., 0., 0., 5.07614203e-003, 0., 1.01522841e-002, - 0., 0., 5.07614203e-003, 0., 0., 0., 0., 0., 5.07614203e-003, 0., - 0., 2.03045681e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.07614203e-003, 5.07614203e-003, 0., 5.07614203e-003, 0., 0., 0., - 5.07614203e-003, 0., 1.52284261e-002, 0., 5.07614203e-003, - 5.07614203e-003, 0., 0., 0., 1.01522841e-002, 0., 0., 0., 0., 0., - 5.07614203e-003, 0., 0., 0., 5.07614203e-003, 0., 5.07614203e-003, - 0., 5.07614203e-003, 0., 0., 0., 1.52284261e-002, 0., - 5.07614203e-003, 5.07614203e-003, 5.07614203e-003, 0., 0., 0., 0., - 0., 5.07614203e-003, 0., 1.52284261e-002, 0., 5.07614203e-003, 0., - 0., 5.07614203e-003, 5.07614203e-003, 5.07614203e-003, - 5.07614203e-003, 0., 0., 5.07614203e-003, 5.07614203e-003, 0., - 5.07614203e-003, 0., 0., 0., 5.07614203e-003, 5.07614203e-003, 0., - 2.03045681e-002, 5.07614203e-003, 0., 0., 0., 0., 1.52284261e-002, - 0., 2.53807101e-002, 0., 5.07614203e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.07614203e-003, 0., 1.01522841e-002, 0., 0., 5.07614203e-003, 0., - 0., 0., 0., 5.07614203e-003, 0., 0., 1.52284261e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.07614203e-003, 0., 0., - 1.01522841e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.07614203e-003, 0., 0., 1.01522841e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.07614203e-003, - 0., 5.07614203e-003, 0., 5.07614203e-003, 0., 0., 0., 0., 0., - 5.07614203e-003, 0., 0., 0., 0., 0., 5.07614203e-003, 0., 0., 0., - 0., 0., 0., 5.07614203e-003, 0., 0., 0., 0., 1.01522841e-002, 0., - 5.07614203e-003, 2.53807101e-002, 0., 0., 0., 0., 0., - 5.07614203e-003, 0., 5.07614203e-003, 0., 0., 0., 0., 0., - 5.07614203e-003, 0., 2.03045681e-002, 0., 0., 5.07614203e-003, 0., - 0., 0., 0., 0., 0., 1.01522841e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.07614203e-003, 0., 0., 5.07614203e-003, 0., 0., 0., - 0., 5.07614203e-003, 0., 0., 0., 5.07614203e-003, 5.07614203e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.07614203e-003, 0., - 2.03045681e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.07614203e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.07614203e-003, 0., 0., 0., 0., 0., 0., 0., 5.07614203e-003, - 5.07614203e-003, 0., 0., 0., 0., 0., 0., 5.07614203e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.07614203e-003, 0., 0., 0., - 5.07614203e-003, 0., 0., 0., 0., 0., 5.07614203e-003, 0., 0., - 5.07614203e-003, 0., 0., 0., 0., 0., 0., 0., 5.07614203e-003, 0., - 0., 0., 5.07614203e-003, 5.07614203e-003, 0., 0., 0., 0., 0., 0., - 0., 5.07614203e-003, 0., 0., 0., 0., 0., 0., 5.07614203e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.07614203e-003, 0., 1.01522841e-002, 0., 0., 0., 0., - 1.01522841e-002, 0., 0., 0., 0., 5.07614203e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.01522841e-002, 5.07614203e-003, 0., 0., - 5.07614203e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.07614203e-003, 0., 0., 0., 0., 0., 5.07614203e-003, 0., 0., - 0., 0., 0., 0., 5.07614203e-003, 5.07614203e-003, 0., - 5.07614203e-003, 0., 5.07614203e-003, 0., 5.07614203e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.07614203e-003, 0., 0., 0., 0., 0., 5.07614203e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 2.13903747e-002, 0., 0., - 5.34759369e-003, 5.34759369e-003, 1.06951874e-002, - 5.34759369e-003, 5.34759369e-003, 1.06951874e-002, - 5.34759369e-003, 5.34759369e-003, 0., 0., 1.06951874e-002, 0., - 5.34759369e-003, 0., 5.34759369e-003, 0., 0., 0., 0., - 5.34759369e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.60427801e-002, 5.34759369e-003, 5.34759369e-003, 0., 0., 0., 0., - 2.13903747e-002, 2.13903747e-002, 0., 3.20855603e-002, 0., 0., 0., - 5.34759369e-003, 1.06951874e-002, 0., 1.60427801e-002, - 5.34759369e-003, 5.34759369e-003, 0., 0., 0., 0., 1.06951874e-002, - 1.06951874e-002, 0., 0., 0., 0., 0., 0., 0., 0., 1.60427801e-002, - 5.34759369e-003, 0., 0., 0., 0., 5.34759369e-003, 0., 0., 0., 0., - 5.34759369e-003, 0., 0., 0., 5.34759369e-003, 0., 0., 0., 0., - 5.34759369e-003, 5.34759369e-003, 0., 5.34759369e-003, 0., 0., 0., - 0., 1.06951874e-002, 0., 0., 0., 1.06951874e-002, 0., 0., 0., - 5.34759369e-003, 0., 0., 5.34759369e-003, 5.34759369e-003, - 5.34759369e-003, 0., 0., 5.34759369e-003, 1.06951874e-002, - 5.34759369e-003, 5.34759369e-003, 0., 5.34759369e-003, 0., 0., 0., - 5.34759369e-003, 1.60427801e-002, 5.34759369e-003, - 5.34759369e-003, 0., 2.13903747e-002, 0., 0., 0., 0., 0., 0., 0., - 5.34759369e-003, 0., 0., 0., 0., 1.06951874e-002, 5.34759369e-003, - 0., 0., 0., 0., 1.60427801e-002, 0., 0., 0., 5.34759369e-003, 0., - 0., 0., 0., 0., 2.13903747e-002, 0., 0., 0., 0., 1.06951874e-002, - 2.13903747e-002, 0., 5.88235296e-002, 0., 0., 0., 0., - 5.34759369e-003, 0., 0., 0., 0., 0., 5.34759369e-003, 0., - 5.34759369e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.34759369e-003, 0., 0., 5.34759369e-003, 0., 5.34759369e-003, - 0., 0., 0., 0., 0., 0., 5.34759369e-003, 5.34759369e-003, - 5.34759369e-003, 0., 0., 0., 0., 0., 0., 5.34759369e-003, 0., - 5.34759369e-003, 5.34759369e-003, 0., 0., 0., 5.34759369e-003, 0., - 0., 1.06951874e-002, 0., 0., 0., 5.34759369e-003, 0., 0., 0., - 5.34759369e-003, 1.60427801e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.06951874e-002, 0., 0., 0., 0., 0., 0., - 0., 5.34759369e-003, 0., 5.34759369e-003, 0., 0., 0., 0., 0., 0., - 0., 2.13903747e-002, 0., 0., 0., 0., 0., 5.34759369e-003, 0., 0., - 5.34759369e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.34759369e-003, - 5.34759369e-003, 0., 0., 0., 0., 0., 5.34759369e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 5.34759369e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.34759369e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.34759369e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.06951874e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.34759369e-003, 0., 0., - 5.34759369e-003, 0., 0., 0., 0., 0., 0., 5.34759369e-003, - 5.34759369e-003, 1.60427801e-002, 0., 0., 0., 0., 5.34759369e-003, - 0., 0., 0., 0., 0., 0., 0., 5.34759369e-003, 5.34759369e-003, 0., - 1.06951874e-002, 0., 0., 0., 0., 1.06951874e-002, 0., - 5.34759369e-003, 5.34759369e-003, 0., 5.34759369e-003, 0., - 5.34759369e-003, 5.34759369e-003, 0., 0., 0., 5.34759369e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.34759369e-003, - 5.34759369e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.34759369e-003, 0., 0., 0., 0., 1.06951874e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.34759369e-003, 0., 0., 0., - 5.34759369e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.34759369e-003, 0., 1.06951874e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.34759369e-003, 0., 0., 0., - 5.34759369e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.34759369e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.34759369e-003, 0., 0., - 5.34759369e-003, 0., 0., 0., 0., 5.34759369e-003, 0., 0., 0., 0., - 0., 0., 0., 6.62251655e-003, 6.62251655e-003, 6.62251655e-003, 0., - 1.32450331e-002, 0., 0., 6.62251655e-003, 6.62251655e-003, 0., - 6.62251655e-003, 0., 1.98675506e-002, 6.62251655e-003, - 6.62251655e-003, 0., 6.62251655e-003, 1.98675506e-002, - 6.62251655e-003, 6.62251655e-003, 0., 0., 6.62251655e-003, 0., 0., - 0., 3.31125818e-002, 0., 6.62251655e-003, 1.32450331e-002, 0., - 1.32450331e-002, 6.62251655e-003, 0., 0., 0., 0., 0., 0., - 1.98675506e-002, 0., 0., 0., 0., 0., 0., 0., 1.32450331e-002, - 3.97351012e-002, 0., 6.62251655e-003, 6.62251655e-003, 0., 0., 0., - 1.98675506e-002, 0., 0., 0., 0., 0., 0., 6.62251655e-003, 0., 0., - 0., 0., 0., 0., 0., 1.32450331e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 2.64900662e-002, 0., 0., 0., 0., 0., 0., - 6.62251655e-003, 0., 0., 1.98675506e-002, 0., 6.62251655e-003, - 1.98675506e-002, 0., 0., 0., 0., 0., 0., 6.62251655e-003, - 6.62251655e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.62251655e-003, 0., 6.62251655e-003, 0., 1.32450331e-002, - 0., 0., 0., 1.32450331e-002, 0., 0., 6.62251655e-003, - 6.62251655e-003, 0., 0., 6.62251655e-003, 0., 0., 0., 0., - 1.98675506e-002, 0., 0., 0., 0., 0., 0., 1.32450331e-002, 0., 0., - 0., 2.64900662e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.62251655e-003, 0., 0., 0., 0., 0., 3.31125818e-002, 0., - 6.62251655e-003, 0., 0., 0., 0., 6.62251655e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.62251655e-003, - 6.62251655e-003, 0., 0., 0., 6.62251655e-003, 0., 0., 0., 0., 0., - 1.32450331e-002, 0., 0., 0., 0., 0., 0., 1.32450331e-002, 0., 0., - 0., 6.62251655e-003, 0., 6.62251655e-003, 0., 0., 0., 0., 0., 0., - 6.62251655e-003, 0., 0., 0., 0., 0., 0., 0., 1.32450331e-002, 0., - 0., 0., 0., 0., 0., 0., 6.62251655e-003, 1.32450331e-002, 0., - 6.62251655e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.62251655e-003, 6.62251655e-003, 0., 6.62251655e-003, 0., 0., 0., - 0., 0., 0., 6.62251655e-003, 0., 0., 0., 0., 6.62251655e-003, 0., - 6.62251655e-003, 1.98675506e-002, 0., 6.62251655e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.62251655e-003, 0., 0., 0., - 1.32450331e-002, 0., 0., 0., 0., 0., 6.62251655e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.62251655e-003, 0., 0., 0., 0., - 0., 0., 0., 6.62251655e-003, 0., 0., 0., 6.62251655e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 6.62251655e-003, 0., 0., 0., - 6.62251655e-003, 0., 6.62251655e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.62251655e-003, 6.62251655e-003, 0., 0., 6.62251655e-003, - 0., 0., 0., 0., 0., 0., 6.62251655e-003, 0., 0., 0., 0., 0., 0., - 0., 1.98675506e-002, 0., 0., 0., 0., 0., 1.32450331e-002, 0., 0., - 0., 0., 0., 0., 6.62251655e-003, 0., 6.62251655e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.62251655e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.62251655e-003, 0., 0., 0., 0., 1.32450331e-002, 0., 0., - 1.98675506e-002, 0., 0., 0., 6.62251655e-003, 0., 0., 0., - 6.62251655e-003, 0., 6.62251655e-003, 0., 0., 6.62251655e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.62251655e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.62251655e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.62251655e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.42857144e-002, 2.14285720e-002, 7.14285718e-003, - 3.57142873e-002, 0., 0., 7.14285718e-003, 7.14285718e-003, 0., 0., - 7.14285718e-003, 7.14285718e-003, 0., 7.14285718e-003, - 7.14285718e-003, 1.42857144e-002, 7.14285718e-003, - 2.85714287e-002, 0., 0., 7.14285718e-003, 0., 0., 0., - 2.85714287e-002, 0., 4.28571440e-002, 7.14285718e-003, 0., 0., 0., - 7.14285718e-003, 0., 0., 0., 0., 5.71428575e-002, 7.14285718e-003, - 0., 0., 7.14285718e-003, 1.42857144e-002, 7.14285718e-003, - 7.14285718e-003, 7.14285718e-003, 7.14285718e-003, - 5.71428575e-002, 0., 0., 0., 7.14285718e-003, 7.14285718e-003, 0., - 7.14285718e-003, 0., 0., 7.14285718e-003, 0., 0., 0., 0., - 7.14285718e-003, 7.14285718e-003, 0., 0., 7.14285718e-003, - 7.14285718e-003, 7.14285718e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.42857144e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.14285718e-003, 7.14285718e-003, - 0., 0., 7.14285718e-003, 0., 0., 0., 0., 0., 7.14285718e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.42857144e-002, 0., 0., - 7.14285718e-003, 0., 0., 0., 4.28571440e-002, 0., 7.14285718e-003, - 7.14285718e-003, 2.14285720e-002, 0., 0., 0., 7.14285718e-003, 0., - 0., 0., 7.14285718e-003, 0., 0., 0., 0., 7.14285718e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.14285718e-003, 0., 0., 0., 7.14285718e-003, 7.14285718e-003, - 1.42857144e-002, 0., 0., 0., 0., 7.14285718e-003, 0., 0., 0., - 7.14285718e-003, 0., 0., 0., 0., 7.14285718e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.14285718e-003, 0., 7.14285718e-003, 0., - 0., 0., 7.14285718e-003, 0., 0., 0., 0., 7.14285718e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.42857144e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 2.85714287e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.42857144e-002, 0., 0., 0., 7.14285718e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.14285718e-003, 0., 0., 0., - 1.42857144e-002, 0., 0., 0., 0., 7.14285718e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.14285718e-003, 0., 0., 0., 0., - 0., 0., 7.14285718e-003, 7.14285718e-003, 0., 0., 0., 0., - 7.14285718e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.14285718e-003, 0., 7.14285718e-003, - 0., 1.42857144e-002, 0., 0., 0., 7.14285718e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.14285718e-003, 0., 0., 0., - 0., 0., 0., 7.14285718e-003, 0., 7.14285718e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.14285718e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.14285718e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.14285718e-003, - 7.14285718e-003, 0., 7.14285718e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.14285718e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.14285718e-003, - 0., 7.14285718e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.14285718e-003, - 0., 0., 0., 0., 7.14285718e-003, 0., 0., 0., 0., 0., - 2.34375000e-002, 7.81250000e-003, 0., 7.81250000e-003, - 7.81250000e-003, 1.56250000e-002, 0., 1.56250000e-002, - 7.81250000e-003, 0., 7.81250000e-003, 7.81250000e-003, 0., - 2.34375000e-002, 0., 7.81250000e-003, 0., 0., 1.56250000e-002, - 7.81250000e-003, 0., 0., 0., 0., 7.81250000e-003, 0., - 7.81250000e-003, 0., 7.81250000e-003, 7.81250000e-003, 0., - 7.81250000e-003, 0., 7.81250000e-003, 0., 0., 0., 0., - 1.56250000e-002, 0., 0., 0., 7.81250000e-003, 0., 0., 0., - 2.34375000e-002, 7.81250000e-003, 1.56250000e-002, 0., - 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 7.81250000e-003, 7.81250000e-003, 0., 0., 0., 0., - 7.81250000e-003, 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 0., - 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.81250000e-003, 2.34375000e-002, 0., 0., - 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.81250000e-003, 7.81250000e-003, 0., 0., - 0., 7.81250000e-003, 0., 0., 7.81250000e-003, 3.90625000e-002, 0., - 0., 0., 2.34375000e-002, 1.56250000e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 7.81250000e-003, - 7.81250000e-003, 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., - 0., 7.81250000e-003, 0., 7.81250000e-003, 0., 7.81250000e-003, - 7.81250000e-003, 0., 0., 0., 0., 7.81250000e-003, 7.81250000e-003, - 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 7.81250000e-003, 0., - 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 7.81250000e-003, 0., - 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.56250000e-002, 7.81250000e-003, 0., 0., 0., 7.81250000e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., - 1.56250000e-002, 0., 1.56250000e-002, 7.81250000e-003, 0., 0., 0., - 7.81250000e-003, 0., 7.81250000e-003, 0., 0., 0., 7.81250000e-003, - 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 7.81250000e-003, - 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.56250000e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 2.34375000e-002, 0., 7.81250000e-003, 0., 0., 0., - 7.81250000e-003, 0., 0., 0., 1.56250000e-002, 0., 7.81250000e-003, - 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.56250000e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, - 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, - 0., 0., 7.81250000e-003, 0., 0., 0., 0., 7.81250000e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.56250000e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 7.81250000e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.81250000e-003, 7.81250000e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., - 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., - 0., 7.81250000e-003, 0., 0., 0., 7.81250000e-003, 0., - 5.15463902e-003, 5.15463902e-003, 0., 1.54639166e-002, 0., - 3.60824727e-002, 0., 0., 1.03092780e-002, 5.15463902e-003, - 1.03092780e-002, 0., 0., 1.54639166e-002, 5.15463902e-003, - 5.15463902e-003, 0., 5.15463902e-003, 5.15463902e-003, - 2.06185561e-002, 0., 5.15463902e-003, 1.54639166e-002, 0., 0., - 5.15463902e-003, 1.03092780e-002, 0., 5.15463902e-003, - 1.54639166e-002, 5.15463902e-003, 5.15463902e-003, - 5.15463902e-003, 5.15463902e-003, 1.03092780e-002, 0., - 5.15463902e-003, 0., 2.57731955e-002, 5.15463902e-003, 0., 0., 0., - 1.03092780e-002, 5.15463902e-003, 5.15463902e-003, 0., - 5.15463902e-003, 2.06185561e-002, 0., 0., 0., 0., 0., 0., - 1.03092780e-002, 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, - 2.06185561e-002, 0., 0., 0., 0., 0., 5.15463902e-003, 0., - 1.03092780e-002, 0., 0., 0., 0., 5.15463902e-003, 1.03092780e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., - 5.15463902e-003, 0., 5.15463902e-003, 5.15463902e-003, - 5.15463902e-003, 0., 0., 5.15463902e-003, 0., 1.03092780e-002, 0., - 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 5.15463902e-003, 0., - 0., 0., 0., 5.15463902e-003, 3.09278332e-002, 2.06185561e-002, - 5.15463902e-003, 1.03092780e-002, 0., 0., 0., 0., 0., - 2.57731955e-002, 0., 0., 0., 4.12371121e-002, 0., 0., 0., 0., - 1.03092780e-002, 0., 0., 0., 0., 0., 1.03092780e-002, 0., 0., 0., - 0., 5.15463902e-003, 0., 0., 5.15463902e-003, 0., 0., 0., - 5.15463902e-003, 0., 0., 0., 5.15463902e-003, 0., 1.03092780e-002, - 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 0., 5.15463902e-003, 5.15463902e-003, 0., - 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.03092780e-002, 0., 5.15463902e-003, 5.15463902e-003, 0., 0., 0., - 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 5.15463902e-003, 0., - 1.03092780e-002, 0., 0., 5.15463902e-003, 5.15463902e-003, - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 5.15463902e-003, 5.15463902e-003, 0., 0., - 0., 5.15463902e-003, 0., 0., 5.15463902e-003, 1.03092780e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, - 5.15463902e-003, 5.15463902e-003, 0., 5.15463902e-003, - 1.54639166e-002, 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.03092780e-002, 0., - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.15463902e-003, 0., 1.03092780e-002, 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 2.06185561e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., - 1.03092780e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.54639166e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., - 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 5.15463902e-003, 0., 5.15463902e-003, 0., - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, - 0., 0., 1.03092780e-002, 0., 5.15463902e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 1.03092780e-002, 0., 0., 0., 0., 5.15463902e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., - 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, - 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.24637695e-003, 7.24637695e-003, 1.44927539e-002, - 1.44927539e-002, 0., 7.24637695e-003, 0., 0., 1.44927539e-002, 0., - 7.24637695e-003, 0., 1.44927539e-002, 1.44927539e-002, 0., 0., 0., - 7.24637695e-003, 7.24637695e-003, 1.44927539e-002, 0., 0., - 2.17391308e-002, 0., 0., 0., 3.62318829e-002, 7.24637695e-003, - 7.24637695e-003, 5.07246405e-002, 7.24637695e-003, - 1.44927539e-002, 0., 1.44927539e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.24637695e-003, 0., 2.17391308e-002, 0., 0., - 0., 7.24637695e-003, 0., 0., 7.24637695e-003, 0., 7.24637695e-003, - 0., 0., 0., 0., 0., 7.24637695e-003, 0., 7.24637695e-003, 0., 0., - 7.24637695e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.24637695e-003, 0., 0., 0., 7.24637695e-003, 1.44927539e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.24637695e-003, 0., 0., 0., - 7.24637695e-003, 3.62318829e-002, 2.17391308e-002, 0., - 7.24637695e-003, 0., 0., 7.24637695e-003, 0., 7.24637695e-003, - 1.44927539e-002, 0., 0., 0., 6.52173907e-002, 7.24637695e-003, 0., - 0., 1.44927539e-002, 7.24637695e-003, 0., 0., 0., 0., 0., 0., 0., - 7.24637695e-003, 0., 0., 0., 0., 0., 1.44927539e-002, 0., 0., 0., - 0., 0., 0., 0., 7.24637695e-003, 0., 0., 0., 7.24637695e-003, - 7.24637695e-003, 0., 0., 1.44927539e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 1.44927539e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.24637695e-003, 7.24637695e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.24637695e-003, - 0., 1.44927539e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 1.44927539e-002, 0., 0., 0., 0., 0., 1.44927539e-002, 0., 0., 0., - 0., 0., 0., 0., 7.24637695e-003, 0., 0., 0., 0., 0., 0., - 1.44927539e-002, 0., 7.24637695e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.24637695e-003, 2.17391308e-002, 0., 0., 7.24637695e-003, 0., - 0., 2.17391308e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.24637695e-003, 7.24637695e-003, - 7.24637695e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.44927539e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.24637695e-003, 0., - 0., 0., 0., 0., 7.24637695e-003, 7.24637695e-003, 7.24637695e-003, - 0., 2.17391308e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.44927539e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.24637695e-003, - 7.24637695e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.24637695e-003, 0., 0., 0., 0., 0., 0., 7.24637695e-003, 0., 0., - 7.24637695e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.44927539e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.24637695e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.24637695e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.24637695e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.24637695e-003, 0., 0., 0., 5.78034669e-003, 2.31213868e-002, 0., - 2.31213868e-002, 0., 1.73410401e-002, 5.78034669e-003, - 5.78034669e-003, 5.78034669e-003, 0., 0., 1.15606934e-002, 0., 0., - 5.78034669e-003, 1.15606934e-002, 0., 1.15606934e-002, 0., 0., - 5.78034669e-003, 0., 0., 0., 1.15606934e-002, 0., 5.78034669e-003, - 1.73410401e-002, 0., 1.15606934e-002, 0., 0., 0., 5.78034669e-003, - 0., 0., 2.31213868e-002, 5.78034669e-003, 0., 0., 0., 0., 0., - 5.78034669e-003, 5.78034669e-003, 0., 1.15606934e-002, 0., 0., - 5.78034669e-003, 0., 0., 0., 1.73410401e-002, 0., 0., 0., - 2.31213868e-002, 0., 0., 5.78034669e-003, 0., 0., 5.78034669e-003, - 0., 0., 0., 5.78034669e-003, 2.31213868e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., - 0., 5.78034669e-003, 5.78034669e-003, 0., 0., 0., 0., - 1.15606934e-002, 0., 5.78034669e-003, 5.78034669e-003, 0., 0., 0., - 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, - 0., 0., 0., 5.78034669e-003, 1.15606934e-002, 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 5.78034669e-003, 4.62427735e-002, 0., - 0., 5.78034669e-003, 2.31213868e-002, 5.78034669e-003, 0., 0., 0., - 1.15606934e-002, 1.15606934e-002, 0., 0., 5.78034669e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, - 5.78034669e-003, 5.78034669e-003, 0., 1.73410401e-002, 0., - 1.15606934e-002, 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., 5.78034669e-003, 0., - 0., 0., 0., 0., 0., 1.15606934e-002, 0., 1.15606934e-002, 0., 0., - 0., 0., 5.78034669e-003, 0., 0., 0., 5.78034669e-003, 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.20231202e-002, 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 0., 0., - 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 2.89017335e-002, 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., - 0., 1.15606934e-002, 0., 1.15606934e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.15606934e-002, 0., 0., 0., 0., 5.78034669e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., 5.78034669e-003, - 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.78034669e-003, 5.78034669e-003, - 1.15606934e-002, 0., 0., 5.78034669e-003, 0., 0., 5.78034669e-003, - 0., 0., 0., 5.78034669e-003, 0., 5.78034669e-003, 0., 0., 0., 0., - 1.15606934e-002, 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., - 1.15606934e-002, 0., 0., 5.78034669e-003, 0., 0., 0., - 1.73410401e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.78034669e-003, 0., 0., 0., 5.78034669e-003, 5.78034669e-003, - 0., 0., 0., 0., 0., 0., 7.57575780e-003, 7.57575780e-003, 0., - 1.51515156e-002, 7.57575780e-003, 0., 2.27272734e-002, 0., 0., - 1.51515156e-002, 0., 0., 0., 2.27272734e-002, 0., 0., 0., 0., - 7.57575780e-003, 0., 0., 7.57575780e-003, 7.57575780e-003, 0., 0., - 2.27272734e-002, 0., 1.51515156e-002, 1.51515156e-002, 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 7.57575780e-003, 0., 7.57575780e-003, - 0., 0., 7.57575780e-003, 1.51515156e-002, 0., 0., 7.57575780e-003, - 1.51515156e-002, 3.03030312e-002, 0., 0., 7.57575780e-003, - 7.57575780e-003, 0., 0., 0., 0., 7.57575780e-003, 0., - 3.78787890e-002, 0., 0., 7.57575780e-003, 7.57575780e-003, - 7.57575780e-003, 0., 0., 0., 2.27272734e-002, 0., 1.51515156e-002, - 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., - 1.51515156e-002, 0., 0., 7.57575780e-003, 0., 7.57575780e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.51515156e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 4.54545468e-002, 0., 7.57575780e-003, 0., 3.03030312e-002, 0., 0., - 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., - 1.51515156e-002, 0., 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.57575780e-003, 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., - 1.51515156e-002, 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., 7.57575780e-003, - 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 4.54545468e-002, 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 1.51515156e-002, 0., 0., 7.57575780e-003, 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., - 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 1.51515156e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.57575780e-003, 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.51515156e-002, 0., 0., 0., 0., 0., - 1.51515156e-002, 0., 0., 0., 0., 0., 7.57575780e-003, - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., - 0., 0., 7.57575780e-003, 0., 0., 7.57575780e-003, 7.57575780e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.51515156e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., - 7.57575780e-003, 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., - 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 1.51515156e-002, 0., 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, - 0., 7.57575780e-003, 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.57575780e-003, 7.57575780e-003, 0., - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.40845068e-002, 1.40845068e-002, 7.04225339e-003, - 2.11267602e-002, 0., 0., 7.04225339e-003, 0., 7.04225339e-003, 0., - 7.04225339e-003, 0., 7.04225339e-003, 0., 0., 0., 1.40845068e-002, - 7.04225339e-003, 0., 7.04225339e-003, 7.04225339e-003, 0., 0., 0., - 1.40845068e-002, 7.04225339e-003, 7.04225339e-003, - 1.40845068e-002, 0., 1.40845068e-002, 0., 7.04225339e-003, 0., 0., - 0., 0., 2.11267602e-002, 7.04225339e-003, 0., 0., 0., 0., - 7.04225339e-003, 0., 7.04225339e-003, 2.11267602e-002, - 7.04225339e-003, 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., - 7.04225339e-003, 0., 0., 0., 1.40845068e-002, 0., 2.11267602e-002, - 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., - 0., 7.04225339e-003, 0., 7.04225339e-003, 0., 0., 0., 0., 0., - 7.04225339e-003, 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., - 7.04225339e-003, 7.04225339e-003, 7.04225339e-003, 0., 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, - 0., 7.04225339e-003, 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 0., 1.40845068e-002, 0., 0., 0., - 1.40845068e-002, 7.04225339e-003, 0., 7.04225339e-003, - 7.04225339e-003, 1.40845068e-002, 7.04225339e-003, 0., - 1.40845068e-002, 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., - 0., 7.04225339e-003, 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.04225339e-003, 0., 0., 7.04225339e-003, 0., 0., - 1.40845068e-002, 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.40845068e-002, 0., - 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 7.04225339e-003, 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.81690136e-002, 7.04225339e-003, 0., - 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., - 1.40845068e-002, 0., 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, - 7.04225339e-003, 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 1.40845068e-002, 0., 0., 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 2.11267602e-002, 0., - 7.04225339e-003, 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.40845068e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 7.04225339e-003, 0., 7.04225339e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., - 7.04225339e-003, 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., - 2.11267602e-002, 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., - 0., 0., 0., 0., 1.40845068e-002, 7.04225339e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., - 7.04225339e-003, 7.04225339e-003, 0., 0., 7.04225339e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., - 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., - 7.04225339e-003, 0., 7.04225339e-003, 0., 0., 0., 2.11267602e-002, - 0., 0., 0., 7.04225339e-003, 0., 0., 0., 7.04225339e-003, 0., 0., - 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., - 7.04225339e-003, 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 7.04225339e-003, 7.04225339e-003, 0., 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.40845068e-002, 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.45161280e-003, 2.58064512e-002, 0., 1.93548389e-002, - 1.93548389e-002, 0., 0., 0., 0., 6.45161280e-003, 0., 0., - 1.29032256e-002, 6.45161280e-003, 6.45161280e-003, - 1.29032256e-002, 6.45161280e-003, 6.45161280e-003, - 1.93548389e-002, 0., 0., 1.29032256e-002, 0., 6.45161280e-003, 0., - 1.29032256e-002, 0., 0., 1.93548389e-002, 1.93548389e-002, - 6.45161280e-003, 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., - 0., 6.45161280e-003, 0., 6.45161280e-003, 6.45161280e-003, - 1.93548389e-002, 6.45161280e-003, 1.29032256e-002, 0., 0., - 6.45161280e-003, 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., - 0., 6.45161280e-003, 6.45161280e-003, 0., 0., 0., 0., - 1.93548389e-002, 0., 6.45161280e-003, 0., 0., 6.45161280e-003, 0., - 0., 0., 0., 1.29032256e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.45161280e-003, 6.45161280e-003, 0., 0., - 0., 0., 6.45161280e-003, 6.45161280e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., - 6.45161280e-003, 0., 0., 6.45161280e-003, 0., 0., 0., 0., - 1.29032256e-002, 0., 0., 0., 2.58064512e-002, 6.45161280e-003, 0., - 0., 0., 0., 0., 0., 1.93548389e-002, 0., 0., 0., 0., - 6.45161280e-003, 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.45161280e-003, 0., 0., 1.29032256e-002, - 6.45161280e-003, 6.45161280e-003, 0., 0., 2.58064512e-002, 0., - 1.29032256e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.29032256e-002, - 0., 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.29032256e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.45161280e-003, 0., 0., 6.45161280e-003, 0., 0., - 0., 2.58064512e-002, 0., 0., 1.29032256e-002, 0., 0., - 1.29032256e-002, 0., 1.29032256e-002, 0., 6.45161280e-003, - 1.93548389e-002, 0., 0., 0., 6.45161280e-003, 0., 6.45161280e-003, - 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 3.22580636e-002, - 0., 0., 1.93548389e-002, 0., 0., 0., 0., 0., 6.45161280e-003, - 6.45161280e-003, 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.45161280e-003, 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.45161280e-003, 0., 0., 0., 0., 0., 1.29032256e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.29032256e-002, 0., 0., 0., 0., 0., - 6.45161280e-003, 6.45161280e-003, 0., 6.45161280e-003, 0., 0., - 6.45161280e-003, 0., 0., 6.45161280e-003, 0., 6.45161280e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., - 6.45161280e-003, 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.29032256e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., - 0., 0., 0., 0., 6.45161280e-003, 6.45161280e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.45161280e-003, 0., 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., - 6.45161280e-003, 0., 6.45161280e-003, 0., 0., 6.45161280e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.65289249e-002, 0., 2.47933865e-002, - 8.26446246e-003, 4.13223132e-002, 0., 8.26446246e-003, - 8.26446246e-003, 8.26446246e-003, 0., 0., 1.65289249e-002, - 2.47933865e-002, 0., 8.26446246e-003, 8.26446246e-003, - 1.65289249e-002, 8.26446246e-003, 0., 0., 0., 8.26446246e-003, 0., - 0., 0., 0., 0., 0., 1.65289249e-002, 0., 0., 0., 1.65289249e-002, - 0., 0., 0., 0., 8.26446246e-003, 8.26446246e-003, 0., 0., 0., 0., - 0., 8.26446246e-003, 8.26446246e-003, 0., 2.47933865e-002, 0., 0., - 8.26446246e-003, 0., 0., 0., 8.26446246e-003, 0., 1.65289249e-002, - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 8.26446246e-003, 0., 0., 1.65289249e-002, 0., - 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 8.26446246e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.26446246e-003, 1.65289249e-002, 8.26446246e-003, - 0., 0., 8.26446246e-003, 8.26446246e-003, 0., 0., 0., - 1.65289249e-002, 0., 0., 0., 2.47933865e-002, 8.26446246e-003, 0., - 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.26446246e-003, 0., 8.26446246e-003, 0., 0., - 1.65289249e-002, 0., 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 2.47933865e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 1.65289249e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, - 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 0., 0., 1.65289249e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 8.26446246e-003, 0., 8.26446246e-003, 0., 0., - 8.26446246e-003, 0., 0., 0., 0., 8.26446246e-003, 0., 0., - 8.26446246e-003, 8.26446246e-003, 0., 0., 0., 8.26446246e-003, 0., - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.26446246e-003, 0., 0., 0., 8.26446246e-003, 0., - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., - 0., 0., 0., 0., 1.65289249e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.26446246e-003, 8.26446246e-003, 0., 0., 0., 8.26446246e-003, - 8.26446246e-003, 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 3.30578499e-002, - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, - 0., 0., 0., 8.26446246e-003, 0., 8.26446246e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.26446246e-003, 8.26446246e-003, 0., 0., 0., 0., - 1.65289249e-002, 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 7.35294120e-003, - 2.20588241e-002, 0., 0., 1.47058824e-002, 1.47058824e-002, 0., - 1.47058824e-002, 7.35294120e-003, 0., 7.35294120e-003, 0., - 1.47058824e-002, 0., 1.47058824e-002, 7.35294120e-003, - 2.20588241e-002, 0., 0., 2.20588241e-002, 1.47058824e-002, - 7.35294120e-003, 0., 7.35294120e-003, 0., 0., 7.35294120e-003, - 1.47058824e-002, 7.35294120e-003, 0., 1.47058824e-002, 0., 0., - 7.35294120e-003, 0., 7.35294120e-003, 0., 0., 7.35294120e-003, 0., - 0., 0., 0., 0., 7.35294120e-003, 7.35294120e-003, 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 0., 1.47058824e-002, - 7.35294120e-003, 0., 0., 0., 0., 7.35294120e-003, 0., 0., 0., 0., - 7.35294120e-003, 0., 7.35294120e-003, 0., 0., 0., 0., - 7.35294120e-003, 7.35294120e-003, 0., 0., 0., 0., 0., - 7.35294120e-003, 7.35294120e-003, 7.35294120e-003, 0., - 7.35294120e-003, 0., 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.47058824e-002, 0., 0., 7.35294120e-003, 2.94117648e-002, 0., - 0., 0., 7.35294120e-003, 7.35294120e-003, 0., 0., 7.35294120e-003, - 0., 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.47058824e-002, 0., 0., 0., 7.35294120e-003, - 0., 0., 0., 7.35294120e-003, 0., 7.35294120e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 7.35294120e-003, 0., - 7.35294120e-003, 7.35294120e-003, 0., 0., 0., 2.94117648e-002, 0., - 0., 0., 0., 1.47058824e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 7.35294120e-003, 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.35294120e-003, 0., 2.20588241e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 7.35294120e-003, 0., 0., 1.47058824e-002, 0., - 7.35294120e-003, 7.35294120e-003, 7.35294120e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.47058824e-002, 0., 0., - 1.47058824e-002, 0., 7.35294120e-003, 7.35294120e-003, 0., - 7.35294120e-003, 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 7.35294120e-003, 7.35294120e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., 0., 0., - 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 2.20588241e-002, 0., 1.47058824e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.47058824e-002, 0., 0., 0., 0., 0., - 0., 7.35294120e-003, 0., 0., 0., 0., 7.35294120e-003, 0., 0., 0., - 0., 7.35294120e-003, 0., 0., 0., 0., 7.35294120e-003, - 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., - 0., 0., 0., 7.35294120e-003, 0., 7.35294120e-003, 7.35294120e-003, - 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., 0., - 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 7.35294120e-003, 0., 0., 7.35294120e-003, 0., - 1.11731840e-002, 0., 5.58659201e-003, 1.11731840e-002, 0., - 4.46927361e-002, 0., 1.11731840e-002, 0., 0., 5.58659201e-003, - 1.11731840e-002, 0., 1.67597756e-002, 0., 5.58659201e-003, - 1.11731840e-002, 1.67597756e-002, 1.67597756e-002, - 2.23463681e-002, 0., 0., 2.23463681e-002, 1.11731840e-002, 0., 0., - 1.67597756e-002, 0., 0., 1.11731840e-002, 1.11731840e-002, 0., 0., - 5.58659201e-003, 5.58659201e-003, 0., 0., 0., 5.58659201e-003, 0., - 0., 0., 0., 5.58659201e-003, 0., 0., 0., 5.58659201e-003, - 5.58659201e-003, 1.11731840e-002, 0., 5.58659201e-003, 0., 0., 0., - 5.58659201e-003, 0., 0., 5.58659201e-003, 0., 0., 0., - 1.11731840e-002, 0., 0., 0., 0., 0., 2.79329605e-002, - 5.58659201e-003, 5.58659201e-003, 0., 5.58659201e-003, 0., 0., 0., - 0., 0., 5.58659201e-003, 0., 0., 0., 1.11731840e-002, 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 5.58659201e-003, 0., - 5.58659201e-003, 0., 0., 5.58659201e-003, 0., 0., 0., - 1.11731840e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.11731840e-002, 2.23463681e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 2.23463681e-002, 0., 5.58659201e-003, 0., 5.58659211e-002, - 1.11731840e-002, 0., 1.11731840e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 5.58659201e-003, 5.58659201e-003, 5.58659201e-003, 0., 0., - 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.58659201e-003, 5.58659201e-003, 0., 0., 5.58659201e-003, - 5.58659201e-003, 5.58659201e-003, 0., 1.11731840e-002, 0., 0., 0., - 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.11731840e-002, 1.11731840e-002, 5.58659201e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 5.58659201e-003, 0., - 0., 0., 0., 0., 0., 0., 5.58659201e-003, 0., 1.67597756e-002, 0., - 0., 5.58659201e-003, 5.58659201e-003, 0., 0., 0., 0., - 1.67597756e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.58659201e-003, 0., 5.58659201e-003, - 0., 5.58659201e-003, 1.67597756e-002, 0., 0., 0., 0., 0., - 5.58659201e-003, 0., 5.58659201e-003, 0., 0., 0., 0., 0., - 5.58659201e-003, 0., 1.11731840e-002, 0., 0., 0., 1.11731840e-002, - 0., 0., 0., 1.11731840e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.58659201e-003, 0., 0., 5.58659201e-003, 0., 0., 0., 0., - 0., 5.58659201e-003, 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., - 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 1.11731840e-002, 0., 0., 0., - 5.58659201e-003, 0., 1.67597756e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 2.79329605e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.58659201e-003, 0., 0., 0., 5.58659201e-003, - 5.58659201e-003, 0., 0., 1.11731840e-002, 0., 0., 5.58659201e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.58659201e-003, 5.58659201e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 5.58659201e-003, - 0., 0., 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.58659201e-003, - 0., 1.05820103e-002, 5.29100513e-003, 0., 1.05820103e-002, 0., - 5.29100513e-003, 0., 1.58730149e-002, 0., 5.29100513e-003, - 1.58730149e-002, 5.29100513e-003, 5.29100513e-003, - 1.05820103e-002, 5.29100513e-003, 1.05820103e-002, - 1.58730149e-002, 2.64550261e-002, 1.05820103e-002, - 1.05820103e-002, 0., 0., 5.29100513e-003, 1.05820103e-002, - 5.29100513e-003, 5.29100513e-003, 0., 5.29100513e-003, 0., 0., - 5.29100513e-003, 0., 5.29100513e-003, 1.05820103e-002, 0., - 1.05820103e-002, 0., 0., 1.58730149e-002, 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 2.11640205e-002, 1.05820103e-002, 0., 0., - 5.29100513e-003, 5.29100513e-003, 0., 5.29100513e-003, - 1.58730149e-002, 0., 0., 5.29100513e-003, 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 5.29100513e-003, 0., 5.29100513e-003, - 5.29100513e-003, 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 5.29100513e-003, 0., 0., 5.29100513e-003, - 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., - 5.29100513e-003, 1.05820103e-002, 0., 0., 0., 1.05820103e-002, 0., - 0., 0., 5.29100513e-003, 0., 0., 0., 0., 5.29100513e-003, - 5.29100513e-003, 0., 0., 5.29100513e-003, 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 5.29100513e-003, 2.64550261e-002, - 0., 0., 0., 3.70370373e-002, 5.29100513e-003, 0., 5.29100513e-003, - 0., 5.29100513e-003, 0., 0., 2.11640205e-002, 0., 0., 0., 0., 0., - 0., 0., 5.29100513e-003, 5.29100513e-003, 0., 5.29100513e-003, - 5.29100513e-003, 0., 1.05820103e-002, 0., 5.29100513e-003, 0., 0., - 0., 0., 1.05820103e-002, 5.29100513e-003, 5.29100513e-003, 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.11640205e-002, 0., 0., 1.05820103e-002, 0., 0., 0., - 5.29100513e-003, 5.29100513e-003, 5.29100513e-003, 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 5.29100513e-003, 0., 0., - 1.05820103e-002, 5.29100513e-003, 1.05820103e-002, - 5.29100513e-003, 0., 0., 5.29100513e-003, 0., 0., 0., 0., - 1.05820103e-002, 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 5.29100513e-003, 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., - 0., 0., 0., 0., 5.29100513e-003, 0., 5.29100513e-003, 0., 0., 0., - 0., 0., 0., 0., 1.05820103e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., - 5.29100513e-003, 0., 5.29100513e-003, 0., 0., 1.05820103e-002, - 5.29100513e-003, 1.05820103e-002, 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 1.05820103e-002, 0., 0., 0., - 0., 0., 1.58730149e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., - 0., 0., 5.29100513e-003, 0., 0., 0., 0., 1.05820103e-002, - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., - 0., 0., 1.05820103e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 1.05820103e-002, 0., 0., 5.29100513e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.05820103e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 1.05820103e-002, - 1.05820103e-002, 0., 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, - 1.75438598e-002, 0., 1.16959065e-002, 1.16959065e-002, - 5.84795326e-003, 3.50877196e-002, 0., 0., 5.84795326e-003, 0., - 5.84795326e-003, 0., 1.16959065e-002, 5.84795326e-003, - 5.84795326e-003, 0., 0., 0., 0., 1.75438598e-002, 0., - 1.16959065e-002, 1.75438598e-002, 0., 0., 0., 0., 0., 0., - 2.33918130e-002, 1.16959065e-002, 0., 0., 5.84795326e-003, - 5.84795326e-003, 5.84795326e-003, 0., 0., 1.16959065e-002, - 5.84795326e-003, 0., 0., 0., 0., 0., 5.84795326e-003, - 5.84795326e-003, 5.84795326e-003, 1.16959065e-002, 0., 0., - 1.16959065e-002, 0., 5.84795326e-003, 5.84795326e-003, - 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 0., 0., - 1.75438598e-002, 0., 0., 0., 5.84795326e-003, 0., 5.84795326e-003, - 0., 2.33918130e-002, 0., 0., 5.84795326e-003, 0., 5.84795326e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 1.16959065e-002, - 0., 0., 0., 0., 5.84795326e-003, 0., 1.16959065e-002, - 1.16959065e-002, 0., 0., 0., 0., 0., 1.75438598e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., - 0., 0., 0., 0., 0., 5.84795326e-003, 0., 5.84795326e-003, 0., 0., - 1.75438598e-002, 0., 0., 0., 4.09356728e-002, 5.84795326e-003, 0., - 0., 0., 1.16959065e-002, 5.84795326e-003, 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 5.84795326e-003, 5.84795326e-003, 0., 0., 0., - 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 5.84795326e-003, 5.84795326e-003, - 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 5.84795326e-003, 0., - 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 2.33918130e-002, 0., - 5.84795326e-003, 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.84795326e-003, 5.84795326e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 5.84795326e-003, - 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 5.84795326e-003, - 5.84795326e-003, 0., 0., 5.84795326e-003, 5.84795326e-003, - 1.75438598e-002, 0., 0., 1.16959065e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 5.84795326e-003, - 0., 5.84795326e-003, 5.84795326e-003, 0., 5.84795326e-003, 0., 0., - 5.84795326e-003, 1.16959065e-002, 0., 0., 5.84795326e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.16959065e-002, 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., - 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.16959065e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.16959065e-002, 0., 0., 0., 1.16959065e-002, - 0., 1.16959065e-002, 0., 5.84795326e-003, 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 5.84795326e-003, - 0., 0., 0., 0., 0., 0., 5.84795326e-003, 5.84795326e-003, 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 1.75438598e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 1.16959065e-002, 0., 0., - 5.84795326e-003, 0., 1.75438598e-002, 0., 0., 0., 5.84795326e-003, - 0., 0., 0., 0., 5.84795326e-003, 0., 2.11640205e-002, - 5.29100513e-003, 2.11640205e-002, 0., 1.05820103e-002, - 5.29100513e-003, 0., 1.05820103e-002, 1.05820103e-002, - 5.29100513e-003, 0., 0., 1.05820103e-002, 5.29100513e-003, - 5.29100513e-003, 0., 0., 1.05820103e-002, 0., 1.05820103e-002, - 5.29100513e-003, 5.29100513e-003, 5.29100513e-003, - 1.05820103e-002, 0., 5.29100513e-003, 1.58730149e-002, - 1.05820103e-002, 1.05820103e-002, 1.05820103e-002, 0., 0., 0., - 1.05820103e-002, 5.29100513e-003, 0., 0., 0., 5.29100513e-003, - 1.58730149e-002, 0., 0., 0., 5.29100513e-003, 0., 5.29100513e-003, - 5.29100513e-003, 1.58730149e-002, 3.70370373e-002, - 5.29100513e-003, 0., 0., 1.05820103e-002, 0., 5.29100513e-003, - 5.29100513e-003, 0., 0., 1.05820103e-002, 5.29100513e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 1.58730149e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.05820103e-002, 0., 5.29100513e-003, 5.29100513e-003, 0., - 5.29100513e-003, 0., 5.29100513e-003, 0., 5.29100513e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.05820103e-002, 0., 0., - 0., 5.29100513e-003, 5.29100513e-003, 1.05820103e-002, 0., - 1.58730149e-002, 0., 0., 0., 5.29100513e-003, 0., 1.05820103e-002, - 0., 5.29100513e-003, 1.05820103e-002, 2.11640205e-002, 0., 0., 0., - 0., 0., 0., 0., 2.11640205e-002, 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., - 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 1.05820103e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 5.29100513e-003, 0., 0., 0., - 5.29100513e-003, 5.29100513e-003, 0., 5.29100513e-003, 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 1.05820103e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., - 5.29100513e-003, 0., 5.29100513e-003, 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 1.05820103e-002, 0., 5.29100513e-003, 0., - 0., 1.58730149e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.05820103e-002, 1.58730149e-002, 0., - 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.29100513e-003, 0., 5.29100513e-003, 5.29100513e-003, - 5.29100513e-003, 0., 0., 1.05820103e-002, 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., - 0., 0., 2.11640205e-002, 0., 1.05820103e-002, 0., 0., 0., 0., 0., - 0., 5.29100513e-003, 0., 0., 1.05820103e-002, 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 1.58730149e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.05820103e-002, 0., - 1.05820103e-002, 0., 5.29100513e-003, 5.29100513e-003, 0., 0., 0., - 1.05820103e-002, 0., 5.29100513e-003, 0., 0., 5.29100513e-003, 0., - 0., 5.29100513e-003, 0., 0., 0., 0., 1.58730149e-002, - 5.29100513e-003, 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 5.29100513e-003, 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., - 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 5.29100513e-003, 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., 6.06060587e-003, - 6.06060587e-003, 2.42424235e-002, 3.03030293e-002, 0., - 6.06060587e-003, 0., 0., 6.06060587e-003, 0., 6.06060587e-003, - 1.21212117e-002, 0., 1.81818176e-002, 6.06060587e-003, - 6.06060587e-003, 0., 3.63636352e-002, 0., 6.06060587e-003, - 1.21212117e-002, 6.06060587e-003, 0., 0., 1.81818176e-002, 0., - 6.06060587e-003, 3.03030293e-002, 6.06060587e-003, 0., 0., - 1.21212117e-002, 1.21212117e-002, 0., 0., 0., 3.03030293e-002, - 6.06060587e-003, 0., 6.06060587e-003, 0., 0., 0., 0., 0., - 6.06060587e-003, 3.63636352e-002, 0., 0., 6.06060587e-003, 0., 0., - 0., 6.06060587e-003, 0., 1.21212117e-002, 0., 1.21212117e-002, 0., - 0., 6.06060587e-003, 6.06060587e-003, 1.81818176e-002, 0., 0., 0., - 6.06060587e-003, 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 1.21212117e-002, 0., 6.06060587e-003, 0., - 0., 0., 0., 6.06060587e-003, 0., 1.81818176e-002, 6.06060587e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.21212117e-002, - 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., 1.21212117e-002, 0., - 0., 0., 3.03030293e-002, 0., 0., 0., 0., 6.06060587e-003, 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 6.06060587e-003, 6.06060587e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 1.81818176e-002, 6.06060587e-003, 0., 0., 0., 0., - 6.06060587e-003, 0., 1.21212117e-002, 0., 1.21212117e-002, 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 1.21212117e-002, - 6.06060587e-003, 0., 6.06060587e-003, 0., 0., 0., 0., - 6.06060587e-003, 6.06060587e-003, 6.06060587e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, - 0., 0., 0., 0., 0., 0., 1.81818176e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 1.21212117e-002, 0., 0., 0., 6.06060587e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.21212117e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., - 1.81818176e-002, 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, - 1.81818176e-002, 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 1.21212117e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, - 1.21212117e-002, 0., 1.21212117e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 1.21212117e-002, 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.06060587e-003, 6.06060587e-003, 0., 0., 0., - 6.06060587e-003, 0., 0., 6.06060587e-003, 0., 0., 0., 0., - 6.06060587e-003, 1.81818176e-002, 0., 0., 8.77192989e-003, 0., - 1.75438598e-002, 0., 0., 0., 8.77192989e-003, 0., 0., 0., - 1.75438598e-002, 0., 1.75438598e-002, 0., 0., 8.77192989e-003, 0., - 0., 0., 1.75438598e-002, 8.77192989e-003, 2.63157897e-002, 0., 0., - 0., 8.77192989e-003, 8.77192989e-003, 0., 4.38596494e-002, - 8.77192989e-003, 0., 0., 2.63157897e-002, 0., 0., 0., 0., - 1.75438598e-002, 0., 0., 0., 8.77192989e-003, 0., 8.77192989e-003, - 8.77192989e-003, 1.75438598e-002, 8.77192989e-003, - 4.38596494e-002, 0., 0., 0., 0., 8.77192989e-003, 0., - 8.77192989e-003, 0., 3.50877196e-002, 0., 8.77192989e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.77192989e-003, 0., 0., 8.77192989e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.75438598e-002, - 8.77192989e-003, 0., 0., 0., 0., 8.77192989e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.77192989e-003, 0., 0., 0., 0., - 1.75438598e-002, 8.77192989e-003, 0., 0., 0., 0., 0., 0., 0., - 1.75438598e-002, 0., 0., 8.77192989e-003, 3.50877196e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.77192989e-003, - 8.77192989e-003, 0., 8.77192989e-003, 8.77192989e-003, - 8.77192989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.77192989e-003, 0., 0., 0., 0., 0., 0., 8.77192989e-003, - 1.75438598e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.77192989e-003, 0., 0., 0., 8.77192989e-003, 0., 0., 0., - 0., 0., 0., 1.75438598e-002, 0., 0., 0., 0., 0., 8.77192989e-003, - 0., 0., 0., 0., 8.77192989e-003, 0., 0., 0., 8.77192989e-003, 0., - 0., 8.77192989e-003, 8.77192989e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.63157897e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.77192989e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.77192989e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.75438598e-002, 0., 0., 0., 0., 0., - 8.77192989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.77192989e-003, 0., 0., 4.38596494e-002, 0., 0., 0., 0., - 8.77192989e-003, 0., 1.75438598e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.77192989e-003, - 8.77192989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.75438598e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.77192989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.77192989e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.77192989e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.77192989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.77192989e-003, 0., 0., 0., 0., 0., 1.75438598e-002, - 0., 0., 0., 0., 0., 0., 0., 8.77192989e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.77192989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.77192989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.77192989e-003, 0., 0., 0., 0., 0., 8.77192989e-003, - 0., 0., 1.89873427e-002, 6.32911408e-003, 6.32911408e-003, - 1.26582282e-002, 1.89873427e-002, 0., 6.32911408e-003, 0., - 6.32911408e-003, 6.32911408e-003, 6.32911408e-003, - 6.32911408e-003, 6.32911408e-003, 0., 6.32911408e-003, 0., - 6.32911408e-003, 0., 1.26582282e-002, 1.26582282e-002, 0., - 3.16455700e-002, 0., 0., 0., 1.89873427e-002, 0., 1.26582282e-002, - 6.32911408e-003, 0., 6.32911408e-003, 0., 0., 6.32911408e-003, 0., - 0., 0., 1.26582282e-002, 0., 0., 0., 0., 6.32911408e-003, - 6.32911408e-003, 6.32911408e-003, 6.32911408e-003, - 6.32911408e-003, 6.32911408e-003, 0., 6.32911408e-003, - 6.32911408e-003, 6.32911408e-003, 0., 0., 0., 0., 6.32911408e-003, - 0., 6.32911408e-003, 0., 0., 1.26582282e-002, 0., 0., - 6.32911408e-003, 0., 0., 6.32911408e-003, 6.32911408e-003, - 6.32911408e-003, 0., 0., 0., 0., 0., 0., 0., 6.32911408e-003, 0., - 0., 0., 6.32911408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.32911408e-003, 0., 1.26582282e-002, 0., 0., 0., 1.26582282e-002, - 6.32911408e-003, 0., 0., 6.32911408e-003, 6.32911408e-003, 0., 0., - 0., 0., 0., 0., 0., 1.89873427e-002, 0., 0., 0., 0., 0., - 6.32911408e-003, 6.32911408e-003, 0., 6.32911408e-003, 0., 0., 0., - 0., 1.26582282e-002, 0., 0., 0., 4.43037972e-002, 0., 0., 0., 0., - 6.32911408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.32911408e-003, 0., 0., 0., 0., 0., 0., 0., 6.32911408e-003, 0., - 0., 6.32911408e-003, 0., 0., 0., 6.32911408e-003, 0., 0., - 6.32911408e-003, 0., 6.32911408e-003, 6.32911408e-003, 0., 0., 0., - 0., 6.32911408e-003, 0., 6.32911408e-003, 0., 0., 0., 0., 0., 0., - 1.26582282e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.26582282e-002, 0., 0., 1.89873427e-002, 0., 0., 0., 0., 0., 0., - 6.32911408e-003, 0., 0., 0., 0., 0., 0., 0., 6.32911408e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.32911408e-003, - 0., 1.26582282e-002, 0., 0., 0., 0., 6.32911408e-003, 0., 0., 0., - 6.32911408e-003, 0., 0., 0., 0., 0., 6.32911408e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.32911408e-003, 0., 0., 0., - 6.32911408e-003, 6.32911408e-003, 0., 0., 0., 0., 0., 0., 0., - 6.32911408e-003, 0., 0., 1.26582282e-002, 0., 0., 0., - 6.32911408e-003, 6.32911408e-003, 0., 0., 0., 0., 0., 0., - 1.89873427e-002, 0., 0., 6.32911408e-003, 0., 6.32911408e-003, 0., - 0., 0., 6.32911408e-003, 6.32911408e-003, 1.26582282e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.32911408e-003, 1.26582282e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.26582282e-002, 6.32911408e-003, - 0., 0., 6.32911408e-003, 0., 0., 0., 0., 0., 0., 6.32911408e-003, - 0., 0., 0., 0., 0., 1.89873427e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.26582282e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.32911408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.32911408e-003, 0., 0., 0., 0., - 2.53164563e-002, 0., 0., 0., 0., 0., 0., 0., 6.32911408e-003, 0., - 0., 0., 6.32911408e-003, 0., 0., 0., 0., 1.26582282e-002, 0., - 6.32911408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.32911408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.89873427e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.32911408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.32911408e-003, 6.32911408e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.32911408e-003, 0., 0., 0., - 0., 6.32911408e-003, 0., 6.32911408e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.32911408e-003, 0., 0., 0., 0., 0., - 6.32911408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.32911408e-003, 0., 0., 0., - 0., 0., 1.58730168e-002, 0., 0., 0., 0., 0., 0., 2.38095261e-002, - 0., 0., 0., 7.93650839e-003, 0., 7.93650839e-003, 0., - 7.93650839e-003, 0., 7.93650839e-003, 0., 1.58730168e-002, 0., - 7.93650839e-003, 3.96825410e-002, 0., 0., 7.93650839e-003, - 2.38095261e-002, 0., 7.93650839e-003, 7.93650839e-003, - 7.93650839e-003, 7.93650839e-003, 0., 1.58730168e-002, - 1.58730168e-002, 0., 0., 0., 2.38095261e-002, 0., 0., 0., - 1.58730168e-002, 0., 0., 1.58730168e-002, 7.93650839e-003, 0., - 1.58730168e-002, 0., 0., 0., 7.93650839e-003, 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., - 2.38095261e-002, 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.38095261e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.93650839e-003, 7.93650839e-003, 0., 0., 0., 7.93650839e-003, - 7.93650839e-003, 0., 7.93650839e-003, 1.58730168e-002, 0., 0., 0., - 0., 0., 0., 1.58730168e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 2.38095261e-002, 0., - 7.93650839e-003, 0., 3.96825410e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., - 7.93650839e-003, 0., 0., 0., 2.38095261e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., - 0., 0., 7.93650839e-003, 0., 7.93650839e-003, 0., 7.93650839e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., - 0., 0., 0., 0., 7.93650839e-003, 7.93650839e-003, 0., 0., 0., 0., - 0., 0., 7.93650839e-003, 0., 1.58730168e-002, 0., 0., 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 7.93650839e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., - 7.93650839e-003, 7.93650839e-003, 0., 0., 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.58730168e-002, 0., 0., 0., - 1.58730168e-002, 1.58730168e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.93650839e-003, 0., 0., 0., 0., 7.93650839e-003, 0., - 0., 0., 0., 0., 0., 1.58730168e-002, 0., 0., 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, - 0., 7.93650839e-003, 0., 0., 0., 7.93650839e-003, 7.93650839e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 1.58730168e-002, 0., - 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, - 0., 0., 0., 0., 0., 2.38095261e-002, 0., 0., 7.93650839e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., 1.58730168e-002, - 0., 1.19047621e-002, 0., 0., 5.95238106e-003, 1.19047621e-002, - 1.78571437e-002, 0., 1.78571437e-002, 0., 5.95238106e-003, - 5.95238106e-003, 5.95238106e-003, 5.95238106e-003, - 1.78571437e-002, 0., 0., 0., 0., 5.95238106e-003, 1.19047621e-002, - 5.95238106e-003, 0., 4.16666679e-002, 0., 0., 0., 1.78571437e-002, - 0., 2.38095243e-002, 2.38095243e-002, 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 5.95238106e-003, 1.19047621e-002, 0., - 0., 0., 5.95238106e-003, 5.95238106e-003, 0., 1.19047621e-002, - 1.19047621e-002, 3.57142873e-002, 0., 0., 5.95238106e-003, 0., 0., - 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 1.19047621e-002, - 5.95238106e-003, 1.78571437e-002, 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 1.19047621e-002, 0., 0., 5.95238106e-003, 0., - 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 5.95238106e-003, 5.95238106e-003, 0., 0., - 0., 0., 0., 5.95238106e-003, 0., 0., 1.19047621e-002, - 1.19047621e-002, 0., 0., 0., 0., 0., 0., 5.95238106e-003, - 2.38095243e-002, 0., 5.95238106e-003, 0., 0., 0., 0., 0., - 1.19047621e-002, 0., 0., 0., 0., 0., 1.19047621e-002, 0., 0., 0., - 2.97619049e-002, 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 0., 0., 0., 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 1.19047621e-002, 0., 1.19047621e-002, 0., - 1.19047621e-002, 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, - 0., 0., 0., 5.95238106e-003, 0., 0., 0., 5.95238106e-003, - 5.95238106e-003, 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.95238106e-003, 0., 0., 0., 5.95238106e-003, 0., 0., - 0., 0., 0., 0., 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.78571437e-002, 0., 0., 0., - 1.78571437e-002, 0., 0., 0., 0., 1.19047621e-002, 0., 0., 0., 0., - 0., 0., 0., 1.19047621e-002, 5.95238106e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.19047621e-002, 0., 0., 0., 5.95238106e-003, - 0., 0., 0., 0., 1.19047621e-002, 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 1.19047621e-002, 0., 0., - 1.19047621e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.19047621e-002, 0., 0., 0., 1.19047621e-002, 1.78571437e-002, 0., - 0., 0., 0., 0., 1.19047621e-002, 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., - 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.19047621e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.78571437e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.95238106e-003, 0., 0., 0., 5.95238106e-003, 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.95238106e-003, 0., 0., 0., 5.95238106e-003, 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.95238106e-003, 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 1.08695654e-002, 1.63043477e-002, - 5.43478271e-003, 1.08695654e-002, 1.08695654e-002, 0., 0., - 5.43478271e-003, 1.08695654e-002, 0., 0., 0., 5.43478271e-003, - 5.43478271e-003, 5.43478271e-003, 0., 1.08695654e-002, - 1.08695654e-002, 1.63043477e-002, 1.08695654e-002, 0., 0., - 1.63043477e-002, 5.43478271e-003, 0., 0., 0., 5.43478271e-003, - 2.17391308e-002, 1.08695654e-002, 0., 5.43478271e-003, - 5.43478271e-003, 1.08695654e-002, 5.43478271e-003, 0., 0., - 5.43478271e-003, 3.80434804e-002, 5.43478271e-003, 0., 0., - 1.08695654e-002, 5.43478271e-003, 0., 1.08695654e-002, - 5.43478271e-003, 0., 2.17391308e-002, 0., 0., 5.43478271e-003, - 5.43478271e-003, 0., 1.63043477e-002, 5.43478271e-003, 0., 0., 0., - 5.43478271e-003, 0., 0., 2.17391308e-002, 0., 5.43478271e-003, 0., - 0., 0., 5.43478271e-003, 5.43478271e-003, 0., 0., 5.43478271e-003, - 0., 5.43478271e-003, 0., 0., 0., 0., 1.08695654e-002, 0., 0., - 5.43478271e-003, 0., 5.43478271e-003, 0., 0., 0., 0., 0., - 5.43478271e-003, 5.43478271e-003, 5.43478271e-003, 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 5.43478271e-003, 5.43478271e-003, - 0., 5.43478271e-003, 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., - 5.43478271e-003, 0., 0., 0., 5.43478271e-003, 0., 1.63043477e-002, - 5.43478271e-003, 0., 0., 2.71739140e-002, 5.43478271e-003, 0., 0., - 0., 0., 1.08695654e-002, 0., 0., 0., 0., 0., 0., 1.08695654e-002, - 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 5.43478271e-003, 0., 0., 0., - 5.43478271e-003, 0., 0., 5.43478271e-003, 5.43478271e-003, 0., - 5.43478271e-003, 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., - 0., 0., 5.43478271e-003, 0., 0., 0., 5.43478271e-003, 0., 0., - 5.43478271e-003, 5.43478271e-003, 0., 1.08695654e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.63043477e-002, 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., - 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.43478271e-003, 0., 0., 0., 0., 5.43478271e-003, 0., - 5.43478271e-003, 1.08695654e-002, 0., 1.08695654e-002, - 5.43478271e-003, 5.43478271e-003, 0., 5.43478271e-003, 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 5.43478271e-003, 0., 0., 1.08695654e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 5.43478271e-003, 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 5.43478271e-003, - 1.08695654e-002, 0., 0., 5.43478271e-003, 5.43478271e-003, 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.08695654e-002, 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.43478271e-003, 0., 0., 5.43478271e-003, 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.08695654e-002, 0., 0., 0., 0., 5.43478271e-003, 5.43478271e-003, - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, - 5.43478271e-003, 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 5.43478271e-003, 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., - 5.43478271e-003, 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., - 0., 5.43478271e-003, 0., 0., 0., 0., 0., 5.43478271e-003, 0., - 5.43478271e-003, 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.43478271e-003, 5.43478271e-003, 0., 1.08695654e-002, - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.36986300e-002, 0., 0., 6.84931502e-003, 6.84931502e-003, 0., 0., - 0., 2.73972601e-002, 6.84931502e-003, 6.84931502e-003, 0., - 1.36986300e-002, 6.84931502e-003, 0., 0., 0., 6.84931502e-003, - 6.84931502e-003, 6.84931502e-003, 0., 0., 6.84931502e-003, 0., 0., - 0., 2.05479451e-002, 0., 6.84931502e-003, 1.36986300e-002, 0., - 1.36986300e-002, 0., 1.36986300e-002, 0., 0., 6.84931502e-003, - 6.84931502e-003, 1.36986300e-002, 6.84931502e-003, 0., 0., - 6.84931502e-003, 1.36986300e-002, 0., 1.36986300e-002, - 1.36986300e-002, 1.36986300e-002, 4.10958901e-002, - 6.84931502e-003, 0., 6.84931502e-003, 0., 0., 0., 6.84931502e-003, - 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 3.42465751e-002, 0., 0., 0., 6.84931502e-003, 6.84931502e-003, 0., - 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.84931502e-003, 0., 1.36986300e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., - 1.36986300e-002, 1.36986300e-002, 0., 0., 0., 0., 1.36986300e-002, - 6.84931502e-003, 0., 0., 0., 6.84931502e-003, 0., 0., - 1.36986300e-002, 1.36986300e-002, 0., 0., 0., 2.73972601e-002, 0., - 0., 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., - 2.05479451e-002, 0., 1.36986300e-002, 0., 0., 0., 0., 0., 0., 0., - 6.84931502e-003, 0., 6.84931502e-003, 6.84931502e-003, 0., 0., 0., - 1.36986300e-002, 0., 0., 0., 1.36986300e-002, 0., 6.84931502e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.84931502e-003, 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., - 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.84931502e-003, 0., 0., 6.84931502e-003, 2.05479451e-002, 0., - 0., 0., 0., 0., 0., 0., 1.36986300e-002, 0., 0., 0., 0., 0., 0., - 6.84931502e-003, 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., - 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.84931502e-003, 0., - 0., 6.84931502e-003, 0., 0., 6.84931502e-003, 0., 0., - 6.84931502e-003, 0., 0., 6.84931502e-003, 0., 0., 6.84931502e-003, - 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.36986300e-002, 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., - 0., 6.84931502e-003, 0., 0., 0., 0., 0., 1.36986300e-002, 0., - 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.05479451e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.84931502e-003, 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., - 0., 0., 0., 0., 1.36986300e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.36986300e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 6.84931502e-003, - 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., - 6.84931502e-003, 0., 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., - 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., - 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.84931502e-003, - 1.36986300e-002, 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.36986300e-002, 0., - 1.69491526e-002, 8.47457629e-003, 0., 0., 2.54237279e-002, 0., 0., - 0., 0., 8.47457629e-003, 0., 0., 2.54237279e-002, 0., - 8.47457629e-003, 8.47457629e-003, 8.47457629e-003, - 2.54237279e-002, 8.47457629e-003, 1.69491526e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.47457629e-003, 8.47457629e-003, 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 8.47457629e-003, 0., - 8.47457629e-003, 0., 0., 1.69491526e-002, 0., 0., 8.47457629e-003, - 1.69491526e-002, 1.69491526e-002, 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 8.47457629e-003, 8.47457629e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.69491526e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, - 8.47457629e-003, 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.47457629e-003, 8.47457629e-003, 0., - 8.47457629e-003, 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.47457629e-003, 8.47457629e-003, 0., 8.47457629e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, - 6.77966103e-002, 0., 0., 1.69491526e-002, 0., 0., 2.54237279e-002, - 0., 1.69491526e-002, 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 8.47457629e-003, 8.47457629e-003, 0., 0., 0., 0., 4.23728824e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 0., 0., 1.69491526e-002, 8.47457629e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 0., 0., 0., 0., 0., 0., 8.47457629e-003, 1.69491526e-002, 0., 0., - 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.69491526e-002, 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 8.47457629e-003, 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 8.47457629e-003, 0., 8.47457629e-003, 0., 0., 0., 8.47457629e-003, - 8.47457629e-003, 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.54237279e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.69491526e-002, - 0., 1.69491526e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.47457629e-003, 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 8.47457629e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.69491526e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.80272095e-003, 6.80272095e-003, - 6.80272095e-003, 2.04081628e-002, 1.36054419e-002, - 4.08163257e-002, 0., 6.80272095e-003, 6.80272095e-003, 0., 0., - 6.80272095e-003, 6.80272095e-003, 0., 0., 1.36054419e-002, 0., - 6.80272095e-003, 0., 6.80272095e-003, 6.80272095e-003, - 6.80272095e-003, 4.76190448e-002, 0., 6.80272095e-003, 0., - 1.36054419e-002, 0., 6.80272095e-003, 2.04081628e-002, 0., - 6.80272095e-003, 0., 6.80272095e-003, 0., 1.36054419e-002, 0., 0., - 2.04081628e-002, 2.04081628e-002, 0., 0., 6.80272095e-003, 0., 0., - 1.36054419e-002, 1.36054419e-002, 1.36054419e-002, - 2.04081628e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 6.80272095e-003, 0., 0., 6.80272095e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 1.36054419e-002, 0., 0., - 1.36054419e-002, 2.04081628e-002, 0., 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 2.72108838e-002, 6.80272095e-003, - 0., 0., 0., 0., 0., 0., 2.72108838e-002, 0., 0., 0., 0., - 6.80272095e-003, 0., 6.80272095e-003, 6.80272095e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 6.80272095e-003, - 0., 6.80272095e-003, 0., 6.80272095e-003, 0., 2.72108838e-002, 0., - 6.80272095e-003, 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 6.80272095e-003, 6.80272095e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.36054419e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., - 6.80272095e-003, 6.80272095e-003, 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 1.36054419e-002, 0., 6.80272095e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.80272095e-003, 0., 0., 1.36054419e-002, 0., 0., - 6.80272095e-003, 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 6.80272095e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.36054419e-002, 0., 0., 0., - 0., 0., 0., 6.80272095e-003, 0., 0., 6.80272095e-003, - 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.36054419e-002, - 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., - 6.80272095e-003, 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.80272095e-003, 0., 0., 1.36054419e-002, - 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.04081628e-002, 0., - 0., 6.80272095e-003, 0., 0., 0., 0., 6.80272095e-003, 0., - 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.36054419e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.80272095e-003, 0., 6.80272095e-003, 0., 1.36054419e-002, - 0., 0., 0., 0., 6.80272095e-003, 0., 5.81395347e-003, - 5.81395347e-003, 1.74418613e-002, 4.06976752e-002, - 5.81395347e-003, 0., 5.81395347e-003, 5.81395347e-003, - 5.81395347e-003, 1.16279069e-002, 0., 1.16279069e-002, - 5.81395347e-003, 0., 0., 5.81395347e-003, 1.74418613e-002, 0., - 2.32558139e-002, 1.16279069e-002, 1.16279069e-002, - 1.16279069e-002, 0., 5.81395347e-003, 0., 2.32558139e-002, 0., - 5.81395347e-003, 1.74418613e-002, 0., 0., 0., 5.81395347e-003, 0., - 0., 0., 0., 1.16279069e-002, 1.16279069e-002, 0., 0., 0., - 1.74418613e-002, 0., 1.16279069e-002, 0., 0., 1.16279069e-002, 0., - 5.81395347e-003, 0., 0., 5.81395347e-003, 5.81395347e-003, - 1.16279069e-002, 0., 0., 5.81395347e-003, 0., 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 5.81395347e-003, - 5.81395347e-003, 1.16279069e-002, 0., 1.16279069e-002, 0., 0., 0., - 5.81395347e-003, 0., 0., 5.81395347e-003, 0., 0., 0., 0., - 5.81395347e-003, 0., 0., 1.16279069e-002, 0., 0., 0., 0., 0., 0., - 0., 5.81395347e-003, 0., 0., 0., 0., 1.16279069e-002, 0., 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.81395347e-003, 5.81395347e-003, 0., 0., 0., - 2.32558139e-002, 0., 0., 0., 3.48837227e-002, 0., 0., 0., 0., 0., - 0., 0., 1.16279069e-002, 0., 0., 5.81395347e-003, 0., - 1.16279069e-002, 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.74418613e-002, 0., 5.81395347e-003, 0., 0., - 0., 0., 1.74418613e-002, 0., 0., 0., 0., 0., 0., 1.16279069e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., - 5.81395347e-003, 0., 1.16279069e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 1.16279069e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.16279069e-002, 0., 0., 0., 0., 0., 0., 5.81395347e-003, - 1.16279069e-002, 0., 0., 0., 0., 0., 1.74418613e-002, 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 5.81395347e-003, - 5.81395347e-003, 5.81395347e-003, 0., 5.81395347e-003, - 1.74418613e-002, 5.81395347e-003, 0., 0., 0., 0., 5.81395347e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.16279069e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 1.16279069e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., - 1.16279069e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.16279069e-002, 0., 1.74418613e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.81395347e-003, 0., 0., 0., 5.81395347e-003, 0., 0., - 1.16279069e-002, 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., - 1.16279069e-002, 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., - 2.32558139e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., - 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.74418613e-002, 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., - 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 1.16279069e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.12359552e-002, 0., - 1.68539323e-002, 2.24719103e-002, 1.12359552e-002, 0., - 1.12359552e-002, 5.61797759e-003, 0., 1.12359552e-002, - 5.61797759e-003, 5.61797759e-003, 1.12359552e-002, - 5.61797759e-003, 5.61797759e-003, 0., 1.12359552e-002, - 1.12359552e-002, 2.80898884e-002, 0., 5.61797759e-003, - 1.68539323e-002, 0., 0., 0., 1.12359552e-002, 0., 5.61797759e-003, - 1.12359552e-002, 5.61797759e-003, 5.61797759e-003, 0., 0., - 3.37078646e-002, 0., 0., 5.61797759e-003, 1.68539323e-002, - 1.12359552e-002, 0., 5.61797759e-003, 0., 1.12359552e-002, - 5.61797759e-003, 0., 5.61797759e-003, 0., 1.68539323e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., - 1.12359552e-002, 0., 0., 0., 0., 5.61797759e-003, 5.61797759e-003, - 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, 0., - 0., 1.12359552e-002, 0., 0., 0., 5.61797759e-003, 5.61797759e-003, - 0., 0., 0., 0., 5.61797759e-003, 5.61797759e-003, 0., - 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 1.68539323e-002, 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., - 1.68539323e-002, 0., 5.61797759e-003, 0., 3.93258445e-002, 0., 0., - 0., 0., 0., 0., 0., 1.68539323e-002, 0., 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 5.61797759e-003, 0., 0., - 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 5.61797759e-003, - 0., 0., 0., 5.61797759e-003, 5.61797759e-003, 2.24719103e-002, 0., - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 5.61797759e-003, 0., - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 1.12359552e-002, 0., 0., 5.61797759e-003, 0., 0., 0., - 5.61797759e-003, 5.61797759e-003, 0., 0., 1.12359552e-002, 0., 0., - 0., 0., 0., 0., 5.61797759e-003, 5.61797759e-003, 5.61797759e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.61797759e-003, 0., 0., 5.61797759e-003, 0., - 1.12359552e-002, 0., 5.61797759e-003, 1.12359552e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 1.12359552e-002, 5.61797759e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, 5.61797759e-003, - 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.12359552e-002, 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 0., 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 5.61797759e-003, 0., 0., 1.12359552e-002, 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 5.61797759e-003, 0., 0., 0., 1.68539323e-002, 0., 0., 0., 0., 0., - 1.12359552e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.61797759e-003, 0., 1.69491526e-002, 0., 8.47457629e-003, - 2.54237279e-002, 1.69491526e-002, 0., 0., 1.69491526e-002, 0., 0., - 0., 0., 8.47457629e-003, 1.69491526e-002, 0., 8.47457629e-003, - 8.47457629e-003, 8.47457629e-003, 0., 8.47457629e-003, 0., - 1.69491526e-002, 1.69491526e-002, 0., 1.69491526e-002, 0., - 1.69491526e-002, 0., 8.47457629e-003, 8.47457629e-003, 0., - 8.47457629e-003, 0., 0., 0., 8.47457629e-003, 0., 0., - 3.38983051e-002, 8.47457629e-003, 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 8.47457629e-003, 1.69491526e-002, 0., 0., 0., - 0., 0., 8.47457629e-003, 0., 0., 0., 0., 8.47457629e-003, 0., 0., - 0., 0., 2.54237279e-002, 0., 0., 0., 1.69491526e-002, 0., - 8.47457629e-003, 0., 0., 0., 8.47457629e-003, 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.69491526e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 8.47457629e-003, - 8.47457629e-003, 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 2.54237279e-002, 0., 0., 0., - 4.23728824e-002, 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., - 0., 0., 0., 1.69491526e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 8.47457629e-003, - 0., 1.69491526e-002, 2.54237279e-002, 0., 0., 0., 0., 0., - 8.47457629e-003, 8.47457629e-003, 0., 0., 8.47457629e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 1.69491526e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.69491526e-002, 8.47457629e-003, 0., 0., 0., - 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 8.47457629e-003, - 0., 0., 1.69491526e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 1.69491526e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.54237279e-002, 0., 8.47457629e-003, - 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 8.47457629e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.47457629e-003, 3.38983051e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, - 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., - 8.47457629e-003, 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.69491526e-002, 8.47457629e-003, 0., 0., 0., 0., 8.47457629e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., - 7.40740728e-003, 0., 7.40740728e-003, 7.40740728e-003, - 2.22222209e-002, 0., 7.40740728e-003, 7.40740728e-003, 0., 0., 0., - 0., 0., 0., 7.40740728e-003, 0., 0., 7.40740728e-003, - 1.48148146e-002, 7.40740728e-003, 0., 7.40740728e-003, 0., 0., 0., - 2.22222209e-002, 0., 7.40740728e-003, 1.48148146e-002, - 7.40740728e-003, 7.40740728e-003, 0., 7.40740728e-003, - 7.40740728e-003, 0., 0., 0., 7.40740728e-003, 7.40740728e-003, - 7.40740728e-003, 0., 7.40740728e-003, 0., 7.40740728e-003, - 1.48148146e-002, 0., 7.40740728e-003, 1.48148146e-002, - 7.40740728e-003, 0., 0., 1.48148146e-002, 0., 0., 1.48148146e-002, - 0., 0., 0., 1.48148146e-002, 0., 0., 7.40740728e-003, 0., - 1.48148146e-002, 7.40740728e-003, 0., 0., 1.48148146e-002, 0., - 7.40740728e-003, 0., 7.40740728e-003, 0., 0., 0., 0., 0., - 7.40740728e-003, 0., 0., 0., 0., 0., 1.48148146e-002, 0., 0., 0., - 0., 0., 0., 0., 7.40740728e-003, 0., 0., 0., 0., 0., 0., - 1.48148146e-002, 0., 7.40740728e-003, 0., 7.40740728e-003, - 1.48148146e-002, 0., 0., 0., 0., 0., 0., 0., 7.40740728e-003, 0., - 0., 7.40740728e-003, 0., 7.40740728e-003, 1.48148146e-002, 0., - 1.48148146e-002, 0., 0., 0., 0., 0., 7.40740728e-003, 0., 0., 0., - 5.18518500e-002, 7.40740728e-003, 0., 0., 0., 1.48148146e-002, 0., - 0., 0., 0., 0., 0., 0., 7.40740728e-003, 7.40740728e-003, 0., 0., - 0., 0., 0., 1.48148146e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.48148146e-002, 0., 0., 0., 0., 0., 0., - 1.48148146e-002, 0., 7.40740728e-003, 0., 0., 0., 0., 0., - 7.40740728e-003, 7.40740728e-003, 1.48148146e-002, 0., 0., - 7.40740728e-003, 0., 0., 0., 0., 0., 7.40740728e-003, 0., 0., 0., - 0., 0., 0., 0., 7.40740728e-003, 0., 0., 0., 0., 0., 0., - 7.40740728e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.40740728e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.48148146e-002, 7.40740728e-003, 0., 0., - 7.40740728e-003, 0., 0., 0., 0., 7.40740728e-003, 0., 0., 0., 0., - 7.40740728e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.40740728e-003, 0., 0., 0., 7.40740728e-003, 0., 0., - 7.40740728e-003, 0., 0., 7.40740728e-003, 7.40740728e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.40740728e-003, 0., 0., 0., - 0., 7.40740728e-003, 0., 0., 0., 0., 0., 7.40740728e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.40740728e-003, 0., 0., 0., 0., 0., 0., 7.40740728e-003, 0., 0., - 1.48148146e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.40740728e-003, 0., 7.40740728e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.40740728e-003, 0., 0., 0., 0., 0., - 7.40740728e-003, 0., 0., 0., 0., 0., 0., 0., 7.40740728e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.40740728e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 7.40740728e-003, 0., 0., 0., 0., - 7.40740728e-003, 0., 0., 0., 0., 0., 0., 0., 0., 7.40740728e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.40740728e-003, 0., 0., - 0., 0., 0., 7.40740728e-003, 0., 0., 0., 0., 0., 0., 0., - 1.48148146e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.40740728e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.48148146e-002, 0., 0., - 7.40740728e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.40740728e-003, 0., 0., 0., 0., 0., 0., 7.40740728e-003, 0., 0., - 0., 0., 0., 0., 0., 7.40740728e-003, 0., 0., 0., 0., 0., - 1.48148146e-002, 0., 0., 8.54700897e-003, 8.54700897e-003, 0., 0., - 2.56410278e-002, 0., 8.54700897e-003, 0., 0., 0., 0., - 2.56410278e-002, 8.54700897e-003, 0., 8.54700897e-003, 0., 0., 0., - 3.41880359e-002, 0., 8.54700897e-003, 8.54700897e-003, 0., 0., 0., - 4.27350439e-002, 0., 0., 8.54700897e-003, 1.70940179e-002, 0., 0., - 8.54700897e-003, 1.70940179e-002, 0., 0., 0., 4.27350439e-002, - 8.54700897e-003, 0., 0., 0., 0., 0., 0., 0., 8.54700897e-003, - 3.41880359e-002, 0., 0., 0., 0., 0., 8.54700897e-003, - 8.54700897e-003, 0., 8.54700897e-003, 0., 1.70940179e-002, 0., - 8.54700897e-003, 0., 0., 1.70940179e-002, 0., 0., 0., - 8.54700897e-003, 0., 8.54700897e-003, 0., 0., 0., 0., - 1.70940179e-002, 0., 8.54700897e-003, 0., 0., 0., 0., 0., 0., - 8.54700897e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.54700897e-003, 0., - 8.54700897e-003, 8.54700897e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 2.56410278e-002, 0., 0., 0., - 7.69230798e-002, 0., 0., 0., 8.54700897e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 8.54700897e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.54700897e-003, 0., 0., 0., 0., 0., 0., 0., - 8.54700897e-003, 0., 0., 0., 8.54700897e-003, 0., 0., 0., - 8.54700897e-003, 0., 0., 0., 0., 0., 0., 0., 0., 8.54700897e-003, - 0., 0., 0., 8.54700897e-003, 0., 0., 8.54700897e-003, 0., - 8.54700897e-003, 8.54700897e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.54700897e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.54700897e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.70940179e-002, - 0., 0., 0., 0., 0., 0., 8.54700897e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.54700897e-003, 0., 0., 1.70940179e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.56410278e-002, 0., - 8.54700897e-003, 0., 0., 8.54700897e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.54700897e-003, 0., 0., 0., - 0., 2.56410278e-002, 0., 0., 0., 8.54700897e-003, 8.54700897e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.54700897e-003, - 8.54700897e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.54700897e-003, 0., 8.54700897e-003, 0., 8.54700897e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.54700897e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.70940179e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 8.54700897e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.54700897e-003, 0., 0., 0., 0., 0., - 0., 0., 8.54700897e-003, 0., 8.54700897e-003, 0., 0., 0., - 8.54700897e-003, 0., 8.54700897e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.54700897e-003, - 0., 0., 8.54700897e-003, 0., 8.54700897e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.54700897e-003, 0., 8.54700897e-003, 0., 0., 0., 0., 0., - 1.68067235e-002, 0., 0., 1.68067235e-002, 2.52100863e-002, - 2.52100863e-002, 0., 0., 8.40336177e-003, 8.40336177e-003, - 1.68067235e-002, 1.68067235e-002, 8.40336177e-003, 0., 0., 0., 0., - 1.68067235e-002, 0., 0., 0., 0., 8.40336177e-003, 0., - 8.40336177e-003, 0., 2.52100863e-002, 0., 0., 8.40336177e-003, 0., - 1.68067235e-002, 0., 1.68067235e-002, 0., 0., 0., 0., - 1.68067235e-002, 1.68067235e-002, 0., 0., 0., 8.40336177e-003, 0., - 1.68067235e-002, 1.68067235e-002, 1.68067235e-002, - 3.36134471e-002, 0., 8.40336177e-003, 0., 8.40336177e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., 8.40336177e-003, - 0., 0., 0., 0., 0., 0., 8.40336177e-003, 8.40336177e-003, 0., 0., - 0., 0., 8.40336177e-003, 0., 8.40336177e-003, 0., 8.40336177e-003, - 0., 8.40336177e-003, 8.40336177e-003, 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 8.40336177e-003, 0., 0., - 2.52100863e-002, 0., 0., 0., 1.68067235e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 8.40336177e-003, 0., 0., 0., 8.40336177e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 1.68067235e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., - 1.68067235e-002, 0., 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., - 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.68067235e-002, 0., 8.40336177e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.40336177e-003, - 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., - 0., 0., 8.40336177e-003, 0., 0., 0., 2.52100863e-002, - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.68067235e-002, 0., 0., - 8.40336177e-003, 2.52100863e-002, 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.40336177e-003, 0., 0., 8.40336177e-003, 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.52100863e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.68067235e-002, - 1.68067235e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.68067235e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.68067235e-002, 0., - 8.40336177e-003, 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., - 1.39860138e-002, 0., 6.99300691e-003, 2.09790207e-002, - 1.39860138e-002, 1.39860138e-002, 0., 0., 0., 0., 6.99300691e-003, - 6.99300691e-003, 6.99300691e-003, 6.99300691e-003, 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 2.09790207e-002, 6.99300691e-003, - 6.99300691e-003, 0., 2.79720277e-002, 0., 2.09790207e-002, - 1.39860138e-002, 0., 6.99300691e-003, 0., 6.99300691e-003, 0., 0., - 0., 0., 2.79720277e-002, 1.39860138e-002, 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 4.89510484e-002, 6.99300691e-003, 0., - 0., 6.99300691e-003, 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., 0., 0., 0., - 1.39860138e-002, 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 6.99300691e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.39860138e-002, 0., 0., - 0., 0., 1.39860138e-002, 0., 0., 0., 0., 0., 6.99300691e-003, 0., - 4.89510484e-002, 6.99300691e-003, 0., 0., 1.39860138e-002, 0., 0., - 0., 0., 6.99300691e-003, 0., 0., 6.99300691e-003, 0., 0., 0., 0., - 2.79720277e-002, 6.99300691e-003, 0., 0., 6.99300691e-003, 0., - 1.39860138e-002, 0., 0., 0., 0., 6.99300691e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.99300691e-003, 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.99300691e-003, - 0., 0., 6.99300691e-003, 0., 6.99300691e-003, 0., 0., 0., 0., - 6.99300691e-003, 6.99300691e-003, 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 6.99300691e-003, 6.99300691e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 6.99300691e-003, 0., 0., - 1.39860138e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 6.99300691e-003, 0., 0., 0., 0., 6.99300691e-003, - 0., 0., 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 6.99300691e-003, 0., 0., 6.99300691e-003, - 0., 1.39860138e-002, 0., 1.39860138e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 6.99300691e-003, 0., 6.99300691e-003, 0., 6.99300691e-003, - 0., 0., 6.99300691e-003, 0., 0., 6.99300691e-003, 0., 0., 0., - 2.09790207e-002, 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., 0., - 0., 0., 0., 2.09790207e-002, 0., 0., 0., 0., 0., 6.99300691e-003, - 0., 0., 0., 6.99300691e-003, 0., 6.99300691e-003, 0., 0., 0., 0., - 0., 0., 1.39860138e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 6.99300691e-003, 6.99300691e-003, 0., 0., 0., - 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., 1.39860138e-002, 0., - 0., 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 6.99300691e-003, 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.99300691e-003, 0., 0., 0., 0., 0., 6.99300691e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.99300691e-003, 0., - 0., 0., 0., 6.99300691e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.12820529e-003, 5.12820529e-003, 0., - 5.12820529e-003, 0., 2.05128212e-002, 0., 1.02564106e-002, 0., 0., - 5.12820529e-003, 0., 5.12820529e-003, 0., 5.12820529e-003, - 5.12820529e-003, 0., 5.12820529e-003, 1.02564106e-002, - 5.12820529e-003, 0., 0., 2.05128212e-002, 0., 0., 0., - 2.56410260e-002, 0., 0., 1.53846163e-002, 5.12820529e-003, - 5.12820529e-003, 0., 5.12820529e-003, 0., 1.02564106e-002, 0., - 5.12820529e-003, 2.56410260e-002, 5.12820529e-003, - 5.12820529e-003, 0., 5.12820529e-003, 5.12820529e-003, 0., - 1.02564106e-002, 0., 5.12820529e-003, 2.56410260e-002, 0., 0., - 1.02564106e-002, 0., 0., 0., 5.12820529e-003, 0., 1.02564106e-002, - 0., 1.02564106e-002, 5.12820529e-003, 0., 5.12820529e-003, 0., 0., - 0., 0., 0., 1.02564106e-002, 0., 1.02564106e-002, 0., - 5.12820529e-003, 5.12820529e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.12820529e-003, 0., 0., 0., - 5.12820529e-003, 5.12820529e-003, 5.12820529e-003, - 1.02564106e-002, 1.02564106e-002, 0., 0., 1.02564106e-002, 0., - 5.12820529e-003, 0., 5.12820529e-003, 5.12820529e-003, 0., 0., - 5.12820529e-003, 0., 5.12820529e-003, 0., 5.12820529e-003, - 5.12820529e-003, 0., 5.12820529e-003, 0., 5.12820529e-003, - 1.02564106e-002, 0., 0., 0., 0., 0., 0., 5.12820529e-003, - 5.12820529e-003, 5.12820529e-003, 0., 0., 0., 1.53846163e-002, 0., - 5.12820529e-003, 0., 5.12820529e-003, 5.12820529e-003, 0., 0., - 5.12820529e-003, 0., 0., 0., 0., 2.05128212e-002, 5.12820529e-003, - 5.12820529e-003, 5.12820529e-003, 0., 0., 0., 5.12820529e-003, 0., - 0., 0., 0., 0., 0., 5.12820529e-003, 0., 0., 0., 0., 0., - 5.12820529e-003, 5.12820529e-003, 1.02564106e-002, 0., 0., 0., - 5.12820529e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.12820529e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.12820529e-003, - 0., 0., 0., 0., 5.12820529e-003, 0., 0., 0., 0., 0., 0., 0., - 1.02564106e-002, 0., 5.12820529e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.12820529e-003, 0., 0., 1.02564106e-002, 0., 0., 0., - 0., 5.12820529e-003, 0., 5.12820529e-003, 0., 0., 0., 0., 0., 0., - 5.12820529e-003, 0., 1.02564106e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.02564106e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 5.12820529e-003, 0., 5.12820529e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.12820529e-003, 0., 0., 0., 0., 5.12820529e-003, - 0., 0., 5.12820529e-003, 0., 5.12820529e-003, 0., 5.12820529e-003, - 0., 1.02564106e-002, 0., 0., 5.12820529e-003, 1.53846163e-002, 0., - 0., 1.02564106e-002, 0., 0., 0., 0., 0., 0., 5.12820529e-003, 0., - 0., 0., 0., 0., 1.02564106e-002, 5.12820529e-003, 0., 0., 0., 0., - 1.02564106e-002, 1.02564106e-002, 0., 5.12820529e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.12820529e-003, 0., 0., 0., 1.02564106e-002, 0., 0., 0., 0., 0., - 0., 1.02564106e-002, 0., 0., 0., 0., 0., 5.12820529e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.02564106e-002, 0., 5.12820529e-003, - 0., 0., 0., 0., 5.12820529e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.12820529e-003, 0., - 0., 5.12820529e-003, 0., 0., 0., 5.12820529e-003, 0., 0., 0., 0., - 0., 5.12820529e-003, 0., 0., 5.12820529e-003, 0., 0., 0., 0., 0., - 2.05128212e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.12820529e-003, 0., 0., 0., 0., 0., 0., 5.12820529e-003, - 5.12820529e-003, 0., 0., 0., 1.02564106e-002, 0., 0., - 5.12820529e-003, 0., 5.12820529e-003, 0., 0., 0., 5.12820529e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.12820529e-003, 0., 0., 0., 0., - 0., 0., 5.12820529e-003, 0., 0., 1.02564106e-002, 0., - 5.12820529e-003, 0., 0., 5.12820529e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.12820529e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.02564106e-002, 0., - 5.12820529e-003, 0., 5.12820529e-003, 0., 0., 0., 5.12820529e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.12820529e-003, 0., - 5.12820529e-003, 0., 5.12820529e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 5.12820529e-003, 0., 0., 0., 0., 1.68539323e-002, 0., - 1.12359552e-002, 5.61797759e-003, 1.12359552e-002, - 1.12359552e-002, 0., 1.12359552e-002, 5.61797759e-003, 0., 0., 0., - 5.61797759e-003, 0., 1.68539323e-002, 0., 0., 1.12359552e-002, - 5.61797759e-003, 0., 0., 0., 5.61797759e-003, 0., 0., - 5.61797759e-003, 1.68539323e-002, 0., 0., 5.61797759e-003, 0., 0., - 0., 0., 5.61797759e-003, 1.68539323e-002, 0., 0., 5.61797759e-003, - 5.61797759e-003, 5.61797759e-003, 5.61797759e-003, 0., - 5.61797759e-003, 0., 1.68539323e-002, 0., 5.61797759e-003, - 1.68539323e-002, 0., 5.61797759e-003, 5.61797759e-003, - 5.61797759e-003, 5.61797759e-003, 5.61797759e-003, - 1.12359552e-002, 0., 5.61797759e-003, 5.61797759e-003, - 5.61797759e-003, 0., 0., 0., 5.61797759e-003, 5.61797759e-003, 0., - 0., 0., 5.61797759e-003, 5.61797759e-003, 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 1.12359552e-002, - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, - 0., 0., 5.61797759e-003, 0., 0., 5.61797759e-003, 0., - 5.61797759e-003, 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., - 0., 1.12359552e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., - 0., 1.68539323e-002, 0., 0., 5.61797759e-003, 2.24719103e-002, 0., - 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 5.61797759e-003, - 0., 0., 1.12359552e-002, 1.68539323e-002, 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.12359552e-002, - 5.61797759e-003, 0., 0., 0., 5.61797759e-003, 1.68539323e-002, - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.12359552e-002, 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 5.61797759e-003, 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 5.61797759e-003, - 5.61797759e-003, 1.12359552e-002, 5.61797759e-003, 0., 0., 0., 0., - 1.12359552e-002, 0., 0., 1.12359552e-002, 0., 0., 0., 0., - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.12359552e-002, 0., 0., 0., 0., - 2.24719103e-002, 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 1.12359552e-002, 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.61797759e-003, 0., 0., 0., 1.12359552e-002, 0., - 1.12359552e-002, 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., 1.12359552e-002, - 0., 0., 5.61797759e-003, 0., 0., 1.12359552e-002, 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 0., 0., 0., 0., 0., 2.24719103e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.61797759e-003, 1.12359552e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.12359552e-002, - 5.61797759e-003, 0., 0., 5.61797759e-003, 1.12359552e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 1.68539323e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.40540554e-003, 1.62162166e-002, - 5.40540554e-003, 0., 5.40540554e-003, 2.70270277e-002, 0., - 1.62162166e-002, 5.40540554e-003, 1.62162166e-002, - 1.62162166e-002, 5.40540554e-003, 5.40540554e-003, 0., 0., 0., - 5.40540554e-003, 1.62162166e-002, 1.08108111e-002, 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 1.08108111e-002, 5.40540554e-003, 0., - 5.40540554e-003, 1.62162166e-002, 5.40540554e-003, 0., - 1.08108111e-002, 5.40540554e-003, 5.40540554e-003, 0., 0., - 1.08108111e-002, 0., 5.40540554e-003, 0., 5.40540554e-003, - 1.08108111e-002, 0., 5.40540554e-003, 5.40540554e-003, - 1.08108111e-002, 2.16216221e-002, 5.40540554e-003, 0., 0., 0., 0., - 5.40540554e-003, 1.08108111e-002, 0., 1.08108111e-002, 0., 0., 0., - 0., 0., 5.40540554e-003, 1.08108111e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.40540554e-003, 0., 5.40540554e-003, - 5.40540554e-003, 0., 0., 0., 5.40540554e-003, 0., 0., 0., - 1.08108111e-002, 0., 0., 0., 5.40540554e-003, 0., 5.40540554e-003, - 0., 5.40540554e-003, 5.40540554e-003, 0., 1.08108111e-002, 0., 0., - 0., 0., 0., 5.40540554e-003, 0., 1.08108111e-002, 0., 0., 0., - 1.08108111e-002, 5.40540554e-003, 5.40540554e-003, - 1.08108111e-002, 5.94594628e-002, 5.40540554e-003, 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 5.40540554e-003, - 1.08108111e-002, 0., 0., 0., 5.40540554e-003, 5.40540554e-003, 0., - 5.40540554e-003, 0., 0., 0., 0., 5.40540554e-003, 5.40540554e-003, - 0., 5.40540554e-003, 0., 0., 0., 5.40540554e-003, 5.40540554e-003, - 0., 5.40540554e-003, 0., 5.40540554e-003, 0., 0., 5.40540554e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 5.40540554e-003, 0., 0., - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., - 1.08108111e-002, 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.40540554e-003, 0., 0., 3.24324332e-002, 1.62162166e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., 0., - 5.40540554e-003, 0., 5.40540554e-003, 0., 5.40540554e-003, 0., - 5.40540554e-003, 0., 5.40540554e-003, 5.40540554e-003, - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., - 0., 0., 0., 5.40540554e-003, 0., 0., 0., 5.40540554e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 5.40540554e-003, - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.08108111e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.62162166e-002, 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., - 5.40540554e-003, 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., 0., - 0., 0., 5.40540554e-003, 0., 5.40540554e-003, 5.40540554e-003, 0., - 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 5.40540554e-003, 0., 5.40540554e-003, - 5.40540554e-003, 0., 5.40540554e-003, 5.40540554e-003, 0., 0., 0., - 1.08108111e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 5.40540554e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., 0., 5.40540554e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.08108111e-002, 0., 0., - 1.08108111e-002, 0., 0., 5.40540554e-003, 1.08108111e-002, 0., 0., - 0., 0., 0., 0., 1.08108111e-002, 5.40540554e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., - 5.78034669e-003, 0., 1.15606934e-002, 0., 1.15606934e-002, - 5.78034669e-003, 0., 1.15606934e-002, 0., 1.73410401e-002, - 1.15606934e-002, 5.78034669e-003, 1.15606934e-002, - 1.15606934e-002, 0., 0., 0., 4.62427735e-002, 5.78034669e-003, 0., - 5.78034669e-003, 2.31213868e-002, 0., 5.78034669e-003, - 1.15606934e-002, 1.15606934e-002, 5.78034669e-003, - 5.78034669e-003, 1.73410401e-002, 5.78034669e-003, 0., 0., 0., - 1.15606934e-002, 1.73410401e-002, 5.78034669e-003, 0., 0., - 5.78034669e-003, 0., 1.15606934e-002, 1.15606934e-002, - 5.78034669e-003, 1.15606934e-002, 1.15606934e-002, 0., 0., 0., 0., - 0., 5.78034669e-003, 0., 0., 0., 1.15606934e-002, 0., 0., 0., 0., - 1.15606934e-002, 0., 5.78034669e-003, 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 5.78034669e-003, 0., - 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 5.78034669e-003, 0., - 1.15606934e-002, 0., 0., 5.78034669e-003, 0., 0., 0., - 5.78034669e-003, 1.15606934e-002, 0., 0., 0., 0., 1.15606934e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., - 0., 0., 0., 1.15606934e-002, 5.78034669e-003, 5.78034669e-003, 0., - 0., 0., 0., 0., 0., 0., 1.15606934e-002, 0., 0., 0., - 1.73410401e-002, 1.15606934e-002, 0., 0., 0., 5.78034669e-003, 0., - 0., 1.15606934e-002, 0., 0., 5.78034669e-003, 0., 1.15606934e-002, - 0., 0., 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 0., 0., 0., - 5.78034669e-003, 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.15606934e-002, 5.78034669e-003, 1.15606934e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.15606934e-002, 0., 5.78034669e-003, 0., 0., - 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.78034669e-003, 0., 0., 0., 5.78034669e-003, 0., - 5.78034669e-003, 0., 0., 1.15606934e-002, 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 1.15606934e-002, 0., 0., 5.78034669e-003, - 0., 0., 0., 1.15606934e-002, 0., 0., 0., 5.78034669e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 0., 0., - 1.15606934e-002, 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.15606934e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., 5.78034669e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, - 0., 1.15606934e-002, 0., 1.15606934e-002, 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 5.78034669e-003, 5.78034669e-003, - 1.15606934e-002, 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.15606934e-002, 0., 0., 0., 1.73410401e-002, 0., 0., 0., 0., 0., - 0., 1.15606934e-002, 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., - 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., - 1.15606934e-002, 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, - 0., 5.49450563e-003, 0., 0., 0., 1.09890113e-002, 5.49450563e-003, - 0., 1.64835174e-002, 0., 5.49450563e-003, 5.49450563e-003, 0., - 2.19780225e-002, 1.09890113e-002, 1.09890113e-002, - 5.49450563e-003, 5.49450563e-003, 0., 5.49450563e-003, - 2.19780225e-002, 0., 1.64835174e-002, 2.19780225e-002, 0., 0., 0., - 4.94505502e-002, 0., 2.19780225e-002, 5.49450563e-003, - 1.64835174e-002, 1.09890113e-002, 0., 1.09890113e-002, - 1.09890113e-002, 0., 0., 0., 1.64835174e-002, 0., 0., 0., 0., 0., - 1.09890113e-002, 0., 0., 1.09890113e-002, 1.09890113e-002, 0., 0., - 1.09890113e-002, 5.49450563e-003, 5.49450563e-003, - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 2.19780225e-002, 0., - 0., 0., 0., 0., 5.49450563e-003, 5.49450563e-003, 0., 0., 0., - 5.49450563e-003, 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 5.49450563e-003, 0., 0., 0., 5.49450563e-003, - 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., - 5.49450563e-003, 1.09890113e-002, 0., 0., 1.09890113e-002, 0., 0., - 0., 0., 5.49450563e-003, 0., 0., 5.49450563e-003, 5.49450563e-003, - 5.49450563e-003, 0., 0., 0., 5.49450563e-003, 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 2.19780225e-002, 0., 0., - 1.09890113e-002, 5.49450563e-003, 0., 0., 0., 5.49450563e-003, - 5.49450563e-003, 0., 0., 5.49450563e-003, 0., 0., 0., - 5.49450563e-003, 0., 0., 5.49450563e-003, 0., 5.49450563e-003, 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., - 1.64835174e-002, 0., 5.49450563e-003, 0., 0., 1.09890113e-002, - 1.09890113e-002, 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., - 5.49450563e-003, 5.49450563e-003, 5.49450563e-003, 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., - 0., 0., 5.49450563e-003, 5.49450563e-003, 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., - 0., 0., 1.09890113e-002, 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 2.19780225e-002, - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.09890113e-002, - 0., 5.49450563e-003, 0., 0., 0., 1.09890113e-002, 1.09890113e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.09890113e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.19780225e-002, 0., 0., 0., - 0., 5.49450563e-003, 0., 0., 0., 0., 0., 1.09890113e-002, 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, - 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, - 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.09890113e-002, 0., 5.49450563e-003, 1.09890113e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., - 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 5.49450563e-003, 1.64835174e-002, 0., 0., 0., 1.09890113e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 5.49450563e-003, 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., - 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.08695654e-002, 0., 5.43478271e-003, 5.43478271e-003, - 5.43478271e-003, 0., 5.43478271e-003, 3.26086953e-002, - 5.43478271e-003, 0., 1.08695654e-002, 0., 1.08695654e-002, - 5.43478271e-003, 1.08695654e-002, 5.43478271e-003, 0., - 1.08695654e-002, 1.08695654e-002, 5.43478271e-003, 0., 0., - 1.63043477e-002, 1.08695654e-002, 0., 0., 3.26086953e-002, - 5.43478271e-003, 5.43478271e-003, 2.17391308e-002, - 1.08695654e-002, 0., 0., 0., 5.43478271e-003, 0., 0., - 5.43478271e-003, 5.43478271e-003, 5.43478271e-003, 0., - 5.43478271e-003, 0., 0., 0., 1.08695654e-002, 5.43478271e-003, - 1.63043477e-002, 5.43478271e-003, 1.08695654e-002, 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 1.08695654e-002, - 1.08695654e-002, 5.43478271e-003, 0., 0., 0., 0., 1.08695654e-002, - 1.08695654e-002, 0., 2.17391308e-002, 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 0., 0., 1.08695654e-002, 5.43478271e-003, 0., 0., 2.17391308e-002, - 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 5.43478271e-003, - 1.08695654e-002, 0., 0., 0., 0., 5.43478271e-003, 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 3.26086953e-002, 0., 0., - 5.43478271e-003, 2.17391308e-002, 0., 0., 5.43478271e-003, - 5.43478271e-003, 5.43478271e-003, 0., 0., 1.08695654e-002, 0., - 5.43478271e-003, 0., 0., 0., 0., 1.63043477e-002, 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., - 2.17391308e-002, 5.43478271e-003, 0., 0., 5.43478271e-003, 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.43478271e-003, 0., 0., 5.43478271e-003, 0., - 5.43478271e-003, 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., - 5.43478271e-003, 5.43478271e-003, 0., 5.43478271e-003, 0., 0., 0., - 0., 0., 0., 5.43478271e-003, 0., 1.63043477e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, - 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.08695654e-002, 0., 0., 5.43478271e-003, 0., - 1.08695654e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.43478271e-003, 0., 0., 0., 1.08695654e-002, 0., 0., - 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 1.08695654e-002, 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., - 0., 5.43478271e-003, 0., 0., 0., 0., 0., 1.08695654e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 5.43478271e-003, - 5.43478271e-003, 0., 0., 0., 5.43478271e-003, 0., 0., - 5.43478271e-003, 0., 5.43478271e-003, 0., 5.43478271e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 5.43478271e-003, 5.43478271e-003, 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 1.08695654e-002, 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., - 0., 0., 0., 0., 0., 5.43478271e-003, 0., 5.43478271e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 1.08695654e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.17391308e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 4.99999989e-003, 9.99999978e-003, 4.99999989e-003, - 1.49999997e-002, 9.99999978e-003, 4.99999989e-003, 0., 0., - 4.99999989e-003, 9.99999978e-003, 9.99999978e-003, - 4.99999989e-003, 1.99999996e-002, 0., 1.49999997e-002, - 4.99999989e-003, 0., 9.99999978e-003, 9.99999978e-003, - 9.99999978e-003, 0., 4.99999989e-003, 1.49999997e-002, 0., 0., 0., - 4.99999989e-003, 0., 9.99999978e-003, 0., 0., 1.49999997e-002, 0., - 0., 1.99999996e-002, 0., 0., 4.99999989e-003, 4.99999989e-003, - 9.99999978e-003, 0., 9.99999978e-003, 0., 1.49999997e-002, 0., - 4.99999989e-003, 0., 4.99999989e-003, 3.50000001e-002, 0., 0., - 4.99999989e-003, 0., 0., 0., 0., 0., 0., 4.99999989e-003, 0., 0., - 0., 4.99999989e-003, 0., 9.99999978e-003, 0., 0., 0., 0., 0., 0., - 0., 4.99999989e-003, 4.99999989e-003, 0., 4.99999989e-003, 0., 0., - 0., 0., 0., 0., 9.99999978e-003, 0., 4.99999989e-003, 0., 0., - 4.99999989e-003, 4.99999989e-003, 0., 0., 0., 0., 4.99999989e-003, - 0., 0., 0., 0., 0., 9.99999978e-003, 0., 9.99999978e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 4.99999989e-003, 1.49999997e-002, - 9.99999978e-003, 0., 0., 0., 0., 0., 0., 9.99999978e-003, - 9.99999978e-003, 0., 0., 0., 0., 1.49999997e-002, 4.99999989e-003, - 0., 4.99999989e-003, 3.50000001e-002, 0., 0., 0., 0., 0., - 4.99999989e-003, 0., 9.99999978e-003, 0., 0., 4.99999989e-003, 0., - 4.99999989e-003, 0., 2.99999993e-002, 0., 0., 0., 4.99999989e-003, - 0., 0., 4.99999989e-003, 0., 4.99999989e-003, 0., 0., 0., 0., 0., - 4.99999989e-003, 0., 0., 4.99999989e-003, 4.99999989e-003, - 4.99999989e-003, 4.99999989e-003, 4.99999989e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 4.99999989e-003, 0., 4.99999989e-003, 0., 0., 4.99999989e-003, 0., - 4.99999989e-003, 0., 0., 4.99999989e-003, 0., 0., 4.99999989e-003, - 4.99999989e-003, 9.99999978e-003, 0., 0., 0., 0., 0., 0., - 4.99999989e-003, 0., 0., 0., 0., 0., 4.99999989e-003, - 4.99999989e-003, 0., 0., 4.99999989e-003, 0., 0., 0., 0., 0., - 4.99999989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 9.99999978e-003, - 4.99999989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 4.99999989e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 4.99999989e-003, 0., 0., 4.99999989e-003, 9.99999978e-003, - 4.99999989e-003, 0., 0., 0., 0., 0., 0., 0., 4.99999989e-003, 0., - 4.99999989e-003, 0., 4.99999989e-003, 0., 4.99999989e-003, - 4.99999989e-003, 0., 0., 0., 0., 9.99999978e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 4.99999989e-003, 4.99999989e-003, 0., 0., 4.99999989e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 4.99999989e-003, 0., 0., 0., 0., - 4.99999989e-003, 4.99999989e-003, 0., 4.99999989e-003, 0., 0., 0., - 0., 0., 0., 0., 1.49999997e-002, 0., 9.99999978e-003, 0., - 4.99999989e-003, 0., 0., 0., 0., 0., 9.99999978e-003, 0., 0., 0., - 0., 0., 4.99999989e-003, 4.99999989e-003, 4.99999989e-003, 0., 0., - 0., 0., 0., 0., 4.99999989e-003, 0., 0., 0., 9.99999978e-003, 0., - 0., 4.99999989e-003, 0., 0., 0., 9.99999978e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 4.99999989e-003, 0., 0., 0., 9.99999978e-003, 0., - 0., 0., 0., 4.99999989e-003, 0., 0., 9.99999978e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 4.99999989e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.99999978e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 4.99999989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 4.99999989e-003, 0., 0., 9.99999978e-003, 0., 4.99999989e-003, - 9.99999978e-003, 0., 0., 0., 4.99999989e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 4.99999989e-003, 0., 4.99999989e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 4.99999989e-003, 0., - 0., 0., 0., 0., 0., 4.99999989e-003, 0., 4.99999989e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 4.99999989e-003, 0., 0., 0., 0., 0., 4.99999989e-003, 0., 0., 0., - 0., 5.81395347e-003, 1.16279069e-002, 0., 0., 0., 5.81395347e-003, - 0., 0., 1.16279069e-002, 2.90697664e-002, 1.16279069e-002, 0., 0., - 0., 5.81395347e-003, 0., 0., 5.81395347e-003, 0., 1.16279069e-002, - 5.81395347e-003, 1.16279069e-002, 5.81395347e-003, 0., - 5.81395347e-003, 0., 5.81395347e-003, 0., 0., 2.32558139e-002, - 5.81395347e-003, 2.90697664e-002, 0., 5.81395347e-003, 0., 0., 0., - 0., 2.90697664e-002, 5.81395347e-003, 5.81395347e-003, 0., - 5.81395347e-003, 5.81395347e-003, 0., 0., 0., 5.81395347e-003, - 4.06976752e-002, 0., 0., 5.81395347e-003, 5.81395347e-003, 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, - 5.81395347e-003, 0., 0., 0., 0., 5.81395347e-003, 0., - 5.81395347e-003, 5.81395347e-003, 5.81395347e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., - 5.81395347e-003, 0., 0., 0., 1.16279069e-002, 0., 0., 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.81395347e-003, 0., 5.81395347e-003, 0., 0., 0., - 1.16279069e-002, 0., 0., 0., 0., 0., 4.06976752e-002, - 5.81395347e-003, 0., 5.81395347e-003, 8.13953504e-002, - 1.16279069e-002, 0., 0., 0., 5.81395347e-003, 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 5.81395347e-003, - 5.81395347e-003, 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., - 5.81395328e-002, 0., 1.74418613e-002, 0., 5.81395347e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 5.81395347e-003, - 0., 0., 5.81395347e-003, 0., 0., 5.81395347e-003, 0., - 5.81395347e-003, 0., 5.81395347e-003, 5.81395347e-003, 0., 0., 0., - 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, - 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., - 0., 0., 0., 0., 1.74418613e-002, 0., 5.81395347e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., - 5.81395347e-003, 0., 5.81395347e-003, 0., 0., 0., 5.81395347e-003, - 1.74418613e-002, 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 5.81395347e-003, 0., 1.16279069e-002, 0., 0., 0., 0., - 0., 5.81395347e-003, 0., 0., 5.81395347e-003, 0., 0., 0., - 1.16279069e-002, 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., - 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 5.81395347e-003, - 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 1.16279069e-002, - 0., 0., 0., 0., 0., 0., 0., 1.74418613e-002, 5.81395347e-003, - 5.81395347e-003, 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.16279069e-002, 0., 0., - 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., - 1.16279069e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.16279069e-002, 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.16279069e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.19047621e-002, 5.95238106e-003, 0., - 0., 5.95238106e-003, 0., 0., 0., 1.19047621e-002, 1.19047621e-002, - 0., 5.95238106e-003, 5.95238106e-003, 1.19047621e-002, - 5.95238106e-003, 5.95238106e-003, 0., 5.95238106e-003, - 1.19047621e-002, 0., 0., 5.95238106e-003, 0., 0., 1.19047621e-002, - 5.95238106e-003, 5.95238106e-003, 1.78571437e-002, 0., - 5.95238106e-003, 1.78571437e-002, 0., 1.19047621e-002, 0., - 5.95238106e-003, 0., 0., 5.95238106e-003, 1.19047621e-002, 0., 0., - 0., 0., 0., 1.19047621e-002, 0., 0., 2.38095243e-002, - 5.95238106e-003, 0., 0., 0., 5.95238106e-003, 0., 0., 0., - 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 5.95238106e-003, - 1.19047621e-002, 1.78571437e-002, 0., 0., 0., 0., 0., - 1.19047621e-002, 0., 0., 0., 5.95238106e-003, 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 5.95238106e-003, 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 1.78571437e-002, 5.95238106e-003, - 1.19047621e-002, 5.95238106e-003, 5.95238106e-003, 0., - 5.95238106e-003, 0., 0., 5.95238106e-003, 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 1.19047621e-002, 0., 0., 0., - 0., 1.19047621e-002, 5.95238106e-003, 5.95238106e-003, - 5.95238106e-003, 0., 0., 5.95238106e-003, 0., 0., 0., - 5.95238106e-003, 0., 2.38095243e-002, 0., 0., 0., 1.78571437e-002, - 1.19047621e-002, 0., 5.95238106e-003, 0., 1.19047621e-002, 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 5.95238106e-003, 5.95238106e-003, - 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., - 1.19047621e-002, 5.95238106e-003, 0., 1.19047621e-002, 0., 0., 0., - 0., 5.95238106e-003, 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., - 0., 0., 5.95238106e-003, 0., 1.19047621e-002, 0., 0., - 5.95238106e-003, 0., 0., 0., 2.38095243e-002, 5.95238106e-003, - 1.19047621e-002, 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., - 5.95238106e-003, 0., 0., 0., 5.95238106e-003, 0., 5.95238106e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.19047621e-002, - 1.19047621e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 5.95238106e-003, - 0., 0., 0., 5.95238106e-003, 0., 5.95238106e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.78571437e-002, 0., 0., 0., 5.95238106e-003, - 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., - 0., 5.95238106e-003, 0., 0., 0., 0., 0., 5.95238106e-003, 0., - 1.19047621e-002, 0., 5.95238106e-003, 0., 0., 0., 0., - 1.19047621e-002, 0., 5.95238106e-003, 0., 5.95238106e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, - 0., 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.95238106e-003, 0., 0., 0., 1.19047621e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 5.95238106e-003, 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 0., - 0., 0., 0., 5.95238106e-003, 0., 0., 0., 5.95238106e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.19047621e-002, 0., - 5.95238106e-003, 0., 5.95238106e-003, 0., 0., 5.95238106e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, - 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 5.95238106e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 1.63043477e-002, 1.08695654e-002, - 0., 5.43478271e-003, 0., 2.17391308e-002, 0., 0., 0., - 1.63043477e-002, 0., 0., 1.08695654e-002, 5.43478271e-003, - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 2.17391308e-002, - 5.43478271e-003, 0., 5.43478271e-003, 5.43478271e-003, 0., - 1.08695654e-002, 5.43478271e-003, 0., 1.08695654e-002, 0., - 1.08695654e-002, 0., 5.43478271e-003, 0., 5.43478271e-003, 0., - 5.43478271e-003, 5.43478271e-003, 0., 5.43478271e-003, 0., - 1.08695654e-002, 5.43478271e-003, 0., 1.08695654e-002, - 2.17391308e-002, 0., 0., 0., 0., 0., 0., 1.63043477e-002, 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 1.63043477e-002, 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 5.43478271e-003, 0., - 5.43478271e-003, 0., 0., 5.43478271e-003, 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 2.17391308e-002, 0., 0., 5.43478271e-003, - 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 2.71739140e-002, 0., 5.43478271e-003, 5.43478271e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., - 2.71739140e-002, 0., 0., 0., 6.52173907e-002, 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 1.08695654e-002, - 5.43478271e-003, 0., 0., 0., 0., 5.43478271e-003, 5.43478271e-003, - 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 1.63043477e-002, 0., - 0., 0., 0., 0., 1.63043477e-002, 0., 5.43478271e-003, 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.08695654e-002, 0., 0., - 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 1.08695654e-002, - 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 3.80434804e-002, 0., 5.43478271e-003, 5.43478271e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, - 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 5.43478271e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.43478271e-003, 0., 0., 5.43478271e-003, 0., 1.63043477e-002, - 0., 5.43478271e-003, 5.43478271e-003, 0., 0., 1.08695654e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, - 0., 0., 0., 1.08695654e-002, 1.63043477e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.08695654e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.08695654e-002, 0., 1.08695654e-002, 0., 0., 0., - 0., 5.43478271e-003, 0., 0., 1.08695654e-002, 0., 0., - 5.43478271e-003, 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 5.43478271e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.08695654e-002, 0., 0., - 0., 1.08695654e-002, 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, - 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.08695654e-002, - 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 5.43478271e-003, 0., 0., - 5.43478271e-003, 1.63043477e-002, 5.43478271e-003, 0., 0., - 5.43478271e-003, 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., - 0., 5.43478271e-003, 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 5.43478271e-003, 0., 1.08695654e-002, 0., - 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., - 0., 2.38095243e-002, 0., 5.95238106e-003, 0., 0., 5.95238106e-003, - 0., 0., 5.95238106e-003, 1.19047621e-002, 0., 0., 1.19047621e-002, - 0., 1.19047621e-002, 0., 0., 3.57142873e-002, 0., 0., 0., - 1.19047621e-002, 5.95238106e-003, 5.95238106e-003, 0., 0., - 3.57142873e-002, 0., 1.19047621e-002, 1.78571437e-002, - 5.95238106e-003, 2.38095243e-002, 0., 0., 5.95238106e-003, 0., 0., - 5.95238106e-003, 0., 2.38095243e-002, 0., 0., 0., 0., 0., - 5.95238106e-003, 5.95238106e-003, 5.95238106e-003, - 5.95238106e-003, 0., 0., 0., 0., 5.95238106e-003, 0., - 5.95238106e-003, 0., 0., 1.19047621e-002, 0., 0., 0., - 1.78571437e-002, 0., 5.95238106e-003, 0., 0., 5.95238106e-003, - 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 0., 5.95238106e-003, - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 1.19047621e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, - 5.95238106e-003, 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.19047621e-002, 0., - 0., 0., 2.97619049e-002, 0., 0., 0., 5.95238106e-003, 0., - 2.38095243e-002, 0., 0., 0., 1.19047621e-002, 0., 0., 0., 0., 0., - 0., 0., 1.19047621e-002, 0., 0., 1.19047621e-002, 0., - 1.19047621e-002, 0., 0., 0., 0., 0., 1.78571437e-002, 0., 0., 0., - 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., - 4.16666679e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, - 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., - 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.95238106e-003, 0., 0., 0., 0., 0., 5.95238106e-003, - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.95238106e-003, 0., 0., 5.95238106e-003, 0., 0., 0., - 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, - 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 1.19047621e-002, 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.95238106e-003, 5.95238106e-003, 0., 0., - 1.19047621e-002, 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.19047621e-002, 0., 5.95238106e-003, 0., 0., - 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 1.19047621e-002, 0., 5.95238106e-003, - 1.19047621e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 5.95238106e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.19047621e-002, 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., - 1.78571437e-002, 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 2.97619049e-002, 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.95238106e-003, 1.78571437e-002, 5.95238106e-003, 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 5.95238106e-003, 0., - 1.75438598e-002, 5.84795326e-003, 5.84795326e-003, 0., - 5.84795326e-003, 5.84795326e-003, 0., 5.84795326e-003, - 1.16959065e-002, 5.84795326e-003, 5.84795326e-003, - 5.84795326e-003, 5.84795326e-003, 5.84795326e-003, 0., - 5.84795326e-003, 0., 1.16959065e-002, 0., 5.84795326e-003, 0., 0., - 0., 0., 0., 0., 1.16959065e-002, 0., 5.84795326e-003, 0., 0., - 5.26315793e-002, 0., 5.84795326e-003, 0., 0., 0., 0., 0., - 1.75438598e-002, 0., 0., 5.84795326e-003, 0., 5.84795326e-003, - 1.75438598e-002, 0., 0., 1.75438598e-002, 5.84795326e-003, 0., 0., - 0., 0., 5.84795326e-003, 1.16959065e-002, 0., 1.75438598e-002, 0., - 0., 0., 0., 5.84795326e-003, 0., 1.16959065e-002, 5.84795326e-003, - 0., 0., 1.16959065e-002, 0., 0., 0., 5.84795326e-003, 0., 0., 0., - 1.16959065e-002, 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.84795326e-003, 0., 0., 1.75438598e-002, 0., - 1.16959065e-002, 5.84795326e-003, 0., 0., 0., 5.84795326e-003, - 5.84795326e-003, 0., 5.84795326e-003, 1.16959065e-002, 0., 0., 0., - 0., 5.84795326e-003, 0., 0., 1.16959065e-002, 5.84795326e-003, 0., - 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 1.75438598e-002, 0., 0., 0., 3.50877196e-002, 0., - 0., 5.84795326e-003, 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., - 0., 5.84795326e-003, 5.84795326e-003, 0., 0., 0., 0., - 5.84795326e-003, 5.84795326e-003, 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 1.75438598e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 5.84795326e-003, - 1.16959065e-002, 0., 0., 0., 0., 1.16959065e-002, 0., 0., - 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.16959065e-002, 0., 0., 0., 0., 1.16959065e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., - 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 5.84795326e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.33918130e-002, - 0., 1.16959065e-002, 1.75438598e-002, 0., 0., 0., 0., - 5.84795326e-003, 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.16959065e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.16959065e-002, 0., 0., 0., 0., - 1.75438598e-002, 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.16959065e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.16959065e-002, 0., 0., 0., 2.92397663e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 5.84795326e-003, 2.33918130e-002, - 5.84795326e-003, 5.84795326e-003, 1.16959065e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 5.84795326e-003, 0., - 0., 1.16959065e-002, 0., 5.84795326e-003, 0., 0., 5.84795326e-003, - 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.16959065e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 5.84795326e-003, - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 2.06185561e-002, 0., 5.15463902e-003, 0., - 5.15463902e-003, 1.54639166e-002, 1.54639166e-002, 0., - 5.15463902e-003, 0., 0., 0., 1.03092780e-002, 1.54639166e-002, - 1.54639166e-002, 1.03092780e-002, 1.54639166e-002, - 5.15463902e-003, 5.15463902e-003, 0., 0., 5.15463902e-003, 0., - 3.09278332e-002, 0., 1.03092780e-002, 1.54639166e-002, - 1.03092780e-002, 0., 0., 5.15463902e-003, 5.15463902e-003, 0., - 1.03092780e-002, 0., 1.03092780e-002, 2.06185561e-002, 0., 0., - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.54639166e-002, 0., 2.57731955e-002, 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 5.15463902e-003, 0., 0., 0., 1.03092780e-002, - 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.03092780e-002, 0., 5.15463902e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 5.15463902e-003, 0., - 5.15463902e-003, 1.03092780e-002, 2.57731955e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 1.03092780e-002, 0., - 0., 0., 5.15463902e-003, 0., 0., 0., 0., 3.09278332e-002, 0., 0., - 0., 2.06185561e-002, 0., 0., 1.03092780e-002, 0., 0., 0., 0., - 2.06185561e-002, 0., 0., 5.15463902e-003, 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 5.15463902e-003, 5.15463902e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., - 3.09278332e-002, 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.15463902e-003, 0., 0., 1.03092780e-002, - 5.15463902e-003, 0., 5.15463902e-003, 0., 5.15463902e-003, - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.15463902e-003, 0., 5.15463902e-003, 5.15463902e-003, 0., - 1.03092780e-002, 0., 5.15463902e-003, 0., 0., 0., 1.03092780e-002, - 0., 0., 0., 0., 3.09278332e-002, 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 5.15463902e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 2.06185561e-002, - 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 5.15463902e-003, 5.15463902e-003, 0., 0., - 1.03092780e-002, 0., 5.15463902e-003, 0., 0., 5.15463902e-003, - 2.57731955e-002, 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 1.03092780e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.15463902e-003, 0., 5.15463902e-003, 0., 0., 0., - 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., - 5.15463902e-003, 0., 5.15463902e-003, 0., 0., 5.15463902e-003, 0., - 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 1.03092780e-002, - 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 1.54639166e-002, 0., 0., 5.15463902e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., - 0., 1.03092780e-002, 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, - 5.15463902e-003, 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.03092780e-002, - 0., 0., 0., 5.15463902e-003, 0., 0., 0., 5.15463902e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.03092780e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., - 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., - 1.63934417e-002, 8.19672085e-003, 8.19672085e-003, - 8.19672085e-003, 0., 0., 0., 3.27868834e-002, 2.45901626e-002, - 8.19672085e-003, 0., 1.63934417e-002, 0., 8.19672085e-003, 0., 0., - 3.27868834e-002, 8.19672085e-003, 0., 1.63934417e-002, 0., 0., 0., - 0., 8.19672085e-003, 1.63934417e-002, 0., 2.45901626e-002, 0., 0., - 8.19672085e-003, 0., 8.19672085e-003, 0., 0., 0., 0., 0., - 8.19672085e-003, 0., 0., 0., 0., 8.19672085e-003, 0., 0., - 8.19672085e-003, 1.63934417e-002, 0., 0., 0., 0., 0., 0., - 8.19672085e-003, 0., 0., 8.19672085e-003, 0., 0., 0., - 8.19672085e-003, 0., 0., 0., 0., 0., 8.19672085e-003, - 8.19672085e-003, 8.19672085e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., 0., - 8.19672085e-003, 0., 2.45901626e-002, 0., 0., 8.19672085e-003, 0., - 0., 0., 0., 0., 0., 0., 8.19672085e-003, 8.19672085e-003, 0., 0., - 0., 0., 0., 0., 0., 1.63934417e-002, 0., 8.19672085e-003, 0., 0., - 0., 8.19672085e-003, 0., 0., 1.63934417e-002, 0., 0., 0., 0., - 1.63934417e-002, 0., 0., 8.19672085e-003, 1.63934417e-002, 0., 0., - 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., 2.45901626e-002, 0., - 0., 8.19672085e-003, 8.19672085e-003, 0., 0., 0., 8.19672085e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 3.27868834e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.63934417e-002, 0., 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, - 8.19672085e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., 8.19672085e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, - 8.19672085e-003, 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., 8.19672085e-003, - 0., 0., 0., 8.19672085e-003, 1.63934417e-002, 0., 0., 0., - 1.63934417e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., 0., 8.19672085e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., - 1.63934417e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., 8.19672085e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., - 0., 0., 8.19672085e-003, 0., 8.19672085e-003, 0., 0., - 8.19672085e-003, 0., 8.19672085e-003, 8.19672085e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.45901626e-002, 0., 0., - 1.63934417e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.19672085e-003, 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., 1.63934417e-002, - 1.63934417e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.63934417e-002, 8.19672085e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.63934417e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.61290318e-002, 8.06451589e-003, 0., 0., 0., 0., 0., - 0., 1.61290318e-002, 8.06451589e-003, 2.41935477e-002, 0., - 8.06451589e-003, 0., 0., 8.06451589e-003, 0., 0., 8.06451589e-003, - 8.06451589e-003, 0., 8.06451589e-003, 2.41935477e-002, - 8.06451589e-003, 0., 8.06451589e-003, 2.41935477e-002, - 1.61290318e-002, 1.61290318e-002, 2.41935477e-002, - 8.06451589e-003, 1.61290318e-002, 0., 8.06451589e-003, 0., - 8.06451589e-003, 0., 0., 8.06451589e-003, 0., 0., 0., 0., - 1.61290318e-002, 8.06451589e-003, 8.06451589e-003, - 8.06451589e-003, 8.06451589e-003, 2.41935477e-002, 0., 0., - 1.61290318e-002, 0., 0., 8.06451589e-003, 0., 0., 0., 0., 0., 0., - 0., 8.06451589e-003, 0., 0., 0., 0., 8.06451589e-003, - 8.06451589e-003, 0., 8.06451589e-003, 0., 0., 0., 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.06451589e-003, 0., 0., 0., 8.06451589e-003, 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 1.61290318e-002, 0., 0., 0., 0., 0., - 0., 0., 8.06451589e-003, 8.06451589e-003, 0., 0., 8.06451589e-003, - 1.61290318e-002, 0., 0., 8.06451589e-003, 8.06451589e-003, 0., 0., - 0., 0., 8.06451589e-003, 0., 0., 8.06451589e-003, 2.41935477e-002, - 8.06451589e-003, 0., 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.06451589e-003, 0., 8.06451589e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., - 8.06451589e-003, 5.64516112e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.06451589e-003, 0., 8.06451589e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 3.22580636e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.06451589e-003, 8.06451589e-003, 0., 0., 0., - 8.06451589e-003, 0., 8.06451589e-003, 0., 0., 0., 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 8.06451589e-003, 0., 0., - 8.06451589e-003, 0., 0., 0., 8.06451589e-003, 0., 8.06451589e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.06451589e-003, 0., 0., 8.06451589e-003, 0., 0., 0., - 1.61290318e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, - 1.61290318e-002, 0., 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 1.61290318e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.61797759e-003, 1.12359552e-002, 0., 0., 0., - 0., 0., 5.61797759e-003, 2.24719103e-002, 0., 1.68539323e-002, - 5.61797759e-003, 1.12359552e-002, 0., 5.61797759e-003, - 5.61797759e-003, 5.61797759e-003, 1.12359552e-002, 0., 0., 0., 0., - 1.12359552e-002, 5.61797759e-003, 5.61797759e-003, - 5.61797759e-003, 2.24719103e-002, 5.61797759e-003, - 5.61797759e-003, 5.61797759e-003, 1.12359552e-002, - 1.12359552e-002, 0., 0., 1.12359552e-002, 5.61797759e-003, 0., 0., - 1.12359552e-002, 1.12359552e-002, 0., 0., 0., 0., 5.61797759e-003, - 2.24719103e-002, 0., 1.68539323e-002, 2.24719103e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.12359552e-002, 5.61797759e-003, 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 1.12359552e-002, 0., - 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.61797759e-003, 0., 0., 5.61797759e-003, 5.61797759e-003, - 1.68539323e-002, 0., 0., 1.12359552e-002, 1.12359552e-002, 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 0., 1.12359552e-002, 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 1.12359552e-002, - 5.61797759e-003, 0., 1.12359552e-002, 0., 1.68539323e-002, 0., 0., - 0., 2.24719103e-002, 0., 0., 5.61797759e-003, 0., 5.61797759e-003, - 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 1.12359552e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.68539323e-002, 0., 5.61797759e-003, 0., 0., 0., 0., - 1.12359552e-002, 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 1.12359552e-002, 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 0., 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 5.61797759e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., - 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 5.61797759e-003, 5.61797759e-003, 0., 0., 0., - 5.61797759e-003, 1.68539323e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 1.12359552e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 2.24719103e-002, 0., 5.61797759e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., 5.61797759e-003, - 0., 0., 0., 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., 0., - 0., 0., 2.24719103e-002, 0., 0., 5.61797759e-003, 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 5.61797759e-003, - 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 1.12359552e-002, 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 0., 0., 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 1.12359552e-002, 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 0., 0., 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 5.61797759e-003, 0., 0., - 0., 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 1.12359552e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., - 5.23560215e-003, 5.23560215e-003, 5.23560215e-003, 0., 0., 0., 0., - 0., 1.57068074e-002, 1.04712043e-002, 0., 1.57068074e-002, - 1.04712043e-002, 0., 5.23560215e-003, 0., 1.04712043e-002, 0., - 5.23560215e-003, 0., 5.23560215e-003, 1.57068074e-002, - 5.23560215e-003, 0., 0., 5.23560215e-003, 5.23560215e-003, - 1.04712043e-002, 5.23560215e-003, 5.23560215e-003, - 5.23560215e-003, 0., 0., 0., 0., 0., 5.23560215e-003, - 2.09424086e-002, 1.57068074e-002, 0., 0., 1.04712043e-002, 0., 0., - 2.61780098e-002, 0., 0., 1.57068074e-002, 0., 0., 0., 0., 0., - 1.04712043e-002, 3.66492160e-002, 0., 5.23560215e-003, - 5.23560215e-003, 5.23560215e-003, 0., 0., 1.04712043e-002, - 1.04712043e-002, 0., 0., 0., 0., 0., 1.57068074e-002, 0., 0., 0., - 5.23560215e-003, 0., 5.23560215e-003, 0., 0., 5.23560215e-003, - 5.23560215e-003, 0., 0., 0., 0., 1.57068074e-002, 0., - 1.04712043e-002, 0., 0., 0., 0., 0., 0., 0., 5.23560215e-003, - 5.23560215e-003, 5.23560215e-003, 0., 0., 0., 5.23560215e-003, 0., - 0., 0., 5.23560215e-003, 0., 0., 0., 0., 5.23560215e-003, 0., - 5.23560215e-003, 5.23560215e-003, 0., 0., 0., 0., 0., - 5.23560215e-003, 1.57068074e-002, 0., 0., 0., 0., 5.23560215e-003, - 0., 1.04712043e-002, 0., 0., 0., 2.09424086e-002, 5.23560215e-003, - 0., 5.23560215e-003, 0., 0., 0., 5.23560215e-003, 5.23560215e-003, - 0., 0., 0., 0., 5.23560215e-003, 1.57068074e-002, 0., 0., 0., 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.23560215e-003, 5.23560215e-003, 0., 0., 5.23560215e-003, 0., - 1.57068074e-002, 0., 0., 0., 1.57068074e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.23560215e-003, 1.04712043e-002, 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 1.04712043e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.23560215e-003, 5.23560215e-003, - 0., 0., 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.23560215e-003, 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.23560215e-003, 5.23560215e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 5.23560215e-003, 0., 0., 1.04712043e-002, 0., - 1.04712043e-002, 0., 5.23560215e-003, 1.57068074e-002, 0., - 5.23560215e-003, 5.23560215e-003, 1.04712043e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., - 5.23560215e-003, 5.23560215e-003, 0., 0., 0., 5.23560215e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., - 5.23560215e-003, 0., 5.23560215e-003, 0., 5.23560215e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.04712043e-002, 0., 5.23560215e-003, 0., 0., 0., 0., 0., 0., - 0., 5.23560215e-003, 0., 0., 0., 5.23560215e-003, 5.23560215e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.23560215e-003, 0., - 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., - 2.09424086e-002, 0., 0., 0., 0., 1.04712043e-002, 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.23560215e-003, 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.04712043e-002, 0., 0., - 5.23560215e-003, 0., 5.23560215e-003, 0., 0., 5.23560215e-003, 0., - 0., 5.23560215e-003, 0., 0., 0., 0., 0., 1.04712043e-002, 0., 0., - 0., 0., 0., 0., 0., 5.23560215e-003, 5.23560215e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 5.23560215e-003, - 0., 0., 0., 5.23560215e-003, 0., 5.23560215e-003, 0., 0., 0., 0., - 0., 0., 0., 5.23560215e-003, 0., 0., 5.23560215e-003, 0., 0., 0., - 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.57068074e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.23560215e-003, 1.04712043e-002, 0., 0., - 0., 0., 0., 0., 1.81818176e-002, 6.06060587e-003, 6.06060587e-003, - 0., 6.06060587e-003, 6.06060587e-003, 0., 0., 6.06060587e-003, - 6.06060587e-003, 0., 1.21212117e-002, 1.21212117e-002, - 6.06060587e-003, 0., 0., 6.06060587e-003, 1.81818176e-002, 0., 0., - 6.06060587e-003, 1.21212117e-002, 1.81818176e-002, 0., - 6.06060587e-003, 6.06060587e-003, 6.06060587e-003, 0., - 1.81818176e-002, 1.21212117e-002, 1.21212117e-002, - 1.21212117e-002, 0., 0., 6.06060587e-003, 6.06060587e-003, - 6.06060587e-003, 0., 1.81818176e-002, 0., 0., 0., 0., - 6.06060587e-003, 0., 6.06060587e-003, 0., 0., 3.03030293e-002, - 6.06060587e-003, 0., 1.21212117e-002, 6.06060587e-003, - 6.06060587e-003, 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., - 1.21212117e-002, 0., 0., 6.06060587e-003, 0., 0., 0., - 6.06060587e-003, 6.06060587e-003, 0., 0., 6.06060587e-003, 0., 0., - 6.06060587e-003, 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.81818176e-002, 0., 0., 1.21212117e-002, - 0., 0., 0., 1.21212117e-002, 0., 1.21212117e-002, 0., - 6.06060587e-003, 0., 6.06060587e-003, 0., 0., 6.06060587e-003, 0., - 0., 0., 6.06060587e-003, 0., 0., 6.06060587e-003, 6.06060587e-003, - 6.06060587e-003, 6.06060587e-003, 0., 6.06060587e-003, 0., 0., 0., - 0., 0., 2.42424235e-002, 0., 0., 6.06060587e-003, 6.06060587e-003, - 1.21212117e-002, 0., 0., 0., 0., 6.06060587e-003, 0., - 6.06060587e-003, 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., - 6.06060587e-003, 0., 0., 0., 1.81818176e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., - 6.06060587e-003, 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., - 1.21212117e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.21212117e-002, 0., 0., 3.63636352e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 6.06060587e-003, 0., - 6.06060587e-003, 0., 6.06060587e-003, 0., 0., 6.06060587e-003, 0., - 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., - 1.21212117e-002, 6.06060587e-003, 0., 0., 0., 6.06060587e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.81818176e-002, - 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, - 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.06060587e-003, 6.06060587e-003, 0., 6.06060587e-003, - 6.06060587e-003, 1.21212117e-002, 0., 0., 0., 0., 6.06060587e-003, - 0., 6.06060587e-003, 0., 0., 0., 1.21212117e-002, 0., 0., 0., 0., - 1.21212117e-002, 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., - 0., 0., 0., 0., 6.06060587e-003, 0., 6.06060587e-003, 0., 0., 0., - 0., 0., 1.21212117e-002, 0., 0., 6.06060587e-003, 0., 0., 0., 0., - 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 6.06060587e-003, 0., - 0., 0., 0., 1.81818176e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 6.06060587e-003, - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 6.06060587e-003, 6.06060587e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.87401572e-003, 7.87401572e-003, - 7.87401572e-003, 0., 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.87401572e-003, 7.87401572e-003, 0., 0., 0., 0., 0., - 7.87401572e-003, 7.87401572e-003, 7.87401572e-003, 0., 0., - 1.57480314e-002, 7.87401572e-003, 7.87401572e-003, 0., - 7.87401572e-003, 0., 0., 7.87401572e-003, 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 7.87401572e-003, 0., - 7.87401572e-003, 0., 1.57480314e-002, 4.72440943e-002, 0., 0., 0., - 0., 0., 1.57480314e-002, 3.14960629e-002, 0., 7.87401572e-003, - 7.87401572e-003, 0., 0., 0., 7.87401572e-003, 0., 7.87401572e-003, - 0., 0., 0., 0., 7.87401572e-003, 7.87401572e-003, 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., 7.87401572e-003, - 0., 1.57480314e-002, 0., 7.87401572e-003, 0., 0., 7.87401572e-003, - 7.87401572e-003, 0., 0., 0., 0., 2.36220472e-002, 0., 0., 0., 0., - 1.57480314e-002, 0., 0., 0., 7.87401572e-003, 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 7.87401572e-003, 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 7.87401572e-003, 0., 0., - 2.36220472e-002, 0., 0., 0., 4.72440943e-002, 7.87401572e-003, 0., - 0., 0., 7.87401572e-003, 7.87401572e-003, 0., 0., 0., 0., 0., 0., - 0., 1.57480314e-002, 0., 0., 0., 0., 7.87401572e-003, 0., 0., 0., - 0., 0., 7.87401572e-003, 0., 0., 0., 1.57480314e-002, - 1.57480314e-002, 0., 0., 0., 7.87401572e-003, 1.57480314e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.87401572e-003, 0., - 0., 0., 0., 0., 7.87401572e-003, 0., 0., 0., 7.87401572e-003, 0., - 0., 0., 1.57480314e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 7.87401572e-003, 0., 7.87401572e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 2.36220472e-002, 0., 0., 0., 7.87401572e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.87401572e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.87401572e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.87401572e-003, 0., 0., 0., 0., 0., - 7.87401572e-003, 2.36220472e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.87401572e-003, 0., 0., 0., 0., 7.87401572e-003, 0., 0., - 1.57480314e-002, 0., 0., 0., 7.87401572e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.36220472e-002, 0., 7.87401572e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.57480314e-002, 0., 0., 0., 1.57480314e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.57480314e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.87401572e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.57480314e-002, 0., 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.87401572e-003, 0., 0., 0., 7.87401572e-003, 0., 0., 0., - 0., 0., 7.87401572e-003, 0., 0., 0., 7.87401572e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.87401572e-003, 0., 0., 0., 1.57480314e-002, 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 7.87401572e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.87401572e-003, 0., 0., 7.87401572e-003, 0., 0., 0., 0., - 3.17460299e-002, 1.58730149e-002, 5.29100513e-003, - 1.05820103e-002, 0., 5.29100513e-003, 0., 5.29100513e-003, - 1.05820103e-002, 1.05820103e-002, 0., 5.29100513e-003, 0., 0., 0., - 2.11640205e-002, 1.05820103e-002, 0., 0., 0., 0., 1.58730149e-002, - 5.29100513e-003, 0., 0., 0., 1.58730149e-002, 0., 1.58730149e-002, - 5.29100513e-003, 0., 1.58730149e-002, 0., 0., 0., 0., 0., - 1.05820103e-002, 5.29100513e-003, 5.29100513e-003, 0., 0., - 5.29100513e-003, 1.58730149e-002, 0., 5.29100513e-003, 0., - 2.11640205e-002, 1.05820103e-002, 0., 0., 5.29100513e-003, 0., - 5.29100513e-003, 5.29100513e-003, 0., 0., 5.29100513e-003, 0., 0., - 0., 0., 5.29100513e-003, 5.29100513e-003, 0., 0., 0., 0., 0., - 5.29100513e-003, 5.29100513e-003, 0., 0., 0., 0., 5.29100513e-003, - 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., 5.29100513e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, 1.58730149e-002, 0., - 0., 0., 0., 5.29100513e-003, 1.05820103e-002, 5.29100513e-003, 0., - 5.29100513e-003, 0., 0., 0., 5.29100513e-003, 0., 5.29100513e-003, - 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 5.29100513e-003, 0., 3.17460299e-002, - 0., 5.29100513e-003, 0., 4.76190448e-002, 0., 0., 5.29100513e-003, - 0., 0., 0., 0., 1.05820103e-002, 0., 0., 0., 0., 5.29100513e-003, - 0., 0., 5.29100513e-003, 0., 0., 5.29100513e-003, 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.05820103e-002, 5.29100513e-003, 5.29100513e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 1.05820103e-002, 5.29100513e-003, 0., 0., 0., 0., - 0., 5.29100513e-003, 0., 0., 5.29100513e-003, 5.29100513e-003, - 5.29100513e-003, 0., 0., 5.29100513e-003, 0., 5.29100513e-003, 0., - 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 5.29100513e-003, 0., - 1.05820103e-002, 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 3.17460299e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.05820103e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., - 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 5.29100513e-003, 1.58730149e-002, - 5.29100513e-003, 0., 5.29100513e-003, 1.05820103e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.58730149e-002, 0., 0., 0., 0., 5.29100513e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, 5.29100513e-003, 0., - 0., 0., 0., 5.29100513e-003, 0., 0., 5.29100513e-003, 0., 0., 0., - 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 5.29100513e-003, - 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 1.05820103e-002, 0., 5.29100513e-003, 0., 0., - 0., 0., 5.29100513e-003, 0., 5.29100513e-003, 1.05820103e-002, 0., - 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.58730149e-002, 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.05820103e-002, 0., 5.29100513e-003, 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 5.29100513e-003, - 2.11640205e-002, 0., 5.29100513e-003, 0., 0., 0., 0., - 5.29100513e-003, 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.29100513e-003, 0., - 0., 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 1.05820103e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 5.29100513e-003, 0., 5.29100513e-003, 0., 0., - 0., 0., 5.29100513e-003, 0., 0., 0., 5.29100513e-003, 0., 0., 0., - 0., 0., 0., 0., 5.29100513e-003, 0., 0., 0., 0., 0., - 5.29100513e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 1.19047621e-002, 1.78571437e-002, - 5.95238106e-003, 0., 1.19047621e-002, 0., 5.95238106e-003, - 1.78571437e-002, 0., 1.78571437e-002, 0., 2.97619049e-002, 0., 0., - 5.95238106e-003, 0., 2.38095243e-002, 5.95238106e-003, - 5.95238106e-003, 0., 0., 1.19047621e-002, 5.95238106e-003, 0., - 5.95238106e-003, 1.78571437e-002, 0., 5.95238106e-003, - 5.95238106e-003, 0., 2.38095243e-002, 5.95238106e-003, 0., - 1.19047621e-002, 0., 0., 0., 0., 1.78571437e-002, 0., 0., - 5.95238106e-003, 0., 0., 2.38095243e-002, 0., 5.95238106e-003, - 2.38095243e-002, 5.95238106e-003, 0., 0., 5.95238106e-003, 0., - 5.95238106e-003, 1.19047621e-002, 0., 0., 0., 0., 0., 0., - 1.19047621e-002, 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., - 0., 1.78571437e-002, 0., 0., 0., 0., 5.95238106e-003, - 5.95238106e-003, 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 5.95238106e-003, 5.95238106e-003, 0., 0., 5.95238106e-003, 0., - 1.78571437e-002, 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., - 0., 0., 0., 5.95238106e-003, 0., 5.95238106e-003, 0., - 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 1.19047621e-002, 0., 0., 0., - 1.19047621e-002, 0., 0., 0., 0., 0., 5.95238106e-003, 0., - 1.78571437e-002, 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., - 5.95238106e-003, 0., 0., 5.95238106e-003, 0., 0., 0., - 5.95238106e-003, 0., 1.19047621e-002, 0., 0., 1.19047621e-002, 0., - 0., 0., 0., 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.95238106e-003, 0., 0., 5.95238106e-003, - 5.95238106e-003, 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., - 0., 5.95238106e-003, 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.19047621e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 1.19047621e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.19047621e-002, - 0., 0., 0., 0., 0., 0., 0., 1.19047621e-002, 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.19047621e-002, 0., 0., 0., 1.19047621e-002, 0., 0., - 0., 5.95238106e-003, 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.19047621e-002, 0., 0., 0., 0., 0., 5.95238106e-003, - 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.95238106e-003, 0., 5.95238106e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., 0., 0., - 5.95238106e-003, 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.19047621e-002, 0., 0., 0., 0., 5.95238106e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.95238106e-003, 1.19047621e-002, 0., - 0., 0., 1.78571437e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.95238106e-003, 5.95238106e-003, 0., - 5.95238106e-003, 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 5.95238106e-003, 0., 0., 0., 0., 0., 0., - 1.19047621e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.19047621e-002, 0., 0., 5.95238106e-003, 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.95238106e-003, 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 0., - 0., 5.95238106e-003, 0., 0., 0., 0., 0., 1.19047621e-002, 0., 0., - 0., 0., 0., 5.95238106e-003, 0., 0., 0., 5.95238106e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 5.95238106e-003, 0., 5.95238106e-003, - 1.03092780e-002, 1.03092780e-002, 5.15463902e-003, - 1.03092780e-002, 0., 5.15463902e-003, 0., 1.03092780e-002, - 5.15463902e-003, 1.03092780e-002, 5.15463902e-003, - 1.03092780e-002, 1.03092780e-002, 0., 5.15463902e-003, - 1.54639166e-002, 0., 1.54639166e-002, 1.03092780e-002, 0., - 1.03092780e-002, 5.15463902e-003, 5.15463902e-003, - 5.15463902e-003, 0., 0., 1.54639166e-002, 0., 0., 0., - 5.15463902e-003, 5.15463902e-003, 0., 1.54639166e-002, - 5.15463902e-003, 5.15463902e-003, 0., 0., 0., 5.15463902e-003, - 1.03092780e-002, 0., 0., 0., 0., 5.15463902e-003, 0., - 1.03092780e-002, 5.15463902e-003, 1.03092780e-002, 0., 0., 0., 0., - 1.03092780e-002, 5.15463902e-003, 0., 0., 5.15463902e-003, 0., - 5.15463902e-003, 0., 1.54639166e-002, 0., 5.15463902e-003, 0., 0., - 0., 5.15463902e-003, 0., 5.15463902e-003, 0., 5.15463902e-003, - 1.03092780e-002, 0., 0., 0., 5.15463902e-003, 5.15463902e-003, - 1.03092780e-002, 0., 0., 0., 0., 2.06185561e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.15463902e-003, 0., 5.15463902e-003, 0., - 5.15463902e-003, 0., 5.15463902e-003, 5.15463902e-003, 0., 0., 0., - 0., 0., 0., 5.15463902e-003, 0., 0., 0., 5.15463902e-003, - 1.03092780e-002, 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., - 0., 0., 0., 2.57731955e-002, 5.15463902e-003, 5.15463902e-003, - 5.15463902e-003, 2.57731955e-002, 0., 0., 5.15463902e-003, 0., - 1.03092780e-002, 1.03092780e-002, 0., 5.15463902e-003, 0., 0., - 1.03092780e-002, 0., 0., 1.03092780e-002, 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.03092780e-002, 0., 0., 0., 1.54639166e-002, 5.15463902e-003, 0., - 0., 1.03092780e-002, 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.03092780e-002, 0., 0., 0., 0., 0., 1.03092780e-002, - 5.15463902e-003, 0., 0., 0., 5.15463902e-003, 0., 5.15463902e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., - 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, - 5.15463902e-003, 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.15463902e-003, 5.15463902e-003, 0., 0., 0., - 1.03092780e-002, 0., 0., 0., 0., 5.15463902e-003, 5.15463902e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., - 5.15463902e-003, 0., 5.15463902e-003, 0., 0., 5.15463902e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.03092780e-002, 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 1.03092780e-002, 0., 0., 0., 0., 0., 0., - 5.15463902e-003, 0., 1.03092780e-002, 0., 0., 0., 0., 0., 0., 0., - 1.03092780e-002, 0., 0., 2.57731955e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 5.15463902e-003, 0., 0., 5.15463902e-003, 0., 0., 0., 0., - 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.15463902e-003, 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., - 5.15463902e-003, 0., 0., 0., 1.03092780e-002, 0., 0., - 1.03092780e-002, 0., 5.15463902e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.03092780e-002, 0., 0., 5.15463902e-003, - 1.03092780e-002, 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., - 5.15463902e-003, 1.03092780e-002, 0., 0., 0., 5.15463902e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.15463902e-003, 0., 0., - 1.03092780e-002, 0., 0., 0., 0., 0., 0., 0., 0., 1.03092780e-002, - 0., 0., 5.15463902e-003, 0., 0., 0., 5.15463902e-003, 0., 0., - 1.03092780e-002, 0., 0., 0., 5.15463902e-003, 0., 0., 0., 0., 0., - 0., 5.15463902e-003, 0., 0., 0., 1.73913036e-002, 0., - 8.69565178e-003, 0., 0., 8.69565178e-003, 0., 0., 0., - 8.69565178e-003, 8.69565178e-003, 0., 1.73913036e-002, 0., 0., - 8.69565178e-003, 8.69565178e-003, 8.69565178e-003, 0., - 3.47826071e-002, 8.69565178e-003, 8.69565178e-003, 0., 0., 0., 0., - 8.69565178e-003, 0., 1.73913036e-002, 0., 8.69565178e-003, 0., 0., - 5.21739125e-002, 0., 8.69565178e-003, 0., 0., 0., 1.73913036e-002, - 0., 0., 0., 8.69565178e-003, 0., 0., 0., 1.73913036e-002, - 1.73913036e-002, 0., 8.69565178e-003, 8.69565178e-003, 0., 0., - 8.69565178e-003, 8.69565178e-003, 0., 0., 8.69565178e-003, 0., 0., - 0., 1.73913036e-002, 0., 8.69565178e-003, 0., 0., 8.69565178e-003, - 1.73913036e-002, 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., - 0., 8.69565178e-003, 0., 0., 8.69565178e-003, 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., - 0., 8.69565178e-003, 0., 8.69565178e-003, 8.69565178e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.73913036e-002, 0., 8.69565178e-003, 0., 0., 0., 0., 0., - 8.69565178e-003, 0., 8.69565178e-003, 0., 8.69565178e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 0., 8.69565178e-003, - 1.73913036e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.73913036e-002, 0., 0., 0., 0., 0., 0., 0., 2.60869563e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., - 0., 0., 0., 1.73913036e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., - 1.73913036e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.73913036e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.73913036e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., - 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.60869563e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 2.60869563e-002, 0., 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 1.73913036e-002, - 0., 0., 0., 8.69565178e-003, 0., 8.69565178e-003, 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.60869563e-002, 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., - 0., 0., 0., 1.73913036e-002, 0., 0., 0., 0., 0., 0., 0., - 1.73913036e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 1.73913036e-002, - 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.52380989e-003, 0., 0., 9.52380989e-003, 2.85714306e-002, - 0., 1.90476198e-002, 0., 0., 9.52380989e-003, 0., 0., - 2.85714306e-002, 0., 9.52380989e-003, 0., 9.52380989e-003, 0., - 1.90476198e-002, 0., 0., 0., 1.90476198e-002, 0., 9.52380989e-003, - 1.90476198e-002, 0., 1.90476198e-002, 0., 9.52380989e-003, - 9.52380989e-003, 0., 9.52380989e-003, 0., 0., 0., 0., 0., - 2.85714306e-002, 0., 0., 0., 0., 0., 0., 1.90476198e-002, - 9.52380989e-003, 2.85714306e-002, 0., 0., 0., 0., 0., 0., - 9.52380989e-003, 0., 0., 0., 0., 0., 0., 9.52380989e-003, 0., 0., - 0., 0., 0., 1.90476198e-002, 9.52380989e-003, 9.52380989e-003, 0., - 0., 0., 0., 0., 0., 0., 9.52380989e-003, 0., 0., 0., - 1.90476198e-002, 0., 0., 0., 9.52380989e-003, 0., 0., 0., 0., 0., - 2.85714306e-002, 0., 0., 0., 0., 0., 0., 0., 0., 9.52380989e-003, - 0., 0., 1.90476198e-002, 0., 0., 9.52380989e-003, 0., - 9.52380989e-003, 0., 0., 9.52380989e-003, 9.52380989e-003, 0., 0., - 0., 0., 0., 0., 0., 9.52380989e-003, 0., 0., 0., 0., - 1.90476198e-002, 0., 0., 0., 3.80952395e-002, 0., 0., 0., 0., 0., - 0., 0., 1.90476198e-002, 0., 9.52380989e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.52380989e-003, 2.85714306e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 9.52380989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.52380989e-003, 0., 0., 1.90476198e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.52380989e-003, 0., 0., 0., 0., 0., 9.52380989e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.52380989e-003, 9.52380989e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.52380989e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 9.52380989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.52380989e-003, 0., - 0., 1.90476198e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.52380989e-003, 0., 0., 0., 0., 0., 9.52380989e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.52380989e-003, 0., 0., 9.52380989e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.52380989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.90476198e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.90476198e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.52380989e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.52380989e-003, 0., 0., 0., - 9.52380989e-003, 0., 0., 0., 0., 9.52380989e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.52380989e-003, 0., 9.52380989e-003, 0., 0., 0., 0., 0., - 0., 0., 1.90476198e-002, 0., 0., 0., 0., 0., 0., 9.52380989e-003, - 0., 0., 0., 9.52380989e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 9.52380989e-003, 0., 0., - 1.90476198e-002, 0., 0., 0., 9.52380989e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.52380989e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 9.43396240e-003, 0., 0., 9.43396240e-003, - 1.88679248e-002, 0., 0., 0., 1.88679248e-002, 9.43396240e-003, 0., - 0., 0., 3.77358496e-002, 9.43396240e-003, 0., 0., 0., - 9.43396240e-003, 0., 9.43396240e-003, 0., 0., 0., 9.43396240e-003, - 3.77358496e-002, 9.43396240e-003, 9.43396240e-003, 0., - 3.77358496e-002, 1.88679248e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.43396240e-003, 1.88679248e-002, 9.43396240e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, - 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 9.43396240e-003, 9.43396240e-003, 0., 0., 9.43396240e-003, - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., - 1.88679248e-002, 0., 0., 9.43396240e-003, 9.43396240e-003, 0., 0., - 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 9.43396240e-003, 0., 0., 0., 1.88679248e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.88679248e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 1.88679248e-002, - 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 9.43396240e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 9.43396240e-003, - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., - 0., 0., 9.43396240e-003, 0., 0., 0., 4.71698120e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 9.43396240e-003, 0., 9.43396240e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., - 1.88679248e-002, 9.43396240e-003, 0., 0., 0., 0., 1.88679248e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.88679248e-002, 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.83018872e-002, 0., 0., - 1.88679248e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.43396240e-003, 0., 0., 9.43396240e-003, 0., - 1.88679248e-002, 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., - 9.43396240e-003, 9.43396240e-003, 9.43396240e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 2.54237279e-002, 0., 0., 0., 0., 2.54237279e-002, 8.47457629e-003, - 8.47457629e-003, 0., 1.69491526e-002, 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 8.47457629e-003, 0., 8.47457629e-003, 0., - 8.47457629e-003, 0., 2.54237279e-002, 0., 1.69491526e-002, - 1.69491526e-002, 0., 1.69491526e-002, 0., 8.47457629e-003, - 8.47457629e-003, 0., 0., 0., 8.47457629e-003, 8.47457629e-003, 0., - 0., 0., 8.47457629e-003, 0., 8.47457629e-003, 0., 0., - 2.54237279e-002, 1.69491526e-002, 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 1.69491526e-002, 0., 0., - 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., - 1.69491526e-002, 0., 0., 8.47457629e-003, 8.47457629e-003, - 8.47457629e-003, 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., - 1.69491526e-002, 8.47457629e-003, 0., 0., 0., 0., 1.69491526e-002, - 0., 0., 0., 3.38983051e-002, 0., 0., 0., 8.47457629e-003, 0., - 8.47457629e-003, 0., 8.47457629e-003, 0., 0., 8.47457629e-003, 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 8.47457629e-003, 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 0., 0., 8.47457629e-003, 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 8.47457629e-003, 0., 8.47457629e-003, 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.69491526e-002, 2.54237279e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.69491526e-002, 0., 8.47457629e-003, - 0., 0., 0., 0., 0., 0., 8.47457629e-003, 1.69491526e-002, 0., - 1.69491526e-002, 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, - 0., 1.69491526e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 0., 0., 0., 0., 1.69491526e-002, 0., 8.47457629e-003, 0., 0., - 1.69491526e-002, 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.91715984e-003, 0., 1.18343197e-002, 0., 2.36686394e-002, 0., - 0., 1.18343197e-002, 2.95857992e-002, 1.18343197e-002, - 5.91715984e-003, 5.91715984e-003, 5.91715984e-003, - 2.36686394e-002, 1.18343197e-002, 0., 5.91715984e-003, 0., - 5.91715984e-003, 1.77514795e-002, 0., 0., 0., 5.91715984e-003, 0., - 5.91715984e-003, 0., 0., 4.14201170e-002, 5.91715984e-003, - 5.91715984e-003, 0., 5.91715984e-003, 0., 5.91715984e-003, 0., 0., - 5.91715984e-003, 1.18343197e-002, 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 5.91715984e-003, 2.95857992e-002, 0., 0., 0., 0., - 0., 0., 2.95857992e-002, 0., 5.91715984e-003, 0., 0., 0., - 5.91715984e-003, 5.91715984e-003, 0., 5.91715984e-003, 0., 0., - 5.91715984e-003, 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., - 0., 5.91715984e-003, 0., 0., 5.91715984e-003, 0., 5.91715984e-003, - 0., 5.91715984e-003, 0., 0., 0., 0., 5.91715984e-003, 0., 0., - 5.91715984e-003, 5.91715984e-003, 5.91715984e-003, 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., - 5.91715984e-003, 5.91715984e-003, 0., 0., 5.91715984e-003, 0., 0., - 0., 0., 1.18343197e-002, 0., 0., 5.91715984e-003, 0., 0., 0., 0., - 0., 2.36686394e-002, 0., 0., 0., 2.95857992e-002, 1.18343197e-002, - 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., - 0., 5.91715984e-003, 5.91715984e-003, 0., 0., 5.91715984e-003, 0., - 1.18343197e-002, 0., 5.91715984e-003, 0., 1.77514795e-002, 0., 0., - 0., 0., 5.91715984e-003, 5.91715984e-003, 0., 0., 5.91715984e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., - 5.91715984e-003, 0., 5.91715984e-003, 0., 0., 0., 5.91715984e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.18343197e-002, 0., 0., 0., - 0., 0., 0., 5.91715984e-003, 0., 5.91715984e-003, 0., 0., 0., 0., - 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, - 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., - 5.91715984e-003, 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.91715984e-003, 5.91715984e-003, 0., 0., 0., 0., - 2.95857992e-002, 5.91715984e-003, 0., 0., 0., 0., 5.91715984e-003, - 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 5.91715984e-003, 5.91715984e-003, - 5.91715984e-003, 0., 0., 5.91715984e-003, 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.18343197e-002, 0., - 1.77514795e-002, 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.18343197e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 5.91715984e-003, 0., 0., 0., 5.91715984e-003, - 1.18343197e-002, 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., - 0., 0., 1.18343197e-002, 0., 0., 0., 0., 5.91715984e-003, 0., 0., - 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 5.91715984e-003, 0., - 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 1.77514795e-002, 0., 0., - 0., 0., 5.91715984e-003, 0., 0., 0., 5.91715984e-003, 0., 0., 0., - 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.14942528e-002, - 1.14942528e-002, 5.74712642e-003, 5.74712642e-003, 0., 0., 0., - 5.74712642e-003, 1.72413792e-002, 0., 1.14942528e-002, 0., - 1.14942528e-002, 1.14942528e-002, 1.14942528e-002, 0., - 5.74712642e-003, 1.14942528e-002, 0., 5.74712642e-003, 0., - 5.74712642e-003, 0., 0., 0., 0., 1.72413792e-002, 0., - 5.74712642e-003, 1.72413792e-002, 5.74712642e-003, - 1.14942528e-002, 0., 1.14942528e-002, 5.74712642e-003, 0., 0., 0., - 5.74712642e-003, 5.74712642e-003, 5.74712642e-003, 0., 0., 0., 0., - 1.14942528e-002, 5.74712642e-003, 1.72413792e-002, 0., - 5.74712642e-003, 0., 0., 0., 5.74712642e-003, 5.74712642e-003, 0., - 0., 0., 0., 0., 0., 0., 1.14942528e-002, 0., 1.14942528e-002, 0., - 0., 0., 5.74712642e-003, 0., 1.14942528e-002, 0., 0., 0., 0., - 1.14942528e-002, 0., 0., 0., 0., 0., 0., 1.72413792e-002, 0., 0., - 0., 0., 0., 0., 5.74712642e-003, 5.74712642e-003, 0., - 5.74712642e-003, 0., 1.72413792e-002, 5.74712642e-003, 0., 0., 0., - 5.74712642e-003, 1.72413792e-002, 1.14942528e-002, 0., 0., 0., 0., - 0., 5.74712642e-003, 1.14942528e-002, 5.74712642e-003, 0., 0., - 5.74712642e-003, 0., 5.74712642e-003, 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 0., 0., 0., 0., 1.72413792e-002, - 5.74712642e-003, 0., 0., 5.74712642e-003, 0., 0., 1.14942528e-002, - 0., 0., 0., 0., 5.74712642e-003, 0., 0., 5.74712642e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., - 1.14942528e-002, 0., 0., 5.74712642e-003, 0., 0., 5.74712642e-003, - 0., 0., 0., 5.74712642e-003, 5.74712642e-003, 0., 1.14942528e-002, - 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 0., 0., 1.72413792e-002, 5.74712642e-003, 0., - 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.74712642e-003, 1.14942528e-002, 0., - 0., 5.74712642e-003, 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., - 0., 0., 5.74712642e-003, 0., 0., 0., 0., 5.74712642e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., - 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., 5.74712642e-003, 0., - 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.14942528e-002, - 5.74712642e-003, 0., 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., 1.72413792e-002, - 0., 5.74712642e-003, 0., 0., 0., 5.74712642e-003, 5.74712642e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., - 5.74712642e-003, 0., 0., 1.14942528e-002, 5.74712642e-003, 0., 0., - 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.14942528e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.74712642e-003, 0., 0., 0., 5.74712642e-003, 0., 0., 0., - 0., 0., 0., 5.74712642e-003, 1.14942528e-002, 0., 0., 0., 0., - 5.74712642e-003, 5.74712642e-003, 5.74712642e-003, 0., 0., 0., 0., - 0., 0., 0., 5.74712642e-003, 0., 5.74712642e-003, 5.74712642e-003, - 0., 0., 0., 5.74712642e-003, 0., 0., 0., 5.74712642e-003, 0., - 5.74712642e-003, 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., - 1.72413792e-002, 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.74712642e-003, 0., 0., 1.72413792e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., - 0., 5.74712642e-003, 0., 0., 5.74712642e-003, 0., 5.74712642e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.14942528e-002, 0., - 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 0., 0., 0., 0., 5.78034669e-003, - 5.78034669e-003, 0., 0., 3.46820801e-002, 0., 0., 0., - 1.15606934e-002, 5.78034669e-003, 5.78034669e-003, - 5.78034669e-003, 0., 0., 0., 0., 5.78034669e-003, 5.78034669e-003, - 1.15606934e-002, 1.15606934e-002, 0., 1.15606934e-002, 0., 0., 0., - 2.89017335e-002, 0., 0., 1.15606934e-002, 0., 5.78034669e-003, 0., - 2.31213868e-002, 5.78034669e-003, 0., 5.78034669e-003, - 5.78034669e-003, 1.15606934e-002, 0., 0., 0., 0., 5.78034669e-003, - 0., 5.78034669e-003, 1.15606934e-002, 1.15606934e-002, - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 1.73410401e-002, 0., - 1.15606934e-002, 0., 0., 0., 5.78034669e-003, 0., 5.78034669e-003, - 5.78034669e-003, 0., 0., 5.78034669e-003, 5.78034669e-003, 0., 0., - 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., - 1.73410401e-002, 0., 0., 0., 0., 0., 0., 5.78034669e-003, - 5.78034669e-003, 0., 0., 0., 1.15606934e-002, 1.15606934e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 1.15606934e-002, 1.15606934e-002, 0., - 5.78034669e-003, 5.78034669e-003, 5.78034669e-003, 0., 0., 0., 0., - 1.73410401e-002, 0., 0., 0., 1.15606934e-002, 5.78034669e-003, 0., - 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 1.15606934e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., - 5.78034669e-003, 1.15606934e-002, 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 5.78034669e-003, 0., 0., 0., 1.15606934e-002, 0., - 0., 0., 0., 0., 1.15606934e-002, 0., 0., 5.78034669e-003, 0., 0., - 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., 5.78034669e-003, - 1.15606934e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 1.73410401e-002, 0., - 1.15606934e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.15606934e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.15606934e-002, 0., 0., 5.78034669e-003, 0., 0., 0., 0., - 5.78034669e-003, 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.15606934e-002, 0., 0., 0., 0., 5.78034669e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, - 5.78034669e-003, 0., 5.78034669e-003, 0., 0., 5.78034669e-003, 0., - 5.78034669e-003, 0., 0., 0., 0., 5.78034669e-003, 5.78034669e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 5.78034669e-003, 0., 0., 5.78034669e-003, 0., - 0., 2.31213868e-002, 0., 0., 0., 1.15606934e-002, 0., 0., 0., 0., - 0., 0., 5.78034669e-003, 5.78034669e-003, 0., 0., 5.78034669e-003, - 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 5.78034669e-003, - 5.78034669e-003, 0., 5.78034669e-003, 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.15606934e-002, 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 5.78034669e-003, 5.78034669e-003, - 5.78034669e-003, 0., 0., 0., 0., 0., 1.73410401e-002, 0., 0., 0., - 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, - 0., 5.78034669e-003, 5.78034669e-003, 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.78034669e-003, 5.78034669e-003, - 5.78034669e-003, 0., 0., 0., 0., 5.78034669e-003, 0., 0., 0., 0., - 0., 5.78034669e-003, 5.78034669e-003, 0., 0., 0., 0., 0., - 5.78034669e-003, 0., 0., 0., 5.78034669e-003, 0., 0., 0., - 5.78034669e-003, 0., 0., 5.78034669e-003, 0., 0., 0., 0., 0., 0., - 0., 1.86335407e-002, 0., 0., 0., 0., 1.86335407e-002, 0., 0., 0., - 1.24223605e-002, 0., 0., 6.21118024e-003, 1.24223605e-002, - 6.21118024e-003, 1.24223605e-002, 0., 6.21118024e-003, - 1.24223605e-002, 0., 6.21118024e-003, 6.21118024e-003, - 6.21118024e-003, 6.21118024e-003, 0., 6.21118024e-003, - 2.48447210e-002, 6.21118024e-003, 3.72670814e-002, - 2.48447210e-002, 0., 6.21118024e-003, 0., 0., 6.21118024e-003, 0., - 0., 6.21118024e-003, 0., 6.21118024e-003, 0., 0., 0., - 6.21118024e-003, 0., 6.21118024e-003, 6.21118024e-003, - 2.48447210e-002, 3.10559012e-002, 0., 0., 1.24223605e-002, 0., - 1.24223605e-002, 0., 6.21118024e-003, 0., 0., 0., 0., 0., 0., - 1.24223605e-002, 0., 6.21118024e-003, 6.21118024e-003, 0., 0., - 6.21118024e-003, 0., 0., 0., 6.21118024e-003, 0., 0., 0., - 6.21118024e-003, 0., 0., 0., 0., 0., 6.21118024e-003, 0., - 1.24223605e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.21118024e-003, 1.24223605e-002, 0., 0., 0., 0., - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 1.24223605e-002, 0., - 0., 6.21118024e-003, 6.21118024e-003, 6.21118024e-003, - 2.48447210e-002, 0., 0., 0., 0., 0., 0., 0., 3.10559012e-002, - 6.21118024e-003, 0., 0., 4.34782617e-002, 0., 0., 0., 0., 0., 0., - 0., 1.24223605e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., - 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 1.24223605e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.24223605e-002, 0., 6.21118024e-003, 6.21118024e-003, 0., - 6.21118024e-003, 0., 0., 0., 0., 6.21118024e-003, 0., 0., - 6.21118024e-003, 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., - 0., 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.86335407e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, - 6.21118024e-003, 0., 0., 0., 0., 1.24223605e-002, 0., 0., - 6.21118024e-003, 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 3.10559012e-002, 0., 0., 0., 0., 0., 1.24223605e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.24223605e-002, 0., 0., 0., 0., 0., - 0., 0., 6.21118024e-003, 0., 6.21118024e-003, 0., 1.86335407e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.21118024e-003, 0., 6.21118024e-003, 6.21118024e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 6.21118024e-003, 6.21118024e-003, - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 1.24223605e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, - 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., 0., - 1.86335407e-002, 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., - 0., 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., 0., - 1.10497242e-002, 1.10497242e-002, 0., 5.52486209e-003, 0., 0., - 5.52486209e-003, 5.52486209e-003, 5.52486209e-003, - 5.52486209e-003, 1.10497242e-002, 0., 1.10497242e-002, 0., - 5.52486209e-003, 5.52486209e-003, 0., 0., 5.52486209e-003, 0., - 5.52486209e-003, 1.10497242e-002, 1.10497242e-002, - 5.52486209e-003, 0., 0., 4.41988967e-002, 0., 1.65745858e-002, - 2.20994484e-002, 1.65745858e-002, 0., 0., 5.52486209e-003, 0., 0., - 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., - 1.10497242e-002, 1.65745858e-002, 2.20994484e-002, 0., 0., 0., - 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 5.52486209e-003, 0., - 0., 0., 0., 5.52486209e-003, 0., 1.10497242e-002, 0., 0., 0., 0., - 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 5.52486209e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 5.52486209e-003, 5.52486209e-003, - 0., 5.52486209e-003, 0., 5.52486209e-003, 2.20994484e-002, 0., 0., - 0., 0., 0., 0., 5.52486209e-003, 1.65745858e-002, 0., - 5.52486209e-003, 0., 0., 0., 5.52486209e-003, 0., 1.10497242e-002, - 0., 0., 0., 0., 0., 3.31491716e-002, 0., 0., 0., 3.31491716e-002, - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., - 0., 0., 0., 5.52486209e-003, 0., 5.52486209e-003, 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., - 0., 0., 5.52486209e-003, 0., 0., 0., 5.52486209e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.10497242e-002, 1.10497242e-002, 0., - 5.52486209e-003, 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 1.65745858e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., - 0., 0., 0., 0., 5.52486209e-003, 5.52486209e-003, 0., 0., - 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., - 2.76243109e-002, 5.52486209e-003, 5.52486209e-003, 0., 0., 0., - 1.10497242e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 2.20994484e-002, 0., - 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.52486209e-003, 0., 5.52486209e-003, 0., 0., 0., 0., 0., - 0., 0., 5.52486209e-003, 0., 3.31491716e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 1.10497242e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, - 0., 5.52486209e-003, 5.52486209e-003, 0., 0., 0., 0., - 5.52486209e-003, 1.10497242e-002, 0., 0., 0., 1.10497242e-002, 0., - 5.52486209e-003, 0., 0., 5.52486209e-003, 5.52486209e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 1.10497242e-002, 0., 0., 0., 0., 0., - 1.10497242e-002, 0., 5.52486209e-003, 0., 5.52486209e-003, 0., - 1.10497242e-002, 0., 0., 5.52486209e-003, 0., 0., 0., 0., - 2.20994484e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.10497242e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 5.52486209e-003, 5.52486209e-003, 0., 5.52486209e-003, - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.10497242e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.24223605e-002, 6.21118024e-003, 0., - 1.24223605e-002, 0., 0., 0., 6.21118024e-003, 0., 1.24223605e-002, - 6.21118024e-003, 0., 0., 0., 0., 0., 2.48447210e-002, 0., 0., - 1.24223605e-002, 0., 0., 0., 0., 0., 3.10559012e-002, 0., - 6.21118024e-003, 3.10559012e-002, 6.21118024e-003, - 1.86335407e-002, 0., 1.24223605e-002, 0., 0., 0., 0., - 1.24223605e-002, 0., 0., 0., 6.21118024e-003, 0., 0., 0., - 1.24223605e-002, 0., 4.34782617e-002, 6.21118024e-003, - 6.21118024e-003, 0., 0., 6.21118024e-003, 0., 1.24223605e-002, 0., - 0., 0., 0., 0., 6.21118024e-003, 0., 0., 6.21118024e-003, - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.21118024e-003, 6.21118024e-003, - 1.24223605e-002, 0., 0., 0., 1.24223605e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, - 1.24223605e-002, 0., 1.24223605e-002, 0., 0., 6.21118024e-003, 0., - 0., 1.86335407e-002, 0., 6.21118024e-003, 0., 3.72670814e-002, 0., - 0., 0., 0., 0., 0., 0., 1.24223605e-002, 0., 0., 0., 0., 0., - 6.21118024e-003, 0., 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.24223605e-002, 0., 1.24223605e-002, - 6.21118024e-003, 0., 6.21118024e-003, 0., 3.72670814e-002, 0., - 6.21118024e-003, 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., 0., - 6.21118024e-003, 6.21118024e-003, 0., 0., 0., 0., 0., - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.21118024e-003, 6.21118024e-003, 0., 0., 0., 6.21118024e-003, 0., - 0., 0., 0., 0., 6.21118024e-003, 0., 0., 6.21118024e-003, 0., - 6.21118024e-003, 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., - 0., 0., 1.24223605e-002, 6.21118024e-003, 0., 0., 0., 0., - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 2.48447210e-002, 0., 6.21118024e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.24223605e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., - 6.21118024e-003, 0., 0., 6.21118024e-003, 0., 0., 0., 0., - 6.21118024e-003, 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., - 0., 6.21118024e-003, 0., 0., 0., 0., 1.24223605e-002, 0., - 3.10559012e-002, 6.21118024e-003, 0., 0., 0., 0., 0., 0., - 6.21118024e-003, 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., 0., - 0., 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.21118024e-003, 6.21118024e-003, 0., 6.21118024e-003, 0., 0., 0., - 0., 0., 6.21118024e-003, 0., 0., 0., 6.21118024e-003, 0., 0., 0., - 0., 1.86335407e-002, 0., 0., 0., 6.21118024e-003, 0., 0., 0., - 6.21118024e-003, 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.24223605e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.24223605e-002, 0., 0., - 1.24223605e-002, 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.21118024e-003, 0., 1.24223605e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 6.21118024e-003, 0., 0., 0., 6.21118024e-003, - 0., 1.24223605e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.21118024e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.21118024e-003, 0., - 1.16959065e-002, 0., 0., 1.16959065e-002, 0., 0., 0., 0., - 1.75438598e-002, 0., 5.84795326e-003, 0., 5.84795326e-003, 0., 0., - 5.84795326e-003, 5.84795326e-003, 0., 5.84795326e-003, 0., - 5.84795326e-003, 0., 2.33918130e-002, 0., 0., 1.16959065e-002, 0., - 5.84795326e-003, 5.84795326e-003, 2.92397663e-002, 0., - 5.84795326e-003, 0., 5.84795326e-003, 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 0., 0., 0., - 5.84795326e-003, 4.09356728e-002, 1.16959065e-002, 0., - 5.84795326e-003, 0., 0., 0., 5.84795326e-003, 0., 0., 0., - 1.16959065e-002, 0., 0., 5.84795326e-003, 5.84795326e-003, 0., 0., - 0., 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 1.75438598e-002, 0., 0., 0., - 5.84795326e-003, 1.75438598e-002, 0., 0., 0., 1.16959065e-002, 0., - 0., 0., 0., 5.84795326e-003, 0., 5.84795326e-003, 0., - 5.84795326e-003, 0., 0., 0., 5.84795326e-003, 0., 5.84795326e-003, - 5.84795326e-003, 0., 0., 0., 0., 5.84795326e-003, 4.09356728e-002, - 0., 0., 0., 2.92397663e-002, 5.84795326e-003, 0., 5.84795326e-003, - 0., 0., 5.84795326e-003, 0., 5.84795326e-003, 0., 0., 0., 0., - 5.84795326e-003, 5.84795326e-003, 5.84795326e-003, 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.16959065e-002, 0., 5.84795326e-003, 0., 0., 5.84795326e-003, - 2.33918130e-002, 0., 5.84795326e-003, 0., 5.84795326e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.84795326e-003, 0., 0., 0., 0., 5.84795326e-003, 0., 0., - 1.16959065e-002, 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., - 5.84795326e-003, 5.84795326e-003, 0., 5.84795326e-003, - 5.84795326e-003, 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.75438598e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.84795326e-003, 0., 5.84795326e-003, 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.84795326e-003, 0., 0., 1.16959065e-002, 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 1.16959065e-002, 0., 0., 0., - 0., 2.33918130e-002, 0., 0., 0., 0., 0., 5.84795326e-003, - 5.84795326e-003, 5.84795326e-003, 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 1.16959065e-002, 0., 0., 0., 0., 0., 0., - 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 2.92397663e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.16959065e-002, 0., 1.16959065e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.16959065e-002, 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., - 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., 1.16959065e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, - 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 0., 0., - 5.84795326e-003, 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 1.16959065e-002, - 0., 0., 1.16959065e-002, 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.84795326e-003, 0., 0., 0., 5.84795326e-003, 0., 0., - 5.84795326e-003, 0., 0., 1.16959065e-002, 0., 5.84795326e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 1.16959065e-002, 0., - 5.84795326e-003, 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., - 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., 5.84795326e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 5.88235306e-003, 0., - 5.88235306e-003, 0., 1.17647061e-002, 0., 5.88235306e-003, - 1.17647061e-002, 5.88235306e-003, 0., 0., 1.17647061e-002, - 5.88235306e-003, 0., 5.88235306e-003, 0., 1.17647061e-002, 0., 0., - 1.76470596e-002, 0., 1.17647061e-002, 1.17647061e-002, 0., 0., - 2.35294122e-002, 0., 1.17647061e-002, 1.76470596e-002, - 5.88235306e-003, 5.88235306e-003, 0., 5.88235306e-003, 0., 0., 0., - 0., 5.88235306e-003, 1.17647061e-002, 0., 0., 5.88235306e-003, - 1.17647061e-002, 0., 5.88235306e-003, 5.88235306e-003, - 1.17647061e-002, 1.76470596e-002, 0., 0., 5.88235306e-003, 0., 0., - 5.88235306e-003, 5.88235306e-003, 0., 0., 5.88235306e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.88235306e-003, 5.88235306e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.17647061e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 5.88235306e-003, 5.88235306e-003, 0., - 0., 0., 0., 0., 0., 0., 1.17647061e-002, 0., 0., 0., - 5.88235306e-003, 0., 0., 0., 0., 5.88235306e-003, 0., 0., - 5.88235306e-003, 0., 0., 0., 0., 5.88235306e-003, 5.88235306e-003, - 0., 0., 0., 0., 0., 0., 5.88235306e-003, 2.94117648e-002, 0., - 5.88235306e-003, 0., 2.35294122e-002, 5.88235306e-003, 0., - 5.88235306e-003, 0., 0., 0., 0., 5.88235306e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.88235306e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.88235306e-003, 5.88235306e-003, 0., 0., - 3.52941193e-002, 0., 0., 0., 5.88235306e-003, 0., 0., 0., 0., - 5.88235306e-003, 0., 0., 0., 0., 0., 0., 5.88235306e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.88235306e-003, 0., - 5.88235306e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.88235306e-003, 0., 0., 0., 0., 0., 0., 0., - 5.88235306e-003, 0., 0., 0., 5.88235306e-003, 0., 0., 0., - 5.88235306e-003, 0., 0., 0., 0., 0., 5.88235306e-003, - 5.88235306e-003, 0., 1.76470596e-002, 0., 5.88235306e-003, 0., - 1.17647061e-002, 0., 5.88235306e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.17647061e-002, 0., 0., 0., 5.88235306e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.88235306e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.88235306e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.88235306e-003, 0., 0., 0., 0., 0., 0., 0., 5.88235306e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.88235306e-003, 5.88235306e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.17647061e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.88235306e-003, 0., 0., 0., 0., 0., - 1.76470596e-002, 0., 5.88235306e-003, 0., 0., 0., 0., 0., 0., 0., - 1.17647061e-002, 0., 2.94117648e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.17647061e-002, 0., 0., 0., 0., 5.88235306e-003, 0., 0., - 0., 5.88235306e-003, 0., 0., 0., 0., 0., 2.35294122e-002, - 1.17647061e-002, 5.88235306e-003, 0., 0., 0., 0., 0., 0., - 5.88235306e-003, 0., 0., 5.88235306e-003, 0., 0., 0., - 5.88235306e-003, 0., 0., 0., 0., 0., 1.17647061e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.88235306e-003, 0., - 5.88235306e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.88235306e-003, 0., 0., 0., 5.88235306e-003, - 5.88235306e-003, 0., 0., 5.88235306e-003, 0., 0., 1.17647061e-002, - 5.88235306e-003, 0., 0., 0., 0., 0., 0., 5.88235306e-003, 0., 0., - 0., 0., 0., 1.17647061e-002, 0., 5.88235306e-003, 0., - 5.88235306e-003, 0., 0., 0., 0., 0., 0., 1.17647061e-002, 0., 0., - 5.88235306e-003, 0., 0., 5.88235306e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.88235306e-003, 0., 0., 0., - 5.88235306e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.88235306e-003, 0., 0., 0., 0., 5.88235306e-003, 0., - 5.88235306e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.17647061e-002, 0., - 0., 5.88235306e-003, 0., 0., 5.88235306e-003, 0., 5.81395347e-003, - 0., 0., 0., 0., 0., 5.81395347e-003, 0., 5.81395347e-003, 0., 0., - 0., 5.81395347e-003, 5.81395347e-003, 5.81395347e-003, - 5.81395347e-003, 0., 2.90697664e-002, 5.81395347e-003, 0., - 5.81395347e-003, 0., 2.90697664e-002, 0., 0., 0., 2.32558139e-002, - 0., 1.16279069e-002, 2.90697664e-002, 0., 0., 0., 5.81395347e-003, - 5.81395347e-003, 0., 0., 0., 0., 1.16279069e-002, 0., 0., 0., 0., - 5.81395347e-003, 1.16279069e-002, 0., 2.32558139e-002, - 1.74418613e-002, 0., 5.81395347e-003, 5.81395347e-003, 0., 0., 0., - 1.74418613e-002, 0., 0., 0., 1.16279069e-002, 0., 0., - 5.81395347e-003, 0., 2.90697664e-002, 5.81395347e-003, 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., - 5.81395347e-003, 5.81395347e-003, 0., 5.81395347e-003, 0., - 5.81395347e-003, 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., - 1.16279069e-002, 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., - 0., 1.74418613e-002, 0., 0., 0., 0., 0., 2.32558139e-002, - 5.81395347e-003, 0., 0., 2.32558139e-002, 5.81395347e-003, 0., - 5.81395347e-003, 0., 2.32558139e-002, 0., 0., 0., 0., 0., - 5.81395347e-003, 5.81395347e-003, 5.81395347e-003, - 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.81395347e-003, 0., 1.16279069e-002, 0., 0., 0., 0., 0., - 3.48837227e-002, 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., - 0., 0., 0., 1.16279069e-002, 0., 0., 5.81395347e-003, 0., 0., 0., - 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 5.81395347e-003, - 0., 0., 0., 5.81395347e-003, 0., 0., 5.81395347e-003, - 5.81395347e-003, 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 2.90697664e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.16279069e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.16279069e-002, 5.81395347e-003, 0., 0., - 0., 0., 5.81395347e-003, 0., 0., 0., 0., 5.81395347e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, - 0., 5.81395347e-003, 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.81395347e-003, 0., 1.74418613e-002, 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.16279069e-002, 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., - 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., - 5.81395347e-003, 0., 0., 5.81395347e-003, 0., 0., 5.81395347e-003, - 0., 0., 0., 0., 1.16279069e-002, 0., 0., 1.16279069e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.16279069e-002, 0., 0., 0., - 5.81395347e-003, 0., 0., 5.81395347e-003, 5.81395347e-003, 0., 0., - 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.74418613e-002, 0., 0., 0., 5.81395347e-003, 0., 0., 0., - 5.81395347e-003, 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.81395347e-003, - 0., 0., 0., 0., 5.81395347e-003, 5.81395347e-003, 0., - 5.81395347e-003, 0., 5.81395347e-003, 0., 0., 0., 5.81395347e-003, - 0., 0., 5.81395347e-003, 0., 5.81395347e-003, 0., 0., 0., 0., 0., - 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., 0., 1.16279069e-002, - 0., 0., 0., 0., 0., 5.81395347e-003, 0., 0., 0., 0., 0., - 9.70873795e-003, 0., 0., 0., 0., 9.70873795e-003, 0., 0., - 1.94174759e-002, 0., 0., 0., 0., 1.94174759e-002, 0., - 9.70873795e-003, 1.94174759e-002, 0., 1.94174759e-002, 0., 0., - 9.70873795e-003, 9.70873795e-003, 0., 9.70873795e-003, - 9.70873795e-003, 0., 1.94174759e-002, 0., 1.94174759e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., - 9.70873795e-003, 0., 0., 1.94174759e-002, 0., 0., 0., - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., - 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 9.70873795e-003, - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.94174759e-002, 0., 9.70873795e-003, 0., 0., - 0., 0., 0., 2.91262139e-002, 0., 0., 9.70873795e-003, - 2.91262139e-002, 9.70873795e-003, 0., 9.70873795e-003, 0., - 1.94174759e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.94174759e-002, 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.79611638e-002, 0., 9.70873795e-003, - 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.94174759e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., - 2.91262139e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., - 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.82524277e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 2.91262139e-002, 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.94174759e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 9.70873795e-003, - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., - 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, - 1.94174759e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.94174759e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.94174759e-002, 0., 0., 9.70873795e-003, 0., 0., 0., 0., - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., - 9.70873795e-003, 0., 0., 1.94174759e-002, 0., 0., 0., 0., - 9.70873795e-003, 9.70873795e-003, 0., 9.70873795e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 9.70873795e-003, 0., 9.70873795e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 2.42424235e-002, 6.06060587e-003, 0., 0., 0., - 6.06060587e-003, 0., 0., 2.42424235e-002, 6.06060587e-003, 0., - 1.21212117e-002, 0., 0., 0., 0., 6.06060587e-003, 0., - 6.06060587e-003, 0., 6.06060587e-003, 0., 1.81818176e-002, - 6.06060587e-003, 0., 0., 0., 0., 0., 6.06060587e-003, - 6.06060587e-003, 6.06060587e-003, 0., 0., 6.06060587e-003, 0., 0., - 0., 6.06060587e-003, 6.06060587e-003, 0., 0., 0., 6.06060587e-003, - 6.06060587e-003, 1.21212117e-002, 0., 1.21212117e-002, - 1.81818176e-002, 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 6.06060587e-003, 0., 6.06060587e-003, 0., 1.21212117e-002, - 2.42424235e-002, 6.06060587e-003, 0., 6.06060587e-003, - 6.06060587e-003, 0., 6.06060587e-003, 0., 1.81818176e-002, 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.21212117e-002, - 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., 1.21212117e-002, 0., - 6.06060587e-003, 0., 0., 0., 1.21212117e-002, 6.06060587e-003, - 1.21212117e-002, 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, 6.06060587e-003, - 6.06060587e-003, 0., 0., 0., 0., 0., 1.21212117e-002, 0., - 6.06060587e-003, 6.06060587e-003, 3.63636352e-002, - 6.06060587e-003, 0., 1.21212117e-002, 0., 6.06060587e-003, 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 6.06060587e-003, 1.21212117e-002, - 1.81818176e-002, 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.21212117e-002, 6.06060587e-003, 6.06060587e-003, - 0., 0., 0., 1.21212117e-002, 0., 0., 0., 0., 6.06060587e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., - 0., 0., 6.06060587e-003, 0., 0., 0., 6.06060587e-003, - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 6.06060587e-003, - 6.06060587e-003, 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.21212117e-002, 0., 0., 6.06060587e-003, - 1.21212117e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 6.06060587e-003, 0., 6.06060587e-003, 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.21212117e-002, 0., 0., 0., - 6.06060587e-003, 0., 0., 1.81818176e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., - 1.81818176e-002, 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., - 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 1.21212117e-002, 0., 6.06060587e-003, 0., - 1.21212117e-002, 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.21212117e-002, 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., - 1.21212117e-002, 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., - 1.21212117e-002, 0., 0., 0., 0., 0., 1.21212117e-002, 0., 0., 0., - 0., 0., 0., 1.21212117e-002, 0., 0., 6.06060587e-003, 0., 0., 0., - 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., 6.06060587e-003, - 6.06060587e-003, 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.21212117e-002, 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.81818176e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., - 0., 0., 0., 0., 6.06060587e-003, 0., 0., 0., 0., 0., 0., - 6.06060587e-003, 0., 1.21212117e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.06060587e-003, 0., 0., 6.06060587e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.06060587e-003, 0., 0., - 0., 0., 0., 0., 1.21951215e-002, 6.09756075e-003, 0., 0., 0., 0., - 0., 6.09756075e-003, 1.21951215e-002, 0., 2.43902430e-002, 0., 0., - 0., 0., 1.21951215e-002, 6.09756075e-003, 1.21951215e-002, - 1.21951215e-002, 6.09756075e-003, 6.09756075e-003, 0., 0., - 1.21951215e-002, 1.82926822e-002, 0., 6.09756075e-003, 0., - 6.09756075e-003, 0., 0., 1.21951215e-002, 0., 0., 0., - 6.09756075e-003, 0., 0., 1.21951215e-002, 0., 0., 6.09756075e-003, - 6.09756075e-003, 0., 0., 0., 1.21951215e-002, 6.09756075e-003, - 1.21951215e-002, 0., 1.21951215e-002, 6.09756075e-003, - 6.09756075e-003, 0., 1.21951215e-002, 6.09756075e-003, 0., 0., - 6.09756075e-003, 0., 0., 0., 6.09756075e-003, 6.09756075e-003, - 6.09756075e-003, 6.09756075e-003, 0., 6.09756075e-003, 0., 0., - 1.21951215e-002, 0., 0., 0., 0., 6.09756075e-003, 0., 0., - 6.09756075e-003, 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.09756075e-003, 1.21951215e-002, 0., 0., 0., - 6.09756075e-003, 6.09756075e-003, 6.09756075e-003, - 6.09756075e-003, 0., 0., 0., 6.09756075e-003, 0., 6.09756075e-003, - 0., 1.21951215e-002, 0., 0., 1.82926822e-002, 0., 6.09756075e-003, - 0., 0., 0., 6.09756075e-003, 0., 6.09756075e-003, 0., 0., 0., 0., - 0., 1.21951215e-002, 0., 0., 0., 2.43902430e-002, 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 2.43902430e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.09756075e-003, 1.21951215e-002, 0., - 6.09756075e-003, 6.09756075e-003, 6.09756075e-003, 0., 0., - 1.21951215e-002, 0., 0., 1.21951215e-002, 0., 0., 0., - 6.09756075e-003, 2.43902430e-002, 0., 0., 0., 0., 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, 6.09756075e-003, - 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 6.09756075e-003, 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 0., - 0., 0., 0., 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.21951215e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 6.09756075e-003, - 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., - 6.09756075e-003, 0., 0., 6.09756075e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.09756075e-003, 6.09756075e-003, 6.09756075e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.09756075e-003, 6.09756075e-003, 0., 0., 0., 0., - 0., 6.09756075e-003, 0., 0., 0., 0., 0., 2.43902430e-002, 0., 0., - 0., 0., 0., 0., 6.09756075e-003, 0., 0., 0., 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, - 0., 0., 6.09756075e-003, 0., 6.09756075e-003, 0., 0., 0., - 1.21951215e-002, 0., 0., 6.09756075e-003, 0., 0., 0., 0., - 1.21951215e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.09756075e-003, 0., 0., 0., 6.09756075e-003, 0., 0., - 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 0., 0., 0., 0., - 1.21951215e-002, 0., 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, - 0., 0., 0., 6.09756075e-003, 0., 1.21951215e-002, 0., - 6.09756075e-003, 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.09756075e-003, 0., 0., 6.09756075e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, - 1.21951215e-002, 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., - 0., 0., 0., 6.09756075e-003, 6.09756075e-003, 0., 0., 0., 0., - 6.09756075e-003, 6.09756075e-003, 0., 0., 0., 0., 0., 0., - 6.09756075e-003, 6.09756075e-003, 0., 0., 0., 6.09756075e-003, 0., - 0., 0., 5.61797759e-003, 1.68539323e-002, 1.12359552e-002, 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 5.61797759e-003, - 1.12359552e-002, 5.61797759e-003, 5.61797759e-003, - 1.12359552e-002, 1.68539323e-002, 0., 0., 1.12359552e-002, 0., 0., - 1.12359552e-002, 0., 1.12359552e-002, 5.61797759e-003, 0., - 5.61797759e-003, 5.61797759e-003, 0., 1.68539323e-002, 0., - 5.61797759e-003, 1.12359552e-002, 0., 5.61797759e-003, - 5.61797759e-003, 5.61797759e-003, 0., 0., 1.12359552e-002, 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 1.12359552e-002, 0., - 0., 1.12359552e-002, 0., 0., 1.12359552e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.68539323e-002, 5.61797759e-003, - 5.61797759e-003, 5.61797759e-003, 0., 0., 5.61797759e-003, 0., - 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 1.12359552e-002, - 5.61797759e-003, 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 1.68539323e-002, 0., 5.61797759e-003, 1.12359552e-002, 0., 0., - 5.61797759e-003, 5.61797759e-003, 0., 5.61797759e-003, 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 5.61797759e-003, 0., 0., - 0., 1.12359552e-002, 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 5.61797759e-003, 1.12359552e-002, 0., 0., 0., - 5.61797759e-003, 0., 5.05617969e-002, 0., 0., 0., 2.24719103e-002, - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 0., 0., 0., 0., 5.61797759e-003, 5.61797759e-003, 5.61797759e-003, - 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 3.93258445e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.61797759e-003, 0., 0., 5.61797759e-003, - 1.12359552e-002, 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.12359552e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, 5.61797759e-003, - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 5.61797759e-003, 0., 0., - 1.12359552e-002, 0., 0., 5.61797759e-003, 5.61797759e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 5.61797759e-003, 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 5.61797759e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 5.61797759e-003, 5.61797759e-003, 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.12359552e-002, 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 1.12359552e-002, 5.61797759e-003, 0., - 5.61797759e-003, 0., 5.61797759e-003, 5.61797759e-003, 0., 0., 0., - 1.68539323e-002, 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 1.12359552e-002, 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 0., 0., 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 7.35294120e-003, 7.35294120e-003, 0., - 7.35294120e-003, 7.35294120e-003, 0., 7.35294120e-003, - 2.94117648e-002, 2.20588241e-002, 0., 1.47058824e-002, - 7.35294120e-003, 0., 0., 7.35294120e-003, 0., 0., 0., 0., - 1.47058824e-002, 0., 2.20588241e-002, 7.35294120e-003, 0., 0., - 1.47058824e-002, 0., 1.47058824e-002, 1.47058824e-002, 0., 0., 0., - 1.47058824e-002, 1.47058824e-002, 7.35294120e-003, 0., 0., 0., - 1.47058824e-002, 0., 0., 0., 7.35294120e-003, 0., 0., 0., 0., - 1.47058824e-002, 0., 0., 0., 0., 0., 7.35294120e-003, - 7.35294120e-003, 0., 1.47058824e-002, 0., 0., 7.35294120e-003, 0., - 0., 0., 1.47058824e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.35294120e-003, 7.35294120e-003, 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 0., 3.67647074e-002, 0., - 7.35294120e-003, 0., 2.20588241e-002, 0., 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 1.47058824e-002, 0., 0., 0., 0., - 7.35294120e-003, 0., 0., 1.47058824e-002, 0., 7.35294120e-003, - 7.35294120e-003, 0., 0., 7.35294120e-003, 0., 7.35294120e-003, 0., - 0., 0., 1.47058824e-002, 0., 0., 0., 0., 0., 7.35294120e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., - 0., 2.20588241e-002, 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., - 0., 0., 1.47058824e-002, 0., 0., 0., 0., 7.35294120e-003, 0., 0., - 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.47058824e-002, 0., 0., 0., 0., 0., 7.35294120e-003, - 7.35294120e-003, 0., 0., 7.35294120e-003, 0., 7.35294120e-003, 0., - 0., 7.35294120e-003, 0., 0., 1.47058824e-002, 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 2.94117648e-002, 0., 0., 0., 0., 7.35294120e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.35294120e-003, 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., - 0., 0., 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., - 1.47058824e-002, 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., 2.20588241e-002, 0., - 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., 0., - 0., 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, - 0., 0., 0., 0., 0., 1.47058824e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, - 0., 7.35294120e-003, 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., - 0., 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.35294120e-003, 0., 0., 0., 0., 7.35294120e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 1.47058824e-002, 2.94117648e-002, 0., 0., - 0., 1.47058824e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.35294120e-003, 0., 7.35294120e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.35294120e-003, 0., 0., - 2.01342292e-002, 2.68456377e-002, 1.34228189e-002, - 1.34228189e-002, 0., 4.69798669e-002, 0., 0., 0., 6.71140943e-003, - 0., 6.71140943e-003, 1.34228189e-002, 1.34228189e-002, 0., - 1.34228189e-002, 6.71140943e-003, 1.34228189e-002, 0., - 1.34228189e-002, 0., 0., 2.01342292e-002, 1.34228189e-002, 0., 0., - 6.71140943e-003, 0., 6.71140943e-003, 0., 1.34228189e-002, - 1.34228189e-002, 0., 0., 0., 0., 0., 0., 6.71140943e-003, - 2.01342292e-002, 0., 0., 0., 6.71140943e-003, 6.71140943e-003, - 6.71140943e-003, 6.71140943e-003, 1.34228189e-002, - 1.34228189e-002, 0., 0., 1.34228189e-002, 0., 0., 0., - 1.34228189e-002, 0., 6.71140943e-003, 0., 6.71140943e-003, 0., 0., - 0., 0., 6.71140943e-003, 6.71140943e-003, 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 0., 6.71140943e-003, 6.71140943e-003, - 6.71140943e-003, 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., 2.01342292e-002, - 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 2.01342292e-002, 0., 0., 0., 6.71140943e-003, 0., 0., 0., - 0., 4.02684584e-002, 0., 0., 0., 1.34228189e-002, 0., 0., - 6.71140943e-003, 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., - 6.71140943e-003, 6.71140943e-003, 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, 6.71140943e-003, - 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.71140943e-003, 6.71140943e-003, 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 2.01342292e-002, 0., 0., 1.34228189e-002, - 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.34228189e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, - 6.71140943e-003, 0., 0., 6.71140943e-003, 6.71140943e-003, 0., 0., - 0., 0., 0., 0., 0., 1.34228189e-002, 0., 0., 0., 6.71140943e-003, - 0., 6.71140943e-003, 0., 0., 0., 0., 0., 1.34228189e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 1.34228189e-002, 0., 6.71140943e-003, 0., - 6.71140943e-003, 6.71140943e-003, 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., - 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.34228189e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., - 0., 6.71140943e-003, 0., 0., 1.34228189e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., 6.71140943e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., - 1.80180185e-002, 0., 0., 9.00900923e-003, 9.00900923e-003, 0., 0., - 0., 9.00900923e-003, 0., 9.00900923e-003, 0., 9.00900923e-003, 0., - 9.00900923e-003, 0., 2.70270277e-002, 0., 0., 0., 0., - 9.00900923e-003, 0., 9.00900923e-003, 0., 0., 0., 9.00900923e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.70270277e-002, - 1.80180185e-002, 0., 0., 0., 9.00900923e-003, 0., 9.00900923e-003, - 0., 0., 9.00900923e-003, 9.00900923e-003, 0., 0., 0., 0., - 1.80180185e-002, 0., 0., 0., 0., 0., 0., 0., 9.00900923e-003, 0., - 9.00900923e-003, 0., 0., 9.00900923e-003, 9.00900923e-003, 0., - 9.00900923e-003, 0., 9.00900923e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.80180185e-002, 0., 0., - 0., 0., 0., 9.00900923e-003, 0., 0., 0., 9.00900923e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 2.70270277e-002, 0., 9.00900923e-003, - 9.00900923e-003, 0., 9.00900923e-003, 0., 0., 0., 0., 0., - 9.00900923e-003, 0., 0., 0., 0., 0., 3.60360369e-002, 0., 0., 0., - 9.00900923e-003, 0., 0., 0., 0., 0., 0., 0., 9.00900923e-003, 0., - 0., 0., 0., 1.80180185e-002, 0., 9.00900923e-003, 0., 0., 0., 0., - 9.00900923e-003, 0., 0., 0., 0., 9.00900923e-003, 0., - 9.00900923e-003, 0., 9.00900923e-003, 9.00900923e-003, 0., 0., 0., - 0., 1.80180185e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.00900923e-003, 0., 0., 0., 0., 0., 0., - 1.80180185e-002, 0., 0., 9.00900923e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.00900923e-003, - 0., 0., 0., 0., 0., 9.00900923e-003, 0., 0., 0., 0., 0., 0., 0., - 9.00900923e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.00900923e-003, 0., 9.00900923e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.00900923e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.00900923e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.00900923e-003, 0., 0., 0., 0., 0., 0., - 9.00900923e-003, 9.00900923e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.00900923e-003, 0., - 9.00900923e-003, 1.80180185e-002, 0., 0., 0., 9.00900923e-003, - 9.00900923e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.00900923e-003, 0., 0., 9.00900923e-003, 0., 0., 0., 0., - 0., 1.80180185e-002, 9.00900923e-003, 0., 0., 0., 0., 0., - 1.80180185e-002, 0., 0., 0., 0., 9.00900923e-003, 1.80180185e-002, - 0., 9.00900923e-003, 0., 0., 0., 0., 0., 0., 0., 9.00900923e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.00900923e-003, 0., 0., 0., 0., 0., 0., 9.00900923e-003, 0., 0., - 0., 0., 0., 1.80180185e-002, 0., 0., 0., 0., 0., 0., - 1.80180185e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.00900923e-003, 0., 0., 0., 0., 9.00900923e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 9.00900923e-003, 0., 0., 0., 0., 9.00900923e-003, 0., 0., 0., - 9.00900923e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.00900923e-003, 0., 0., 0., 0., 9.00900923e-003, 0., 0., - 9.00900923e-003, 0., 0., 9.00900923e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.80180185e-002, 0., 0., - 0., 9.00900923e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.00900923e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 9.00900923e-003, 0., 0., 9.00900923e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.68539323e-002, 2.24719103e-002, 1.12359552e-002, - 1.68539323e-002, 1.12359552e-002, 1.12359552e-002, 0., - 5.61797759e-003, 0., 0., 0., 1.12359552e-002, 0., 0., - 5.61797759e-003, 1.12359552e-002, 5.61797759e-003, - 1.12359552e-002, 5.61797759e-003, 0., 0., 5.61797759e-003, - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 0., 0., - 1.12359552e-002, 5.61797759e-003, 0., 1.12359552e-002, - 2.24719103e-002, 0., 1.12359552e-002, 5.61797759e-003, - 1.12359552e-002, 2.80898884e-002, 1.12359552e-002, - 5.61797759e-003, 0., 0., 0., 1.68539323e-002, 5.61797759e-003, - 5.61797759e-003, 5.61797759e-003, 5.61797759e-003, - 1.12359552e-002, 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 1.12359552e-002, 0., 0., 0., 1.12359552e-002, 5.61797759e-003, 0., - 0., 0., 0., 5.61797759e-003, 0., 1.12359552e-002, 0., 0., 0., - 1.68539323e-002, 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 0., 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, - 5.61797759e-003, 5.61797759e-003, 0., 1.12359552e-002, 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 5.61797759e-003, - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 2.80898884e-002, 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 1.12359552e-002, 0., 0., 5.61797759e-003, 0., 0., 5.61797759e-003, - 1.12359552e-002, 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 0., 0., 5.61797759e-003, 0., 5.61797759e-003, 0., 1.12359552e-002, - 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 5.61797759e-003, 0., - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., - 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 5.61797759e-003, 0., 5.61797759e-003, 5.61797759e-003, - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 1.12359552e-002, 5.61797759e-003, 0., 5.61797759e-003, - 5.61797759e-003, 1.12359552e-002, 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.68539323e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.61797759e-003, 0., 0., 5.61797759e-003, 0., 0., 5.61797759e-003, - 0., 0., 0., 0., 0., 1.12359552e-002, 0., 0., 5.61797759e-003, 0., - 0., 0., 0., 0., 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., - 5.61797759e-003, 0., 5.61797759e-003, 0., 0., 0., 0., 0., - 5.61797759e-003, 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 5.61797759e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 0., 0., 0., 1.12359552e-002, 0., 5.61797759e-003, 0., 0., 0., 0., - 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., - 0., 0., 1.12359552e-002, 0., 0., 5.61797759e-003, 0., 0., - 1.68539323e-002, 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.61797759e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.61797759e-003, - 5.61797759e-003, 0., 0., 0., 0., 1.12359552e-002, 0., 0., - 5.61797759e-003, 0., 0., 0., 0., 0., 5.61797759e-003, 0., - 6.41025649e-003, 1.92307699e-002, 0., 0., 1.28205130e-002, - 1.28205130e-002, 0., 6.41025649e-003, 1.28205130e-002, - 6.41025649e-003, 0., 0., 0., 6.41025649e-003, 0., 0., - 6.41025649e-003, 6.41025649e-003, 0., 1.28205130e-002, - 6.41025649e-003, 0., 0., 1.92307699e-002, 0., 0., 6.41025649e-003, - 0., 1.28205130e-002, 0., 1.28205130e-002, 6.41025649e-003, 0., - 6.41025649e-003, 1.92307699e-002, 0., 0., 0., 0., 1.28205130e-002, - 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, 6.41025649e-003, 0., - 0., 1.28205130e-002, 0., 0., 1.28205130e-002, 1.28205130e-002, 0., - 6.41025649e-003, 0., 0., 1.28205130e-002, 0., 0., 6.41025649e-003, - 0., 6.41025649e-003, 0., 6.41025649e-003, 0., 6.41025649e-003, - 1.92307699e-002, 0., 0., 6.41025649e-003, 0., 6.41025649e-003, 0., - 0., 6.41025649e-003, 0., 0., 0., 1.28205130e-002, 0., 0., 0., 0., - 0., 0., 0., 6.41025649e-003, 0., 0., 6.41025649e-003, 0., - 6.41025649e-003, 0., 0., 0., 2.56410260e-002, 0., 6.41025649e-003, - 0., 1.28205130e-002, 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, - 0., 0., 0., 1.28205130e-002, 6.41025649e-003, 6.41025649e-003, 0., - 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 6.41025649e-003, - 5.12820520e-002, 0., 0., 0., 1.28205130e-002, 6.41025649e-003, 0., - 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., - 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, - 0., 0., 6.41025649e-003, 0., 6.41025649e-003, 0., 0., - 6.41025649e-003, 0., 6.41025649e-003, 6.41025649e-003, 0., - 6.41025649e-003, 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.28205130e-002, 0., 0., 6.41025649e-003, 0., 6.41025649e-003, 0., - 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 1.28205130e-002, - 6.41025649e-003, 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.28205130e-002, 0., 0., 6.41025649e-003, - 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 1.28205130e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.28205130e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 1.28205130e-002, 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 6.41025649e-003, 6.41025649e-003, 0., - 1.92307699e-002, 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., - 6.41025649e-003, 6.41025649e-003, 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 6.41025649e-003, 0., - 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 6.41025649e-003, - 0., 0., 0., 0., 0., 6.41025649e-003, 0., 1.28205130e-002, 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., - 0., 0., 0., 0., 0., 6.41025649e-003, 0., 6.41025649e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.41025649e-003, 0., 0., 0., 6.41025649e-003, 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 6.41025649e-003, 0., 0., 0., 6.41025649e-003, - 0., 0., 5.68181835e-003, 1.13636367e-002, 0., 5.68181835e-003, - 5.68181835e-003, 5.68181835e-003, 0., 0., 1.70454551e-002, 0., 0., - 0., 5.68181835e-003, 0., 0., 5.68181835e-003, 5.68181835e-003, - 1.13636367e-002, 1.70454551e-002, 5.68181835e-003, 0., 0., - 5.68181835e-003, 5.68181835e-003, 0., 0., 1.70454551e-002, 0., - 1.13636367e-002, 0., 1.13636367e-002, 0., 0., 0., 1.13636367e-002, - 0., 0., 5.68181835e-003, 5.68181835e-003, 1.70454551e-002, 0., - 5.68181835e-003, 0., 0., 0., 0., 0., 5.68181835e-003, 0., - 5.68181835e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.68181835e-003, 0., 0., 0., 5.68181835e-003, 0., 0., - 5.68181835e-003, 0., 0., 0., 0., 0., 0., 0., 5.68181835e-003, 0., - 5.68181835e-003, 0., 0., 0., 0., 0., 0., 5.68181835e-003, 0., - 5.68181835e-003, 0., 0., 5.68181835e-003, 0., 0., 0., - 5.68181835e-003, 0., 5.68181835e-003, 5.68181835e-003, 0., - 5.68181835e-003, 5.11363670e-002, 0., 0., 0., 0., 0., - 5.68181835e-003, 0., 5.68181835e-003, 0., 0., 0., 1.70454551e-002, - 0., 5.68181835e-003, 0., 0., 0., 0., 5.68181835e-003, 0., - 5.68181835e-003, 0., 0., 0., 0., 0., 1.13636367e-002, 0., - 5.68181835e-003, 0., 1.13636367e-002, 5.68181835e-003, 0., - 1.13636367e-002, 0., 0., 5.68181835e-003, 0., 2.27272734e-002, 0., - 0., 5.68181835e-003, 0., 5.68181835e-003, 0., 1.13636367e-002, 0., - 5.68181835e-003, 0., 0., 0., 0., 5.68181835e-003, 0., 0., 0., 0., - 5.68181835e-003, 0., 5.68181835e-003, 0., 1.13636367e-002, 0., - 5.68181835e-003, 0., 1.13636367e-002, 0., 5.68181835e-003, 0., 0., - 0., 0., 5.68181835e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 1.13636367e-002, 0., 0., 0., 0., 0., 0., 0., 5.68181835e-003, 0., - 0., 5.68181835e-003, 5.68181835e-003, 5.68181835e-003, 0., 0., 0., - 0., 0., 0., 0., 5.68181835e-003, 0., 0., 0., 5.68181835e-003, 0., - 0., 5.68181835e-003, 0., 0., 0., 0., 5.68181835e-003, 0., 0., - 5.68181835e-003, 0., 0., 0., 0., 0., 5.68181835e-003, 0., 0., 0., - 0., 0., 0., 0., 5.68181835e-003, 5.68181835e-003, 0., - 5.68181835e-003, 5.68181835e-003, 0., 0., 0., 5.68181835e-003, 0., - 0., 0., 0., 0., 0., 0., 5.68181835e-003, 0., 0., 0., 0., 0., 0., - 5.68181835e-003, 0., 0., 0., 0., 0., 0., 0., 5.68181835e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.68181835e-003, 0., - 0., 5.68181835e-003, 0., 1.13636367e-002, 0., 0., 5.68181835e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.68181835e-003, 0., - 0., 5.68181835e-003, 0., 0., 0., 0., 1.13636367e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.13636367e-002, 0., 0., 0., 1.13636367e-002, 1.70454551e-002, - 5.68181835e-003, 0., 5.68181835e-003, 0., 0., 0., 5.68181835e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.68181835e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.68181835e-003, 0., 0., - 1.13636367e-002, 0., 0., 5.68181835e-003, 0., 0., 0., 0., 0., 0., - 0., 5.68181835e-003, 0., 0., 0., 1.70454551e-002, 0., 0., 0., - 1.13636367e-002, 0., 0., 0., 0., 0., 5.68181835e-003, 0., - 3.40909101e-002, 0., 0., 0., 0., 1.13636367e-002, 0., 0., 0., - 5.68181835e-003, 5.68181835e-003, 0., 0., 0., 0., 0., - 5.68181835e-003, 5.68181835e-003, 0., 0., 5.68181835e-003, 0., 0., - 0., 5.68181835e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.68181835e-003, 0., 0., 5.68181835e-003, 0., 5.68181835e-003, 0., - 0., 5.68181835e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.68181835e-003, 0., 5.68181835e-003, 5.68181835e-003, 0., - 0., 0., 1.13636367e-002, 5.68181835e-003, 0., 5.68181835e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.68181835e-003, 0., - 0., 0., 5.68181835e-003, 0., 0., 0., 0., 0., 0., 0., - 1.13636367e-002, 1.13636367e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.39520967e-002, - 1.19760484e-002, 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., - 1.19760484e-002, 1.79640725e-002, 0., 1.19760484e-002, - 5.98802418e-003, 0., 2.39520967e-002, 5.98802418e-003, 0., - 1.79640725e-002, 2.39520967e-002, 5.98802418e-003, 0., - 1.19760484e-002, 0., 1.79640725e-002, 0., 5.98802418e-003, 0., - 1.19760484e-002, 0., 0., 1.19760484e-002, 5.98802418e-003, 0., 0., - 5.98802418e-003, 2.99401209e-002, 0., 5.98802418e-003, 0., 0., 0., - 0., 4.79041934e-002, 5.98802418e-003, 0., 0., 1.19760484e-002, - 5.98802418e-003, 0., 0., 0., 1.19760484e-002, 2.99401209e-002, 0., - 0., 1.19760484e-002, 0., 0., 0., 1.19760484e-002, 0., 0., 0., 0., - 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.19760484e-002, 0., 0., 0., 0., 0., 0., - 5.98802418e-003, 1.79640725e-002, 0., 0., 1.19760484e-002, 0., 0., - 0., 0., 0., 5.98802418e-003, 0., 5.98802418e-003, 5.98802418e-003, - 0., 0., 0., 0., 5.98802418e-003, 0., 5.98802418e-003, 0., 0., 0., - 0., 0., 5.98802418e-003, 5.98802418e-003, 0., 0., 0., 0., 0., 0., - 0., 1.19760484e-002, 0., 0., 0., 4.19161692e-002, 0., 0., - 5.98802418e-003, 0., 5.98802418e-003, 1.19760484e-002, 0., - 5.98802418e-003, 0., 0., 0., 0., 1.19760484e-002, 1.19760484e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.19760484e-002, 1.19760484e-002, 0., 0., 5.98802418e-003, - 5.98802418e-003, 2.39520967e-002, 0., 1.19760484e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., - 0., 0., 0., 5.98802418e-003, 0., 0., 0., 5.98802418e-003, 0., 0., - 5.98802418e-003, 0., 0., 0., 0., 5.98802418e-003, 0., 0., - 5.98802418e-003, 0., 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., 0., - 0., 1.19760484e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.98802418e-003, 5.98802418e-003, 0., 0., - 5.98802418e-003, 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., - 5.98802418e-003, 0., 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.98802418e-003, 0., 0., 5.98802418e-003, 0., 0., 0., - 0., 1.19760484e-002, 0., 0., 0., 1.19760484e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.98802418e-003, 5.98802418e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, - 5.98802418e-003, 5.98802418e-003, 0., 5.98802418e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., - 5.98802418e-003, 0., 0., 0., 5.98802418e-003, 0., 0., 0., - 5.98802418e-003, 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.98802418e-003, 0., 5.98802418e-003, 5.98802418e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.19760484e-002, - 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.19760484e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.98802418e-003, 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., 0., - 0., 5.98802418e-003, 0., 0., 0., 2.19780225e-002, 1.09890113e-002, - 1.64835174e-002, 0., 5.49450563e-003, 4.39560451e-002, 0., 0., - 1.64835174e-002, 5.49450563e-003, 5.49450563e-003, - 1.64835174e-002, 0., 5.49450563e-003, 0., 0., 0., 1.09890113e-002, - 0., 0., 0., 1.09890113e-002, 0., 0., 5.49450563e-003, 0., - 1.09890113e-002, 0., 1.64835174e-002, 5.49450563e-003, - 5.49450563e-003, 1.09890113e-002, 0., 1.09890113e-002, - 1.09890113e-002, 5.49450563e-003, 1.09890113e-002, - 5.49450563e-003, 5.49450563e-003, 5.49450563e-003, - 5.49450563e-003, 0., 0., 0., 0., 1.64835174e-002, 1.09890113e-002, - 1.09890113e-002, 2.19780225e-002, 0., 0., 0., 0., 5.49450563e-003, - 5.49450563e-003, 1.09890113e-002, 0., 0., 5.49450563e-003, 0., 0., - 0., 5.49450563e-003, 0., 5.49450563e-003, 0., 0., 0., - 5.49450563e-003, 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.49450563e-003, 0., 5.49450563e-003, 0., - 1.09890113e-002, 0., 0., 0., 0., 5.49450563e-003, 5.49450563e-003, - 0., 5.49450563e-003, 1.09890113e-002, 0., 0., 0., 1.09890113e-002, - 5.49450563e-003, 5.49450563e-003, 0., 0., 5.49450563e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.09890113e-002, 0., 0., 5.49450563e-003, - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 1.09890113e-002, 0., - 0., 1.09890113e-002, 0., 5.49450563e-003, 0., 0., 1.09890113e-002, - 0., 0., 0., 0., 0., 0., 0., 1.09890113e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.49450563e-003, 5.49450563e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.49450563e-003, 0., 5.49450563e-003, 0., 0., - 5.49450563e-003, 0., 0., 5.49450563e-003, 0., 0., 1.09890113e-002, - 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.49450563e-003, 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.09890113e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 5.49450563e-003, 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., - 0., 0., 0., 0., 5.49450563e-003, 0., 0., 1.09890113e-002, 0., 0., - 0., 1.09890113e-002, 0., 0., 0., 1.09890113e-002, 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 5.49450563e-003, 5.49450563e-003, 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.09890113e-002, 0., 5.49450563e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 0., 5.49450563e-003, 5.49450563e-003, 5.49450563e-003, 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 1.09890113e-002, 0., - 1.64835174e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.09890113e-002, 5.49450563e-003, 0., 5.49450563e-003, 0., 0., - 5.49450563e-003, 0., 0., 1.09890113e-002, 0., 0., 0., 0., 0., 0., - 0., 5.49450563e-003, 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., - 0., 1.09890113e-002, 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 0., 0., 5.49450563e-003, 0., 0., 5.49450563e-003, 5.49450563e-003, - 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 5.49450563e-003, - 0., 0., 5.49450563e-003, 0., 0., 0., 5.49450563e-003, 0., - 5.49450563e-003, 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.64835174e-002, 0., 5.49450563e-003, 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 5.49450563e-003, 5.49450563e-003, 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., - 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.49450563e-003, 0., 0., 0., 0., 1.11111114e-002, - 5.55555569e-003, 1.11111114e-002, 1.66666675e-002, - 1.11111114e-002, 1.11111114e-002, 0., 5.55555569e-003, - 5.55555569e-003, 0., 5.55555569e-003, 0., 0., 5.55555569e-003, 0., - 0., 5.55555569e-003, 5.55555569e-003, 5.55555569e-003, - 5.55555569e-003, 0., 5.55555569e-003, 0., 0., 1.11111114e-002, - 5.55555569e-003, 1.66666675e-002, 5.55555569e-003, - 5.55555569e-003, 2.77777780e-002, 0., 0., 0., 5.55555569e-003, - 5.55555569e-003, 5.55555569e-003, 0., 0., 1.66666675e-002, 0., 0., - 0., 5.55555569e-003, 5.55555569e-003, 0., 5.55555569e-003, 0., - 1.11111114e-002, 2.22222228e-002, 1.11111114e-002, 0., - 1.11111114e-002, 0., 0., 0., 1.11111114e-002, 0., 5.55555569e-003, - 0., 0., 0., 0., 0., 2.22222228e-002, 0., 0., 0., 0., - 5.55555569e-003, 0., 1.11111114e-002, 0., 0., 0., 5.55555569e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.66666675e-002, 0., 0., - 5.55555569e-003, 5.55555569e-003, 0., 5.55555569e-003, 0., - 1.11111114e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, - 2.77777780e-002, 5.55555569e-003, 0., 0., 1.11111114e-002, 0., 0., - 5.55555569e-003, 0., 0., 0., 0., 1.66666675e-002, 0., 0., 0., 0., - 0., 0., 0., 1.11111114e-002, 0., 0., 5.55555569e-003, 0., - 5.55555569e-003, 0., 0., 5.55555569e-003, 5.55555569e-003, 0., 0., - 0., 1.11111114e-002, 1.11111114e-002, 0., 0., 0., 1.11111114e-002, - 1.11111114e-002, 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.55555569e-003, 5.55555569e-003, 0., 0., 1.11111114e-002, - 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, - 0., 5.55555569e-003, 0., 0., 1.11111114e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., - 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., - 5.55555569e-003, 0., 0., 0., 0., 5.55555569e-003, 0., - 5.55555569e-003, 2.22222228e-002, 0., 0., 5.55555569e-003, - 5.55555569e-003, 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., - 1.11111114e-002, 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., - 0., 5.55555569e-003, 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., - 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.11111114e-002, 0., 2.22222228e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, - 5.55555569e-003, 0., 0., 0., 1.11111114e-002, 0., 0., - 5.55555569e-003, 0., 0., 1.11111114e-002, 0., 0., 5.55555569e-003, - 0., 5.55555569e-003, 0., 0., 0., 5.55555569e-003, 0., 0., - 5.55555569e-003, 5.55555569e-003, 0., 5.55555569e-003, 0., 0., - 5.55555569e-003, 0., 0., 5.55555569e-003, 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 0., 0., 1.66666675e-002, 5.55555569e-003, - 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., 1.11111114e-002, - 0., 0., 0., 5.55555569e-003, 0., 0., 5.55555569e-003, 0., 0., 0., - 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., - 0., 0., 5.55555569e-003, 0., 0., 0., 5.55555569e-003, 0., 0., 0., - 0., 0., 5.55555569e-003, 0., 5.55555569e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., 5.55555569e-003, - 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.58659201e-003, 1.67597756e-002, - 5.58659201e-003, 0., 0., 0., 0., 0., 1.67597756e-002, - 5.58659201e-003, 0., 0., 1.67597756e-002, 1.67597756e-002, - 5.58659201e-003, 0., 0., 5.58659201e-003, 1.11731840e-002, - 5.58659201e-003, 5.58659201e-003, 1.11731840e-002, 0., - 1.11731840e-002, 1.11731840e-002, 0., 0., 5.58659201e-003, 0., - 1.67597756e-002, 0., 0., 0., 0., 5.58659201e-003, 5.58659201e-003, - 0., 5.58659201e-003, 0., 2.23463681e-002, 5.58659201e-003, 0., 0., - 1.11731840e-002, 5.58659201e-003, 1.11731840e-002, 0., - 2.23463681e-002, 3.35195512e-002, 1.67597756e-002, 0., 0., 0., 0., - 1.67597756e-002, 5.58659201e-003, 0., 0., 5.58659201e-003, - 5.58659201e-003, 5.58659201e-003, 0., 0., 0., 5.58659201e-003, 0., - 0., 5.58659201e-003, 5.58659201e-003, 0., 5.58659201e-003, - 5.58659201e-003, 5.58659201e-003, 0., 1.11731840e-002, 0., 0., - 5.58659201e-003, 0., 0., 0., 0., 5.58659201e-003, 5.58659201e-003, - 5.58659201e-003, 0., 0., 0., 0., 5.58659201e-003, 0., 0., 0., 0., - 5.58659201e-003, 2.23463681e-002, 0., 0., 5.58659201e-003, - 1.11731840e-002, 2.23463681e-002, 0., 5.58659201e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.58659201e-003, 5.58659201e-003, - 0., 0., 0., 0., 0., 5.58659201e-003, 0., 0., 0., 0., - 1.67597756e-002, 0., 5.58659201e-003, 5.58659201e-003, - 1.67597756e-002, 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., - 0., 1.11731840e-002, 5.58659201e-003, 0., 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.58659201e-003, 1.67597756e-002, 0., 0., 5.58659201e-003, 0., - 2.79329605e-002, 0., 0., 0., 0., 0., 0., 5.58659201e-003, 0., 0., - 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.58659201e-003, 0., 0., 5.58659201e-003, - 0., 0., 5.58659201e-003, 5.58659201e-003, 0., 0., 5.58659201e-003, - 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.11731840e-002, 0., 5.58659201e-003, - 5.58659201e-003, 0., 5.58659201e-003, 0., 0., 0., 5.58659201e-003, - 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 0., 0., 5.58659201e-003, - 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 5.58659201e-003, - 5.58659201e-003, 0., 5.58659201e-003, 0., 0., 5.58659201e-003, - 1.11731840e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.58659201e-003, 0., 0., 1.67597756e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 5.58659201e-003, 5.58659201e-003, 0., - 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.11731840e-002, 0., 1.11731840e-002, 0., 0., 0., 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 1.67597756e-002, 0., 0., 5.58659201e-003, 0., 0., 0., - 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 0., 5.58659201e-003, 0., 0., - 5.58659201e-003, 0., 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 5.58659201e-003, 1.11731840e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.58659201e-003, 0., 0., 5.58659201e-003, 0., 0., 0., - 5.58659201e-003, 0., 0., 0., 5.58659201e-003, 0., 0., 0., - 5.58659201e-003, 0., 0., 5.58659201e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.58659201e-003, 0., 0., 0., - 0., 6.13496918e-003, 0., 6.13496918e-003, 1.22699384e-002, - 6.13496918e-003, 6.13496918e-003, 0., 0., 6.13496918e-003, - 6.13496918e-003, 1.22699384e-002, 0., 1.84049085e-002, - 1.22699384e-002, 6.13496918e-003, 0., 0., 1.22699384e-002, 0., - 6.13496918e-003, 1.22699384e-002, 0., 1.22699384e-002, - 6.13496918e-003, 6.13496918e-003, 6.13496918e-003, 0., 0., - 6.13496918e-003, 6.13496918e-003, 6.13496918e-003, - 1.22699384e-002, 0., 1.22699384e-002, 6.13496918e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., - 2.45398767e-002, 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., - 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 6.13496918e-003, 6.13496918e-003, 0., 6.13496918e-003, - 6.13496918e-003, 0., 0., 6.13496918e-003, 2.45398767e-002, - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 0., 0., 0., 0., 0., 0., 1.22699384e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 6.13496918e-003, 0., 6.13496918e-003, 6.13496918e-003, - 6.13496918e-003, 1.84049085e-002, 0., 1.22699384e-002, 0., 0., - 6.13496918e-003, 0., 0., 0., 6.13496918e-003, 0., 6.13496918e-003, - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 6.13496918e-003, 0., 0., 0., 6.13496918e-003, 0., 0., - 1.22699384e-002, 6.13496918e-003, 0., 0., 0., 1.22699384e-002, - 1.84049085e-002, 1.22699384e-002, 6.13496918e-003, 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., - 1.22699384e-002, 0., 0., 0., 0., 6.13496918e-003, 0., - 6.13496918e-003, 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 1.22699384e-002, 0., 0., 0., - 1.22699384e-002, 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 6.13496918e-003, - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.22699384e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.22699384e-002, 0., 0., 0., 0., 6.13496918e-003, - 0., 0., 0., 1.22699384e-002, 6.13496918e-003, 6.13496918e-003, 0., - 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 6.13496918e-003, 0., - 0., 0., 6.13496918e-003, 6.13496918e-003, 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., - 0., 1.22699384e-002, 0., 6.13496918e-003, 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 0., 0., 0., 6.13496918e-003, 0., 0., 6.13496918e-003, 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., - 6.13496918e-003, 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 1.22699384e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.22699384e-002, 0., 0., 0., - 1.22699384e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, - 0., 0., 1.84049085e-002, 0., 6.13496918e-003, 0., 0., - 6.13496918e-003, 0., 0., 6.13496918e-003, 6.13496918e-003, 0., - 6.13496918e-003, 0., 0., 6.13496918e-003, 1.22699384e-002, 0., 0., - 0., 0., 0., 0., 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., - 0., 0., 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 0., 0., 1.22699384e-002, 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., - 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 1.19760484e-002, - 1.79640725e-002, 0., 0., 0., 2.39520967e-002, 0., 0., - 1.19760484e-002, 1.19760484e-002, 5.98802418e-003, - 5.98802418e-003, 0., 5.98802418e-003, 0., 0., 0., 1.19760484e-002, - 0., 0., 0., 0., 5.98802418e-003, 0., 5.98802418e-003, 0., - 5.98802418e-003, 5.98802418e-003, 5.98802418e-003, - 5.98802418e-003, 5.98802418e-003, 5.98802418e-003, 0., - 1.79640725e-002, 1.19760484e-002, 0., 0., 1.19760484e-002, - 1.19760484e-002, 5.98802418e-003, 0., 0., 0., 0., 5.98802418e-003, - 5.98802418e-003, 0., 1.19760484e-002, 5.98802418e-003, - 5.98802418e-003, 0., 0., 0., 0., 0., 1.19760484e-002, 0., 0., 0., - 0., 0., 0., 5.98802418e-003, 1.19760484e-002, 1.19760484e-002, 0., - 0., 0., 5.98802418e-003, 0., 0., 0., 0., 0., 0., 1.79640725e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.19760484e-002, 0., 0., 1.19760484e-002, 0., 0., 5.98802418e-003, - 0., 0., 5.98802418e-003, 0., 1.19760484e-002, 0., 0., - 1.19760484e-002, 0., 0., 5.98802418e-003, 5.98802418e-003, - 5.98802418e-003, 0., 1.19760484e-002, 0., 0., 0., 0., 0., - 5.98802418e-003, 0., 0., 5.98802418e-003, 1.19760484e-002, 0., 0., - 0., 5.98802418e-003, 4.79041934e-002, 0., 5.98802418e-003, - 5.98802418e-003, 2.39520967e-002, 0., 0., 0., 0., 0., 0., 0., - 1.19760484e-002, 0., 0., 1.19760484e-002, 0., 0., 0., 0., 0., - 1.19760484e-002, 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., - 0., 5.98802418e-003, 5.98802418e-003, 0., 0., 0., 0., - 5.98802418e-003, 1.79640725e-002, 0., 5.98802418e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.19760484e-002, 0., 0., 5.98802418e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., - 0., 0., 0., 0., 5.98802418e-003, 5.98802418e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., - 0., 1.19760484e-002, 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., - 5.98802418e-003, 0., 0., 0., 5.98802418e-003, 5.98802418e-003, - 5.98802418e-003, 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., - 0., 0., 0., 5.98802418e-003, 5.98802418e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.98802418e-003, 5.98802418e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.98802418e-003, 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., - 0., 5.98802418e-003, 0., 0., 0., 5.98802418e-003, 0., - 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., - 0., 5.98802418e-003, 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., - 0., 5.98802418e-003, 0., 0., 0., 5.98802418e-003, 5.98802418e-003, - 0., 0., 0., 5.98802418e-003, 5.98802418e-003, 0., 5.98802418e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.19760484e-002, 0., 0., 0., - 5.98802418e-003, 0., 5.98802418e-003, 5.98802418e-003, 0., - 5.98802418e-003, 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., - 0., 0., 0., 0., 0., 5.98802418e-003, 0., 5.98802418e-003, 0., 0., - 1.79640725e-002, 0., 1.19760484e-002, 0., 0., 0., 0., 0., 0., - 1.19760484e-002, 0., 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.19760484e-002, - 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 5.98802418e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.98802418e-003, 0., 0., 5.98802418e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.79640725e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.98802418e-003, 0., 0., 0., - 5.98802418e-003, 0., 5.98802418e-003, 0., 0., 0., 3.44827585e-002, - 8.62068962e-003, 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., - 8.62068962e-003, 8.62068962e-003, 1.72413792e-002, - 1.72413792e-002, 0., 8.62068962e-003, 0., 2.58620679e-002, 0., 0., - 0., 8.62068962e-003, 1.72413792e-002, 0., 0., 8.62068962e-003, 0., - 8.62068962e-003, 1.72413792e-002, 1.72413792e-002, 0., 0., 0., - 1.72413792e-002, 0., 0., 0., 8.62068962e-003, 8.62068962e-003, 0., - 0., 0., 0., 0., 0., 0., 2.58620679e-002, 1.72413792e-002, 0., 0., - 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., 8.62068962e-003, - 0., 8.62068962e-003, 0., 8.62068962e-003, 0., 0., 0., - 1.72413792e-002, 0., 8.62068962e-003, 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., - 0., 0., 0., 0., 0., 3.44827585e-002, 0., 0., 0., 0., - 1.72413792e-002, 0., 0., 0., 0., 0., 0., 8.62068962e-003, - 8.62068962e-003, 0., 0., 0., 0., 0., 1.72413792e-002, 0., - 8.62068962e-003, 8.62068962e-003, 0., 0., 0., 0., 8.62068962e-003, - 0., 0., 0., 5.17241359e-002, 0., 0., 8.62068962e-003, 0., 0., 0., - 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., - 0., 0., 2.58620679e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 1.72413792e-002, 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 1.72413792e-002, 0., 0., 0., 8.62068962e-003, 0., - 8.62068962e-003, 0., 0., 8.62068962e-003, 8.62068962e-003, - 8.62068962e-003, 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, - 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 8.62068962e-003, - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., - 8.62068962e-003, 0., 8.62068962e-003, 0., 0., 0., 8.62068962e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.72413792e-002, 0., 8.62068962e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 8.62068962e-003, 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.72413792e-002, 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, - 0., 0., 8.62068962e-003, 0., 0., 0., 0., 8.62068962e-003, - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 3.36134471e-002, 8.40336177e-003, 0., 0., 8.40336177e-003, 0., - 0., 8.40336177e-003, 0., 0., 8.40336177e-003, 0., 8.40336177e-003, - 0., 0., 0., 8.40336177e-003, 0., 8.40336177e-003, 0., 0., - 8.40336177e-003, 8.40336177e-003, 8.40336177e-003, 0., 0., - 1.68067235e-002, 0., 8.40336177e-003, 8.40336177e-003, - 1.68067235e-002, 8.40336177e-003, 0., 8.40336177e-003, - 8.40336177e-003, 8.40336177e-003, 8.40336177e-003, 0., - 8.40336177e-003, 2.52100863e-002, 0., 8.40336177e-003, 0., 0., 0., - 8.40336177e-003, 0., 0., 1.68067235e-002, 0., 0., 8.40336177e-003, - 0., 0., 8.40336177e-003, 2.52100863e-002, 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 1.68067235e-002, 0., 8.40336177e-003, 0., 0., 0., - 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 1.68067235e-002, - 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 8.40336177e-003, - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 2.52100863e-002, 0., 1.68067235e-002, - 8.40336177e-003, 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., - 2.52100863e-002, 1.68067235e-002, 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., - 0., 0., 8.40336177e-003, 0., 8.40336177e-003, 0., 8.40336177e-003, - 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.68067235e-002, 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.68067235e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., - 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., - 8.40336177e-003, 8.40336177e-003, 0., 0., 8.40336177e-003, 0., 0., - 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 8.40336177e-003, 0., 8.40336177e-003, 0., 0., - 0., 0., 8.40336177e-003, 0., 8.40336177e-003, 0., 0., 0., 0., 0., - 0., 8.40336177e-003, 0., 0., 0., 0., 0., 8.40336177e-003, 0., 0., - 0., 0., 0., 8.40336177e-003, 0., 0., 2.52100863e-002, 0., 0., 0., - 0., 0., 8.40336177e-003, 0., 8.40336177e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., - 8.40336177e-003, 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 8.40336177e-003, 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 1.68067235e-002, 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.40336177e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 8.40336177e-003, 0., 0., 0., 0., 0., 0., 8.40336177e-003, 0., - 7.93650839e-003, 0., 7.93650839e-003, 0., 0., 1.58730168e-002, 0., - 2.38095261e-002, 1.58730168e-002, 0., 7.93650839e-003, - 7.93650839e-003, 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., - 0., 1.58730168e-002, 7.93650839e-003, 0., 0., 3.17460336e-002, 0., - 0., 1.58730168e-002, 7.93650839e-003, 7.93650839e-003, 0., 0., - 7.93650839e-003, 0., 0., 0., 7.93650839e-003, 1.58730168e-002, 0., - 0., 0., 0., 0., 1.58730168e-002, 7.93650839e-003, 0., - 3.96825410e-002, 7.93650839e-003, 0., 7.93650839e-003, 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 7.93650839e-003, 0., 0., - 7.93650839e-003, 0., 7.93650839e-003, 0., 0., 0., 7.93650839e-003, - 0., 0., 0., 7.93650839e-003, 0., 7.93650839e-003, 7.93650839e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.58730168e-002, 7.93650839e-003, - 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 1.58730168e-002, 0., - 0., 0., 0., 0., 0., 0., 1.58730168e-002, 0., 0., 1.58730168e-002, - 0., 0., 0., 0., 0., 3.17460336e-002, 0., 0., 7.93650839e-003, - 2.38095261e-002, 0., 0., 0., 0., 3.17460336e-002, 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 7.93650839e-003, 7.93650839e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., 0., - 0., 1.58730168e-002, 7.93650839e-003, 0., 0., 0., 7.93650839e-003, - 7.93650839e-003, 0., 3.17460336e-002, 0., 0., 7.93650839e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 0., 1.58730168e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 3.96825410e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, - 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 7.93650839e-003, 0., - 1.58730168e-002, 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., 0., 0., - 1.58730168e-002, 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, - 0., 7.93650839e-003, 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., - 0., 0., 7.93650839e-003, 0., 0., 0., 0., 7.93650839e-003, 0., 0., - 0., 7.93650839e-003, 0., 0., 0., 0., 7.93650839e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., 0., - 0., 7.93650839e-003, 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.93650839e-003, 0., 0., 0., 0., 0., 7.93650839e-003, 0., - 0., 0., 7.93650839e-003, 0., 0., 1.58730168e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., 0., 0., 0., - 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 7.93650839e-003, 0., - 0., 7.93650839e-003, 0., 0., 0., 0., 0., 0., 0., 2.09424086e-002, - 1.04712043e-002, 0., 0., 0., 5.23560215e-003, 0., 0., - 5.23560215e-003, 1.57068074e-002, 5.23560215e-003, 0., - 1.57068074e-002, 1.04712043e-002, 0., 0., 5.23560215e-003, - 5.23560215e-003, 1.04712043e-002, 0., 0., 5.23560215e-003, - 5.23560215e-003, 0., 5.23560215e-003, 5.23560215e-003, - 5.23560215e-003, 1.04712043e-002, 5.23560215e-003, - 5.23560215e-003, 0., 1.04712043e-002, 0., 0., 5.23560215e-003, 0., - 0., 5.23560215e-003, 5.23560215e-003, 1.04712043e-002, 0., 0., 0., - 0., 0., 2.09424086e-002, 5.23560215e-003, 1.04712043e-002, - 2.09424086e-002, 1.57068074e-002, 0., 1.04712043e-002, 0., 0., - 5.23560215e-003, 5.23560215e-003, 0., 5.23560215e-003, - 1.57068074e-002, 1.04712043e-002, 5.23560215e-003, 0., - 5.23560215e-003, 5.23560215e-003, 5.23560215e-003, 0., 0., 0., - 5.23560215e-003, 5.23560215e-003, 5.23560215e-003, 0., - 2.09424086e-002, 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., - 5.23560215e-003, 1.04712043e-002, 1.04712043e-002, - 5.23560215e-003, 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.23560215e-003, 0., 0., 1.04712043e-002, - 0., 0., 5.23560215e-003, 0., 5.23560215e-003, 1.04712043e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.57068074e-002, 1.04712043e-002, - 0., 0., 0., 0., 5.23560215e-003, 0., 2.09424086e-002, 0., 0., - 1.04712043e-002, 0., 0., 5.23560215e-003, 0., 5.23560215e-003, - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 5.23560215e-003, 0., 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 5.23560215e-003, - 5.23560215e-003, 1.04712043e-002, 5.23560215e-003, - 5.23560215e-003, 0., 1.04712043e-002, 0., 0., 0., 0., 0., 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.23560215e-003, 0., 1.04712043e-002, 0., 5.23560215e-003, - 1.57068074e-002, 0., 5.23560215e-003, 0., 0., 0., 5.23560215e-003, - 0., 0., 5.23560215e-003, 0., 0., 5.23560215e-003, 0., 0., - 1.04712043e-002, 0., 5.23560215e-003, 5.23560215e-003, 0., 0., 0., - 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.23560215e-003, 0., 1.04712043e-002, - 5.23560215e-003, 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.04712043e-002, 0., 0., 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.23560215e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.23560215e-003, 0., 0., 5.23560215e-003, 5.23560215e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.04712043e-002, 0., 0., 0., 0., 1.04712043e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 5.23560215e-003, 0., 0., - 0., 0., 0., 0., 1.04712043e-002, 0., 0., 0., 0., 0., - 2.09424086e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 5.23560215e-003, - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.23560215e-003, 5.23560215e-003, 0., 5.23560215e-003, 0., 0., 0., - 0., 0., 5.23560215e-003, 5.23560215e-003, 2.09424086e-002, - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.23560215e-003, - 0., 0., 0., 0., 0., 0., 1.04712043e-002, 0., 0., 1.04712043e-002, - 0., 0., 0., 0., 1.04712043e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.23560215e-003, 0., 0., 5.23560215e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.23560215e-003, 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 5.23560215e-003, 5.23560215e-003, - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., - 0., 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.04712043e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.23560215e-003, 0., 0., 5.23560215e-003, 0., 0., 0., 0., 0., - 0., 0., 6.02409616e-003, 0., 0., 6.02409616e-003, 6.02409616e-003, - 0., 0., 1.80722885e-002, 1.20481923e-002, 0., 0., 6.02409616e-003, - 6.02409616e-003, 6.02409616e-003, 0., 6.02409616e-003, - 6.02409616e-003, 6.02409616e-003, 6.02409616e-003, 0., 0., - 6.02409616e-003, 1.80722885e-002, 0., 6.02409616e-003, 0., - 6.02409616e-003, 1.20481923e-002, 0., 3.01204808e-002, 0., 0., 0., - 6.02409616e-003, 0., 0., 6.02409616e-003, 0., 0., 0., - 1.20481923e-002, 6.02409616e-003, 0., 0., 0., 0., 6.02409616e-003, - 0., 6.02409616e-003, 1.80722885e-002, 0., 0., 0., 6.02409616e-003, - 6.02409616e-003, 1.20481923e-002, 0., 6.02409616e-003, - 6.02409616e-003, 0., 0., 0., 6.02409616e-003, 0., 6.02409616e-003, - 0., 0., 0., 6.02409616e-003, 6.02409616e-003, 1.20481923e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 6.02409616e-003, 0., 0., 0., 0., - 6.02409616e-003, 0., 0., 0., 0., 6.02409616e-003, 0., - 6.02409616e-003, 0., 0., 6.02409616e-003, 0., 6.02409616e-003, 0., - 6.02409616e-003, 6.02409616e-003, 0., 1.20481923e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.80722885e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.02409616e-003, 0., 0., 0., 0., 1.20481923e-002, 0., - 0., 0., 2.40963846e-002, 1.80722885e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.20481923e-002, 1.20481923e-002, 6.02409616e-003, - 6.02409616e-003, 1.20481923e-002, 6.02409616e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.80722885e-002, 6.02409616e-003, - 0., 0., 0., 0., 6.02409616e-003, 0., 3.01204808e-002, 0., - 1.20481923e-002, 0., 0., 0., 0., 0., 0., 6.02409616e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.20481923e-002, 0., 0., - 0., 0., 1.80722885e-002, 0., 0., 0., 0., 0., 1.20481923e-002, - 6.02409616e-003, 0., 0., 0., 0., 0., 6.02409616e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.02409616e-003, 0., 0., - 6.02409616e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 3.01204808e-002, 6.02409616e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.02409616e-003, 0., 0., 0., 0., - 6.02409616e-003, 6.02409616e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.02409616e-003, 0., 0., 1.20481923e-002, 0., 0., 0., 0., 0., 0., - 0., 6.02409616e-003, 0., 0., 0., 0., 0., 0., 0., 6.02409616e-003, - 0., 0., 0., 6.02409616e-003, 0., 0., 0., 0., 1.20481923e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.02409616e-003, 1.20481923e-002, 1.20481923e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.02409616e-003, 0., 0., - 6.02409616e-003, 0., 0., 1.20481923e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.02409616e-003, 0., 0., - 6.02409616e-003, 0., 0., 0., 0., 6.02409616e-003, 6.02409616e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 6.02409616e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.80722885e-002, 0., 0., 0., 0., - 6.02409616e-003, 6.02409616e-003, 0., 0., 0., 0., 0., - 6.02409616e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.02409616e-003, 0., 0., 0., 0., 6.02409616e-003, 0., 0., - 6.02409616e-003, 1.20481923e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.02409616e-003, 6.02409616e-003, 0., 6.02409616e-003, - 6.02409616e-003, 0., 0., 0., 6.02409616e-003, 0., 0., 0., - 6.02409616e-003, 0., 0., 6.02409616e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.02409616e-003, 0., 0., 0., 0., 0., 0., - 6.02409616e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.02409616e-003, 0., 0., 0., - 6.02409616e-003, 6.02409616e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.02409616e-003, 0., 6.02409616e-003, 0., 0., 0., 0., 0., 0., - 6.02409616e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.02409616e-003, - 0., 0., 0., 0., 6.02409616e-003, 0., 0., 0., 6.02409616e-003, - 2.27272734e-002, 0., 2.27272734e-002, 7.57575780e-003, 0., - 1.51515156e-002, 0., 0., 1.51515156e-002, 7.57575780e-003, 0., 0., - 2.27272734e-002, 7.57575780e-003, 0., 0., 7.57575780e-003, - 1.51515156e-002, 7.57575780e-003, 0., 0., 7.57575780e-003, 0., - 7.57575780e-003, 0., 7.57575780e-003, 7.57575780e-003, - 7.57575780e-003, 0., 7.57575780e-003, 0., 0., 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 7.57575780e-003, 0., 0., 0., - 1.51515156e-002, 0., 0., 0., 7.57575780e-003, 1.51515156e-002, 0., - 0., 7.57575780e-003, 0., 0., 0., 1.51515156e-002, 0., - 7.57575780e-003, 0., 0., 0., 0., 2.27272734e-002, 0., 0., - 7.57575780e-003, 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., - 7.57575780e-003, 7.57575780e-003, 0., 0., 0., 7.57575780e-003, 0., - 0., 7.57575780e-003, 7.57575780e-003, 0., 0., 0., 0., 0., - 7.57575780e-003, 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.57575780e-003, 7.57575780e-003, 0., 0., 0., 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.57575780e-003, 0., 1.51515156e-002, 2.27272734e-002, 0., 0., - 7.57575780e-003, 0., 7.57575780e-003, 7.57575780e-003, 0., - 2.27272734e-002, 3.78787890e-002, 0., 0., 7.57575780e-003, 0., - 7.57575780e-003, 7.57575780e-003, 7.57575780e-003, 0., 0., - 7.57575780e-003, 7.57575780e-003, 7.57575780e-003, 0., - 7.57575780e-003, 7.57575780e-003, 0., 0., 0., 7.57575780e-003, - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 2.27272734e-002, 0., 1.51515156e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 2.27272734e-002, 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., - 1.51515156e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.27272734e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.57575780e-003, 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 7.57575780e-003, - 0., 0., 2.27272734e-002, 0., 7.57575780e-003, 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.57575780e-003, 0., 0., 7.57575780e-003, 0., - 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.51515156e-002, 0., 0., 0., 0., 1.51515156e-002, 0., 0., 0., 0., - 0., 0., 2.27272734e-002, 7.57575780e-003, 0., 0., 0., 0., 0., 0., - 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, 0., 7.57575780e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.51515156e-002, 0., 0., 0., 0., 0., 0., 0., 0., 7.57575780e-003, - 7.57575780e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 7.57575780e-003, 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 9.43396240e-003, 0., 9.43396240e-003, 0., - 9.43396240e-003, 1.88679248e-002, 0., 0., 9.43396240e-003, - 9.43396240e-003, 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., - 1.88679248e-002, 0., 9.43396240e-003, 9.43396240e-003, - 1.88679248e-002, 0., 9.43396240e-003, 0., 1.88679248e-002, - 9.43396240e-003, 0., 0., 9.43396240e-003, 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 9.43396240e-003, 0., 1.88679248e-002, - 9.43396240e-003, 1.88679248e-002, 1.88679248e-002, 0., 0., 0., 0., - 0., 9.43396240e-003, 1.88679248e-002, 0., 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 9.43396240e-003, 0., 0., 9.43396240e-003, 0., 0., - 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.88679248e-002, - 1.88679248e-002, 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.88679248e-002, 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 2.83018872e-002, 0., 0., 0., 3.77358496e-002, 0., 0., 0., 0., - 1.88679248e-002, 0., 0., 9.43396240e-003, 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., - 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 9.43396240e-003, 0., 9.43396240e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 9.43396240e-003, 0., - 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 9.43396240e-003, - 0., 1.88679248e-002, 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 9.43396240e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., - 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., - 0., 9.43396240e-003, 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, - 0., 0., 0., 0., 0., 9.43396240e-003, 9.43396240e-003, 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., - 9.43396240e-003, 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 1.88679248e-002, 0., 0., 0., 1.88679248e-002, 0., 0., 0., 0., 0., - 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 9.43396240e-003, - 9.43396240e-003, 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 1.72413792e-002, 8.62068962e-003, 0., 0., 8.62068962e-003, 0., 0., - 0., 8.62068962e-003, 0., 0., 0., 0., 0., 1.72413792e-002, - 8.62068962e-003, 0., 0., 1.72413792e-002, 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 8.62068962e-003, 8.62068962e-003, - 8.62068962e-003, 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., - 8.62068962e-003, 0., 8.62068962e-003, 0., 1.72413792e-002, - 8.62068962e-003, 0., 0., 0., 2.58620679e-002, 4.31034490e-002, 0., - 0., 0., 0., 0., 8.62068962e-003, 8.62068962e-003, 0., 0., 0., 0., - 0., 0., 0., 2.58620679e-002, 1.72413792e-002, 0., 0., 0., - 8.62068962e-003, 8.62068962e-003, 0., 0., 8.62068962e-003, 0., 0., - 1.72413792e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 1.72413792e-002, 8.62068962e-003, 0., 0., 0., 0., - 0., 0., 8.62068962e-003, 0., 0., 1.72413792e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., - 4.31034490e-002, 0., 0., 1.72413792e-002, 2.58620679e-002, - 8.62068962e-003, 0., 0., 0., 2.58620679e-002, 8.62068962e-003, 0., - 8.62068962e-003, 0., 0., 0., 0., 1.72413792e-002, 8.62068962e-003, - 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.72413792e-002, 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., - 1.72413792e-002, 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.58620679e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 8.62068962e-003, 8.62068962e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.72413792e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 8.62068962e-003, 0., 0., 0., 0., 0., - 8.62068962e-003, 8.62068962e-003, 0., 8.62068962e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 1.72413792e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.62068962e-003, 0., 0., 0., 0., 8.62068962e-003, 0., 0., - 0., 0., 0., 0., 0., 8.62068962e-003, 0., 8.62068962e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, - 8.62068962e-003, 8.62068962e-003, 0., 0., 0., 0., 8.62068962e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, - 0., 0., 0., 8.06451589e-003, 8.06451589e-003, 8.06451589e-003, 0., - 0., 0., 0., 0., 0., 1.61290318e-002, 0., 8.06451589e-003, 0., 0., - 1.61290318e-002, 0., 0., 0., 8.06451589e-003, 0., 0., - 8.06451589e-003, 0., 0., 0., 3.22580636e-002, 0., 1.61290318e-002, - 0., 0., 8.06451589e-003, 8.06451589e-003, 0., 8.06451589e-003, 0., - 0., 0., 8.06451589e-003, 1.61290318e-002, 0., 0., 0., 0., 0., - 2.41935477e-002, 0., 0., 1.61290318e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 8.06451589e-003, 0., 8.06451589e-003, 0., 0., 0., - 1.61290318e-002, 8.06451589e-003, 1.61290318e-002, 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, - 8.06451589e-003, 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., - 0., 0., 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., 0., 8.06451589e-003, - 0., 0., 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.64516112e-002, 0., 8.06451589e-003, 0., 8.06451589e-003, - 8.06451589e-003, 0., 0., 0., 3.22580636e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 8.06451589e-003, 8.06451589e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., 8.06451589e-003, - 8.06451589e-003, 0., 0., 0., 8.06451589e-003, 2.41935477e-002, 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.41935477e-002, 0., - 0., 0., 0., 0., 0., 0., 1.61290318e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., - 0., 0., 2.41935477e-002, 0., 0., 8.06451589e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., 0., 0., - 1.61290318e-002, 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.61290318e-002, 0., 0., - 8.06451589e-003, 0., 0., 8.06451589e-003, 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 8.06451589e-003, 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.06451589e-003, 0., 8.06451589e-003, 0., 0., - 8.06451589e-003, 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 8.06451589e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.61290318e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.06451589e-003, 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 1.61290318e-002, 0., 0., 8.06451589e-003, 8.06451589e-003, 0., 0., - 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, - 1.61290318e-002, 8.06451589e-003, 0., 8.06451589e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.06451589e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.06451589e-003, 0., 0., 8.06451589e-003, 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 8.06451589e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.06451589e-003, 8.06451589e-003, 0., 0., 0., - 8.06451589e-003, 0., 0., 0., 0., 8.06451589e-003, 8.06451589e-003, - 0., 6.71140943e-003, 1.34228189e-002, 6.71140943e-003, 0., 0., 0., - 0., 0., 0., 6.71140943e-003, 2.68456377e-002, 0., 0., 0., 0., 0., - 0., 6.71140943e-003, 6.71140943e-003, 6.71140943e-003, 0., - 1.34228189e-002, 1.34228189e-002, 1.34228189e-002, 0., 0., 0., 0., - 1.34228189e-002, 2.01342292e-002, 0., 6.71140943e-003, 0., - 2.01342292e-002, 0., 0., 0., 2.01342292e-002, 6.71140943e-003, - 6.71140943e-003, 6.71140943e-003, 0., 0., 6.71140943e-003, 0., 0., - 0., 6.71140943e-003, 6.71140943e-003, 0., 0., 0., 0., 0., 0., - 2.01342292e-002, 0., 0., 0., 6.71140943e-003, 0., 0., - 2.68456377e-002, 1.34228189e-002, 0., 0., 0., 0., 6.71140943e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, - 0., 0., 0., 6.71140943e-003, 6.71140943e-003, 6.71140943e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.34228189e-002, 0., 0., - 0., 6.71140943e-003, 0., 6.71140943e-003, 0., 6.71140943e-003, - 6.71140943e-003, 0., 0., 0., 0., 1.34228189e-002, 0., 0., 0., - 1.34228189e-002, 2.01342292e-002, 0., 6.71140943e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.34228189e-002, 6.71140943e-003, 0., - 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.34228189e-002, 0., 0., 0., 0., 1.34228189e-002, 1.34228189e-002, - 0., 6.71140943e-003, 0., 1.34228189e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 6.71140943e-003, 0., 0., 0., 0., - 6.71140943e-003, 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, 6.71140943e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.34228189e-002, 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 2.01342292e-002, 0., 0., 0., 0., 0., - 6.71140943e-003, 6.71140943e-003, 0., 0., 6.71140943e-003, - 6.71140943e-003, 0., 0., 6.71140943e-003, 6.71140943e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.34228189e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.71140943e-003, 0., 0., 0., 6.71140943e-003, - 6.71140943e-003, 1.34228189e-002, 0., 0., 0., 6.71140943e-003, - 6.71140943e-003, 0., 0., 0., 0., 1.34228189e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., - 6.71140943e-003, 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.34228189e-002, 1.34228189e-002, 0., 0., - 0., 0., 0., 1.34228189e-002, 0., 0., 6.71140943e-003, 0., 0., 0., - 0., 0., 6.71140943e-003, 1.34228189e-002, 0., 6.71140943e-003, - 1.34228189e-002, 0., 0., 0., 0., 1.34228189e-002, 1.34228189e-002, - 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., - 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.34228189e-002, 0., 0., - 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., - 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., - 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 2.01342292e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.71140943e-003, 0., 0., 0., 0., 0., 0., 0., - 6.71140943e-003, 0., 0., 0., 0., 0., 0., 6.71140943e-003, 0., 0., - 0., 0., 6.71140943e-003, 0., 0., 0., 1.03626940e-002, - 5.18134702e-003, 0., 0., 2.07253881e-002, 0., 0., 0., - 1.03626940e-002, 5.18134702e-003, 1.03626940e-002, - 1.03626940e-002, 0., 1.03626940e-002, 0., 0., 5.18134702e-003, 0., - 0., 0., 1.03626940e-002, 2.59067342e-002, 1.03626940e-002, - 5.18134702e-003, 5.18134702e-003, 5.18134702e-003, - 5.18134702e-003, 1.55440411e-002, 5.18134702e-003, 0., - 1.55440411e-002, 0., 5.18134702e-003, 1.03626940e-002, - 5.18134702e-003, 0., 0., 5.18134702e-003, 0., 0., 0., 0., - 1.03626940e-002, 0., 1.55440411e-002, 0., 1.03626940e-002, - 2.59067342e-002, 5.18134702e-003, 0., 5.18134702e-003, - 5.18134702e-003, 0., 0., 1.03626940e-002, 0., 5.18134702e-003, - 5.18134702e-003, 5.18134702e-003, 0., 0., 1.03626940e-002, - 5.18134702e-003, 0., 5.18134702e-003, 0., 5.18134702e-003, 0., 0., - 0., 0., 0., 1.55440411e-002, 5.18134702e-003, 1.03626940e-002, 0., - 0., 0., 5.18134702e-003, 0., 0., 0., 0., 5.18134702e-003, 0., 0., - 0., 0., 0., 5.18134702e-003, 0., 0., 1.55440411e-002, - 5.18134702e-003, 1.55440411e-002, 0., 0., 5.18134702e-003, - 1.03626940e-002, 1.03626940e-002, 0., 5.18134702e-003, 0., 0., - 5.18134702e-003, 0., 0., 0., 0., 0., 2.07253881e-002, - 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, - 5.18134702e-003, 0., 0., 0., 0., 2.07253881e-002, 0., 0., - 5.18134702e-003, 5.69948182e-002, 5.18134702e-003, 0., - 5.18134702e-003, 0., 5.18134702e-003, 0., 0., 0., 0., 0., - 5.18134702e-003, 0., 5.18134702e-003, 5.18134702e-003, 0., 0., - 5.18134702e-003, 0., 1.03626940e-002, 0., 0., 5.18134702e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.18134702e-003, 0., 1.03626940e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, 0., 0., - 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 0., 0., 0., 5.18134702e-003, 1.03626940e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.07253881e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.18134702e-003, 0., 0., 0., 0., 5.18134702e-003, 0., 0., - 0., 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.03626940e-002, 0., 0., 1.03626940e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, 0., 0., 0., - 5.18134702e-003, 0., 0., 0., 0., 2.07253881e-002, 0., 0., 0., 0., - 1.03626940e-002, 0., 0., 0., 0., 0., 0., 5.18134702e-003, 0., 0., - 0., 1.03626940e-002, 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.03626940e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.18134702e-003, 5.18134702e-003, 0., 0., 0., - 0., 0., 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 0., 0., 0., 0., 5.18134702e-003, 0., - 5.18134702e-003, 0., 0., 5.18134702e-003, 0., 0., 0., - 5.18134702e-003, 0., 0., 5.18134702e-003, 0., 0., 1.55440411e-002, - 5.18134702e-003, 0., 0., 0., 5.18134702e-003, 0., 0., 0., 0., 0., - 5.18134702e-003, 5.18134702e-003, 0., 0., 0., 0., 5.18134702e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.03626940e-002, 0., 0., - 0., 1.03626940e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 0., 5.18134702e-003, 0., 5.18134702e-003, - 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.18134702e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 5.18134702e-003, 0., 5.18134702e-003, 0., 0., 0., - 0., 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 0., 0., 0., 5.18134702e-003, 0., 0., 0., 0., 0., - 0., 1.91082805e-002, 3.18471342e-002, 1.27388537e-002, - 6.36942685e-003, 6.36942685e-003, 6.36942685e-003, 0., - 1.27388537e-002, 6.36942685e-003, 0., 6.36942685e-003, 0., - 6.36942685e-003, 6.36942685e-003, 6.36942685e-003, 0., 0., - 6.36942685e-003, 0., 0., 0., 6.36942685e-003, 6.36942685e-003, 0., - 6.36942685e-003, 0., 6.36942685e-003, 0., 1.27388537e-002, - 6.36942685e-003, 0., 6.36942685e-003, 6.36942685e-003, - 6.36942685e-003, 0., 0., 0., 6.36942685e-003, 0., 0., - 6.36942685e-003, 0., 0., 0., 0., 6.36942685e-003, 6.36942685e-003, - 6.36942685e-003, 1.27388537e-002, 1.27388537e-002, 0., - 1.27388537e-002, 0., 0., 0., 6.36942685e-003, 0., 0., 0., - 1.27388537e-002, 0., 0., 1.27388537e-002, 0., 6.36942685e-003, - 6.36942685e-003, 0., 0., 1.27388537e-002, 1.27388537e-002, 0., - 6.36942685e-003, 0., 0., 1.27388537e-002, 6.36942685e-003, 0., - 6.36942685e-003, 0., 0., 0., 0., 6.36942685e-003, 6.36942685e-003, - 1.27388537e-002, 0., 0., 0., 0., 6.36942685e-003, 6.36942685e-003, - 0., 6.36942685e-003, 0., 0., 6.36942685e-003, 0., 0., 0., - 1.27388537e-002, 0., 0., 0., 0., 0., 0., 0., 0., 1.91082805e-002, - 1.27388537e-002, 0., 0., 0., 0., 0., 0., 0., 1.27388537e-002, - 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 4.45859879e-002, 0., - 0., 0., 3.18471342e-002, 0., 0., 0., 0., 6.36942685e-003, - 6.36942685e-003, 0., 1.91082805e-002, 0., 6.36942685e-003, 0., 0., - 0., 0., 6.36942685e-003, 0., 0., 0., 6.36942685e-003, - 6.36942685e-003, 0., 6.36942685e-003, 0., 1.27388537e-002, - 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 6.36942685e-003, - 6.36942685e-003, 0., 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.36942685e-003, 0., 6.36942685e-003, 0., 0., 6.36942685e-003, 0., - 0., 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., - 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.91082805e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 2.54777074e-002, 0., 0., 0., 0., 0., 6.36942685e-003, 0., - 0., 0., 0., 0., 6.36942685e-003, 0., 0., 6.36942685e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.36942685e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., 6.36942685e-003, 0., - 0., 6.36942685e-003, 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 1.91082805e-002, - 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., 6.36942685e-003, 0., - 0., 0., 0., 6.36942685e-003, 0., 0., 6.36942685e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 6.36942685e-003, 0., - 0., 0., 6.36942685e-003, 0., 0., 0., 0., 6.36942685e-003, 0., 0., - 6.36942685e-003, 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., 6.36942685e-003, 0., - 1.27388537e-002, 1.91082805e-002, 0., 6.36942685e-003, 0., 0., 0., - 1.27388537e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.36942685e-003, 0., 0., 0., 0., 0., 0., 0., 6.36942685e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.36942685e-003, 0., 0., 0., - 0., 0., 6.36942685e-003, 0., 6.36942685e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.85185187e-002, - 1.23456791e-002, 0., 1.23456791e-002, 0., 1.23456791e-002, 0., - 6.17283955e-003, 1.23456791e-002, 0., 1.23456791e-002, - 6.17283955e-003, 6.17283955e-003, 1.23456791e-002, 0., 0., - 6.17283955e-003, 6.17283955e-003, 6.17283955e-003, 0., 0., - 6.17283955e-003, 1.85185187e-002, 6.17283955e-003, 0., - 6.17283955e-003, 0., 0., 1.23456791e-002, 0., 0., 6.17283955e-003, - 0., 6.17283955e-003, 6.17283955e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.17283955e-003, 0., 1.23456791e-002, 6.17283955e-003, - 6.17283955e-003, 0., 6.17283955e-003, 1.85185187e-002, 0., 0., - 6.17283955e-003, 3.08641978e-002, 0., 0., 6.17283955e-003, 0., - 1.23456791e-002, 0., 1.23456791e-002, 0., 0., 6.17283955e-003, 0., - 0., 0., 0., 0., 0., 0., 6.17283955e-003, 0., 0., 0., - 6.17283955e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.17283955e-003, 0., 1.23456791e-002, 0., 0., 0., - 1.23456791e-002, 6.17283955e-003, 0., 0., 0., 0., 0., 0., - 6.17283955e-003, 0., 0., 0., 1.23456791e-002, 0., 0., 0., 0., 0., - 0., 0., 6.17283955e-003, 0., 0., 0., 0., 6.17283955e-003, 0., 0., - 0., 0., 6.17283955e-003, 4.32098769e-002, 1.85185187e-002, 0., - 2.46913582e-002, 0., 0., 0., 0., 6.17283955e-003, 0., 0., 0., 0., - 0., 6.17283955e-003, 6.17283955e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 1.85185187e-002, 0., 6.17283955e-003, 6.17283955e-003, 0., - 1.23456791e-002, 6.17283955e-003, 0., 0., 0., 0., 0., - 6.17283955e-003, 0., 0., 0., 0., 0., 0., 6.17283955e-003, 0., 0., - 0., 0., 0., 0., 0., 6.17283955e-003, 6.17283955e-003, 0., 0., 0., - 0., 0., 0., 6.17283955e-003, 0., 1.23456791e-002, 6.17283955e-003, - 0., 0., 0., 0., 1.23456791e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 6.17283955e-003, 0., 0., 0., 0., 6.17283955e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.17283955e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.85185187e-002, 0., 3.08641978e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.85185187e-002, 0., 0., - 0., 0., 0., 1.23456791e-002, 0., 0., 0., 0., 0., 0., 0., - 6.17283955e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.17283955e-003, 0., 1.85185187e-002, 0., 0., - 6.17283955e-003, 0., 0., 0., 0., 0., 6.17283955e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.85185187e-002, 0., 0., - 6.17283955e-003, 0., 6.17283955e-003, 6.17283955e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.23456791e-002, 0., - 6.17283955e-003, 0., 6.17283955e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.17283955e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.17283955e-003, - 0., 0., 0., 0., 1.23456791e-002, 0., 0., 0., 0., 0., 0., 0., - 6.17283955e-003, 6.17283955e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.23456791e-002, - 6.17283955e-003, 0., 0., 0., 0., 0., 6.17283955e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.17283955e-003, 0., 0., 6.17283955e-003, 0., 0., 0., 0., - 6.17283955e-003, 0., 0., 0., 0., 0., 0., 0., 6.17283955e-003, - 6.17283955e-003, 0., 0., 0., 0., 6.17283955e-003, 0., 0., 0., - 6.17283955e-003, 0., 0., 0., 0., 0., 0., 6.17283955e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.17283955e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.17283955e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.23456791e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.17283955e-003, 0., 0., 0., 0., 0., - 6.17283955e-003, 0., 0., 6.17283955e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.17283955e-003, 6.17283955e-003, 0., 0., 0., - 2.74725277e-002, 5.49450563e-003, 5.49450563e-003, 0., - 2.74725277e-002, 0., 0., 1.64835174e-002, 0., 0., 0., 0., - 5.49450563e-003, 0., 5.49450563e-003, 0., 1.09890113e-002, - 5.49450563e-003, 5.49450563e-003, 0., 1.64835174e-002, - 1.09890113e-002, 5.49450563e-003, 5.49450563e-003, 0., - 5.49450563e-003, 0., 1.64835174e-002, 5.49450563e-003, - 5.49450563e-003, 0., 0., 0., 1.64835174e-002, 0., 0., - 5.49450563e-003, 5.49450563e-003, 0., 0., 0., 0., 5.49450563e-003, - 0., 0., 0., 5.49450563e-003, 5.49450563e-003, 0., 0., - 1.64835174e-002, 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 5.49450563e-003, 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 5.49450563e-003, 0., 0., 0., 5.49450563e-003, - 0., 5.49450563e-003, 4.94505502e-002, 1.09890113e-002, - 5.49450563e-003, 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 1.09890113e-002, - 5.49450563e-003, 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 2.19780225e-002, 0., 0., 5.49450563e-003, 1.09890113e-002, 0., 0., - 0., 0., 0., 0., 0., 5.49450563e-003, 0., 5.49450563e-003, 0., 0., - 0., 0., 5.49450563e-003, 1.09890113e-002, 0., 0., 5.49450563e-003, - 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 1.64835174e-002, - 0., 0., 5.49450563e-003, 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 5.49450563e-003, 0., - 0., 0., 0., 0., 0., 0., 5.49450563e-003, 5.49450563e-003, 0., - 5.49450563e-003, 0., 0., 0., 0., 1.09890113e-002, 0., 0., 0., 0., - 0., 5.49450563e-003, 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., - 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 5.49450563e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 2.74725277e-002, 5.49450563e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 5.49450563e-003, 0., 0., - 5.49450563e-003, 5.49450563e-003, 0., 5.49450563e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., 1.09890113e-002, - 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, 5.49450563e-003, 0., - 5.49450563e-003, 0., 5.49450563e-003, 5.49450563e-003, 0., 0., - 5.49450563e-003, 0., 0., 0., 1.09890113e-002, 5.49450563e-003, 0., - 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 1.09890113e-002, 0., 0., 1.09890113e-002, - 0., 1.09890113e-002, 0., 1.09890113e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., - 3.29670347e-002, 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.49450563e-003, 0., 0., 0., 0., 0., 5.49450563e-003, - 5.49450563e-003, 0., 0., 0., 5.49450563e-003, 0., 5.49450563e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., - 5.49450563e-003, 0., 0., 5.49450563e-003, 0., 0., 0., - 5.49450563e-003, 0., 5.49450563e-003, 5.49450563e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 5.49450563e-003, 5.49450563e-003, 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.49450563e-003, 0., 0., 0., 5.49450563e-003, 0., 0., 0., - 0., 5.49450563e-003, 5.49450563e-003, 0., 0., 5.49450563e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., - 5.49450563e-003, 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 5.49450563e-003, 0., 0., 0., 0., - 5.49450563e-003, 0., 5.49450563e-003, 1.09890113e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.09890113e-002, 5.49450563e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., - 9.09090880e-003, 9.09090880e-003, 0., 0., 0., 0., 9.09090880e-003, - 0., 0., 0., 0., 2.72727273e-002, 9.09090880e-003, 0., 0., - 2.72727273e-002, 0., 1.81818176e-002, 9.09090880e-003, 0., - 1.81818176e-002, 0., 0., 0., 1.81818176e-002, 0., 0., - 1.81818176e-002, 0., 0., 0., 9.09090880e-003, 0., 0., 0., - 9.09090880e-003, 1.81818176e-002, 9.09090880e-003, 0., 0., 0., - 9.09090880e-003, 0., 9.09090880e-003, 9.09090880e-003, - 1.81818176e-002, 9.09090880e-003, 0., 0., 9.09090880e-003, 0., 0., - 0., 1.81818176e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., - 9.09090880e-003, 9.09090880e-003, 9.09090880e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 9.09090880e-003, 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 9.09090880e-003, 0., 0., 0., - 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 3.63636352e-002, 0., 2.72727273e-002, 9.09090880e-003, 0., 0., 0., - 0., 9.09090880e-003, 0., 0., 0., 5.45454547e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 0., 1.81818176e-002, 0., 0., 0., - 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, 0., - 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.81818176e-002, 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., 1.81818176e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 9.09090880e-003, 0., 9.09090880e-003, 0., 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., - 2.72727273e-002, 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.09090880e-003, 0., 0., 1.81818176e-002, - 0., 0., 0., 0., 0., 1.81818176e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., - 1.81818176e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 9.09090880e-003, 0., 1.81818176e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, - 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.09090880e-003, 0., 0., 1.81818176e-002, 0., 0., - 0., 0., 9.09090880e-003, 0., 0., 0., 0., 9.09090880e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.09090880e-003, 0., 9.09090880e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 9.17431153e-003, 9.17431153e-003, 0., 0., - 0., 0., 0., 9.17431153e-003, 0., 9.17431153e-003, 9.17431153e-003, - 9.17431153e-003, 1.83486231e-002, 1.83486231e-002, 0., 0., - 9.17431153e-003, 0., 0., 0., 0., 9.17431153e-003, 9.17431153e-003, - 0., 9.17431153e-003, 3.66972461e-002, 0., 9.17431153e-003, - 9.17431153e-003, 9.17431153e-003, 9.17431153e-003, - 9.17431153e-003, 0., 0., 0., 0., 0., 9.17431153e-003, - 2.75229346e-002, 0., 0., 0., 0., 0., 0., 0., 9.17431153e-003, 0., - 0., 0., 9.17431153e-003, 0., 0., 0., 1.83486231e-002, 0., 0., 0., - 0., 0., 0., 1.83486231e-002, 0., 2.75229346e-002, 0., 0., 0., 0., - 0., 9.17431153e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 9.17431153e-003, 0., 0., 0., 9.17431153e-003, 0., 0., 0., 0., 0., - 0., 9.17431153e-003, 0., 0., 0., 0., 2.75229346e-002, - 9.17431153e-003, 0., 0., 0., 0., 9.17431153e-003, 0., 0., - 9.17431153e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.17431153e-003, 0., 0., 1.83486231e-002, 1.83486231e-002, 0., 0., - 0., 0., 9.17431153e-003, 0., 0., 0., 9.17431153e-003, - 9.17431153e-003, 0., 0., 9.17431153e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 9.17431153e-003, 1.83486231e-002, 0., 0., 0., 0., 0., - 9.17431153e-003, 0., 0., 0., 0., 9.17431153e-003, 0., 0., 0., 0., - 9.17431153e-003, 0., 9.17431153e-003, 0., 0., 9.17431153e-003, 0., - 1.83486231e-002, 0., 9.17431153e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.17431153e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.17431153e-003, 9.17431153e-003, 0., 0., 0., 0., 0., - 1.83486231e-002, 0., 0., 1.83486231e-002, 9.17431153e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.17431153e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.17431153e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.17431153e-003, 0., 0., 0., 0., 0., - 9.17431153e-003, 0., 0., 0., 1.83486231e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 1.83486231e-002, 9.17431153e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.17431153e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 1.83486231e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.17431153e-003, - 0., 0., 0., 0., 0., 0., 9.17431153e-003, 9.17431153e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.17431153e-003, 0., 0., 0., - 0., 0., 0., 9.17431153e-003, 9.17431153e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.17431153e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.83486231e-002, 0., 0., - 9.17431153e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 9.17431153e-003, 0., 0., 0., 0., 0., 0., 0., 9.17431153e-003, - 0., 0., 0., 0., 0., 9.17431153e-003, 0., 9.17431153e-003, 0., 0., - 9.17431153e-003, 0., 0., 1.83486231e-002, 0., 0., 9.17431153e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.17431153e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.17431153e-003, 0., 0., 0., 0., 0., 0., 0., 0., 9.17431153e-003, - 0., 0., 0., 9.17431153e-003, 9.17431153e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.81250000e-003, 0., 0., 2.34375000e-002, 0., 0., - 7.81250000e-003, 7.81250000e-003, 7.81250000e-003, 0., 0., - 7.81250000e-003, 1.56250000e-002, 0., 0., 7.81250000e-003, 0., - 7.81250000e-003, 7.81250000e-003, 0., 2.34375000e-002, 0., 0., 0., - 2.34375000e-002, 0., 2.34375000e-002, 1.56250000e-002, - 1.56250000e-002, 0., 0., 0., 1.56250000e-002, 7.81250000e-003, 0., - 0., 3.12500000e-002, 7.81250000e-003, 0., 0., 0., 2.34375000e-002, - 0., 0., 0., 7.81250000e-003, 0., 0., 0., 7.81250000e-003, 0., 0., - 0., 3.90625000e-002, 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, - 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.56250000e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.56250000e-002, 7.81250000e-003, - 0., 0., 0., 0., 0., 0., 0., 1.56250000e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 1.56250000e-002, 0., 0., 0., 1.56250000e-002, - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 1.56250000e-002, 0., - 0., 0., 5.46875000e-002, 0., 0., 0., 0., 7.81250000e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.81250000e-003, 7.81250000e-003, 0., 0., - 7.81250000e-003, 0., 7.81250000e-003, 0., 2.34375000e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.81250000e-003, 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., - 1.56250000e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.81250000e-003, 7.81250000e-003, 0., 0., 0., - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.56250000e-002, 0., 0., 0., 0., 1.56250000e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.56250000e-002, 7.81250000e-003, 0., 0., - 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.56250000e-002, 0., 0., 0., 0., 0., 7.81250000e-003, 0., - 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., - 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 0., 0., 0., - 3.12500000e-002, 0., 0., 0., 1.56250000e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 7.81250000e-003, 0., 1.56250000e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.81250000e-003, 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.81250000e-003, 0., 0., 1.56250000e-002, 0., 0., 0., - 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.81250000e-003, 0., 7.81250000e-003, 0., 0., 0., 0., - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.81250000e-003, 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., - 6.75675692e-003, 1.35135138e-002, 6.75675692e-003, 0., - 6.75675692e-003, 1.35135138e-002, 0., 0., 1.35135138e-002, 0., 0., - 0., 0., 2.70270277e-002, 0., 6.75675692e-003, 6.75675692e-003, - 2.02702712e-002, 0., 1.35135138e-002, 0., 6.75675692e-003, - 6.75675692e-003, 0., 0., 0., 2.02702712e-002, 0., 6.75675692e-003, - 3.37837860e-002, 0., 0., 0., 0., 6.75675692e-003, 0., 0., 0., - 2.02702712e-002, 6.75675692e-003, 0., 0., 0., 0., 0., 0., - 1.35135138e-002, 0., 1.35135138e-002, 0., 6.75675692e-003, 0., - 1.35135138e-002, 0., 0., 1.35135138e-002, 0., 0., 1.35135138e-002, - 0., 0., 0., 6.75675692e-003, 0., 6.75675692e-003, 6.75675692e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.75675692e-003, 0., - 0., 0., 6.75675692e-003, 6.75675692e-003, 0., 0., 6.75675692e-003, - 0., 0., 0., 0., 0., 0., 0., 6.75675692e-003, 0., 2.02702712e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 6.75675692e-003, 0., 0., 0., 0., - 0., 0., 1.35135138e-002, 1.35135138e-002, 0., 0., 0., - 6.75675692e-003, 6.75675692e-003, 6.75675692e-003, 0., 0., - 6.75675692e-003, 0., 6.75675692e-003, 0., 0., 0., 0., 0., 0., - 4.05405425e-002, 0., 0., 0., 0., 6.75675692e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 1.35135138e-002, 6.75675692e-003, 0., 0., 0., - 6.75675692e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.75675692e-003, 0., 0., 0., 0., - 6.75675692e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.35135138e-002, 0., 0., - 6.75675692e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.75675692e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.75675692e-003, 0., 0., 0., 6.75675692e-003, 0., 0., 0., - 6.75675692e-003, 0., 0., 0., 0., 2.02702712e-002, 0., 0., 0., 0., - 0., 6.75675692e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 1.35135138e-002, 0., 0., 6.75675692e-003, 0., 6.75675692e-003, - 6.75675692e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.35135138e-002, 0., 0., 6.75675692e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.75675692e-003, 0., 6.75675692e-003, 0., - 6.75675692e-003, 2.70270277e-002, 0., 6.75675692e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.75675692e-003, - 6.75675692e-003, 0., 0., 6.75675692e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.75675692e-003, 0., 0., 0., - 2.02702712e-002, 0., 0., 0., 0., 0., 0., 6.75675692e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.75675692e-003, 0., 0., 0., 0., - 0., 6.75675692e-003, 0., 0., 0., 0., 0., 6.75675692e-003, 0., 0., - 0., 6.75675692e-003, 0., 2.02702712e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.75675692e-003, 0., 0., 0., 0., 0., 6.75675692e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.75675692e-003, 0., 0., - 0., 0., 0., 0., 6.75675692e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.75675692e-003, 0., 0., 0., 6.75675692e-003, 0., 0., 0., 0., 0., - 6.75675692e-003, 0., 0., 0., 0., 0., 6.75675692e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.75675692e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.70270277e-002, 0., - 6.75675692e-003, 0., 6.75675692e-003, 0., 0., 0., 0., 0., - 6.75675692e-003, 0., 0., 0., 6.75675692e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.75675692e-003, 0., 0., 0., 0., 0., - 6.75675692e-003, 0., 0., 0., 0., 6.75675692e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.75675692e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.75675692e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.35135138e-002, 0., 0., 0., 0., 0., 0., 0., 6.75675692e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.66666675e-002, - 8.33333377e-003, 0., 0., 8.33333377e-003, 0., 0., 0., - 3.33333351e-002, 1.66666675e-002, 0., 0., 8.33333377e-003, 0., - 8.33333377e-003, 0., 0., 8.33333377e-003, 0., 8.33333377e-003, - 8.33333377e-003, 0., 2.50000022e-002, 0., 0., 0., 3.33333351e-002, - 0., 1.66666675e-002, 1.66666675e-002, 0., 2.50000022e-002, 0., - 8.33333377e-003, 8.33333377e-003, 0., 0., 0., 1.66666675e-002, - 8.33333377e-003, 0., 0., 0., 0., 8.33333377e-003, 0., 0., - 1.66666675e-002, 1.66666675e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., - 0., 1.66666675e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.33333377e-003, 0., 0., 0., 8.33333377e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 1.66666675e-002, 0., 0., 0., 2.50000022e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., - 1.66666675e-002, 0., 0., 0., 8.33333377e-003, 8.33333377e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 3.33333351e-002, 0., 0., 0., - 8.33333377e-003, 0., 8.33333377e-003, 8.33333377e-003, 0., - 1.66666675e-002, 8.33333377e-003, 0., 1.66666675e-002, 0., 0., - 8.33333377e-003, 0., 0., 0., 8.33333377e-003, 0., 0., 0., 0., - 1.66666675e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.33333377e-003, 2.50000022e-002, 0., 0., 0., 1.66666675e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., - 8.33333377e-003, 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., 0., - 0., 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., - 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., 0., - 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.33333377e-003, 0., 0., 0., 8.33333377e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, - 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., 8.33333377e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 0., 1.66666675e-002, 1.66666675e-002, - 1.66666675e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.66666675e-002, 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, - 8.33333377e-003, 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., 0., - 1.66666675e-002, 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.66666675e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, - 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., 0., - 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 8.33333377e-003, 8.33333377e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 2.45398767e-002, 1.22699384e-002, 0., - 6.13496918e-003, 3.06748450e-002, 6.13496918e-003, 0., 0., - 1.22699384e-002, 1.22699384e-002, 6.13496918e-003, - 6.13496918e-003, 1.22699384e-002, 0., 0., 6.13496918e-003, 0., - 2.45398767e-002, 6.13496918e-003, 0., 1.22699384e-002, 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., - 0., 6.13496918e-003, 6.13496918e-003, 6.13496918e-003, 0., 0., - 1.84049085e-002, 1.22699384e-002, 0., 0., 0., 0., 0., - 1.22699384e-002, 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., - 0., 6.13496918e-003, 6.13496918e-003, 1.22699384e-002, 0., - 1.22699384e-002, 0., 6.13496918e-003, 0., 0., 1.22699384e-002, - 1.84049085e-002, 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 6.13496918e-003, - 1.22699384e-002, 0., 0., 1.22699384e-002, 0., 6.13496918e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 6.13496918e-003, - 0., 0., 0., 1.84049085e-002, 0., 0., 0., 0., 1.84049085e-002, 0., - 0., 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 1.22699384e-002, - 6.13496918e-003, 0., 0., 0., 0., 6.13496918e-003, 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., - 1.22699384e-002, 1.22699384e-002, 0., 6.13496918e-003, 0., 0., - 1.84049085e-002, 0., 0., 0., 0., 0., 0., 1.84049085e-002, 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 1.84049085e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.13496918e-003, 6.13496918e-003, 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., - 0., 0., 0., 0., 0., 1.22699384e-002, 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., - 6.13496918e-003, 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., - 0., 0., 0., 1.22699384e-002, 0., 0., 0., 0., 6.13496918e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.22699384e-002, 6.13496918e-003, 1.84049085e-002, 0., 0., 0., 0., - 1.22699384e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.22699384e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.84049085e-002, 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 1.22699384e-002, 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 2.45398767e-002, 6.13496918e-003, 6.13496918e-003, 0., 0., - 6.13496918e-003, 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 0., 0., 1.84049085e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 2.45398767e-002, - 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., - 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, - 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 6.13496918e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.22699384e-002, 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.18343197e-002, 5.91715984e-003, - 5.91715984e-003, 0., 0., 2.95857992e-002, 0., 0., 0., 0., 0., 0., - 1.18343197e-002, 1.77514795e-002, 5.91715984e-003, 0., 0., - 1.18343197e-002, 0., 0., 0., 0., 5.91715984e-003, 1.18343197e-002, - 0., 0., 1.18343197e-002, 5.91715984e-003, 5.91715984e-003, 0., 0., - 1.77514795e-002, 0., 1.18343197e-002, 0., 0., 0., 0., - 1.18343197e-002, 1.77514795e-002, 5.91715984e-003, 0., 0., 0., 0., - 1.18343197e-002, 0., 1.18343197e-002, 1.77514795e-002, - 5.91715984e-003, 0., 5.91715984e-003, 0., 0., 5.91715984e-003, 0., - 0., 1.18343197e-002, 0., 0., 0., 0., 0., 5.91715984e-003, - 5.91715984e-003, 1.18343197e-002, 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 1.18343197e-002, 0., 0., 1.18343197e-002, - 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 5.91715984e-003, 0., 0., 1.18343197e-002, 0., 0., - 0., 0., 0., 0., 1.18343197e-002, 0., 0., 0., 0., 1.18343197e-002, - 5.91715984e-003, 1.77514795e-002, 5.91715984e-003, 0., - 5.91715984e-003, 0., 0., 0., 0., 1.18343197e-002, 5.91715984e-003, - 0., 5.91715984e-003, 3.55029590e-002, 0., 0., 1.18343197e-002, 0., - 1.18343197e-002, 0., 0., 1.18343197e-002, 0., 0., 0., 0., 0., 0., - 1.77514795e-002, 0., 0., 5.91715984e-003, 5.91715984e-003, - 5.91715984e-003, 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 2.36686394e-002, 0., - 1.18343197e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., - 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 5.91715984e-003, - 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.18343197e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.91715984e-003, 0., 5.91715984e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, - 5.91715984e-003, 0., 1.18343197e-002, 0., 0., 0., 5.91715984e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., - 5.91715984e-003, 1.18343197e-002, 0., 0., 0., 0., 1.18343197e-002, - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., - 5.91715984e-003, 5.91715984e-003, 0., 0., 5.91715984e-003, 0., 0., - 0., 5.91715984e-003, 1.77514795e-002, 0., 0., 0., 5.91715984e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.18343197e-002, 0., 0., 0., 0., - 5.91715984e-003, 5.91715984e-003, 0., 0., 0., 0., 0., 0., - 1.18343197e-002, 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., - 1.77514795e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, - 0., 0., 0., 0., 0., 1.77514795e-002, 0., 0., 0., 0., 0., - 1.18343197e-002, 0., 1.18343197e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, - 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.91715984e-003, 0., 5.91715984e-003, 5.91715984e-003, 0., 0., - 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 5.91715984e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.92307699e-002, - 6.41025649e-003, 1.28205130e-002, 1.28205130e-002, 0., - 6.41025649e-003, 0., 0., 6.41025649e-003, 3.20512839e-002, 0., 0., - 1.28205130e-002, 6.41025649e-003, 6.41025649e-003, 0., - 6.41025649e-003, 0., 0., 0., 0., 6.41025649e-003, 1.28205130e-002, - 0., 0., 6.41025649e-003, 0., 0., 1.92307699e-002, 2.56410260e-002, - 6.41025649e-003, 6.41025649e-003, 6.41025649e-003, - 6.41025649e-003, 0., 0., 0., 0., 1.92307699e-002, 2.56410260e-002, - 6.41025649e-003, 6.41025649e-003, 0., 6.41025649e-003, 0., - 6.41025649e-003, 0., 6.41025649e-003, 3.20512839e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., - 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 6.41025649e-003, 0., 0., 1.92307699e-002, - 0., 0., 0., 6.41025649e-003, 0., 0., 6.41025649e-003, 0., - 6.41025649e-003, 0., 6.41025649e-003, 6.41025649e-003, 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, - 1.28205130e-002, 6.41025649e-003, 6.41025649e-003, - 1.28205130e-002, 0., 0., 0., 0., 1.92307699e-002, 0., 0., 0., - 1.92307699e-002, 6.41025649e-003, 0., 6.41025649e-003, 0., 0., - 6.41025649e-003, 0., 6.41025649e-003, 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 6.41025649e-003, 0., 6.41025649e-003, - 0., 1.92307699e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 1.92307699e-002, 0., 0., - 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 6.41025649e-003, 0., - 0., 0., 0., 0., 6.41025649e-003, 0., 0., 6.41025649e-003, 0., 0., - 0., 0., 1.28205130e-002, 6.41025649e-003, 0., 0., 0., 0., 0., 0., - 0., 1.28205130e-002, 6.41025649e-003, 6.41025649e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.28205130e-002, 0., 0., 0., 0., - 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.41025649e-003, 6.41025649e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.41025649e-003, 0., 6.41025649e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.28205130e-002, 1.92307699e-002, 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 3.20512839e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.41025649e-003, 0., 6.41025649e-003, 0., 6.41025649e-003, - 0., 0., 6.41025649e-003, 0., 0., 6.41025649e-003, 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 6.41025649e-003, 0., 0., - 1.28205130e-002, 0., 0., 0., 0., 0., 0., 0., 1.92307699e-002, - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.28205130e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.41025649e-003, 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., - 0., 0., 1.92307699e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.41025649e-003, 0., 0., 0., 0., 6.41025649e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.41025649e-003, 0., - 0., 0., 0., 0., 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.41025649e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.01010101e-002, 1.01010101e-002, 5.05050505e-003, 0., 0., - 1.01010101e-002, 1.01010101e-002, 0., 1.51515156e-002, - 1.01010101e-002, 1.01010101e-002, 5.05050505e-003, - 5.05050505e-003, 1.01010101e-002, 3.03030312e-002, - 5.05050505e-003, 0., 5.05050505e-003, 5.05050505e-003, 0., - 1.01010101e-002, 5.05050505e-003, 1.01010101e-002, 0., 0., - 5.05050505e-003, 0., 1.01010101e-002, 5.05050505e-003, 0., - 1.01010101e-002, 0., 0., 5.05050505e-003, 0., 1.51515156e-002, - 5.05050505e-003, 0., 0., 0., 0., 0., 1.51515156e-002, 0., 0., - 3.03030312e-002, 5.05050505e-003, 0., 5.05050505e-003, 0., - 1.01010101e-002, 1.01010101e-002, 5.05050505e-003, 0., - 5.05050505e-003, 5.05050505e-003, 5.05050505e-003, 0., 0., - 5.05050505e-003, 5.05050505e-003, 1.01010101e-002, 0., 0., 0., - 5.05050505e-003, 1.01010101e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.05050505e-003, 1.01010101e-002, 5.05050505e-003, 0., 0., - 1.01010101e-002, 5.05050505e-003, 5.05050505e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., 0., - 1.01010101e-002, 0., 5.05050505e-003, 0., 1.01010101e-002, - 5.05050505e-003, 0., 0., 5.05050505e-003, 0., 4.54545468e-002, 0., - 5.05050505e-003, 0., 4.04040404e-002, 0., 0., 5.05050505e-003, 0., - 0., 0., 0., 2.52525248e-002, 0., 0., 0., 0., 5.05050505e-003, - 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.01010101e-002, 0., - 1.01010101e-002, 5.05050505e-003, 0., 1.01010101e-002, 0., 0., 0., - 1.01010101e-002, 1.01010101e-002, 0., 0., 0., 0., 0., 0., - 1.01010101e-002, 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., - 5.05050505e-003, 0., 0., 0., 0., 1.01010101e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.01010101e-002, - 0., 0., 5.05050505e-003, 5.05050505e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., - 2.52525248e-002, 0., 0., 5.05050505e-003, 1.01010101e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, - 5.05050505e-003, 5.05050505e-003, 0., 0., 0., 0., 0., 0., - 5.05050505e-003, 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 2.02020202e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.05050505e-003, 0., 0., 1.01010101e-002, 0., 0., 5.05050505e-003, - 0., 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.05050505e-003, 0., 0., 0., 0., 0., 5.05050505e-003, 0., - 1.51515156e-002, 0., 0., 0., 0., 0., 0., 5.05050505e-003, - 5.05050505e-003, 5.05050505e-003, 0., 0., 0., 0., 5.05050505e-003, - 5.05050505e-003, 0., 1.01010101e-002, 0., 0., 1.01010101e-002, 0., - 0., 0., 1.01010101e-002, 1.01010101e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 5.05050505e-003, 0., 0., 5.05050505e-003, 0., - 5.05050505e-003, 0., 0., 1.01010101e-002, 0., 0., 0., 0., 0., 0., - 5.05050505e-003, 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 5.05050505e-003, 0., 0., 0., 0., 1.01010101e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.02020202e-002, 0., 0., - 0., 0., 5.05050505e-003, 0., 0., 5.05050505e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., - 0., 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 5.49450563e-003, 5.49450563e-003, - 1.09890113e-002, 0., 0., 0., 5.49450563e-003, 1.09890113e-002, - 5.49450563e-003, 0., 5.49450563e-003, 0., 1.09890113e-002, - 5.49450563e-003, 5.49450563e-003, 5.49450563e-003, - 2.74725277e-002, 0., 5.49450563e-003, 0., 0., 1.09890113e-002, 0., - 1.09890113e-002, 5.49450563e-003, 5.49450563e-003, 0., - 1.64835174e-002, 0., 5.49450563e-003, 1.09890113e-002, 0., 0., 0., - 0., 0., 0., 5.49450563e-003, 1.09890113e-002, 0., 0., - 1.64835174e-002, 0., 0., 5.49450563e-003, 5.49450563e-003, - 1.64835174e-002, 3.29670347e-002, 0., 0., 5.49450563e-003, 0., 0., - 0., 0., 0., 5.49450563e-003, 5.49450563e-003, 0., 0., 0., - 1.09890113e-002, 5.49450563e-003, 1.64835174e-002, - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.09890113e-002, 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, - 5.49450563e-003, 0., 5.49450563e-003, 5.49450563e-003, - 5.49450563e-003, 0., 0., 1.09890113e-002, 0., 0., 0., 0., - 5.49450563e-003, 5.49450563e-003, 0., 1.09890113e-002, 0., 0., 0., - 0., 0., 0., 5.49450563e-003, 5.49450563e-003, 0., 5.49450563e-003, - 1.09890113e-002, 0., 0., 0., 2.19780225e-002, 5.49450563e-003, 0., - 0., 2.74725277e-002, 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.09890113e-002, 0., 0., 5.49450563e-003, 0., 0., 0., - 1.09890113e-002, 5.49450563e-003, 5.49450563e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.09890113e-002, 5.49450563e-003, 0., - 5.49450563e-003, 0., 2.19780225e-002, 0., 0., 0., 1.09890113e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.49450563e-003, 0., 5.49450563e-003, 0., 5.49450563e-003, - 5.49450563e-003, 0., 1.09890113e-002, 0., 0., 0., 5.49450563e-003, - 0., 0., 0., 0., 0., 0., 0., 1.09890113e-002, 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.09890113e-002, 0., 0., 0., 0., 0., 5.49450563e-003, 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.49450563e-003, 5.49450563e-003, 5.49450563e-003, - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.09890113e-002, 0., 0., 1.09890113e-002, 0., 0., 0., 0., - 5.49450563e-003, 0., 5.49450563e-003, 5.49450563e-003, 0., 0., 0., - 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.49450563e-003, 1.09890113e-002, 5.49450563e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 3.29670347e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.09890113e-002, - 5.49450563e-003, 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 5.49450563e-003, 0., 1.64835174e-002, 0., - 0., 0., 0., 1.09890113e-002, 0., 0., 0., 5.49450563e-003, 0., 0., - 0., 0., 0., 0., 5.49450563e-003, 0., 0., 0., 2.74725277e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.49450563e-003, 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.09890113e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.49450563e-003, 0., 0., 1.09890113e-002, 0., 0., - 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 5.49450563e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.49450563e-003, 0., 0., 0., 0., 5.49450563e-003, 0., 0., - 1.09890113e-002, 0., 0., 0., 0., 5.49450563e-003, 0., 0., - 5.20833349e-003, 5.20833349e-003, 0., 0., 5.20833349e-003, 0., 0., - 0., 0., 1.04166670e-002, 0., 5.20833349e-003, 1.04166670e-002, 0., - 5.20833349e-003, 0., 5.20833349e-003, 3.12500000e-002, 0., 0., 0., - 5.20833349e-003, 5.20833349e-003, 1.04166670e-002, - 1.04166670e-002, 5.20833349e-003, 5.20833349e-003, - 5.20833349e-003, 1.04166670e-002, 2.08333340e-002, - 1.04166670e-002, 1.04166670e-002, 0., 0., 5.20833349e-003, 0., 0., - 0., 0., 2.60416679e-002, 0., 0., 0., 5.20833349e-003, - 5.20833349e-003, 1.56250000e-002, 0., 1.56250000e-002, - 1.56250000e-002, 5.20833349e-003, 5.20833349e-003, - 5.20833349e-003, 0., 0., 0., 5.20833349e-003, 0., 0., - 5.20833349e-003, 0., 0., 0., 1.56250000e-002, 0., 0., - 1.04166670e-002, 0., 5.20833349e-003, 5.20833349e-003, 0., 0., 0., - 0., 0., 0., 1.04166670e-002, 0., 0., 0., 5.20833349e-003, 0., 0., - 0., 0., 5.20833349e-003, 5.20833349e-003, 0., 0., 0., 0., 0., 0., - 5.20833349e-003, 0., 0., 2.08333340e-002, 0., 0., 0., - 5.20833349e-003, 5.20833349e-003, 5.20833349e-003, - 5.20833349e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.20833349e-003, 0., 0., 0., 0., 0., 0., 5.20833349e-003, - 5.20833349e-003, 0., 5.20833349e-003, 0., 0., 1.56250000e-002, 0., - 5.20833349e-003, 5.20833349e-003, 1.56250000e-002, - 5.20833349e-003, 0., 0., 0., 5.20833349e-003, 0., 0., - 5.20833349e-003, 0., 0., 0., 0., 5.20833349e-003, 0., - 5.20833349e-003, 5.20833349e-003, 0., 5.20833349e-003, 0., - 5.20833349e-003, 0., 0., 0., 5.20833349e-003, 0., 0., - 5.20833349e-003, 0., 0., 0., 0., 0., 0., 5.20833349e-003, - 4.16666679e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.20833349e-003, 0., 0., 0., - 0., 1.56250000e-002, 0., 0., 0., 0., 1.04166670e-002, 0., - 5.20833349e-003, 0., 0., 5.20833349e-003, 0., 0., 0., 0., 0., - 5.20833349e-003, 0., 0., 0., 0., 0., 0., 5.20833349e-003, 0., 0., - 0., 0., 0., 0., 0., 5.20833349e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.20833349e-003, 0., 0., 0., 0., 0., 5.20833349e-003, - 0., 0., 0., 0., 0., 0., 0., 5.20833349e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.20833349e-003, 0., 0., 0., 0., - 5.20833349e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.20833349e-003, 0., 0., 0., 5.20833349e-003, - 0., 1.04166670e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 5.20833349e-003, 0., 0., 0., 0., 3.64583358e-002, 5.20833349e-003, - 0., 0., 0., 1.04166670e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.04166670e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.56250000e-002, 0., 5.20833349e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.20833349e-003, 0., 5.20833349e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.04166670e-002, 0., 5.20833349e-003, - 0., 0., 5.20833349e-003, 0., 0., 0., 5.20833349e-003, 0., 0., 0., - 0., 5.20833349e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.20833349e-003, 0., 0., 0., 5.20833349e-003, 0., 0., 0., - 0., 5.20833349e-003, 5.20833349e-003, 0., 5.20833349e-003, 0., 0., - 0., 5.20833349e-003, 0., 0., 1.04166670e-002, 0., 0., 0., 0., 0., - 0., 0., 5.20833349e-003, 0., 0., 0., 5.20833349e-003, 0., 0., 0., - 5.20833349e-003, 0., 1.04166670e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.20833349e-003, - 1.04166670e-002, 5.20833349e-003, 1.04166670e-002, 0., 0., - 5.20833349e-003, 0., 0., 0., 2.08333340e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.20833349e-003, - 0., 0., 5.20833349e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.20833349e-003, 0., 0., 0., 1.04166670e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.20833349e-003, 0., 0., 5.20833349e-003, 0., 5.20833349e-003, - 5.20833349e-003, 0., 0., 0., 0., 0., 5.20833349e-003, - 1.04166670e-002, 0., 0., 0., 0., 0., 0., 5.20833349e-003, 0., 0., - 0., 0., 0., 5.20833349e-003, 0., 1.08108111e-002, 5.40540554e-003, - 1.62162166e-002, 0., 0., 0., 0., 0., 1.08108111e-002, - 5.40540554e-003, 0., 0., 5.40540554e-003, 5.40540554e-003, 0., 0., - 5.40540554e-003, 5.40540554e-003, 5.40540554e-003, 0., - 1.08108111e-002, 1.08108111e-002, 1.08108111e-002, - 5.40540554e-003, 0., 0., 5.40540554e-003, 5.40540554e-003, - 5.40540554e-003, 0., 5.40540554e-003, 1.62162166e-002, 0., 0., - 1.08108111e-002, 0., 0., 0., 1.08108111e-002, 5.40540554e-003, - 5.40540554e-003, 0., 5.40540554e-003, 0., 0., 5.40540554e-003, 0., - 1.62162166e-002, 1.62162166e-002, 0., 0., 0., 0., 0., - 5.40540554e-003, 1.62162166e-002, 5.40540554e-003, 0., 0., 0., 0., - 0., 1.08108111e-002, 5.40540554e-003, 0., 1.08108111e-002, 0., - 5.40540554e-003, 5.40540554e-003, 0., 0., 0., 0., 0., - 5.40540554e-003, 1.62162166e-002, 5.40540554e-003, 0., 0., 0., 0., - 0., 0., 0., 1.08108111e-002, 5.40540554e-003, 0., 0., 0., 0., 0., - 0., 1.08108111e-002, 0., 5.40540554e-003, 0., 0., 0., 0., - 2.16216221e-002, 5.40540554e-003, 0., 0., 5.40540554e-003, 0., 0., - 0., 0., 0., 0., 0., 5.40540554e-003, 5.40540554e-003, - 1.62162166e-002, 5.40540554e-003, 0., 0., 5.40540554e-003, - 1.08108111e-002, 0., 1.62162166e-002, 1.62162166e-002, 0., 0., 0., - 0., 1.08108111e-002, 5.40540554e-003, 0., 1.08108111e-002, 0., - 5.40540554e-003, 0., 1.08108111e-002, 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 5.40540554e-003, 0., 0., 1.08108111e-002, - 5.40540554e-003, 0., 0., 0., 5.40540554e-003, 0., 0., 0., 0., - 1.62162166e-002, 0., 0., 5.40540554e-003, 0., 0., 0., 0., 0., 0., - 0., 4.32432443e-002, 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.40540554e-003, 0., 0., 5.40540554e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., - 5.40540554e-003, 0., 1.08108111e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.40540554e-003, 0., 0., 0., 0., 5.40540554e-003, 0., - 5.40540554e-003, 0., 0., 0., 0., 5.40540554e-003, 0., - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 2.16216221e-002, 5.40540554e-003, 0., 0., 0., 0., - 1.08108111e-002, 0., 0., 0., 0., 0., 0., 0., 0., 5.40540554e-003, - 0., 0., 0., 5.40540554e-003, 1.08108111e-002, 5.40540554e-003, - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.16216221e-002, 0., - 5.40540554e-003, 0., 0., 5.40540554e-003, 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 0., 1.62162166e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.08108111e-002, 0., 1.08108111e-002, - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.40540554e-003, 5.40540554e-003, 0., 0., 0., 5.40540554e-003, - 0., 0., 0., 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., 0., 0., - 0., 5.40540554e-003, 0., 0., 5.40540554e-003, 5.40540554e-003, - 5.40540554e-003, 0., 0., 5.40540554e-003, 0., 0., 1.08108111e-002, - 0., 0., 0., 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.08108111e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.40540554e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.40540554e-003, 0., 0., 0., 5.40540554e-003, 0., 0., - 5.40540554e-003, 0., 0., 0., 0., 0., 0., 0., 5.40540554e-003, 0., - 0., 1.62162166e-002, 0., 5.40540554e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.89655170e-003, 0., 6.89655170e-003, 0., 6.89655170e-003, 0., 0., - 6.89655170e-003, 2.06896551e-002, 6.89655170e-003, 0., - 6.89655170e-003, 6.89655170e-003, 0., 0., 6.89655170e-003, 0., - 2.75862068e-002, 6.89655170e-003, 1.37931034e-002, 0., 0., - 1.37931034e-002, 0., 6.89655170e-003, 2.06896551e-002, - 6.89655170e-003, 0., 1.37931034e-002, 6.89655170e-003, 0., - 6.89655170e-003, 0., 0., 0., 0., 0., 6.89655170e-003, - 6.89655170e-003, 2.06896551e-002, 0., 0., 0., 0., 0., - 6.89655170e-003, 0., 0., 1.37931034e-002, 0., 0., 0., 0., 0., - 1.37931034e-002, 6.89655170e-003, 0., 0., 0., 0., 0., 0., - 6.89655170e-003, 0., 0., 1.37931034e-002, 0., 0., 0., 0., - 1.37931034e-002, 0., 0., 0., 0., 1.37931034e-002, 0., 0., 0., 0., - 0., 0., 6.89655170e-003, 0., 0., 0., 6.89655170e-003, 0., 0., 0., - 1.37931034e-002, 0., 0., 0., 0., 0., 6.89655170e-003, 0., 0., - 6.89655170e-003, 6.89655170e-003, 1.37931034e-002, 0., 0., - 1.37931034e-002, 0., 0., 0., 0., 0., 0., 6.89655170e-003, 0., 0., - 0., 0., 6.89655170e-003, 0., 6.89655170e-003, 6.89655170e-003, - 6.89655170e-003, 0., 0., 0., 6.89655170e-003, 0., 0., 0., - 6.89655170e-003, 0., 2.75862068e-002, 6.89655170e-003, 0., - 1.37931034e-002, 0., 1.37931034e-002, 0., 0., 0., 0., 0., - 6.89655170e-003, 0., 0., 0., 6.89655170e-003, 0., 0., 0., - 6.89655170e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.89655170e-003, 6.89655170e-003, 0., 0., 0., 6.89655170e-003, - 2.75862068e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.89655170e-003, 0., 0., 6.89655170e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.89655170e-003, - 6.89655170e-003, 0., 0., 0., 0., 0., 6.89655170e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.37931034e-002, 0., 0., 0., - 0., 0., 6.89655170e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.89655170e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.89655170e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.89655170e-003, 6.89655170e-003, 0., - 0., 0., 2.06896551e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.89655170e-003, - 6.89655170e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.89655170e-003, 0., 0., 0., 0., 0., 1.37931034e-002, 0., - 6.89655170e-003, 0., 0., 0., 0., 0., 0., 0., 6.89655170e-003, 0., - 6.89655170e-003, 2.06896551e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 6.89655170e-003, 0., 0., 0., 0., 6.89655170e-003, 0., 0., 0., - 1.37931034e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.89655170e-003, 0., 0., 0., 0., 0., - 1.37931034e-002, 0., 0., 0., 0., 2.06896551e-002, 0., 0., 0., 0., - 6.89655170e-003, 0., 0., 0., 0., 0., 0., 6.89655170e-003, 0., 0., - 6.89655170e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.89655170e-003, 0., 6.89655170e-003, 1.37931034e-002, 0., 0., 0., - 6.89655170e-003, 6.89655170e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.89655170e-003, 6.89655170e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.89655170e-003, 0., 0., 0., 0., 0., 0., 0., 2.06896551e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.37931034e-002, 0., - 0., 0., 6.89655170e-003, 0., 6.89655170e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.89655170e-003, 0., 6.89655170e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.89655170e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.89655170e-003, 0., 0., 0., 6.89655170e-003, 0., 0., 0., - 0., 0., 0., 0., 6.89655170e-003, 0., 0., 1.22699384e-002, 0., 0., - 0., 0., 6.13496918e-003, 0., 0., 0., 1.22699384e-002, - 1.84049085e-002, 6.13496918e-003, 3.06748450e-002, 0., 0., - 1.22699384e-002, 0., 2.45398767e-002, 6.13496918e-003, 0., 0., - 6.13496918e-003, 1.22699384e-002, 0., 1.22699384e-002, - 6.13496918e-003, 0., 0., 1.22699384e-002, 6.13496918e-003, 0., - 6.13496918e-003, 0., 1.22699384e-002, 1.22699384e-002, - 1.22699384e-002, 0., 0., 6.13496918e-003, 1.22699384e-002, 0., 0., - 0., 0., 0., 3.06748450e-002, 0., 1.22699384e-002, 1.22699384e-002, - 1.22699384e-002, 6.13496918e-003, 0., 0., 0., 6.13496918e-003, 0., - 0., 0., 6.13496918e-003, 0., 0., 0., 1.22699384e-002, - 6.13496918e-003, 0., 0., 0., 0., 6.13496918e-003, 0., - 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 6.13496918e-003, 0., - 0., 0., 0., 0., 0., 6.13496918e-003, 6.13496918e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.22699384e-002, - 0., 6.13496918e-003, 0., 0., 6.13496918e-003, 0., 0., 0., - 1.22699384e-002, 1.22699384e-002, 0., 0., 0., 6.13496918e-003, 0., - 0., 0., 0., 6.13496918e-003, 0., 1.22699384e-002, 6.13496918e-003, - 0., 0., 0., 0., 1.84049085e-002, 0., 6.13496918e-003, 0., - 4.29447852e-002, 0., 0., 0., 0., 0., 0., 0., 1.22699384e-002, 0., - 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.22699384e-002, - 6.13496918e-003, 0., 0., 0., 0., 1.22699384e-002, 0., - 6.13496918e-003, 0., 1.22699384e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.22699384e-002, 0., 0., 0., - 0., 1.22699384e-002, 0., 0., 6.13496918e-003, 0., 0., - 6.13496918e-003, 6.13496918e-003, 0., 0., 0., 6.13496918e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 1.22699384e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 1.22699384e-002, 0., - 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 6.13496918e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 1.22699384e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.13496918e-003, 0., 0., 0., 6.13496918e-003, 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 1.22699384e-002, 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., - 1.22699384e-002, 0., 0., 0., 6.13496918e-003, 6.13496918e-003, 0., - 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 6.13496918e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 1.22699384e-002, 0., 6.13496918e-003, 1.22699384e-002, - 6.13496918e-003, 6.13496918e-003, 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 1.22699384e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 1.84049085e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 1.22699384e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 1.75438598e-002, 5.84795326e-003, 0., 0., 0., 0., - 0., 5.84795326e-003, 1.16959065e-002, 1.16959065e-002, - 5.84795326e-003, 1.16959065e-002, 1.75438598e-002, - 5.84795326e-003, 0., 5.84795326e-003, 5.84795326e-003, 0., 0., 0., - 0., 0., 5.84795326e-003, 0., 5.84795326e-003, 5.84795326e-003, 0., - 0., 3.50877196e-002, 0., 5.84795326e-003, 5.84795326e-003, 0., - 5.84795326e-003, 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., - 0., 5.84795326e-003, 1.75438598e-002, 5.84795326e-003, - 2.33918130e-002, 3.50877196e-002, 5.84795326e-003, 0., 0., 0., 0., - 5.84795326e-003, 1.75438598e-002, 0., 0., 5.84795326e-003, - 5.84795326e-003, 0., 0., 0., 1.16959065e-002, 0., 0., 0., 0., 0., - 5.84795326e-003, 5.84795326e-003, 0., 0., 5.84795326e-003, 0., - 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., - 5.84795326e-003, 1.16959065e-002, 1.16959065e-002, 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 5.84795326e-003, 0., - 5.84795326e-003, 1.16959065e-002, 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 1.75438598e-002, 5.84795326e-003, 0., 0., - 5.84795326e-003, 0., 1.16959065e-002, 0., 0., 0., 2.33918130e-002, - 5.84795326e-003, 0., 5.84795326e-003, 0., 5.84795326e-003, 0., - 5.84795326e-003, 1.75438598e-002, 0., 0., 0., 0., 0., 0., 0., - 1.16959065e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.16959065e-002, 5.84795326e-003, 0., 0., 0., 5.84795326e-003, - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., - 5.84795326e-003, 5.84795326e-003, 2.33918130e-002, 0., 0., 0., 0., - 0., 0., 5.84795326e-003, 5.84795326e-003, 5.84795326e-003, 0., 0., - 0., 5.84795326e-003, 0., 5.84795326e-003, 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., - 0., 1.16959065e-002, 5.84795326e-003, 0., 0., 5.84795326e-003, 0., - 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 5.84795326e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., - 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 5.84795326e-003, 0., 0., 0., 5.84795326e-003, - 5.84795326e-003, 1.16959065e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., - 2.33918130e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, - 0., 0., 0., 0., 1.16959065e-002, 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 1.16959065e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 0., 0., - 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 1.16959065e-002, - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, - 5.84795326e-003, 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 5.84795326e-003, 0., 0., 0., 0., - 5.84795326e-003, 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, - 0., 0., 0., 0., 5.84795326e-003, 0., 0., 0., 0., 0., 0., 0., - 5.84795326e-003, 0., 1.16959065e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.16959065e-002, 0., 0., 0., 0., 0., 5.84795326e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.84795326e-003, 0., 0., - 0., 0., 0., 0., 0., 5.71428565e-003, 5.71428565e-003, 0., 0., 0., - 0., 0., 1.14285713e-002, 0., 5.71428565e-003, 5.71428565e-003, - 5.71428565e-003, 1.14285713e-002, 1.14285713e-002, 0., - 5.71428565e-003, 0., 1.71428565e-002, 0., 1.14285713e-002, - 5.71428565e-003, 1.14285713e-002, 0., 1.14285713e-002, - 1.14285713e-002, 5.71428565e-003, 0., 0., 2.85714287e-002, - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.14285713e-002, 5.71428565e-003, 0., 0., 0., 0., 1.14285713e-002, - 0., 5.71428565e-003, 2.85714287e-002, 5.71428565e-003, - 5.71428565e-003, 5.71428565e-003, 0., 0., 0., 5.71428565e-003, 0., - 0., 0., 5.71428565e-003, 0., 0., 5.71428565e-003, 0., 0., 0., 0., - 0., 0., 5.71428565e-003, 5.71428565e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.14285713e-002, 0., 5.71428565e-003, 0., 0., - 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 1.14285713e-002, 0., - 0., 5.71428565e-003, 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 0., 0., 1.71428565e-002, 0., 1.14285713e-002, 0., 0., 0., 0., 0., - 0., 0., 5.71428565e-003, 5.71428565e-003, 5.71428565e-003, 0., 0., - 1.14285713e-002, 0., 1.71428565e-002, 0., 0., 0., 3.42857130e-002, - 0., 0., 1.14285713e-002, 0., 0., 5.71428565e-003, 0., 0., 0., 0., - 1.14285713e-002, 0., 5.71428565e-003, 1.71428565e-002, - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 5.71428565e-003, 1.14285713e-002, - 0., 0., 0., 0., 5.71428565e-003, 0., 1.14285713e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 0., 5.71428565e-003, 0., 0., 0., 0., 0., 5.71428565e-003, - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 0., - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 2.28571426e-002, 0., 0., 5.71428565e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.71428565e-003, 0., 0., 0., 0., 1.14285713e-002, - 5.71428565e-003, 0., 0., 0., 1.14285713e-002, 0., 1.14285713e-002, - 5.71428565e-003, 0., 0., 1.14285713e-002, 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 1.14285713e-002, 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.14285713e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 1.14285713e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.14285713e-002, 0., 0., 0., 0., 5.71428565e-003, - 5.71428565e-003, 1.14285713e-002, 0., 0., 5.71428565e-003, 0., 0., - 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.14285713e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.14285713e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 5.71428565e-003, 0., 5.71428565e-003, 0., 0., - 0., 0., 1.71428565e-002, 0., 0., 5.71428565e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.14285713e-002, 0., 5.71428565e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 5.71428565e-003, 0., 0., 0., 1.14285713e-002, 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 1.14285713e-002, 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 1.14285713e-002, 5.71428565e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.28571426e-002, 0., 0., 0., 5.71428565e-003, 5.71428565e-003, 0., - 5.71428565e-003, 5.71428565e-003, 1.14285713e-002, 0., - 1.14285713e-002, 0., 5.71428565e-003, 0., 5.71428565e-003, - 1.14285713e-002, 5.71428565e-003, 5.71428565e-003, - 5.71428565e-003, 5.71428565e-003, 5.71428565e-003, - 5.71428565e-003, 5.71428565e-003, 0., 5.71428565e-003, - 5.71428565e-003, 0., 0., 5.71428565e-003, 0., 5.71428565e-003, 0., - 5.71428565e-003, 0., 5.71428565e-003, 5.71428565e-003, - 1.14285713e-002, 5.71428565e-003, 1.14285713e-002, 0., 0., 0., - 5.71428565e-003, 0., 5.71428565e-003, 0., 1.14285713e-002, - 2.28571426e-002, 0., 0., 5.71428565e-003, 0., 0., 0., - 1.14285713e-002, 0., 5.71428565e-003, 5.71428565e-003, 0., 0., 0., - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 1.14285713e-002, - 1.14285713e-002, 1.14285713e-002, 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 5.71428565e-003, 0., - 1.14285713e-002, 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., - 5.71428565e-003, 5.71428565e-003, 0., 0., 0., 0., 0., - 5.71428565e-003, 1.14285713e-002, 5.71428565e-003, 0., - 5.71428565e-003, 0., 0., 5.71428565e-003, 0., 0., 5.71428565e-003, - 5.71428565e-003, 0., 0., 5.71428565e-003, 0., 1.14285713e-002, - 5.71428565e-003, 0., 0., 1.71428565e-002, 5.71428565e-003, 0., 0., - 0., 5.71428565e-003, 1.14285713e-002, 0., 0., 0., 2.28571426e-002, - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 5.71428565e-003, 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 1.14285713e-002, 0., 0., 0., 0., 0., - 0., 0., 5.71428565e-003, 0., 5.71428565e-003, 5.71428565e-003, 0., - 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 1.71428565e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.71428565e-003, 1.14285713e-002, 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 5.71428565e-003, 5.71428565e-003, 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 5.71428565e-003, 0., 0., 5.71428565e-003, - 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 5.71428565e-003, 0., 0., 5.71428565e-003, 0., 0., - 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.71428565e-003, 0., 5.71428565e-003, 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 5.71428565e-003, - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 1.14285713e-002, 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 1.71428565e-002, 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.14285713e-002, 0., 0., 0., 0., 1.14285713e-002, 1.14285713e-002, - 0., 0., 5.71428565e-003, 0., 0., 1.14285713e-002, 0., - 5.71428565e-003, 5.71428565e-003, 0., 0., 1.14285713e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 5.71428565e-003, 5.71428565e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., - 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.71428565e-002, 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 1.71428565e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., 5.71428565e-003, - 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 5.71428565e-003, 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.18134702e-003, 5.18134702e-003, - 5.18134702e-003, 1.55440411e-002, 0., 5.18134702e-003, 0., - 1.03626940e-002, 0., 5.18134702e-003, 1.03626940e-002, - 5.18134702e-003, 0., 1.03626940e-002, 0., 5.18134702e-003, - 5.18134702e-003, 1.03626940e-002, 0., 0., 0., 0., 2.07253881e-002, - 0., 1.03626940e-002, 0., 1.55440411e-002, 5.18134702e-003, - 1.03626940e-002, 0., 5.18134702e-003, 1.03626940e-002, 0., 0., 0., - 1.03626940e-002, 0., 0., 5.18134702e-003, 2.59067342e-002, 0., 0., - 0., 5.18134702e-003, 0., 5.18134702e-003, 5.18134702e-003, - 1.03626940e-002, 1.55440411e-002, 0., 5.18134702e-003, 0., 0., 0., - 0., 2.07253881e-002, 0., 0., 0., 1.03626940e-002, 0., 0., 0., 0., - 5.18134702e-003, 0., 0., 0., 5.18134702e-003, 0., 0., 0., - 5.18134702e-003, 0., 0., 0., 0., 0., 1.03626940e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.18134702e-003, 0., 0., 0., 0., 0., 0., - 1.03626940e-002, 0., 0., 0., 0., 1.03626940e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 1.03626940e-002, 0., 0., 0., 1.03626940e-002, 0., - 0., 5.18134702e-003, 5.18134702e-003, 0., 0., 5.18134702e-003, 0., - 0., 0., 0., 0., 3.10880821e-002, 0., 0., 5.18134702e-003, - 4.66321222e-002, 0., 0., 1.03626940e-002, 0., 5.18134702e-003, - 1.03626940e-002, 0., 2.07253881e-002, 0., 5.18134702e-003, 0., 0., - 0., 0., 1.55440411e-002, 0., 5.18134702e-003, 0., 1.03626940e-002, - 0., 0., 5.18134702e-003, 0., 5.18134702e-003, 0., 0., - 5.18134702e-003, 0., 3.10880821e-002, 5.18134702e-003, - 5.18134702e-003, 0., 5.18134702e-003, 5.18134702e-003, - 5.18134702e-003, 5.18134702e-003, 1.55440411e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, 0., 0., 0., - 0., 5.18134702e-003, 0., 0., 0., 0., 5.18134702e-003, 0., 0., - 5.18134702e-003, 0., 1.03626940e-002, 1.55440411e-002, 0., 0., - 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, - 5.18134702e-003, 0., 0., 0., 5.18134702e-003, 0., 5.18134702e-003, - 0., 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.18134702e-003, 0., 0., 1.55440411e-002, 0., 0., 0., 0., - 0., 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, - 0., 0., 2.59067342e-002, 0., 0., 0., 0., 0., 1.03626940e-002, 0., - 5.18134702e-003, 0., 0., 0., 5.18134702e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 5.18134702e-003, 0., 0., 0., 1.55440411e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, 5.18134702e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.18134702e-003, 0., 5.18134702e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, 0., - 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 0., 0., 0., 0., 0., 0., 1.03626940e-002, 0., 0., - 0., 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 0., 0., 5.18134702e-003, 0., 5.18134702e-003, 0., - 0., 0., 0., 0., 0., 5.18134702e-003, 0., 5.18134702e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, 5.18134702e-003, - 1.03626940e-002, 0., 5.18134702e-003, 0., 1.55440411e-002, 0., 0., - 0., 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.03626940e-002, 0., 0., 0., 0., 0., 0., 0., 0., 5.18134702e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.18134702e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.18134702e-003, 0., 0., 5.18134702e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.18134702e-003, 0., 0., 0., 0., 0., 0., 0., 2.28571426e-002, - 5.71428565e-003, 5.71428565e-003, 5.71428565e-003, 0., - 1.71428565e-002, 0., 0., 1.71428565e-002, 0., 5.71428565e-003, - 1.14285713e-002, 0., 0., 5.71428565e-003, 0., 0., 5.71428565e-003, - 1.14285713e-002, 0., 0., 0., 2.28571426e-002, 5.71428565e-003, - 5.71428565e-003, 5.71428565e-003, 1.14285713e-002, 0., - 2.28571426e-002, 5.71428565e-003, 1.14285713e-002, - 5.71428565e-003, 5.71428565e-003, 0., 0., 1.14285713e-002, 0., - 5.71428565e-003, 5.71428565e-003, 1.14285713e-002, 0., 0., 0., - 5.71428565e-003, 5.71428565e-003, 1.14285713e-002, 0., 0., - 5.71428565e-003, 0., 5.71428565e-003, 1.14285713e-002, 0., - 5.71428565e-003, 0., 5.71428565e-003, 0., 5.71428565e-003, 0., 0., - 0., 0., 0., 0., 1.14285713e-002, 0., 0., 0., 5.71428565e-003, - 5.71428565e-003, 5.71428565e-003, 0., 0., 0., 5.71428565e-003, 0., - 0., 0., 0., 0., 0., 0., 1.14285713e-002, 5.71428565e-003, - 5.71428565e-003, 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.71428565e-003, 5.71428565e-003, 0., 0., - 1.71428565e-002, 0., 0., 0., 0., 1.14285713e-002, 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 1.14285713e-002, 0., - 0., 5.71428565e-003, 0., 2.28571426e-002, 0., 0., 5.71428565e-003, - 3.42857130e-002, 0., 0., 5.71428565e-003, 0., 5.71428565e-003, - 1.14285713e-002, 0., 0., 0., 0., 5.71428565e-003, 0., - 1.14285713e-002, 0., 5.71428565e-003, 0., 5.71428565e-003, - 5.71428565e-003, 5.71428565e-003, 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.14285713e-002, - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 5.71428565e-003, 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., - 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.71428565e-003, 0., 0., 0., 5.71428565e-003, 0., - 5.71428565e-003, 5.71428565e-003, 0., 5.71428565e-003, 0., - 5.71428565e-003, 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., - 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 2.28571426e-002, 0., 5.71428565e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.14285713e-002, 5.71428565e-003, 0., 0., 5.71428565e-003, - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.14285713e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 1.14285713e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 0., 5.71428565e-003, 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., - 0., 0., 1.14285713e-002, 0., 5.71428565e-003, 0., 5.71428565e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., - 1.14285713e-002, 0., 0., 0., 0., 0., 1.14285713e-002, 0., 0., 0., - 0., 5.71428565e-003, 1.14285713e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., - 5.71428565e-003, 5.71428565e-003, 0., 0., 5.71428565e-003, 0., - 1.14285713e-002, 0., 5.71428565e-003, 5.71428565e-003, 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 5.71428565e-003, 0., 0., 0., - 1.14285713e-002, 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.14285713e-002, 0., 5.71428565e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.14285713e-002, 0., - 5.71428565e-003, 0., 0., 0., 5.71428565e-003, 5.71428565e-003, 0., - 0., 0., 0., 0., 0., 5.71428565e-003, 0., 5.71428565e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.37634408e-003, 0., 1.07526882e-002, 0., 1.07526882e-002, - 1.61290318e-002, 0., 5.37634408e-003, 0., 0., 0., 0., - 1.07526882e-002, 5.37634408e-003, 5.37634408e-003, - 1.07526882e-002, 0., 4.30107526e-002, 1.07526882e-002, - 5.37634408e-003, 0., 0., 2.15053763e-002, 5.37634408e-003, - 1.07526882e-002, 5.37634408e-003, 5.37634408e-003, 0., - 2.15053763e-002, 5.37634408e-003, 0., 1.07526882e-002, 0., 0., - 1.07526882e-002, 0., 5.37634408e-003, 0., 1.07526882e-002, - 2.15053763e-002, 0., 0., 0., 0., 0., 5.37634408e-003, 0., - 1.07526882e-002, 1.07526882e-002, 5.37634408e-003, 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, 0., - 0., 0., 1.07526882e-002, 5.37634408e-003, 0., 0., 0., - 5.37634408e-003, 0., 0., 5.37634408e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.37634408e-003, 0., 1.61290318e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.07526882e-002, - 5.37634408e-003, 5.37634408e-003, 0., 0., 5.37634408e-003, 0., 0., - 5.37634408e-003, 0., 5.37634408e-003, 0., 5.37634408e-003, - 1.61290318e-002, 0., 0., 0., 0., 0., 5.37634408e-003, 0., - 5.37634408e-003, 0., 0., 0., 0., 5.37634408e-003, 1.61290318e-002, - 0., 0., 0., 2.68817209e-002, 0., 0., 0., 0., 0., 0., 0., - 1.61290318e-002, 0., 0., 0., 0., 0., 0., 5.37634408e-003, - 5.37634408e-003, 0., 0., 1.07526882e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.61290318e-002, 5.37634408e-003, 0., 0., 0., 0., - 1.61290318e-002, 0., 0., 0., 5.37634408e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 2.15053763e-002, 0., 5.37634408e-003, 0., - 5.37634408e-003, 0., 0., 1.07526882e-002, 0., 0., 5.37634408e-003, - 0., 0., 0., 0., 0., 0., 5.37634408e-003, 0., 0., 0., 0., - 5.37634408e-003, 0., 0., 0., 5.37634408e-003, 5.37634408e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, 0., 0., 0., 0., - 0., 0., 0., 5.37634408e-003, 0., 0., 0., 0., 5.37634408e-003, 0., - 0., 0., 0., 0., 0., 5.37634408e-003, 0., 5.37634408e-003, 0., 0., - 1.07526882e-002, 0., 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, - 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, 0., 0., 0., 0., - 5.37634408e-003, 5.37634408e-003, 0., 0., 0., 2.15053763e-002, - 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.37634408e-003, 5.37634408e-003, 5.37634408e-003, 0., 0., 0., - 1.61290318e-002, 0., 0., 0., 1.61290318e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, 0., 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 0., 5.37634408e-003, 0., - 1.07526882e-002, 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 1.07526882e-002, 0., 5.37634408e-003, 0., 5.37634408e-003, - 1.61290318e-002, 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.37634408e-003, 5.37634408e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.37634408e-003, 0., 0., 0., 0., 5.37634408e-003, - 1.07526882e-002, 0., 0., 1.07526882e-002, 0., 0., 0., 0., - 5.37634408e-003, 0., 5.37634408e-003, 5.37634408e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, 5.37634408e-003, 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 5.37634408e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.07526882e-002, 0., 0., 0., 0., 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 1.07526882e-002, - 5.37634408e-003, 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.37634408e-003, - 0., 0., 5.37634408e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 2.05479451e-002, 0., 6.84931502e-003, 6.84931502e-003, 0., - 6.84931502e-003, 0., 6.84931502e-003, 6.84931502e-003, - 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 1.36986300e-002, - 6.84931502e-003, 0., 6.84931502e-003, 1.36986300e-002, - 2.05479451e-002, 6.84931502e-003, 0., 6.84931502e-003, - 1.36986300e-002, 0., 2.05479451e-002, 0., 0., 6.84931502e-003, 0., - 6.84931502e-003, 0., 0., 0., 0., 6.84931502e-003, 1.36986300e-002, - 0., 0., 0., 0., 0., 0., 2.05479451e-002, 0., 2.05479451e-002, 0., - 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 6.84931502e-003, - 0., 0., 6.84931502e-003, 0., 6.84931502e-003, 6.84931502e-003, 0., - 0., 0., 6.84931502e-003, 6.84931502e-003, 0., 6.84931502e-003, 0., - 0., 6.84931502e-003, 6.84931502e-003, 0., 6.84931502e-003, 0., 0., - 0., 0., 0., 1.36986300e-002, 0., 0., 0., 0., 0., 6.84931502e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., - 0., 0., 0., 0., 0., 6.84931502e-003, 0., 1.36986300e-002, 0., - 6.84931502e-003, 0., 0., 0., 0., 0., 0., 1.36986300e-002, - 6.84931502e-003, 0., 0., 0., 0., 4.10958901e-002, 0., 0., 0., - 2.73972601e-002, 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.36986300e-002, 6.84931502e-003, 0., 0., 0., 0., - 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 6.84931502e-003, 0., - 6.84931502e-003, 0., 0., 0., 0., 0., 1.36986300e-002, 0., 0., 0., - 1.36986300e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.84931502e-003, 0., 1.36986300e-002, - 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 6.84931502e-003, - 6.84931502e-003, 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.36986300e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., - 3.42465751e-002, 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.84931502e-003, 0., 0., 0., 1.36986300e-002, 0., 0., 0., 0., - 0., 6.84931502e-003, 6.84931502e-003, 0., 6.84931502e-003, 0., 0., - 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 6.84931502e-003, - 0., 6.84931502e-003, 0., 0., 0., 6.84931502e-003, 0., - 6.84931502e-003, 0., 6.84931502e-003, 0., 0., 0., 0., 0., - 6.84931502e-003, 0., 0., 0., 1.36986300e-002, 2.05479451e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.84931502e-003, 6.84931502e-003, 0., 0., 0., 0., 0., - 6.84931502e-003, 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., - 6.84931502e-003, 6.84931502e-003, 0., 0., 0., 0., 6.84931502e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., - 6.84931502e-003, 6.84931502e-003, 0., 6.84931502e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.36986300e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.36986300e-002, - 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.84931502e-003, 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 6.84931502e-003, 0., 0., 0., 6.84931502e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 6.84931502e-003, 1.36986300e-002, 0., 0., 0., - 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 6.84931502e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.84931502e-003, 0., - 0., 0., 0., 0., 0., 6.84931502e-003, 0., 0., 0., 0., 0., 0., - 6.84931502e-003, 0., 0., 6.84931502e-003, 0., 0., 0., - 6.84931502e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.10497242e-002, 1.10497242e-002, 0., 0., - 5.52486209e-003, 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., - 0., 1.10497242e-002, 0., 5.52486209e-003, 5.52486209e-003, 0., - 1.10497242e-002, 0., 2.20994484e-002, 0., 0., 0., 0., - 5.52486209e-003, 5.52486209e-003, 5.52486209e-003, 0., - 1.10497242e-002, 0., 0., 1.10497242e-002, 5.52486209e-003, 0., - 5.52486209e-003, 1.65745858e-002, 5.52486209e-003, 0., - 5.52486209e-003, 0., 1.10497242e-002, 0., 0., 0., 1.10497242e-002, - 4.41988967e-002, 0., 0., 0., 0., 0., 5.52486209e-003, - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 5.52486209e-003, - 5.52486209e-003, 0., 0., 0., 5.52486209e-003, 0., 5.52486209e-003, - 1.10497242e-002, 0., 5.52486209e-003, 1.10497242e-002, 0., 0., - 5.52486209e-003, 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.52486209e-003, 5.52486209e-003, 0., - 5.52486209e-003, 5.52486209e-003, 0., 0., 1.10497242e-002, 0., 0., - 0., 1.10497242e-002, 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 5.52486209e-003, - 1.10497242e-002, 0., 0., 0., 5.52486209e-003, 2.20994484e-002, 0., - 0., 1.10497242e-002, 3.86740342e-002, 1.65745858e-002, 0., 0., 0., - 0., 0., 5.52486209e-003, 2.76243109e-002, 0., 0., 0., 0., - 5.52486209e-003, 1.10497242e-002, 0., 0., 0., 0., 0., - 1.65745858e-002, 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., - 5.52486209e-003, 0., 0., 0., 0., 5.52486209e-003, 1.10497242e-002, - 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.52486209e-003, 1.10497242e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 5.52486209e-003, 0., - 0., 0., 0., 5.52486209e-003, 0., 0., 0., 5.52486209e-003, 0., 0., - 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 0., 5.52486209e-003, - 0., 5.52486209e-003, 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, 5.52486209e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.10497242e-002, 0., 0., 0., 5.52486209e-003, 0., 0., - 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 5.52486209e-003, - 0., 0., 0., 0., 0., 0., 2.20994484e-002, 0., 0., 0., 0., - 1.10497242e-002, 5.52486209e-003, 5.52486209e-003, 0., 0., 0., 0., - 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 1.10497242e-002, - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.10497242e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, - 5.52486209e-003, 0., 0., 1.65745858e-002, 0., 5.52486209e-003, 0., - 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., - 5.52486209e-003, 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 1.10497242e-002, 1.10497242e-002, 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., - 1.10497242e-002, 0., 0., 0., 1.65745858e-002, 0., 0., 0., - 5.52486209e-003, 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., - 5.52486209e-003, 5.52486209e-003, 0., 5.52486209e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.52486209e-003, 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.10497242e-002, 0., 0., 0., 0., 1.65745858e-002, 0., 0., 0., 0., - 0., 0., 5.52486209e-003, 0., 0., 5.52486209e-003, 0., 0., 0., 0., - 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.52486209e-003, 0., 0., 0., 0., 0., 0., 8.69565178e-003, - 0., 0., 8.69565178e-003, 0., 0., 8.69565178e-003, 1.73913036e-002, - 8.69565178e-003, 8.69565178e-003, 2.60869563e-002, 0., 0., - 8.69565178e-003, 0., 0., 1.73913036e-002, 2.60869563e-002, 0., 0., - 0., 8.69565178e-003, 0., 8.69565178e-003, 0., 2.60869563e-002, - 1.73913036e-002, 0., 0., 8.69565178e-003, 0., 0., 0., - 2.60869563e-002, 0., 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, - 0., 8.69565178e-003, 8.69565178e-003, 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 8.69565178e-003, 0., 0., 8.69565178e-003, - 0., 0., 1.73913036e-002, 8.69565178e-003, 0., 8.69565178e-003, 0., - 0., 8.69565178e-003, 0., 0., 8.69565178e-003, 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., - 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 8.69565178e-003, - 0., 0., 0., 2.60869563e-002, 0., 0., 0., 8.69565178e-003, - 8.69565178e-003, 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 8.69565178e-003, 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 8.69565178e-003, 8.69565178e-003, - 0., 0., 0., 5.21739125e-002, 0., 0., 0., 8.69565178e-003, 0., 0., - 0., 8.69565178e-003, 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 4.34782580e-002, 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.73913036e-002, 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 3.47826071e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., - 1.73913036e-002, 0., 0., 0., 8.69565178e-003, 0., 8.69565178e-003, - 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 8.69565178e-003, 8.69565178e-003, - 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 1.73913036e-002, - 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 8.69565178e-003, - 8.69565178e-003, 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., 8.69565178e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 8.69565178e-003, - 0., 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., 0., - 0., 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.69565178e-003, 8.69565178e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, - 0., 0., 0., 0., 0., 1.73913036e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.69565178e-003, 8.69565178e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.69565178e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 1.63043477e-002, - 0., 0., 0., 1.08695654e-002, 0., 0., 5.43478271e-003, - 1.08695654e-002, 5.43478271e-003, 1.08695654e-002, - 1.63043477e-002, 5.43478271e-003, 5.43478271e-003, - 1.08695654e-002, 0., 0., 5.43478271e-003, 5.43478271e-003, 0., - 1.08695654e-002, 1.08695654e-002, 1.08695654e-002, 0., 0., - 5.43478271e-003, 5.43478271e-003, 5.43478271e-003, - 5.43478271e-003, 0., 5.43478271e-003, 0., 1.08695654e-002, 0., - 1.08695654e-002, 0., 0., 5.43478271e-003, 5.43478271e-003, - 1.08695654e-002, 0., 0., 5.43478271e-003, 0., 5.43478271e-003, - 1.08695654e-002, 1.63043477e-002, 2.71739140e-002, 0., 0., - 5.43478271e-003, 0., 5.43478271e-003, 0., 1.08695654e-002, 0., 0., - 0., 0., 0., 0., 5.43478271e-003, 0., 1.08695654e-002, - 5.43478271e-003, 0., 0., 0., 5.43478271e-003, 5.43478271e-003, 0., - 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 1.08695654e-002, 0., - 0., 0., 0., 0., 5.43478271e-003, 0., 0., 5.43478271e-003, - 1.08695654e-002, 1.08695654e-002, 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 1.63043477e-002, 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., - 1.08695654e-002, 0., 0., 5.43478271e-003, 2.17391308e-002, - 1.63043477e-002, 0., 0., 0., 1.08695654e-002, 5.43478271e-003, 0., - 0., 0., 0., 5.43478271e-003, 0., 5.43478271e-003, 1.08695654e-002, - 0., 0., 5.43478271e-003, 0., 5.43478271e-003, 5.43478271e-003, 0., - 0., 0., 0., 0., 0., 5.43478271e-003, 0., 1.08695654e-002, 0., - 5.43478271e-003, 0., 0., 5.43478271e-003, 5.43478271e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 5.43478271e-003, 0., 0., 1.08695654e-002, 0., 0., 5.43478271e-003, - 0., 0., 5.43478271e-003, 5.43478271e-003, 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., - 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 5.43478271e-003, - 0., 0., 0., 0., 0., 1.08695654e-002, 5.43478271e-003, 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.43478271e-003, 5.43478271e-003, 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., - 0., 0., 0., 0., 5.43478271e-003, 0., 0., 1.08695654e-002, 0., 0., - 1.08695654e-002, 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 5.43478271e-003, 0., 0., 1.08695654e-002, 0., 0., 1.08695654e-002, - 0., 0., 0., 0., 5.43478271e-003, 1.63043477e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.43478271e-003, 0., 0., 5.43478271e-003, 0., - 5.43478271e-003, 0., 1.63043477e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 5.43478271e-003, 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.08695654e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 1.08695654e-002, 0., 0., - 1.08695654e-002, 0., 0., 0., 0., 5.43478271e-003, 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 5.43478271e-003, - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., 5.43478271e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., - 1.08695654e-002, 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., - 5.43478271e-003, 5.43478271e-003, 0., 0., 0., 5.43478271e-003, - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.08695654e-002, 0., 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., - 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.43478271e-003, 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.43478271e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.43478271e-003, 0., 0., 0., 0., 0., 0., 5.43478271e-003, 0., 0., - 0., 0., 0., 5.43478271e-003, 0., 0., 5.91715984e-003, - 1.18343197e-002, 0., 0., 0., 1.18343197e-002, 0., 0., - 5.91715984e-003, 0., 0., 0., 2.36686394e-002, 0., 0., - 5.91715984e-003, 0., 0., 5.91715984e-003, 5.91715984e-003, - 5.91715984e-003, 1.18343197e-002, 4.14201170e-002, - 1.77514795e-002, 5.91715984e-003, 5.91715984e-003, 0., 0., - 2.36686394e-002, 5.91715984e-003, 5.91715984e-003, - 1.18343197e-002, 5.91715984e-003, 5.91715984e-003, 0., 0., - 5.91715984e-003, 5.91715984e-003, 0., 5.91715984e-003, 0., 0., 0., - 5.91715984e-003, 0., 1.18343197e-002, 0., 1.18343197e-002, - 1.18343197e-002, 5.91715984e-003, 0., 1.77514795e-002, 0., 0., - 1.18343197e-002, 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., - 1.18343197e-002, 1.18343197e-002, 5.91715984e-003, 0., 0., 0., 0., - 1.18343197e-002, 0., 0., 0., 0., 5.91715984e-003, 0., 0., - 1.18343197e-002, 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.91715984e-003, 5.91715984e-003, 0., 1.18343197e-002, - 0., 5.91715984e-003, 0., 0., 2.36686394e-002, 0., 1.77514795e-002, - 0., 0., 5.91715984e-003, 0., 0., 0., 5.91715984e-003, 0., 0., - 5.91715984e-003, 0., 5.91715984e-003, 0., 5.91715984e-003, 0., 0., - 0., 5.91715984e-003, 1.77514795e-002, 0., 0., 0., 0., 0., - 2.36686394e-002, 0., 0., 0., 1.77514795e-002, 0., 0., 0., 0., 0., - 1.18343197e-002, 0., 5.91715984e-003, 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 1.18343197e-002, 0., 0., 5.91715984e-003, 0., - 5.91715984e-003, 0., 0., 0., 5.91715984e-003, 0., 5.91715984e-003, - 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 5.91715984e-003, 0., 5.91715984e-003, - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 5.91715984e-003, 5.91715984e-003, - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.95857992e-002, 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 5.91715984e-003, 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., - 1.77514795e-002, 0., 5.91715984e-003, 5.91715984e-003, 0., 0., 0., - 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., - 1.18343197e-002, 0., 0., 5.91715984e-003, 1.77514795e-002, - 1.18343197e-002, 0., 0., 0., 1.77514795e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.91715984e-003, 5.91715984e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 5.91715984e-003, 5.91715984e-003, 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., - 0., 5.91715984e-003, 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 1.18343197e-002, 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 5.91715984e-003, 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 5.91715984e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 5.91715984e-003, 0., 5.91715984e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.91715984e-003, 0., 0., 0., 5.91715984e-003, 0., 0., 0., 0., 0., - 0., 5.91715984e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 3.44827585e-002, 8.62068962e-003, 0., 8.62068962e-003, 0., 0., 0., - 8.62068962e-003, 8.62068962e-003, 8.62068962e-003, 0., - 8.62068962e-003, 8.62068962e-003, 0., 0., 2.58620679e-002, 0., 0., - 0., 0., 0., 0., 8.62068962e-003, 8.62068962e-003, 8.62068962e-003, - 0., 8.62068962e-003, 0., 0., 0., 1.72413792e-002, 8.62068962e-003, - 0., 8.62068962e-003, 8.62068962e-003, 8.62068962e-003, 0., 0., - 8.62068962e-003, 0., 1.72413792e-002, 0., 0., 8.62068962e-003, 0., - 0., 8.62068962e-003, 8.62068962e-003, 1.72413792e-002, 0., 0., 0., - 0., 0., 8.62068962e-003, 2.58620679e-002, 0., 0., 0., - 8.62068962e-003, 0., 0., 8.62068962e-003, 0., 8.62068962e-003, - 8.62068962e-003, 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 8.62068962e-003, - 0., 0., 0., 0., 0., 8.62068962e-003, 0., 8.62068962e-003, 0., 0., - 0., 0., 0., 0., 8.62068962e-003, 0., 8.62068962e-003, 0., 0., - 8.62068962e-003, 0., 0., 0., 8.62068962e-003, 0., 0., - 8.62068962e-003, 8.62068962e-003, 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 8.62068962e-003, 0., 0., 0., - 8.62068962e-003, 3.44827585e-002, 0., 0., 0., 1.72413792e-002, - 8.62068962e-003, 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 8.62068962e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 3.44827585e-002, 0., 0., 0., 8.62068962e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.62068962e-003, 0., 0., 1.72413792e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.72413792e-002, 0., 0., - 1.72413792e-002, 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 1.72413792e-002, 8.62068962e-003, 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.72413792e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 8.62068962e-003, 0., 0., 8.62068962e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., - 8.62068962e-003, 0., 0., 8.62068962e-003, 0., 0., 1.72413792e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 8.62068962e-003, 0., - 1.72413792e-002, 0., 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.72413792e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.62068962e-003, 0., 0., 0., 0., - 0., 0., 8.62068962e-003, 0., 0., 8.62068962e-003, 0., 0., 0., 0., - 0., 8.62068962e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 8.62068962e-003, 8.62068962e-003, 8.62068962e-003, 0., 0., 0., 0., - 7.19424477e-003, 7.19424477e-003, 1.43884895e-002, - 2.15827338e-002, 7.19424477e-003, 1.43884895e-002, 0., - 7.19424477e-003, 1.43884895e-002, 1.43884895e-002, - 1.43884895e-002, 0., 0., 7.19424477e-003, 0., 1.43884895e-002, 0., - 1.43884895e-002, 7.19424477e-003, 7.19424477e-003, - 7.19424477e-003, 0., 7.19424477e-003, 0., 0., 0., 0., 0., - 1.43884895e-002, 0., 0., 2.15827338e-002, 0., 7.19424477e-003, 0., - 1.43884895e-002, 0., 7.19424477e-003, 7.19424477e-003, 0., 0., 0., - 0., 7.19424477e-003, 0., 7.19424477e-003, 0., 0., 2.87769791e-002, - 7.19424477e-003, 0., 7.19424477e-003, 0., 0., 1.43884895e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 1.43884895e-002, 7.19424477e-003, 0., - 0., 0., 1.43884895e-002, 0., 1.43884895e-002, 0., 0., 0., - 7.19424477e-003, 0., 0., 7.19424477e-003, 7.19424477e-003, 0., 0., - 0., 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., 7.19424477e-003, - 0., 0., 0., 7.19424477e-003, 0., 7.19424477e-003, 0., - 7.19424477e-003, 7.19424477e-003, 0., 0., 0., 0., 7.19424477e-003, - 1.43884895e-002, 0., 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.19424477e-003, 0., - 2.87769791e-002, 0., 0., 0., 2.15827338e-002, 0., 0., 0., 0., - 7.19424477e-003, 0., 0., 7.19424477e-003, 0., 0., 0., 0., 0., - 7.19424477e-003, 0., 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.43884895e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., 7.19424477e-003, 0., - 7.19424477e-003, 0., 0., 7.19424477e-003, 0., 0., 0., - 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.19424477e-003, 0., 0., 0., 7.19424477e-003, 0., 0., 0., 0., 0., - 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.19424477e-003, 0., 0., 0., 0., 0., 0., 7.19424477e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.19424477e-003, 0., 0., 0., 0., 7.19424477e-003, 0., - 0., 0., 7.19424477e-003, 7.19424477e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 7.19424477e-003, 0., 0., 0., 0., 0., 0., 7.19424477e-003, - 0., 0., 0., 0., 0., 0., 1.43884895e-002, 0., 0., 7.19424477e-003, - 0., 0., 7.19424477e-003, 0., 0., 0., 0., 0., 7.19424477e-003, 0., - 0., 0., 7.19424477e-003, 0., 0., 0., 0., 7.19424477e-003, 0., 0., - 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.19424477e-003, 0., 0., 0., 0., 0., 0., 7.19424477e-003, 0., 0., - 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.19424477e-003, 0., 0., 1.43884895e-002, 0., 0., 7.19424477e-003, - 0., 0., 0., 7.19424477e-003, 0., 1.43884895e-002, 0., 0., - 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.19424477e-003, 0., 7.19424477e-003, 0., 0., 0., 7.19424477e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.19424477e-003, 0., 0., - 0., 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.19424477e-003, 0., 0., 0., 0., - 0., 1.43884895e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.19424477e-003, 0., 0., - 0., 0., 0., 7.19424477e-003, 0., 7.19424477e-003, 0., 0., 0., - 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., 7.19424477e-003, 0., - 7.19424477e-003, 0., 7.19424477e-003, 0., 0., 0., 1.43884895e-002, - 0., 7.19424477e-003, 0., 7.19424477e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.43884895e-002, 0., 0., 0., 7.19424477e-003, 0., - 7.19424477e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.00000038e-003, 0., 0., 8.00000038e-003, - 8.00000038e-003, 0., 0., 8.00000038e-003, 0., 0., 0., - 8.00000038e-003, 2.40000002e-002, 0., 0., 1.60000008e-002, 0., - 1.60000008e-002, 0., 0., 1.60000008e-002, 0., 4.00000028e-002, - 8.00000038e-003, 8.00000038e-003, 0., 1.60000008e-002, 0., 0., - 8.00000038e-003, 0., 2.40000002e-002, 0., 8.00000038e-003, - 8.00000038e-003, 8.00000038e-003, 0., 0., 8.00000038e-003, 0., 0., - 0., 1.60000008e-002, 8.00000038e-003, 0., 0., 8.00000038e-003, - 8.00000038e-003, 8.00000038e-003, 0., 0., 1.60000008e-002, 0., - 8.00000038e-003, 0., 8.00000038e-003, 0., 0., 0., 0., 0., 0., - 8.00000038e-003, 2.40000002e-002, 8.00000038e-003, 0., 0., 0., 0., - 8.00000038e-003, 1.60000008e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.00000038e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.00000038e-003, - 8.00000038e-003, 0., 0., 0., 8.00000038e-003, 0., 0., - 8.00000038e-003, 0., 0., 0., 8.00000038e-003, 0., 1.60000008e-002, - 0., 1.60000008e-002, 0., 0., 0., 8.00000038e-003, 0., - 4.80000004e-002, 0., 0., 0., 1.60000008e-002, 1.60000008e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.00000038e-003, 0., - 8.00000038e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.00000038e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 8.00000038e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.00000038e-003, 0., 0., 0., 0., - 8.00000038e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.00000038e-003, 0., 0., 0., 8.00000038e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 4.00000028e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.00000038e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.00000038e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.00000038e-003, 0., 0., 8.00000038e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.60000008e-002, 0., 0., 8.00000038e-003, - 1.60000008e-002, 0., 0., 0., 8.00000038e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.60000008e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.00000038e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.00000038e-003, 0., 0., 0., 8.00000038e-003, 1.60000008e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.00000038e-003, 0., 8.00000038e-003, 0., 0., 8.00000038e-003, - 8.00000038e-003, 0., 0., 0., 0., 8.00000038e-003, 0., 0., 0., 0., - 0., 0., 8.00000038e-003, 0., 8.00000038e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.00000038e-003, 0., 0., 0., 0., 0., 8.00000038e-003, 0., - 8.00000038e-003, 8.00000038e-003, 0., 0., 0., 0., 0., 0., 0., - 8.00000038e-003, 0., 0., 0., 0., 0., 0., 8.00000038e-003, 0., 0., - 0., 8.00000038e-003, 0., 0., 2.40000002e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.00000038e-003, 0., 0., 0., 0., 0., 0., 8.00000038e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 8.00000038e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.00000038e-003, 0., 0., - 8.00000038e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.00000038e-003, 0., 0., 8.00000038e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 8.00000038e-003, 0., 0., 0., 0., 0., - 8.19672085e-003, 2.45901626e-002, 8.19672085e-003, - 8.19672085e-003, 0., 2.45901626e-002, 0., 0., 1.63934417e-002, - 1.63934417e-002, 0., 0., 8.19672085e-003, 0., 0., 0., 0., 0., 0., - 0., 8.19672085e-003, 0., 0., 0., 0., 0., 1.63934417e-002, 0., - 2.45901626e-002, 0., 0., 8.19672085e-003, 0., 0., 0., 0., 0., 0., - 2.45901626e-002, 8.19672085e-003, 0., 0., 0., 0., 0., - 8.19672085e-003, 0., 1.63934417e-002, 1.63934417e-002, 0., 0., 0., - 0., 0., 8.19672085e-003, 0., 0., 8.19672085e-003, 0., - 8.19672085e-003, 8.19672085e-003, 0., 8.19672085e-003, 0., - 2.45901626e-002, 8.19672085e-003, 8.19672085e-003, 0., 0., 0., - 8.19672085e-003, 0., 8.19672085e-003, 0., 0., 0., 0., - 8.19672085e-003, 0., 8.19672085e-003, 0., 0., 8.19672085e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.63934417e-002, 0., 0., 0., 0., - 0., 0., 8.19672085e-003, 8.19672085e-003, 8.19672085e-003, 0., 0., - 8.19672085e-003, 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., - 0., 0., 1.63934417e-002, 0., 1.63934417e-002, 0., 8.19672085e-003, - 0., 0., 0., 0., 0., 2.45901626e-002, 0., 0., 8.19672085e-003, - 8.19672085e-003, 0., 0., 0., 0., 1.63934417e-002, 8.19672085e-003, - 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., - 3.27868834e-002, 0., 0., 8.19672085e-003, 0., 0., 0., 0., 0., 0., - 8.19672085e-003, 0., 0., 0., 8.19672085e-003, 1.63934417e-002, - 8.19672085e-003, 0., 1.63934417e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.19672085e-003, 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, - 1.63934417e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.19672085e-003, 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.19672085e-003, 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., - 8.19672085e-003, 0., 8.19672085e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.19672085e-003, 0., 0., 8.19672085e-003, 0., 0., 0., - 8.19672085e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.63934417e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.19672085e-003, 0., 0., 0., 1.63934417e-002, 0., 0., 0., 0., - 8.19672085e-003, 8.19672085e-003, 8.19672085e-003, - 8.19672085e-003, 0., 0., 8.19672085e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.19672085e-003, 0., 8.19672085e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., 8.19672085e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., 0., 0., 0., - 0., 0., 0., 8.19672085e-003, 0., 8.19672085e-003, 8.19672085e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 8.19672085e-003, 0., - 8.19672085e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.63934417e-002, 0., 0., 8.19672085e-003, 0., 0., 0., 0., - 8.19672085e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.19672085e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.19672085e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.99999993e-002, 9.99999978e-003, 0., 0., 0., 9.99999978e-003, 0., - 0., 9.99999978e-003, 9.99999978e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.99999978e-003, 0., 0., 9.99999978e-003, 9.99999978e-003, - 0., 9.99999978e-003, 0., 0., 0., 0., 0., 9.99999978e-003, 0., 0., - 9.99999978e-003, 0., 9.99999978e-003, 0., 0., 0., 9.99999978e-003, - 0., 0., 0., 0., 1.99999996e-002, 0., 0., 9.99999978e-003, 0., - 1.99999996e-002, 9.99999978e-003, 3.99999991e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 1.99999996e-002, 0., 0., 0., 0., 0., 0., 0., - 1.99999996e-002, 0., 0., 0., 0., 9.99999978e-003, 0., 0., 0., 0., - 0., 0., 9.99999978e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 9.99999978e-003, 0., 9.99999978e-003, 0., 0., 0., 0., 0., - 9.99999978e-003, 0., 9.99999978e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.99999978e-003, 0., 1.99999996e-002, - 9.99999978e-003, 9.99999978e-003, 0., 0., 0., 0., 0., - 2.99999993e-002, 0., 0., 0., 7.00000003e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.99999978e-003, 0., 0., 0., 0., 0., - 9.99999978e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 2.99999993e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.99999978e-003, 0., 0., - 9.99999978e-003, 0., 0., 0., 0., 9.99999978e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.99999978e-003, 0., 0., 0., 0., 0., 9.99999978e-003, 0., - 9.99999978e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.99999996e-002, 0., 0., 9.99999978e-003, 0., 9.99999978e-003, - 1.99999996e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.99999978e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.99999978e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.99999978e-003, 9.99999978e-003, - 0., 0., 9.99999978e-003, 1.99999996e-002, 9.99999978e-003, 0., 0., - 1.99999996e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.99999978e-003, 0., 0., 0., 0., 0., 1.99999996e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.99999996e-002, - 9.99999978e-003, 9.99999978e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.99999978e-003, 9.99999978e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.99999996e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.99999978e-003, 0., 0., 0., 0., 0., 9.99999978e-003, - 0., 0., 0., 0., 0., 0., 0., 9.99999978e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.99999978e-003, 0., 0., 0., 0., 0., 9.99999978e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.99999978e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.99999978e-003, - 0., 9.99999978e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.99999978e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.99999996e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.99999978e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 9.09090880e-003, 9.09090880e-003, 0., 0., 0., 0., - 0., 1.81818176e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 9.09090880e-003, 9.09090880e-003, 0., - 2.72727273e-002, 0., 0., 0., 9.09090880e-003, 0., 0., - 9.09090880e-003, 0., 0., 0., 0., 9.09090880e-003, 0., 0., - 1.81818176e-002, 1.81818176e-002, 0., 0., 0., 1.81818176e-002, 0., - 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., 9.09090880e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, 9.09090880e-003, - 1.81818176e-002, 0., 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.81818176e-002, 0., 0., 0., 0., 0., 1.81818176e-002, 0., - 9.09090880e-003, 0., 9.09090880e-003, 0., 0., 9.09090880e-003, 0., - 0., 0., 9.09090880e-003, 0., 0., 0., 0., 9.09090880e-003, - 9.09090880e-003, 9.09090880e-003, 0., 0., 1.81818176e-002, 0., 0., - 0., 0., 0., 9.09090880e-003, 0., 9.09090880e-003, 0., 0., 0., 0., - 1.81818176e-002, 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.09090880e-003, 0., 9.09090880e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., - 0., 0., 9.09090880e-003, 9.09090880e-003, 9.09090880e-003, - 1.81818176e-002, 0., 0., 0., 0., 0., 9.09090880e-003, 0., - 1.81818176e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.81818176e-002, 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.81818176e-002, 0., 0., - 9.09090880e-003, 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, - 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 0., 9.09090880e-003, 0., 0., 0., 0., 0., - 1.81818176e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, - 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.81818176e-002, 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.81818176e-002, 0., 0., 0., 9.09090880e-003, 0., 0., - 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 0., 0., 1.81818176e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.81818176e-002, 0., 0., - 0., 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.09090880e-003, 0., 0., 9.09090880e-003, 0., 0., 0., - 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 1.81818176e-002, 0., - 9.09090880e-003, 0., 0., 0., 0., 0., 0., 1.81818176e-002, 0., 0., - 0., 9.09090880e-003, 0., 0., 0., 0., 0., 9.09090880e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.09090880e-003, - 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., 9.09090880e-003, 0., - 9.09090880e-003, 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.09090880e-003, 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.09090880e-003, 0., 9.09090880e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 9.09090880e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.09090880e-003, 3.70370373e-002, 9.25925933e-003, - 1.85185187e-002, 9.25925933e-003, 9.25925933e-003, - 1.85185187e-002, 0., 9.25925933e-003, 9.25925933e-003, - 2.77777780e-002, 1.85185187e-002, 0., 0., 9.25925933e-003, 0., 0., - 0., 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., 9.25925933e-003, - 2.77777780e-002, 0., 9.25925933e-003, 9.25925933e-003, 0., 0., 0., - 0., 0., 9.25925933e-003, 0., 0., 0., 1.85185187e-002, 0., 0., 0., - 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., - 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., 0., 1.85185187e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, - 9.25925933e-003, 9.25925933e-003, 0., 9.25925933e-003, 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.77777780e-002, 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., - 9.25925933e-003, 1.85185187e-002, 0., 0., 1.85185187e-002, - 1.85185187e-002, 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., - 9.25925933e-003, 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., - 0., 0., 1.85185187e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 9.25925933e-003, 0., 0., 9.25925933e-003, 0., - 9.25925933e-003, 0., 9.25925933e-003, 0., 0., 0., 9.25925933e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., - 0., 0., 9.25925933e-003, 0., 0., 0., 0., 9.25925933e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., 0., - 0., 9.25925933e-003, 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 9.25925933e-003, 0., 0., 9.25925933e-003, 0., 0., 0., 0., - 0., 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 9.25925933e-003, 0., 0., 9.25925933e-003, 0., 0., - 0., 0., 0., 9.25925933e-003, 0., 0., 0., 9.25925933e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.77777780e-002, 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 9.25925933e-003, 0., 0., 0., 0., - 9.25925933e-003, 0., 9.25925933e-003, 0., 9.25925933e-003, 0., 0., - 9.25925933e-003, 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., 9.25925933e-003, - 0., 0., 9.25925933e-003, 1.85185187e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., - 0., 0., 0., 9.25925933e-003, 0., 0., 0., 0., 9.25925933e-003, 0., - 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., - 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., - 4.23728824e-002, 0., 1.69491526e-002, 0., 0., 8.47457629e-003, - 8.47457629e-003, 0., 8.47457629e-003, 0., 0., 8.47457629e-003, - 1.69491526e-002, 1.69491526e-002, 0., 8.47457629e-003, - 8.47457629e-003, 0., 8.47457629e-003, 1.69491526e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.54237279e-002, 0., 0., 0., - 8.47457629e-003, 2.54237279e-002, 8.47457629e-003, 0., - 8.47457629e-003, 0., 0., 0., 8.47457629e-003, 0., 0., - 3.38983051e-002, 0., 0., 0., 0., 0., 0., 1.69491526e-002, 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., - 0., 0., 8.47457629e-003, 8.47457629e-003, 0., 0., 0., - 8.47457629e-003, 0., 8.47457629e-003, 0., 0., 0., 0., - 8.47457629e-003, 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 1.69491526e-002, 0., 0., 0., 0., - 4.23728824e-002, 0., 0., 0., 1.69491526e-002, 8.47457629e-003, 0., - 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., - 1.69491526e-002, 8.47457629e-003, 0., 0., 8.47457629e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 1.69491526e-002, 0., 0., 0., 0., - 2.54237279e-002, 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 1.69491526e-002, 0., 8.47457629e-003, - 0., 8.47457629e-003, 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.47457629e-003, 0., 0., 8.47457629e-003, 0., 0., 0., 0., - 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 1.69491526e-002, 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.69491526e-002, 0., - 8.47457629e-003, 0., 0., 0., 8.47457629e-003, 0., 0., - 8.47457629e-003, 2.54237279e-002, 0., 1.69491526e-002, 0., 0., 0., - 0., 0., 0., 0., 8.47457629e-003, 0., 3.38983051e-002, 0., 0., 0., - 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., - 1.69491526e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.69491526e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., - 0., 8.47457629e-003, 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.47457629e-003, - 0., 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.47457629e-003, 0., 0., 0., 0., 0., 0., - 8.47457629e-003, 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., - 0., 3.70370373e-002, 0., 4.62962985e-002, 0., 9.25925933e-003, 0., - 0., 0., 0., 9.25925933e-003, 0., 0., 0., 9.25925933e-003, - 2.77777780e-002, 0., 0., 1.85185187e-002, 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 9.25925933e-003, 9.25925933e-003, 0., - 9.25925933e-003, 0., 1.85185187e-002, 0., 0., 0., 0., - 4.62962985e-002, 9.25925933e-003, 0., 0., 0., 9.25925933e-003, 0., - 9.25925933e-003, 9.25925933e-003, 1.85185187e-002, - 2.77777780e-002, 0., 0., 1.85185187e-002, 9.25925933e-003, - 9.25925933e-003, 0., 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., - 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., - 1.85185187e-002, 0., 1.85185187e-002, 0., 9.25925933e-003, 0., 0., - 1.85185187e-002, 3.70370373e-002, 0., 0., 0., 1.85185187e-002, 0., - 0., 0., 0., 0., 0., 9.25925933e-003, 9.25925933e-003, 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 9.25925933e-003, 9.25925933e-003, 0., 0., 0., 0., - 0., 9.25925933e-003, 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., - 0., 0., 0., 1.85185187e-002, 0., 0., 0., 0., 0., 0., - 1.85185187e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.85185187e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.85185187e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.25925933e-003, 9.25925933e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.77777780e-002, 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 1.85185187e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.25925933e-003, 0., 9.25925933e-003, 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., - 9.25925933e-003, 0., 0., 9.25925933e-003, 0., 0., 9.25925933e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.25925933e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, 1.94174759e-002, - 9.70873795e-003, 0., 3.88349518e-002, 0., 0., 0., 9.70873795e-003, - 0., 0., 9.70873795e-003, 9.70873795e-003, 0., 0., 0., - 1.94174759e-002, 0., 1.94174759e-002, 0., 0., 2.91262139e-002, 0., - 0., 0., 1.94174759e-002, 0., 0., 0., 1.94174759e-002, - 2.91262139e-002, 0., 9.70873795e-003, 9.70873795e-003, 0., 0., - 1.94174759e-002, 1.94174759e-002, 0., 0., 9.70873795e-003, 0., 0., - 0., 9.70873795e-003, 0., 9.70873795e-003, 9.70873795e-003, 0., 0., - 9.70873795e-003, 9.70873795e-003, 0., 9.70873795e-003, 0., 0., 0., - 0., 9.70873795e-003, 0., 0., 9.70873795e-003, 0., 0., - 9.70873795e-003, 0., 0., 1.94174759e-002, 0., 9.70873795e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., 1.94174759e-002, 0., - 0., 0., 0., 0., 0., 9.70873795e-003, 0., 9.70873795e-003, 0., 0., - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 3.88349518e-002, - 0., 0., 0., 1.94174759e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, - 0., 0., 0., 1.94174759e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.94174759e-002, 0., 0., 0., - 0., 0., 0., 0., 9.70873795e-003, 0., 0., 9.70873795e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., - 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 9.70873795e-003, 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., 9.70873795e-003, - 0., 0., 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.94174759e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.70873795e-003, 0., 9.70873795e-003, 0., 0., 0., 0., - 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., - 9.70873795e-003, 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 9.70873795e-003, 0., 0., 0., 0., 9.70873795e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 2.91262139e-002, 0., 9.70873795e-003, 0., 0., 0., 0., 0., - 9.70873795e-003, 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.94174759e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.70873795e-003, 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 9.70873795e-003, 0., 9.70873795e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.57480314e-002, 7.87401572e-003, 0., 0., - 3.14960629e-002, 0., 0., 7.87401572e-003, 0., 0., 0., - 7.87401572e-003, 0., 1.57480314e-002, 7.87401572e-003, - 7.87401572e-003, 0., 7.87401572e-003, 0., 0., 7.87401572e-003, - 1.57480314e-002, 7.87401572e-003, 7.87401572e-003, - 7.87401572e-003, 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 7.87401572e-003, 7.87401572e-003, 0., 2.36220472e-002, 0., - 7.87401572e-003, 0., 7.87401572e-003, 0., 0., 7.87401572e-003, 0., - 0., 1.57480314e-002, 7.87401572e-003, 7.87401572e-003, - 7.87401572e-003, 7.87401572e-003, 0., 7.87401572e-003, - 1.57480314e-002, 0., 0., 7.87401572e-003, 0., 0., 0., - 1.57480314e-002, 7.87401572e-003, 7.87401572e-003, 0., 0., 0., - 7.87401572e-003, 0., 2.36220472e-002, 0., 0., 0., 7.87401572e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.87401572e-003, 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 1.57480314e-002, 0., - 7.87401572e-003, 7.87401572e-003, 0., 0., 0., 0., 1.57480314e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 1.57480314e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 7.87401572e-003, 0., 0., 7.87401572e-003, 0., 0., - 7.87401572e-003, 0., 2.36220472e-002, 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 7.87401572e-003, 0., 0., 0., - 1.57480314e-002, 0., 0., 0., 0., 7.87401572e-003, 7.87401572e-003, - 0., 7.87401572e-003, 0., 0., 7.87401572e-003, 0., 0., 0., 0., - 2.36220472e-002, 7.87401572e-003, 0., 0., 7.87401572e-003, - 1.57480314e-002, 0., 0., 0., 0., 7.87401572e-003, 1.57480314e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 7.87401572e-003, 0., 1.57480314e-002, - 1.57480314e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.57480314e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.57480314e-002, - 0., 0., 0., 0., 0., 0., 0., 3.14960629e-002, 0., 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 7.87401572e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.57480314e-002, 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 7.87401572e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.87401572e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.57480314e-002, - 7.87401572e-003, 0., 0., 7.87401572e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.87401572e-003, - 0., 0., 0., 0., 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 7.87401572e-003, 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.57480314e-002, 0., 7.87401572e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.87401572e-003, - 0., 0., 0., 0., 0., 0., 0., 7.87401572e-003, 0., 7.87401572e-003, - 0., 0., 7.87401572e-003, 0., 0., 1.29032256e-002, 6.45161280e-003, - 6.45161280e-003, 0., 0., 1.29032256e-002, 0., 0., 6.45161280e-003, - 6.45161280e-003, 6.45161280e-003, 0., 1.29032256e-002, 0., - 6.45161280e-003, 0., 1.29032256e-002, 0., 0., 1.29032256e-002, 0., - 0., 6.45161280e-003, 6.45161280e-003, 0., 1.29032256e-002, 0., 0., - 6.45161280e-003, 1.29032256e-002, 0., 6.45161280e-003, 0., - 6.45161280e-003, 6.45161280e-003, 6.45161280e-003, 0., 0., - 6.45161280e-003, 0., 6.45161280e-003, 0., 0., 6.45161280e-003, 0., - 1.29032256e-002, 1.29032256e-002, 6.45161280e-003, - 6.45161280e-003, 0., 0., 1.93548389e-002, 6.45161280e-003, 0., - 6.45161280e-003, 1.29032256e-002, 0., 0., 0., 6.45161280e-003, - 6.45161280e-003, 0., 1.29032256e-002, 6.45161280e-003, - 1.93548389e-002, 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., - 6.45161280e-003, 0., 1.29032256e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., - 0., 0., 0., 1.29032256e-002, 0., 0., 6.45161280e-003, 0., 0., 0., - 0., 0., 0., 6.45161280e-003, 0., 0., 0., 1.29032256e-002, 0., 0., - 0., 0., 0., 0., 6.45161280e-003, 1.29032256e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 1.93548389e-002, 0., 0., 0., 0., 0., 0., 0., - 6.45161280e-003, 0., 0., 6.45161280e-003, 0., 0., 6.45161280e-003, - 0., 0., 0., 0., 6.45161280e-003, 6.45161280e-003, 0., - 1.93548389e-002, 0., 6.45161280e-003, 6.45161280e-003, 0., 0., 0., - 3.22580636e-002, 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.45161280e-003, 0., 0., 1.29032256e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.45161280e-003, 0., 0., 6.45161280e-003, 0., 0., 6.45161280e-003, - 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.45161280e-003, 0., 0., 6.45161280e-003, 0., 6.45161280e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., - 6.45161280e-003, 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., 6.45161280e-003, 0., - 0., 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.45161280e-003, 0., 0., 0., 6.45161280e-003, 0., 0., 0., - 0., 6.45161280e-003, 6.45161280e-003, 0., 0., 1.29032256e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.45161280e-003, 0., 1.29032256e-002, 0., 6.45161280e-003, 0., - 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., 6.45161280e-003, 0., - 0., 6.45161280e-003, 0., 0., 0., 0., 6.45161280e-003, 0., 0., - 6.45161280e-003, 0., 1.29032256e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.29032256e-002, 0., 6.45161280e-003, 0., 0., 0., - 0., 6.45161280e-003, 0., 1.29032256e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., 6.45161280e-003, - 6.45161280e-003, 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., 6.45161280e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., - 1.29032256e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.45161280e-003, 0., 0., 0., 1.29032256e-002, 0., 0., 0., 0., - 0., 0., 6.45161280e-003, 6.45161280e-003, 6.45161280e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.29032256e-002, 0., 0., - 1.93548389e-002, 0., 0., 0., 0., 0., 0., 0., 6.45161280e-003, 0., - 0., 1.29032256e-002, 0., 0., 6.45161280e-003, 0., 0., 0., 0., 0., - 1.29032256e-002, 6.45161280e-003, 0., 0., 0., 0., 6.45161280e-003, - 6.45161280e-003, 0., 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, - 1.51515156e-002, 5.05050505e-003, 2.02020202e-002, - 5.05050505e-003, 0., 0., 1.01010101e-002, 5.05050505e-003, 0., 0., - 5.05050505e-003, 2.52525248e-002, 0., 5.05050505e-003, - 5.05050505e-003, 1.01010101e-002, 5.05050505e-003, 0., 0., 0., 0., - 1.01010101e-002, 0., 0., 0., 1.01010101e-002, 0., 5.05050505e-003, - 2.02020202e-002, 0., 5.05050505e-003, 0., 1.01010101e-002, 0., 0., - 5.05050505e-003, 0., 5.05050505e-003, 5.05050505e-003, 0., 0., - 5.05050505e-003, 1.51515156e-002, 0., 2.02020202e-002, 0., - 1.51515156e-002, 5.05050505e-003, 0., 0., 5.05050505e-003, - 5.05050505e-003, 5.05050505e-003, 5.05050505e-003, - 5.05050505e-003, 0., 5.05050505e-003, 0., 0., 5.05050505e-003, 0., - 1.01010101e-002, 0., 0., 5.05050505e-003, 0., 5.05050505e-003, - 1.01010101e-002, 0., 2.52525248e-002, 0., 5.05050505e-003, 0., - 5.05050505e-003, 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 5.05050505e-003, 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., - 5.05050505e-003, 5.05050505e-003, 1.01010101e-002, 0., 0., 0., - 1.51515156e-002, 1.01010101e-002, 5.05050505e-003, 0., 0., - 5.05050505e-003, 0., 0., 5.05050505e-003, 5.05050505e-003, - 5.05050505e-003, 0., 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.05050505e-003, 0., 0., 5.05050505e-003, - 5.05050505e-003, 0., 0., 4.54545468e-002, 0., 0., 0., 0., 0., - 5.05050505e-003, 0., 1.01010101e-002, 0., 0., 0., 0., - 5.05050505e-003, 5.05050505e-003, 5.05050505e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., 5.05050505e-003, - 0., 1.01010101e-002, 0., 0., 5.05050505e-003, 5.05050505e-003, 0., - 0., 0., 1.01010101e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.01010101e-002, 0., 0., 0., 0., 0., 5.05050505e-003, 0., - 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.05050505e-003, 5.05050505e-003, 5.05050505e-003, - 5.05050505e-003, 0., 0., 5.05050505e-003, 0., 0., 5.05050505e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 2.02020202e-002, - 1.01010101e-002, 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.05050505e-003, 5.05050505e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., - 5.05050505e-003, 0., 2.52525248e-002, 0., 5.05050505e-003, 0., 0., - 0., 5.05050505e-003, 0., 0., 1.01010101e-002, 0., 0., 0., 0., 0., - 0., 5.05050505e-003, 0., 0., 1.01010101e-002, 5.05050505e-003, - 5.05050505e-003, 0., 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., 0., 0., - 5.05050505e-003, 0., 5.05050505e-003, 0., 0., 5.05050505e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., 0., - 2.02020202e-002, 0., 5.05050505e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.01010101e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.05050505e-003, 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., 0., - 5.05050505e-003, 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., 0., - 5.05050505e-003, 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., - 1.01010101e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.05050505e-003, 0., 5.05050505e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 1.51515156e-002, 5.05050505e-003, 0., - 1.01010101e-002, 0., 0., 0., 0., 0., 0., 0., 1.01010101e-002, 0., - 0., 0., 0., 5.05050505e-003, 0., 5.05050505e-003, 5.05050505e-003, - 0., 0., 0., 0., 0., 0., 5.05050505e-003, 0., 0., 5.05050505e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.05050505e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.01010101e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.05050505e-003, 0., 0., 0., 5.05050505e-003, 0., - 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., 5.05050505e-003, 0., - 0., 0., 0., 5.05050505e-003, 0., 0., 0., 0., 0., 5.05050505e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.65289249e-002, 0., - 8.26446246e-003, 1.65289249e-002, 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 1.65289249e-002, 8.26446246e-003, 0., 0., - 8.26446246e-003, 0., 8.26446246e-003, 8.26446246e-003, 0., - 8.26446246e-003, 8.26446246e-003, 1.65289249e-002, - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 1.65289249e-002, - 1.65289249e-002, 0., 8.26446246e-003, 8.26446246e-003, 0., 0., 0., - 2.47933865e-002, 1.65289249e-002, 0., 0., 0., 2.47933865e-002, 0., - 8.26446246e-003, 0., 8.26446246e-003, 2.47933865e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.47933865e-002, 0., 0., 0., - 1.65289249e-002, 2.47933865e-002, 0., 0., 0., 8.26446246e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., - 0., 0., 0., 0., 8.26446246e-003, 0., 0., 8.26446246e-003, 0., 0., - 0., 0., 0., 1.65289249e-002, 0., 0., 0., 0., 8.26446246e-003, 0., - 0., 0., 1.65289249e-002, 0., 1.65289249e-002, 0., 0., 0., 0., 0., - 3.30578499e-002, 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., - 0., 0., 8.26446246e-003, 0., 0., 0., 0., 8.26446246e-003, 0., - 8.26446246e-003, 0., 0., 0., 1.65289249e-002, 0., 0., 0., 0., 0., - 0., 0., 8.26446246e-003, 0., 8.26446246e-003, 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 1.65289249e-002, 0., - 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.26446246e-003, 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.47933865e-002, 0., 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., - 8.26446246e-003, 0., 8.26446246e-003, 0., 0., 0., 8.26446246e-003, - 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.65289249e-002, 0., 0., 8.26446246e-003, - 8.26446246e-003, 0., 0., 0., 0., 1.65289249e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 2.47933865e-002, 8.26446246e-003, - 0., 0., 0., 0., 2.47933865e-002, 8.26446246e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., - 0., 0., 0., 0., 0., 1.65289249e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.26446246e-003, 0., 0., 8.26446246e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.26446246e-003, 0., 2.47933865e-002, 0., 0., - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 0., 0., 8.26446246e-003, 0., 8.26446246e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.26446246e-003, 0., 8.26446246e-003, 0., 0., 0., 0., 0., - 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.26446246e-003, 0., 0., 0., 0., 0., - 1.71428565e-002, 0., 0., 5.71428565e-003, 5.71428565e-003, - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 5.71428565e-003, - 1.14285713e-002, 0., 0., 1.14285713e-002, 0., 1.71428565e-002, 0., - 0., 0., 5.71428565e-003, 1.71428565e-002, 1.14285713e-002, - 5.71428565e-003, 0., 0., 1.71428565e-002, 1.71428565e-002, 0., - 5.71428565e-003, 0., 0., 1.71428565e-002, 1.71428565e-002, - 5.71428565e-003, 0., 0., 1.14285713e-002, 0., 0., 0., 0., - 1.71428565e-002, 5.71428565e-003, 0., 5.71428565e-003, 0., - 2.85714287e-002, 0., 0., 0., 0., 0., 5.71428565e-003, - 1.71428565e-002, 0., 1.14285713e-002, 5.71428565e-003, 0., 0., 0., - 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 5.71428565e-003, 0., - 5.71428565e-003, 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.14285713e-002, 0., 0., - 5.71428565e-003, 5.71428565e-003, 0., 5.71428565e-003, 0., - 1.14285713e-002, 0., 0., 5.71428565e-003, 0., 0., 5.71428565e-003, - 0., 0., 0., 0., 5.71428565e-003, 0., 5.71428565e-003, 0., - 1.14285713e-002, 0., 0., 0., 5.71428565e-003, 5.71428565e-003, 0., - 0., 1.14285713e-002, 0., 0., 0., 0., 2.28571426e-002, 0., 0., 0., - 5.71428575e-002, 0., 0., 1.71428565e-002, 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 1.14285713e-002, 0., - 1.14285713e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 5.71428565e-003, 1.71428565e-002, - 1.14285713e-002, 0., 0., 0., 5.71428565e-003, 5.71428565e-003, 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., - 0., 0., 5.71428565e-003, 5.71428565e-003, 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 1.14285713e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.71428565e-003, 5.71428565e-003, 0., 0., - 5.71428565e-003, 0., 0., 1.14285713e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 5.71428565e-003, 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., - 1.14285713e-002, 0., 5.71428565e-003, 1.14285713e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 1.14285713e-002, 0., 0., 5.71428565e-003, 0., 5.71428565e-003, 0., - 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.14285713e-002, 0., 0., 0., - 0., 5.71428565e-003, 0., 0., 0., 0., 0., 1.14285713e-002, 0., 0., - 0., 0., 0., 1.14285713e-002, 0., 5.71428565e-003, 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 1.14285713e-002, 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., - 0., 5.71428565e-003, 5.71428565e-003, 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.71428565e-003, 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, - 5.71428565e-003, 0., 5.71428565e-003, 5.71428565e-003, 0., 0., 0., - 0., 0., 0., 5.71428565e-003, 0., 0., 0., 5.71428565e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, 0., 5.71428565e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.71428565e-003, - 5.71428565e-003, 0., 0., 5.71428565e-003, 0., 5.71428565e-003, 0., - 0., 0., 0., 0., 0., 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.71428565e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.14942528e-002, 1.14942528e-002, 1.72413792e-002, - 5.74712642e-003, 5.74712642e-003, 0., 0., 5.74712642e-003, 0., 0., - 5.74712642e-003, 0., 1.72413792e-002, 0., 0., 0., 0., - 5.74712642e-003, 5.74712642e-003, 0., 0., 0., 1.14942528e-002, 0., - 0., 5.74712642e-003, 5.74712642e-003, 5.74712642e-003, - 1.14942528e-002, 1.14942528e-002, 5.74712642e-003, - 5.74712642e-003, 0., 0., 0., 0., 0., 0., 1.72413792e-002, - 5.74712642e-003, 0., 0., 0., 0., 5.74712642e-003, 1.72413792e-002, - 5.74712642e-003, 1.14942528e-002, 1.14942528e-002, 0., 0., 0., 0., - 5.74712642e-003, 0., 5.74712642e-003, 0., 5.74712642e-003, 0., - 1.72413792e-002, 0., 0., 5.74712642e-003, 5.74712642e-003, 0., 0., - 0., 0., 5.74712642e-003, 5.74712642e-003, 5.74712642e-003, 0., - 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.14942528e-002, 0., 0., 0., 0., 0., 0., 5.74712642e-003, - 5.74712642e-003, 0., 5.74712642e-003, 5.74712642e-003, - 5.74712642e-003, 0., 5.74712642e-003, 5.74712642e-003, 0., 0., 0., - 0., 5.74712642e-003, 0., 0., 0., 0., 5.74712642e-003, 0., 0., - 5.74712642e-003, 5.74712642e-003, 0., 0., 1.72413792e-002, 0., - 5.74712642e-003, 5.74712642e-003, 0., 0., 0., 0., 0., - 5.74712642e-003, 1.72413792e-002, 0., 0., 5.74712642e-003, - 2.87356321e-002, 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 1.14942528e-002, 5.74712642e-003, 5.74712642e-003, - 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 5.74712642e-003, 0., 0., 0., 0., - 5.74712642e-003, 0., 1.14942528e-002, 0., 0., 5.74712642e-003, 0., - 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.74712642e-003, 0., 1.14942528e-002, - 5.74712642e-003, 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 1.14942528e-002, 0., 0., 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., - 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.14942528e-002, 0., 0., 5.74712642e-003, 0., 0., 5.74712642e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., - 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., 1.14942528e-002, - 0., 0., 5.74712642e-003, 0., 0., 0., 0., 5.74712642e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 2.87356321e-002, 0., 0., 0., 1.14942528e-002, 0., 0., 0., 0., - 1.14942528e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.74712642e-003, 5.74712642e-003, 0., 1.14942528e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., - 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.14942528e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 5.74712642e-003, 0., 5.74712642e-003, - 1.14942528e-002, 0., 1.14942528e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.72413792e-002, 0., - 0., 5.74712642e-003, 0., 0., 0., 0., 0., 1.14942528e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., - 1.14942528e-002, 0., 0., 5.74712642e-003, 0., 0., 5.74712642e-003, - 5.74712642e-003, 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., - 5.74712642e-003, 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 1.14942528e-002, 0., 0., 1.14942528e-002, 0., - 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., - 5.74712642e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.14942528e-002, 0., 0., - 5.74712642e-003, 0., 0., 0., 5.74712642e-003, 0., 5.74712642e-003, - 0., 0., 0., 0., 0., 0., 5.74712642e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 1.14942528e-002, 0., 0., 0., 5.74712642e-003, - 1.14942528e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.14942528e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 1.40845068e-002, 2.11267602e-002, 7.04225339e-003, - 7.04225339e-003, 0., 1.40845068e-002, 0., 1.40845068e-002, - 7.04225339e-003, 0., 0., 7.04225339e-003, 0., 0., 7.04225339e-003, - 2.81690136e-002, 0., 0., 0., 7.04225339e-003, 0., 0., - 2.11267602e-002, 0., 0., 0., 7.04225339e-003, 0., 7.04225339e-003, - 0., 7.04225339e-003, 0., 0., 2.11267602e-002, 7.04225339e-003, 0., - 0., 0., 2.11267602e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.40845068e-002, 0., 0., 0., 0., 0., 0., 1.40845068e-002, - 7.04225339e-003, 0., 0., 0., 0., 0., 0., 2.11267602e-002, 0., - 7.04225339e-003, 0., 7.04225339e-003, 0., 0., 7.04225339e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., - 2.11267602e-002, 0., 0., 7.04225339e-003, 7.04225339e-003, 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, - 7.04225339e-003, 7.04225339e-003, 0., 0., 7.04225339e-003, - 7.04225339e-003, 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., - 2.81690136e-002, 0., 7.04225339e-003, 0., 3.52112651e-002, - 7.04225339e-003, 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 7.04225339e-003, 1.40845068e-002, 7.04225339e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., - 7.04225339e-003, 0., 0., 0., 1.40845068e-002, 0., 7.04225339e-003, - 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., - 7.04225339e-003, 0., 0., 0., 7.04225339e-003, 0., 0., 0., - 1.40845068e-002, 0., 0., 0., 0., 1.40845068e-002, 0., 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 0., 7.04225339e-003, - 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 2.11267602e-002, 7.04225339e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, - 1.40845068e-002, 0., 0., 7.04225339e-003, 0., 0., 7.04225339e-003, - 0., 0., 7.04225339e-003, 0., 0., 0., 7.04225339e-003, 0., 0., - 7.04225339e-003, 7.04225339e-003, 0., 7.04225339e-003, 0., 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., 7.04225339e-003, 0., - 0., 7.04225339e-003, 7.04225339e-003, 0., 0., 2.81690136e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.04225339e-003, 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., - 7.04225339e-003, 0., 0., 7.04225339e-003, 0., 0., 0., - 1.40845068e-002, 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.04225339e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 2.11267602e-002, 0., 0., 0., 0., 0., 0., - 0., 7.04225339e-003, 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., - 7.04225339e-003, 0., 7.04225339e-003, 0., 0., 0., 0., 0., - 7.04225339e-003, 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.04225339e-003, 0., 0., 0., 0., 0., - 1.40845068e-002, 0., 0., 0., 0., 0., 9.43396240e-003, - 1.88679248e-002, 0., 0., 1.88679248e-002, 0., 9.43396240e-003, 0., - 0., 0., 0., 9.43396240e-003, 9.43396240e-003, 0., 9.43396240e-003, - 0., 9.43396240e-003, 0., 0., 0., 0., 1.88679248e-002, - 9.43396240e-003, 2.83018872e-002, 0., 1.88679248e-002, 0., - 9.43396240e-003, 0., 0., 0., 0., 9.43396240e-003, 9.43396240e-003, - 9.43396240e-003, 0., 9.43396240e-003, 9.43396240e-003, - 9.43396240e-003, 0., 0., 0., 1.88679248e-002, 0., 0., - 9.43396240e-003, 0., 0., 0., 9.43396240e-003, 9.43396240e-003, 0., - 9.43396240e-003, 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 9.43396240e-003, 9.43396240e-003, 9.43396240e-003, 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 9.43396240e-003, 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., - 0., 0., 9.43396240e-003, 0., 0., 0., 9.43396240e-003, 0., - 9.43396240e-003, 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 9.43396240e-003, 0., - 0., 0., 0., 0., 0., 6.60377368e-002, 0., 9.43396240e-003, 0., - 5.66037744e-002, 0., 0., 9.43396240e-003, 0., 9.43396240e-003, 0., - 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 9.43396240e-003, - 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 1.88679248e-002, 0., 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 9.43396240e-003, 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, - 9.43396240e-003, 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 9.43396240e-003, 0., 1.88679248e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., - 0., 0., 1.88679248e-002, 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., - 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., - 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.88679248e-002, 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 9.43396240e-003, 0., 0., 1.88679248e-002, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.43396240e-003, 0., 0., 9.43396240e-003, - 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 1.88679248e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 9.43396240e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 9.43396240e-003, 9.43396240e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 9.43396240e-003, 0., 9.43396240e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 8.92857183e-003, 0., 1.78571437e-002, 0., 0., 8.92857183e-003, 0., - 0., 8.92857183e-003, 0., 8.92857183e-003, 0., 0., 1.78571437e-002, - 0., 0., 0., 8.92857183e-003, 0., 0., 0., 4.46428582e-002, 0., - 1.78571437e-002, 0., 0., 8.92857183e-003, 0., 2.67857164e-002, - 1.78571437e-002, 0., 0., 8.92857183e-003, 8.92857183e-003, 0., 0., - 0., 0., 8.92857183e-003, 0., 1.78571437e-002, 0., 1.78571437e-002, - 2.67857164e-002, 0., 1.78571437e-002, 0., 0., 0., 0., - 1.78571437e-002, 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 8.92857183e-003, 1.78571437e-002, 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 0., 0., 0., 8.92857183e-003, 0., 8.92857183e-003, 0., 0., 0., 0., - 0., 0., 0., 1.78571437e-002, 0., 0., 0., 3.57142873e-002, 0., 0., - 1.78571437e-002, 8.92857183e-003, 0., 1.78571437e-002, 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.92857183e-003, 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.92857183e-003, 4.46428582e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.78571437e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 1.78571437e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, - 8.92857183e-003, 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 8.92857183e-003, 8.92857183e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.78571437e-002, 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 8.92857183e-003, 0., 1.78571437e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.92857183e-003, 0., 8.92857183e-003, 0., - 8.92857183e-003, 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, 0., - 8.92857183e-003, 0., 0., 8.92857183e-003, 0., 0., 0., 0., - 2.67857164e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 8.92857183e-003, 0., 0., 8.92857183e-003, 0., 0., 0., 0., 0., - 0., 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.57894742e-003, 0., - 6.57894742e-003, 1.31578948e-002, 0., 6.57894742e-003, 0., 0., - 6.57894742e-003, 1.31578948e-002, 0., 0., 6.57894742e-003, 0., - 6.57894742e-003, 6.57894742e-003, 0., 6.57894742e-003, 0., 0., - 6.57894742e-003, 6.57894742e-003, 6.57894742e-003, 0., 0., - 6.57894742e-003, 0., 0., 0., 0., 0., 1.31578948e-002, 0., - 6.57894742e-003, 6.57894742e-003, 0., 0., 0., 6.57894742e-003, 0., - 0., 0., 0., 6.57894742e-003, 0., 0., 1.31578948e-002, 0., - 4.60526310e-002, 0., 0., 1.31578948e-002, 0., 0., 6.57894742e-003, - 6.57894742e-003, 0., 1.31578948e-002, 1.31578948e-002, - 1.31578948e-002, 0., 0., 6.57894742e-003, 1.31578948e-002, 0., 0., - 0., 0., 0., 0., 6.57894742e-003, 0., 6.57894742e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.57894742e-003, 0., 0., 0., 0., - 6.57894742e-003, 0., 0., 0., 6.57894742e-003, 0., 6.57894742e-003, - 6.57894742e-003, 0., 0., 1.97368413e-002, 6.57894742e-003, - 6.57894742e-003, 0., 0., 0., 6.57894742e-003, 0., 0., 0., 0., 0., - 0., 6.57894742e-003, 6.57894742e-003, 0., 0., 0., 6.57894742e-003, - 6.57894742e-003, 6.57894742e-003, 0., 1.31578948e-002, 0., 0., 0., - 0., 2.63157897e-002, 0., 0., 0., 2.63157897e-002, 6.57894742e-003, - 0., 0., 0., 0., 6.57894742e-003, 0., 0., 0., 0., 0., 0., - 6.57894742e-003, 6.57894742e-003, 6.57894742e-003, 0., 0., 0., - 1.31578948e-002, 6.57894742e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.57894742e-003, 0., 0., 1.31578948e-002, 1.97368413e-002, - 6.57894742e-003, 0., 0., 0., 0., 0., 6.57894742e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.57894742e-003, 0., - 0., 0., 1.31578948e-002, 6.57894742e-003, 0., 6.57894742e-003, - 6.57894742e-003, 0., 0., 0., 0., 6.57894742e-003, 0., - 6.57894742e-003, 0., 6.57894742e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.57894742e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.31578948e-002, 0., - 1.31578948e-002, 0., 1.31578948e-002, 0., 0., 0., 0., - 1.31578948e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.57894742e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.57894742e-003, 6.57894742e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.57894742e-003, 2.63157897e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.31578948e-002, 6.57894742e-003, 0., 6.57894742e-003, 0., 0., - 1.31578948e-002, 6.57894742e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.57894742e-003, 0., 0., 0., 6.57894742e-003, 0., 0., - 6.57894742e-003, 0., 0., 6.57894742e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.57894742e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.57894742e-003, 0., 0., 0., 0., 0., 0., - 6.57894742e-003, 6.57894742e-003, 0., 0., 0., 0., 0., 0., - 6.57894742e-003, 0., 0., 0., 0., 0., 0., 1.31578948e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.57894742e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.31578948e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 2.63157897e-002, 0., 0., 0., 0., 0., 6.57894742e-003, 0., 0., - 0., 0., 0., 0., 6.57894742e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.57894742e-003, 0., 0., 6.57894742e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.57894742e-003, - 0., 6.57894742e-003, 0., 0., 0., 0., 1.31578948e-002, 0., 0., 0., - 0., 0., 0., 0., 6.57894742e-003, 0., 6.57894742e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.57894742e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.57894742e-003, 0., 0., 0., 0., 6.57894742e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 6.13496918e-003, - 6.13496918e-003, 6.13496918e-003, 2.45398767e-002, 0., - 6.13496918e-003, 6.13496918e-003, 0., 0., 0., 1.22699384e-002, 0., - 0., 1.22699384e-002, 0., 0., 6.13496918e-003, 0., 1.22699384e-002, - 0., 1.84049085e-002, 0., 0., 6.13496918e-003, 6.13496918e-003, 0., - 0., 0., 0., 0., 0., 1.22699384e-002, 1.22699384e-002, - 1.22699384e-002, 0., 0., 1.84049085e-002, 0., 0., 0., - 6.13496918e-003, 1.84049085e-002, 0., 0., 0., 6.13496918e-003, - 6.13496918e-003, 0., 0., 0., 0., 0., 6.13496918e-003, - 6.13496918e-003, 0., 6.13496918e-003, 0., 6.13496918e-003, 0., 0., - 0., 1.22699384e-002, 6.13496918e-003, 0., 6.13496918e-003, 0., 0., - 0., 1.22699384e-002, 0., 0., 1.22699384e-002, 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 1.22699384e-002, 0., - 0., 0., 0., 3.06748450e-002, 0., 6.13496918e-003, 0., 0., 0., 0., - 0., 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 6.13496918e-003, 6.13496918e-003, 0., - 0., 0., 0., 1.84049085e-002, 6.13496918e-003, 0., 1.22699384e-002, - 3.68098170e-002, 0., 0., 0., 6.13496918e-003, 1.84049085e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.84049085e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 1.84049085e-002, - 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 2.45398767e-002, 0., 6.13496918e-003, 0., 0., - 6.13496918e-003, 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., - 6.13496918e-003, 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 2.45398767e-002, 0., 0., - 6.13496918e-003, 0., 6.13496918e-003, 0., 0., 0., 6.13496918e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., - 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 6.13496918e-003, 0., 6.13496918e-003, - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 6.13496918e-003, 6.13496918e-003, - 0., 0., 0., 1.22699384e-002, 0., 0., 6.13496918e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.22699384e-002, 0., 6.13496918e-003, 0., 0., 0., 6.13496918e-003, - 0., 0., 0., 1.84049085e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 1.22699384e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.13496918e-003, 0., 0., 6.13496918e-003, 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 1.84049085e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.22699384e-002, 0., 0., 0., 0., 0., 0., - 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 6.13496918e-003, - 1.22699384e-002, 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 6.13496918e-003, 0., 0., 6.13496918e-003, 6.13496918e-003, 0., - 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., 0., - 6.13496918e-003, 0., 0., 0., 0., 0., 0., 6.13496918e-003, 0., - 2.45398767e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.22699384e-002, 0., 6.13496918e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.13496918e-003, 0., 0., 0., 0., 6.13496918e-003, - 0., 0., 0., 0., 0., 7.63358781e-003, 7.63358781e-003, - 7.63358781e-003, 1.52671756e-002, 7.63358781e-003, 0., 0., - 7.63358781e-003, 7.63358781e-003, 0., 1.52671756e-002, - 7.63358781e-003, 0., 7.63358781e-003, 0., 7.63358781e-003, 0., 0., - 0., 0., 0., 7.63358781e-003, 7.63358781e-003, 0., 0., 0., - 3.05343512e-002, 0., 2.29007639e-002, 1.52671756e-002, 0., - 7.63358781e-003, 0., 7.63358781e-003, 7.63358781e-003, 0., - 7.63358781e-003, 0., 7.63358781e-003, 0., 0., 0., 0., - 1.52671756e-002, 0., 0., 0., 2.29007639e-002, 0., 0., 0., 0., - 7.63358781e-003, 0., 0., 0., 0., 7.63358781e-003, 0., - 7.63358781e-003, 0., 0., 7.63358781e-003, 7.63358781e-003, - 7.63358781e-003, 0., 7.63358781e-003, 0., 0., 0., 7.63358781e-003, - 0., 7.63358781e-003, 0., 0., 0., 0., 0., 0., 7.63358781e-003, 0., - 0., 0., 0., 0., 7.63358781e-003, 0., 0., 0., 7.63358781e-003, 0., - 0., 0., 0., 7.63358781e-003, 7.63358781e-003, 0., 0., 0., - 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.63358781e-003, 7.63358781e-003, 0., 0., 0., 0., 3.81679386e-002, - 7.63358781e-003, 7.63358781e-003, 0., 3.81679386e-002, - 1.52671756e-002, 0., 0., 1.52671756e-002, 7.63358781e-003, - 1.52671756e-002, 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 1.52671756e-002, 0., 0., 0., 0., 0., 0., 0., 7.63358781e-003, 0., - 1.52671756e-002, 0., 0., 0., 0., 0., 0., 7.63358781e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.63358781e-003, 0., 0., 0., 0., 0., 0., 1.52671756e-002, 0., 0., - 0., 0., 7.63358781e-003, 0., 0., 0., 0., 0., 0., 7.63358781e-003, - 0., 0., 0., 0., 0., 0., 7.63358781e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 3.05343512e-002, 0., 0., 0., - 0., 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.63358781e-003, 0., 0., 7.63358781e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.63358781e-003, 0., 0., 7.63358781e-003, 0., 0., 0., 0., - 7.63358781e-003, 0., 0., 7.63358781e-003, 0., 0., 7.63358781e-003, - 7.63358781e-003, 0., 0., 7.63358781e-003, 0., 0., 0., 0., 0., - 7.63358781e-003, 0., 0., 1.52671756e-002, 0., 0., 0., 0., - 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 7.63358781e-003, 7.63358781e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.52671756e-002, 0., - 0., 0., 0., 7.63358781e-003, 0., 0., 0., 0., 2.29007639e-002, 0., - 0., 0., 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 7.63358781e-003, 0., 0., 0., 0., 0., 0., 7.63358781e-003, 0., 0., - 0., 7.63358781e-003, 0., 0., 0., 0., 0., 0., 7.63358781e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.63358781e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 2.29007639e-002, 0., 0., 7.63358781e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.52671756e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.63358781e-003, 0., 0., 0., 7.63358781e-003, 0., 0., 0., - 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.63358781e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 7.63358781e-003, 0., 0., 0., 0., 0., 7.81250000e-003, - 0., 1.56250000e-002, 1.56250000e-002, 7.81250000e-003, - 3.12500000e-002, 0., 1.56250000e-002, 7.81250000e-003, 0., - 7.81250000e-003, 7.81250000e-003, 7.81250000e-003, 0., 0., - 7.81250000e-003, 7.81250000e-003, 7.81250000e-003, - 7.81250000e-003, 7.81250000e-003, 7.81250000e-003, - 7.81250000e-003, 0., 0., 0., 0., 7.81250000e-003, 0., 0., - 1.56250000e-002, 7.81250000e-003, 2.34375000e-002, 0., 0., 0., 0., - 0., 0., 2.34375000e-002, 0., 0., 7.81250000e-003, 0., - 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 2.34375000e-002, 0., - 7.81250000e-003, 7.81250000e-003, 0., 0., 1.56250000e-002, 0., 0., - 0., 0., 0., 0., 0., 7.81250000e-003, 7.81250000e-003, - 7.81250000e-003, 7.81250000e-003, 0., 0., 1.56250000e-002, - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.56250000e-002, 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.56250000e-002, 7.81250000e-003, 0., - 0., 7.81250000e-003, 0., 1.56250000e-002, 0., 0., 0., - 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., - 0., 7.81250000e-003, 7.81250000e-003, 0., 0., 0., 0., - 3.90625000e-002, 0., 0., 0., 2.34375000e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 7.81250000e-003, - 0., 0., 0., 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 0., - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.56250000e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.81250000e-003, 7.81250000e-003, 0., 0., 0., 0., 0., - 7.81250000e-003, 0., 0., 0., 0., 7.81250000e-003, 0., - 7.81250000e-003, 0., 0., 0., 7.81250000e-003, 0., 7.81250000e-003, - 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., - 1.56250000e-002, 0., 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, - 0., 0., 0., 2.34375000e-002, 0., 0., 0., 0., 0., 7.81250000e-003, - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, - 7.81250000e-003, 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., - 0., 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.81250000e-003, 0., 0., 0., 0., 7.81250000e-003, - 3.12500000e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 1.56250000e-002, 7.81250000e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., - 0., 0., 0., 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 7.81250000e-003, 0., 0., 0., 0., - 7.81250000e-003, 0., 0., 7.81250000e-003, 0., 0., 0., - 7.81250000e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.78571437e-002, 1.78571437e-002, 0., 8.92857183e-003, 0., 0., - 8.92857183e-003, 0., 0., 0., 8.92857183e-003, 8.92857183e-003, 0., - 0., 0., 0., 0., 8.92857183e-003, 8.92857183e-003, 0., - 8.92857183e-003, 0., 0., 0., 2.67857164e-002, 0., 0., - 2.67857164e-002, 0., 1.78571437e-002, 0., 2.67857164e-002, 0., 0., - 0., 0., 1.78571437e-002, 1.78571437e-002, 0., 0., 0., 0., 0., 0., - 3.57142873e-002, 0., 1.78571437e-002, 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 8.92857183e-003, 0., 0., 0., 0., - 8.92857183e-003, 0., 8.92857183e-003, 8.92857183e-003, 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 1.78571437e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 8.92857183e-003, 0., 0., 8.92857183e-003, 0., 0., - 0., 8.92857183e-003, 1.78571437e-002, 0., 0., 0., 8.92857183e-003, - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.78571437e-002, 0., 0., 0., 0., 0., 8.92857183e-003, 0., - 1.78571437e-002, 0., 0., 0., 1.78571437e-002, 8.92857183e-003, 0., - 0., 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, - 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 8.92857183e-003, 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 8.92857183e-003, 8.92857183e-003, 0., 0., 0., - 0., 0., 0., 1.78571437e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 5.35714328e-002, 0., 1.78571437e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., - 1.78571437e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 1.78571437e-002, 0., 0., - 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., 8.92857183e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, - 0., 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 8.92857183e-003, - 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.92857183e-003, 0., 0., 0., 0., 0., - 8.92857183e-003, 0., 0., 1.78571437e-002, 0., 0., 0., 0., 0., 0., - 0., 8.92857183e-003, 0., 0., 8.92857183e-003, 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.92857183e-003, 8.92857183e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.78571437e-002, 8.92857183e-003, 0., 0., 0., - 8.92857183e-003, 0., 0., 0., 0., 0., 6.80272095e-003, 0., - 6.80272095e-003, 0., 0., 4.08163257e-002, 0., 6.80272095e-003, - 1.36054419e-002, 6.80272095e-003, 0., 0., 6.80272095e-003, - 1.36054419e-002, 6.80272095e-003, 0., 6.80272095e-003, 0., 0., 0., - 0., 0., 6.80272095e-003, 0., 0., 6.80272095e-003, 2.04081628e-002, - 0., 6.80272095e-003, 0., 0., 6.80272095e-003, 0., 2.04081628e-002, - 6.80272095e-003, 0., 0., 0., 2.72108838e-002, 6.80272095e-003, 0., - 0., 0., 6.80272095e-003, 0., 0., 0., 0., 1.36054419e-002, - 6.80272095e-003, 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., - 0., 0., 0., 0., 6.80272095e-003, 0., 6.80272095e-003, 0., 0., 0., - 0., 6.80272095e-003, 0., 1.36054419e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., - 0., 6.80272095e-003, 0., 0., 0., 0., 0., 1.36054419e-002, - 1.36054419e-002, 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 2.04081628e-002, 0., - 0., 0., 0., 0., 0., 0., 1.36054419e-002, 0., 0., 6.80272095e-003, - 4.08163257e-002, 0., 0., 0., 0., 6.80272095e-003, 0., 0., - 2.04081628e-002, 0., 0., 0., 0., 6.80272095e-003, 1.36054419e-002, - 0., 0., 6.80272095e-003, 0., 6.80272095e-003, 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 6.80272095e-003, 0., - 6.80272095e-003, 0., 0., 6.80272095e-003, 4.08163257e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, - 1.36054419e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 4.76190448e-002, 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.36054419e-002, 0., 0., - 0., 0., 6.80272095e-003, 0., 1.36054419e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 6.80272095e-003, 0., - 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.80272095e-003, 0., 6.80272095e-003, 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 2.04081628e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., - 2.04081628e-002, 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., - 1.36054419e-002, 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., - 0., 6.80272095e-003, 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., - 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 2.04081628e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.36054419e-002, 0., 0., 0., 0., 0., 6.80272095e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., - 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., 1.36054419e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.36054419e-002, 0., 0., - 6.80272095e-003, 0., 6.80272095e-003, 0., 0., 6.80272095e-003, 0., - 0., 0., 0., 0., 1.36054419e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., 6.80272095e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., - 0., 0., 1.36054419e-002, 0., 6.80272095e-003, 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 6.80272095e-003, 0., 6.80272095e-003, - 0., 0., 1.36054419e-002, 0., 6.80272095e-003, 0., 0., 0., 0., - 1.36054419e-002, 1.36054419e-002, 1.36054419e-002, - 6.80272095e-003, 6.80272095e-003, 0., 6.80272095e-003, 0., 0., - 6.80272095e-003, 6.80272095e-003, 6.80272095e-003, 0., 0., 0., 0., - 1.36054419e-002, 6.80272095e-003, 6.80272095e-003, 0., 0., - 6.80272095e-003, 0., 6.80272095e-003, 0., 6.80272095e-003, - 6.80272095e-003, 0., 0., 6.80272095e-003, 6.80272095e-003, - 6.80272095e-003, 0., 0., 0., 1.36054419e-002, 3.40136066e-002, - 6.80272095e-003, 0., 0., 0., 1.36054419e-002, 6.80272095e-003, - 6.80272095e-003, 6.80272095e-003, 0., 0., 6.80272095e-003, 0., 0., - 6.80272095e-003, 0., 6.80272095e-003, 0., 0., 6.80272095e-003, - 6.80272095e-003, 0., 1.36054419e-002, 0., 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., - 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, - 1.36054419e-002, 0., 0., 0., 0., 1.36054419e-002, 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 6.80272095e-003, 0., 6.80272095e-003, - 0., 6.80272095e-003, 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., - 6.80272095e-003, 0., 1.36054419e-002, 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., - 2.04081628e-002, 2.04081628e-002, 0., 6.80272095e-003, 0., - 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.36054419e-002, 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., - 1.36054419e-002, 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, - 0., 0., 0., 0., 1.36054419e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 6.80272095e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, - 0., 0., 0., 6.80272095e-003, 6.80272095e-003, 6.80272095e-003, 0., - 6.80272095e-003, 0., 0., 6.80272095e-003, 6.80272095e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., - 6.80272095e-003, 1.36054419e-002, 6.80272095e-003, 0., - 1.36054419e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.80272095e-003, 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.36054419e-002, 0., 2.04081628e-002, 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 6.80272095e-003, 6.80272095e-003, - 6.80272095e-003, 0., 0., 6.80272095e-003, 6.80272095e-003, 0., - 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 3.40136066e-002, 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 6.80272095e-003, 0., 0., - 6.80272095e-003, 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., - 6.80272095e-003, 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.80272095e-003, 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., - 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.80272095e-003, 0., 0., 6.80272095e-003, 0., 0., 0., 0., - 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.80272095e-003, - 0., 0., 0., 0., 6.80272095e-003, 6.80272095e-003, 0., 0., 0., 0., - 0., 0., 6.80272095e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 6.80272095e-003, 0., 0., 0., 6.80272095e-003, 0., 1.66666675e-002, - 8.33333377e-003, 0., 0., 0., 8.33333377e-003, 0., 1.66666675e-002, - 0., 8.33333377e-003, 8.33333377e-003, 0., 1.66666675e-002, 0., - 8.33333377e-003, 8.33333377e-003, 8.33333377e-003, - 8.33333377e-003, 8.33333377e-003, 1.66666675e-002, 0., 0., - 1.66666675e-002, 8.33333377e-003, 8.33333377e-003, 0., 0., 0., 0., - 1.66666675e-002, 0., 0., 0., 8.33333377e-003, 0., 0., - 8.33333377e-003, 0., 0., 8.33333377e-003, 0., 8.33333377e-003, 0., - 8.33333377e-003, 0., 8.33333377e-003, 0., 8.33333377e-003, - 1.66666675e-002, 0., 0., 1.66666675e-002, 0., 0., 0., - 8.33333377e-003, 0., 8.33333377e-003, 1.66666675e-002, 0., 0., 0., - 0., 0., 0., 8.33333377e-003, 0., 8.33333377e-003, 8.33333377e-003, - 0., 8.33333377e-003, 0., 1.66666675e-002, 0., 0., 0., 0., - 8.33333377e-003, 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 8.33333377e-003, 0., 0., 0., 1.66666675e-002, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.66666675e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., 8.33333377e-003, - 8.33333377e-003, 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.33333377e-003, 8.33333377e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.66666675e-002, - 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 8.33333377e-003, 8.33333377e-003, 0., 0., - 8.33333377e-003, 0., 0., 8.33333377e-003, 0., 0., 0., 0., - 8.33333377e-003, 0., 8.33333377e-003, 1.66666675e-002, - 8.33333377e-003, 0., 0., 0., 8.33333377e-003, 0., 1.66666675e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 3.33333351e-002, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, 1.66666675e-002, 0., - 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 1.66666675e-002, 0., - 0., 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 0., 0., 0., 8.33333377e-003, 0., 0., - 8.33333377e-003, 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.33333377e-003, 0., 8.33333377e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 1.66666675e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.66666675e-002, 8.33333377e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 8.33333377e-003, 0., 0., 0., - 1.66666675e-002, 0., 0., 0., 0., 0., 0., 0., 1.66666675e-002, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 8.33333377e-003, - 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 8.33333377e-003, 0., 0., 0., 0., 0., 0., - 8.33333377e-003, 0., 0., 0., 0., 0., 0., 0., 5.10204071e-003, 0., - 0., 0., 1.53061226e-002, 1.02040814e-002, 0., 2.55102031e-002, - 5.10204071e-003, 1.02040814e-002, 5.10204071e-003, - 1.53061226e-002, 1.02040814e-002, 1.53061226e-002, - 1.53061226e-002, 0., 5.10204071e-003, 0., 1.02040814e-002, 0., 0., - 5.10204071e-003, 0., 0., 1.02040814e-002, 5.10204071e-003, - 5.10204071e-003, 0., 0., 0., 5.10204071e-003, 0., 5.10204071e-003, - 2.04081628e-002, 5.10204071e-003, 2.04081628e-002, - 5.10204071e-003, 0., 5.10204071e-003, 0., 1.02040814e-002, 0., - 5.10204071e-003, 1.02040814e-002, 1.02040814e-002, 0., - 1.53061226e-002, 0., 0., 5.10204071e-003, 0., 0., 0., 0., - 5.10204071e-003, 0., 0., 5.10204071e-003, 0., 0., 0., 0., 0., - 1.53061226e-002, 0., 5.10204071e-003, 0., 5.10204071e-003, - 5.10204071e-003, 5.10204071e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.10204071e-003, 0., 0., 0., 0., 5.10204071e-003, - 5.10204071e-003, 0., 0., 0., 0., 0., 0., 0., 5.10204071e-003, - 1.53061226e-002, 5.10204071e-003, 0., 0., 0., 0., 1.02040814e-002, - 0., 1.53061226e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.02040814e-002, 0., 0., 1.53061226e-002, 0., 0., 0., 0., - 1.02040814e-002, 0., 0., 0., 1.53061226e-002, 0., 0., 0., 0., - 5.10204071e-003, 1.53061226e-002, 0., 5.10204071e-003, 0., 0., 0., - 0., 5.10204071e-003, 0., 0., 0., 1.02040814e-002, 0., 0., - 5.10204071e-003, 0., 5.10204071e-003, 0., 0., 0., 5.10204071e-003, - 5.10204071e-003, 0., 0., 5.10204071e-003, 1.02040814e-002, 0., 0., - 0., 5.10204071e-003, 1.02040814e-002, 0., 0., 5.10204071e-003, 0., - 0., 0., 0., 0., 5.10204071e-003, 0., 0., 0., 0., 5.10204071e-003, - 5.10204071e-003, 0., 0., 0., 5.10204071e-003, 5.10204071e-003, 0., - 0., 0., 0., 5.10204071e-003, 5.10204071e-003, 0., 5.10204071e-003, - 0., 0., 0., 5.10204071e-003, 0., 0., 0., 1.53061226e-002, 0., 0., - 0., 0., 0., 0., 0., 5.10204071e-003, 0., 0., 0., 0., - 5.10204071e-003, 0., 0., 0., 5.10204071e-003, 0., 0., 0., - 5.10204071e-003, 0., 1.53061226e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 1.02040814e-002, 5.10204071e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.10204071e-003, 0., 5.10204071e-003, 0., 0., 0., - 0., 0., 5.10204071e-003, 0., 0., 0., 0., 5.10204071e-003, 0., 0., - 0., 0., 0., 0., 0., 1.02040814e-002, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.10204071e-003, 5.10204071e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 5.10204071e-003, 2.04081628e-002, 0., 0., 0., 0., - 0., 0., 0., 1.02040814e-002, 5.10204071e-003, 0., 0., 0., - 5.10204071e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 5.10204071e-003, 0., 5.10204071e-003, 5.10204071e-003, - 0., 5.10204071e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 1.53061226e-002, 0., 0., 0., 0., - 0., 5.10204071e-003, 0., 0., 0., 1.02040814e-002, 0., - 5.10204071e-003, 0., 0., 0., 0., 0., 0., 5.10204071e-003, 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.10204071e-003, 0., 0., 1.02040814e-002, 0., 0., 0., 0., - 0., 0., 0., 5.10204071e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.10204071e-003, - 5.10204071e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.10204071e-003, 0., 0., 0., 0., 0., 0., 0., 0., 1.02040814e-002, - 0., 0., 0., 1.02040814e-002, 5.10204071e-003, 5.10204071e-003, 0., - 0., 0., 0., 0., 0., 5.10204071e-003, 0., 0., 0., 0., 0., 0., - 5.10204071e-003, 0., 0., 5.10204071e-003, 0., 0., 5.10204071e-003, - 0., 1.53061226e-002, 0., 0., 0., 0., 0., 5.10204071e-003, 0., 0., - 0., 0., 0., 0., 0., 5.10204071e-003, 0., 0., 5.10204071e-003, 0., - 0., 5.10204071e-003, 0., 0., 0., 0., 0., 0., 5.10204071e-003, 0., - 0., 5.10204071e-003, 0., 0., 0., 1.02040814e-002, 0., 0., 0., 0., - 0., 5.10204071e-003, 0., 0., 0., 0., 5.10204071e-003, 0., 0., 0., - 0., 1.02040814e-002, 0., 0., 0., 5.10204071e-003, 5.10204071e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 1.02040814e-002, 0., 0., - 1.82926822e-002, 1.21951215e-002, 1.82926822e-002, - 1.21951215e-002, 2.43902430e-002, 0., 0., 1.21951215e-002, - 6.09756075e-003, 6.09756075e-003, 0., 6.09756075e-003, - 6.09756075e-003, 6.09756075e-003, 1.82926822e-002, 0., - 6.09756075e-003, 0., 1.82926822e-002, 0., 0., 1.21951215e-002, - 6.09756075e-003, 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 0., - 0., 0., 1.21951215e-002, 0., 6.09756075e-003, 1.21951215e-002, - 1.82926822e-002, 6.09756075e-003, 6.09756075e-003, 0., 0., 0., 0., - 6.09756075e-003, 1.82926822e-002, 1.82926822e-002, 0., 0., - 6.09756075e-003, 0., 0., 0., 6.09756075e-003, 0., 0., 0., - 6.09756075e-003, 0., 6.09756075e-003, 0., 0., 0., 6.09756075e-003, - 0., 0., 1.82926822e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 6.09756075e-003, 0., - 1.21951215e-002, 0., 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, - 6.09756075e-003, 6.09756075e-003, 1.21951215e-002, 0., 0., - 1.21951215e-002, 6.09756075e-003, 6.09756075e-003, 0., 0., 0., 0., - 0., 0., 0., 6.09756075e-003, 0., 6.09756075e-003, 0., - 6.09756075e-003, 6.09756075e-003, 0., 0., 0., 6.09756075e-003, 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 1.21951215e-002, 0., 0., - 6.09756075e-003, 6.09756075e-003, 1.21951215e-002, 0., 0., 0., - 6.09756075e-003, 6.09756075e-003, 0., 6.09756075e-003, 0., 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.21951215e-002, 1.21951215e-002, 0., 0., 6.09756075e-003, 0., 0., - 0., 0., 6.09756075e-003, 0., 6.09756075e-003, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.21951215e-002, 0., 1.21951215e-002, 0., - 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 6.09756075e-003, - 0., 6.09756075e-003, 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 6.09756075e-003, 0., 0., 6.09756075e-003, 0., 0., - 0., 0., 6.09756075e-003, 0., 1.21951215e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 0., - 6.09756075e-003, 0., 0., 0., 1.21951215e-002, 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 6.09756075e-003, 0., 6.09756075e-003, 0., 0., 6.09756075e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.09756075e-003, 2.43902430e-002, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 2.43902430e-002, 0., 6.09756075e-003, 0., 0., 0., 0., - 6.09756075e-003, 0., 0., 6.09756075e-003, 0., 6.09756075e-003, 0., - 0., 0., 0., 6.09756075e-003, 6.09756075e-003, 6.09756075e-003, 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 6.09756075e-003, 1.21951215e-002, - 0., 0., 0., 0., 0., 6.09756075e-003, 0., 6.09756075e-003, 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.09756075e-003, 0., 0., 0., 0., 6.09756075e-003, 0., 0., - 0., 0., 6.09756075e-003, 0., 0., 0., 0., 6.09756075e-003, 0., 0., - 0., 0., 0., 1.21951215e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., - 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., 0., 6.09756075e-003, - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., - 6.09756075e-003, 0., 0., 0., 0., 6.09756075e-003, 0., 0., 0., - 6.09756075e-003, 6.09756075e-003, 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 6.09756075e-003, 6.09756075e-003, 0., 0., 1.21951215e-002, - 0., 0., 0., 0., 0., 0., 0., 0., 6.09756075e-003, 0., - 1.66666675e-002, 1.11111114e-002, 1.11111114e-002, - 1.66666675e-002, 0., 0., 0., 0., 1.66666675e-002, 1.11111114e-002, - 0., 0., 0., 1.11111114e-002, 0., 5.55555569e-003, 0., 0., 0., 0., - 0., 0., 2.77777780e-002, 0., 5.55555569e-003, 5.55555569e-003, - 1.11111114e-002, 0., 5.55555569e-003, 1.11111114e-002, - 5.55555569e-003, 1.11111114e-002, 0., 2.22222228e-002, 0., 0., - 5.55555569e-003, 0., 0., 5.55555569e-003, 5.55555569e-003, - 5.55555569e-003, 0., 0., 0., 1.11111114e-002, 0., 5.55555569e-003, - 3.33333351e-002, 0., 5.55555569e-003, 5.55555569e-003, 0., - 5.55555569e-003, 1.11111114e-002, 0., 0., 0., 0., 0., 0., 0., - 1.11111114e-002, 0., 0., 0., 0., 1.11111114e-002, 1.66666675e-002, - 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 1.11111114e-002, 1.11111114e-002, 0., 0., 0., 0., - 1.11111114e-002, 5.55555569e-003, 0., 0., 0., 5.55555569e-003, 0., - 0., 0., 0., 5.55555569e-003, 0., 0., 1.11111114e-002, - 5.55555569e-003, 0., 0., 5.55555569e-003, 5.55555569e-003, - 1.11111114e-002, 5.55555569e-003, 0., 5.55555569e-003, 0., 0., - 1.66666675e-002, 0., 1.11111114e-002, 0., 0., 0., 2.77777780e-002, - 0., 0., 0., 0., 0., 5.55555569e-003, 5.55555569e-003, 0., 0., - 5.55555569e-003, 0., 0., 1.11111114e-002, 0., 0., 0., - 5.55555569e-003, 0., 0., 1.11111114e-002, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., - 1.11111114e-002, 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., - 0., 1.11111114e-002, 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 5.55555569e-003, 0., 0., 0., 0., 5.55555569e-003, 0., 0., - 0., 1.11111114e-002, 0., 0., 0., 5.55555569e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 1.11111114e-002, 0., 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 4.44444455e-002, 0., 5.55555569e-003, 0., 0., 0., - 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 1.66666675e-002, 5.55555569e-003, 5.55555569e-003, - 5.55555569e-003, 0., 5.55555569e-003, 0., 0., 0., 0., - 1.11111114e-002, 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 5.55555569e-003, - 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 1.11111114e-002, 0., 0., 0., 0., 5.55555569e-003, 0., - 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 1.11111114e-002, 0., 0., 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 1.66666675e-002, 0., 0., 5.55555569e-003, - 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 5.55555569e-003, 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., - 5.55555569e-003, 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., - 1.11111114e-002, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 1.11111114e-002, 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., - 5.55555569e-003, 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 5.55555569e-003, 5.55555569e-003, 0., 0., - 0., 5.55555569e-003, 0., 0., 0., 5.55555569e-003, 0., 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., - 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., - 1.66666675e-002, 5.55555569e-003, 0., 5.55555569e-003, 0., 0., 0., - 0., 0., 0., 0., 0., 0., 0., 5.55555569e-003, 0., 0., 0., 0., 0., - 0., 5.55555569e-003, 5.55555569e-003, 0., 0. ] diff --git a/samples/cpp/fabmap/vocab_small.yml b/samples/cpp/fabmap/vocab_small.yml deleted file mode 100644 index b3745db13..000000000 --- a/samples/cpp/fabmap/vocab_small.yml +++ /dev/null @@ -1,11632 +0,0 @@ -%YAML:1.0 -Vocabulary: !!opencv-matrix - rows: 545 - cols: 64 - dt: f - data: [ -2.23840773e-003, -1.45805170e-004, 5.83372777e-003, - 4.78582736e-003, -6.79995958e-003, -2.73266230e-002, - 3.78876217e-002, 4.05635685e-002, 2.39772238e-002, - -2.35542655e-002, 4.16107289e-002, 3.84643264e-002, - 4.04689985e-004, 3.61579529e-004, 4.87240031e-003, - 4.31159278e-003, -4.20301110e-002, 3.01776617e-003, - 5.38702793e-002, 3.66228931e-002, -1.40395328e-001, - -1.08054712e-001, 2.43867636e-001, 2.04767004e-001, - 2.39047572e-001, -1.60057992e-001, 2.80289233e-001, - 2.17854336e-001, 2.53522228e-002, -1.45573737e-002, - 4.25381958e-002, 3.34862769e-002, -2.99079753e-002, - 2.65644658e-002, 4.65271436e-002, 4.05995697e-002, - -2.59213448e-001, 2.83290684e-001, 3.11675638e-001, - 3.22893202e-001, 1.31321296e-001, 1.04262643e-001, - 2.19351202e-001, 2.08086759e-001, 3.54408175e-002, - -2.20329175e-003, 4.65276241e-002, 3.26152667e-002, - 2.98278494e-004, -6.70515292e-005, 4.70742583e-003, - 4.15264582e-003, -3.09823938e-002, 2.70887669e-002, - 4.53752875e-002, 4.35089581e-002, -5.31507330e-003, - 3.55863273e-002, 3.68984751e-002, 4.59275655e-002, - 1.82320224e-003, 1.15874631e-003, 5.14107989e-003, - 4.71368525e-003, -5.06616198e-004, 2.05147895e-003, - 3.35898064e-003, 4.74551553e-003, 5.69651311e-004, - 2.54006945e-002, 2.10890882e-002, 3.99157405e-002, - -5.01428777e-003, 2.40984391e-002, 2.27562878e-002, - 3.87184992e-002, -5.42908034e-004, 1.05822028e-003, - 3.28905950e-003, 4.05709771e-003, 2.12366469e-002, - 2.64870450e-002, 3.21609490e-002, 3.91589403e-002, - 7.07554519e-002, 2.95910597e-001, 1.54240519e-001, - 3.35204840e-001, -1.39442146e-001, 2.84468114e-001, - 2.11933002e-001, 3.30289334e-001, -3.15708704e-002, - 1.98965147e-002, 4.04352359e-002, 3.58315334e-002, - 2.42719781e-002, -1.79040283e-002, 3.41793112e-002, - 3.60317230e-002, 7.41999894e-002, -2.11056530e-001, - 1.61902398e-001, 2.87930667e-001, -1.50428280e-001, - -2.09661797e-001, 2.18079194e-001, 2.92788655e-001, - -3.38707343e-002, -1.30352816e-002, 4.28731889e-002, - 3.46324556e-002, -1.73740380e-004, -2.19622650e-003, - 3.61105334e-003, 5.24148811e-003, 1.59536241e-004, - -3.20830457e-002, 2.47771144e-002, 4.71860766e-002, - -6.94153551e-003, -2.99014747e-002, 2.62722224e-002, - 4.53941263e-002, -7.28746003e-004, -1.15212682e-003, - 3.75777180e-003, 4.47807414e-003, 6.39962265e-004, - -2.04029749e-003, 3.88975674e-003, 4.78605507e-003, - 6.55037118e-003, -2.74506100e-002, 2.98325233e-002, - 4.05248478e-002, 2.22890135e-002, -2.35787760e-002, - 3.69363390e-002, 4.05068770e-002, 1.07901613e-003, - -1.34838119e-004, 4.41030273e-003, 4.72284202e-003, - -1.30135901e-002, -1.21046929e-002, 2.60815900e-002, - 3.20601314e-002, -1.02646472e-002, -1.42910406e-001, - 1.34074569e-001, 2.06852108e-001, 1.82671413e-001, - -1.93959147e-001, 2.28636637e-001, 2.56080598e-001, - 3.26253287e-002, -2.24077180e-002, 4.24838476e-002, - 4.17442918e-002, -1.28750447e-002, 3.41011286e-002, - 2.84624826e-002, 4.71641980e-002, -2.17288490e-002, - 2.98778594e-001, 1.50262862e-001, 3.59291553e-001, - 1.49900407e-001, 3.13571513e-001, 2.10952431e-001, - 3.86784673e-001, 3.11150756e-002, 2.89170723e-002, - 4.11258191e-002, 4.89541627e-002, 1.84576958e-003, - 2.62546749e-003, 4.46394598e-003, 5.50895790e-003, - 6.29984960e-003, 3.28875147e-002, 2.99717803e-002, - 4.70964052e-002, 1.09767662e-002, 3.03741340e-002, - 2.85561457e-002, 4.38149162e-002, -5.61830275e-005, - 1.74538593e-003, 3.51823610e-003, 4.46260767e-003, - 4.64883233e-005, 5.40048059e-004, 4.64470731e-003, - 5.49857737e-003, 2.72302646e-002, 4.69881259e-002, - 4.20331582e-002, 7.07317963e-002, 2.14038026e-002, - 7.64405429e-002, 4.31087725e-002, 9.58721861e-002, - 1.43965997e-003, 6.74130674e-003, 5.44613181e-003, - 1.04570836e-002, 4.93450686e-002, 4.58037257e-002, - 6.49900213e-002, 5.80696575e-002, 3.06494772e-001, - 4.06743616e-001, 3.47406060e-001, 4.39883322e-001, - -9.67812445e-003, 1.98782235e-001, 1.43346861e-001, - 2.52882421e-001, -1.63476001e-002, 1.96603462e-002, - 3.09653431e-002, 3.33330110e-002, 6.35472685e-002, - 1.48298843e-002, 7.52776712e-002, 4.36739400e-002, - 1.36095494e-001, -3.95558178e-002, 2.02910945e-001, - 1.47791564e-001, -4.28706929e-002, -3.63306254e-002, - 1.03769362e-001, 1.01320960e-001, -1.56269651e-002, - -1.76056765e-003, 2.60859337e-002, 1.93906520e-002, - 3.98196001e-003, 8.07995966e-004, 7.30827404e-003, - 5.61313983e-003, 1.69261470e-002, -1.98163912e-002, - 3.23840007e-002, 3.54515836e-002, -7.70552433e-004, - -1.75696854e-002, 2.10676249e-002, 2.89358180e-002, - -5.75672602e-004, -6.54784264e-004, 3.29677900e-003, - 3.34690255e-003, -4.47988306e-004, -3.96635907e-004, - 3.71261546e-003, 3.28005594e-003, -1.52235792e-003, - -1.06495516e-002, 2.08811723e-002, 2.21505221e-002, - 7.22342450e-003, -1.07294219e-002, 2.27845330e-002, - 2.30260212e-002, 4.22174996e-003, 5.14141633e-004, - 6.54624728e-003, 4.31627501e-003, -1.51944747e-002, - 1.78262137e-003, 2.84746625e-002, 2.23664977e-002, - -2.93665081e-002, -3.15488577e-002, 1.06725529e-001, - 1.03039920e-001, 9.37158242e-002, -5.16995462e-003, - 1.49795786e-001, 1.24505728e-001, 5.87471463e-002, - 2.70866472e-002, 6.83943555e-002, 4.35000397e-002, - -1.81138590e-002, 2.04075500e-002, 3.58537175e-002, - 3.65797319e-002, -2.15239134e-002, 1.88728541e-001, - 1.55168250e-001, 2.44728342e-001, 3.54996055e-001, - 4.11725134e-001, 3.87277037e-001, 4.41488981e-001, - 4.46619876e-002, 6.23290949e-002, 6.35662302e-002, - 6.96495175e-002, 1.75462186e-003, 4.82114172e-003, - 6.19291048e-003, 7.63208140e-003, 2.36442797e-002, - 7.04132691e-002, 4.91044521e-002, 8.04637447e-002, - 3.99896726e-002, 4.86416966e-002, 5.33663444e-002, - 6.54476807e-002, -1.67146209e-003, -1.27220526e-003, - 4.96597355e-003, 4.37750714e-003, 9.66227381e-004, - -2.96014850e-003, 3.18601844e-003, 5.04885847e-003, - 2.96646322e-004, -2.80020218e-002, 1.99545678e-002, - 3.93892080e-002, 5.53441758e-004, -2.60542482e-002, - 2.06031390e-002, 3.82976718e-002, -1.04083400e-003, - -2.53630406e-003, 3.24764173e-003, 4.88804467e-003, - -1.12808356e-002, -3.83649841e-002, 2.16235816e-002, - 4.97278422e-002, -3.02229282e-002, -3.14814776e-001, - 1.10802069e-001, 3.65518302e-001, 3.99985053e-002, - -3.20346057e-001, 1.10861398e-001, 3.72951180e-001, - 9.67699662e-003, -4.15788814e-002, 2.01666486e-002, - 5.28978109e-002, -1.22842155e-002, 3.74811701e-002, - 2.17446107e-002, 4.73767519e-002, -4.65767384e-002, - 2.79764712e-001, 1.10101879e-001, 3.27185929e-001, - 1.82031281e-002, 2.50788867e-001, 1.02298789e-001, - 3.05724591e-001, 9.29293875e-003, 2.95719653e-002, - 1.93833020e-002, 4.38007712e-002, 6.90613408e-004, - 2.61855684e-003, 3.09589389e-003, 4.95227892e-003, - -3.72880558e-003, 2.91409306e-002, 2.12447308e-002, - 4.11369316e-002, -1.88071921e-003, 3.17554809e-002, - 2.25676186e-002, 4.30514589e-002, -7.30705215e-004, - 3.46329086e-003, 3.33467242e-003, 5.61719900e-003, - 1.11681614e-002, 2.10514311e-002, 1.97412595e-002, - 2.70309132e-002, -1.32659357e-003, 2.65401840e-001, - 3.01854145e-002, 3.12005579e-001, -4.93198261e-003, - 2.63774425e-001, 2.30455119e-002, 3.17578882e-001, - -1.09588567e-004, 3.38784605e-002, 4.45968518e-003, - 4.24446501e-002, 2.06787914e-001, 8.61708634e-003, - 2.98929423e-001, 4.71966006e-002, 7.99639598e-002, - 1.55997872e-001, 1.79967463e-001, 2.56197095e-001, - -1.64327305e-002, 1.79949984e-001, 9.07244906e-002, - 2.57656306e-001, -1.10678775e-002, 3.07309907e-002, - 2.03141756e-002, 4.18453403e-002, 2.13108167e-001, - 1.10010048e-002, 2.95161486e-001, 3.54198962e-002, - 6.90176785e-002, 9.03246645e-003, 1.62276179e-001, - 8.97402018e-002, -1.30499443e-002, -3.17033217e-003, - 7.09738731e-002, 6.09545149e-002, -7.68624758e-003, - 5.85683156e-004, 1.48472330e-002, 1.20609803e-002, - 2.52990015e-002, 2.77531939e-003, 3.68549712e-002, - 6.02000300e-003, 9.83278546e-003, -3.72600765e-003, - 2.36107055e-002, 1.33350240e-002, -3.34310881e-003, - -3.31213814e-003, 1.09420540e-002, 9.15892422e-003, - -4.93357307e-004, 5.88192306e-005, 1.88892102e-003, - 1.35786890e-003, 1.41431275e-003, 2.34915479e-003, - 4.66814078e-003, 5.41197229e-003, 3.40519659e-003, - 5.19851930e-002, 3.02428156e-002, 7.31882676e-002, - -2.40552519e-003, 4.28700484e-002, 2.53108777e-002, - 7.04635680e-002, 1.61312276e-003, 3.57554504e-003, - 4.10544593e-003, 8.55881814e-003, 4.32288796e-002, - 8.69551394e-003, 6.30870759e-002, 3.05743460e-002, - 2.54263043e-001, 2.66059548e-001, 3.21135759e-001, - 3.24895352e-001, -6.29717186e-002, 3.50725859e-001, - 1.30241290e-001, 3.82445246e-001, -1.42178191e-002, - 4.82835174e-002, 2.92357150e-002, 5.52612469e-002, - 4.81977016e-002, 5.53501258e-003, 7.02330172e-002, - 2.69483905e-002, 2.83668846e-001, -1.38835702e-002, - 3.24899167e-001, 1.16578944e-001, -2.49049701e-002, - -1.33585492e-002, 8.30738246e-002, 7.70169944e-002, - -1.31388754e-002, 2.51764292e-003, 2.21927613e-002, - 1.53826941e-002, 5.52905956e-003, 1.99346594e-003, - 9.19964071e-003, 4.25843941e-003, 3.39125283e-002, - -8.39921273e-003, 4.28450070e-002, 2.24305950e-002, - -2.35332322e-004, -7.90562015e-003, 1.51584297e-002, - 1.63971093e-002, -8.19770212e-004, -2.38286302e-004, - 2.60267640e-003, 2.13386375e-003, 2.38834647e-003, - -7.50835810e-004, 5.67667419e-003, 3.93949216e-003, - 3.46644372e-002, 2.24967487e-002, 4.52967361e-002, - 3.63315865e-002, -1.59158220e-003, 2.49080583e-002, - 2.77491845e-002, 3.58137079e-002, -1.14613364e-003, - 8.03122937e-004, 4.14975081e-003, 4.02934523e-003, - 3.35200913e-002, 4.02554730e-003, 4.85638604e-002, - 2.57301405e-002, 3.14588130e-001, 9.01470110e-002, - 3.49137962e-001, 1.81718394e-001, -9.10726637e-002, - 4.52047847e-002, 1.62447721e-001, 1.48703501e-001, - -2.54023466e-002, -3.57903284e-003, 3.72706726e-002, - 2.72013806e-002, 3.71433198e-002, -7.94685446e-003, - 4.90551926e-002, 2.96646543e-002, 2.51118809e-001, - -2.23607764e-001, 3.05163950e-001, 2.90560633e-001, - -1.23846576e-001, -2.62217790e-001, 1.99007213e-001, - 3.05309951e-001, -2.14355774e-002, -2.71279141e-002, - 3.81317772e-002, 4.03598920e-002, 1.23749452e-003, - -1.42892252e-003, 4.18460835e-003, 4.50564548e-003, - 1.11593055e-002, -4.12642173e-002, 3.16474959e-002, - 5.63254654e-002, -3.94308614e-003, -4.13183756e-002, - 2.99611446e-002, 5.87938353e-002, 8.41489644e-004, - -2.61648861e-003, 4.27282089e-003, 6.20577345e-003, - 2.15210093e-004, 2.83295522e-004, 4.13683895e-003, - 3.47144506e-003, 2.24962924e-002, 3.05757318e-002, - 3.82054634e-002, 3.97322699e-002, -1.23539129e-002, - 3.19534391e-002, 3.62576172e-002, 4.20490466e-002, - -2.24402105e-003, 2.73249403e-004, 5.04024280e-003, - 4.01930790e-003, 2.34371834e-002, 1.74649209e-002, - 3.88917923e-002, 2.94167884e-002, 2.59323210e-001, - 1.88362703e-001, 2.96269447e-001, 2.28626758e-001, - -2.10341185e-001, 1.39805213e-001, 2.79310644e-001, - 2.17759088e-001, -4.00440432e-002, 2.20531295e-003, - 5.03280796e-002, 3.05585340e-002, 3.67639363e-002, - 1.30418856e-002, 4.60822582e-002, 2.98898723e-002, - 1.21892810e-001, -4.19994332e-002, 2.10125163e-001, - 1.65723249e-001, -2.95721561e-001, -2.20592991e-001, - 3.34229052e-001, 2.60094047e-001, -2.93739606e-002, - -1.51236355e-002, 4.31582890e-002, 3.08249854e-002, - 2.64525320e-003, -6.36742101e-004, 5.07212384e-003, - 4.04421845e-003, -7.38360966e-003, -2.99136601e-002, - 3.33957970e-002, 3.87484021e-002, -3.64676863e-002, - -2.30928771e-002, 4.67360020e-002, 3.81140150e-002, - -3.60798673e-004, 4.20351309e-004, 4.12968360e-003, - 3.57644469e-003, -1.32571859e-003, 6.54139463e-003, - 5.13805589e-003, 9.62157920e-003, -9.01581533e-003, - 6.79364651e-002, 3.23920920e-002, 8.56782421e-002, - -1.68991219e-002, 5.62760048e-002, 3.73047180e-002, - 7.53489062e-002, -1.21674465e-003, 1.32728263e-003, - 5.51139517e-003, 5.83564024e-003, 1.75790899e-002, - 2.52142604e-002, 3.37456688e-002, 3.59918997e-002, - 2.54755560e-002, 2.28996128e-001, 1.38745755e-001, - 2.75865793e-001, -3.02511036e-001, 2.61498988e-001, - 3.62901509e-001, 3.19231212e-001, -5.25892489e-002, - 8.37134849e-003, 7.48365894e-002, 3.50196734e-002, - 1.71684306e-002, -5.33423852e-004, 3.02696563e-002, - 1.78647041e-002, 3.53834182e-002, -3.01275589e-002, - 1.18871912e-001, 9.66245532e-002, -3.01264703e-001, - -3.26512456e-002, 3.65526855e-001, 1.26873955e-001, - -5.87003939e-002, 3.29473522e-003, 8.32590237e-002, - 2.84877084e-002, 9.76657495e-004, -3.77851538e-004, - 3.82327568e-003, 2.91927136e-003, 2.34231842e-003, - -1.27439164e-002, 2.14447062e-002, 2.30826959e-002, - -3.90316918e-002, -1.45740090e-002, 5.10261171e-002, - 2.81349365e-002, -5.98082785e-003, 1.55485666e-003, - 1.03986179e-002, 4.43816138e-003, 4.24821349e-003, - -9.65262123e-004, 1.10907229e-002, 3.79467849e-003, - 2.48473436e-002, 1.57392081e-002, 4.22193334e-002, - 2.61627845e-002, -3.95157821e-002, 1.04935765e-002, - 5.26626520e-002, 2.66714115e-002, -4.14158311e-003, - -1.36935187e-003, 8.94255284e-003, 4.34175879e-003, - 6.31721616e-002, 3.60284955e-003, 9.83192474e-002, - 2.67235599e-002, 1.42045945e-001, 2.18820367e-002, - 2.39691734e-001, 1.14417590e-001, -3.28066468e-001, - -4.71286662e-003, 3.94637257e-001, 1.29491761e-001, - -2.79057734e-002, -1.54427066e-003, 6.27084598e-002, - 2.62700859e-002, 7.24681169e-002, 8.73946643e-004, - 9.77867767e-002, 3.16545591e-002, 4.09985445e-002, - -1.38429254e-001, 2.23940581e-001, 2.13532299e-001, - -2.77560622e-001, -1.55617386e-001, 3.87452602e-001, - 2.43753657e-001, -2.54227873e-002, -2.27912795e-003, - 5.80889918e-002, 3.07432916e-002, 3.89012555e-003, - -2.66907248e-003, 9.42590367e-003, 6.70169247e-003, - -1.00736963e-002, -5.92664964e-002, 4.12332974e-002, - 7.62227699e-002, -1.56080807e-002, -5.07808216e-002, - 4.35443111e-002, 6.94676265e-002, -8.86105583e-004, - -1.44870055e-003, 5.81600470e-003, 5.83413290e-003, - -3.73573927e-003, 9.78440046e-004, 6.85504545e-003, - 3.87491169e-003, -2.19224263e-002, -1.31376786e-002, - 3.95316258e-002, 2.70377696e-002, 6.23588450e-003, - -1.48362331e-002, 3.08888741e-002, 2.64019929e-002, - 2.77890521e-003, 2.45906354e-004, 5.71850827e-003, - 3.83244804e-003, -3.75685766e-002, 9.56751686e-003, - 5.19641526e-002, 2.76500080e-002, -2.36117184e-001, - -4.74616177e-002, 2.93891340e-001, 1.48707137e-001, - 1.18473612e-001, -2.94311438e-002, 2.02028409e-001, - 1.38572618e-001, 3.62572148e-002, 1.28303478e-002, - 4.90970910e-002, 3.13159376e-002, -2.91657858e-002, - 1.26565527e-002, 4.72497456e-002, 2.72762235e-002, - -3.18792224e-001, 1.28836066e-001, 3.76148909e-001, - 2.01063469e-001, 2.76111782e-001, 2.03172594e-001, - 3.19292009e-001, 2.48906136e-001, 2.48469692e-002, - 2.77657490e-002, 4.67640758e-002, 3.99161391e-002, - -1.45657687e-003, -2.75623839e-004, 5.32443076e-003, - 3.47040105e-003, -2.78863832e-002, 3.58197764e-002, - 5.04815690e-002, 4.59184386e-002, 3.41350622e-002, - 3.23147029e-002, 4.98251989e-002, 4.56066616e-002, - -3.50000919e-004, -1.01677484e-004, 5.13664400e-003, - 4.28624591e-003, 9.89927212e-004, 4.41623124e-004, - 3.43245221e-003, 3.06127290e-003, 1.89286843e-003, - 1.23480093e-002, 1.81654338e-002, 2.24024504e-002, - -1.35236196e-002, 1.29921837e-002, 2.60058437e-002, - 2.46718712e-002, -4.42694966e-003, -5.12551575e-004, - 7.96458218e-003, 3.86605365e-003, 1.91252120e-002, - -8.60670640e-004, 2.99247131e-002, 2.14081239e-002, - 3.09080184e-002, 3.07410993e-002, 9.96437967e-002, - 1.02420814e-001, -1.20130114e-001, 2.41689216e-002, - 1.75219774e-001, 1.20190367e-001, -5.40535562e-002, - -9.00703762e-003, 7.24968985e-002, 3.23046595e-002, - 1.93666220e-002, -4.92816344e-002, 3.42974775e-002, - 5.85045181e-002, 4.93223630e-002, -3.84806097e-001, - 1.38155013e-001, 4.22717363e-001, -1.56576321e-001, - -3.81195784e-001, 2.26639539e-001, 4.23939347e-001, - -4.79634181e-002, -3.52039896e-002, 6.88419566e-002, - 5.22088930e-002, -1.17197621e-003, -4.35381755e-003, - 3.86297260e-003, 9.28013865e-003, 3.68626497e-005, - -4.19749916e-002, 2.21945141e-002, 7.20882490e-002, - -3.62213259e-003, -3.90844308e-002, 2.49903947e-002, - 6.82056919e-002, 2.96633661e-005, -2.33535352e-003, - 4.47170343e-003, 6.94447849e-003, 1.26071787e-003, - 7.85933749e-004, 5.09115402e-003, 4.73064696e-003, - -3.12397424e-002, -2.21502539e-002, 4.69744205e-002, - 4.32929769e-002, -1.43592255e-002, -3.46800610e-002, - 4.09755073e-002, 4.52331826e-002, 3.37534957e-003, - -1.84589109e-004, 6.20780513e-003, 4.85807052e-003, - -2.21218057e-002, -3.14107873e-002, 4.37492281e-002, - 4.66236174e-002, -2.38626227e-001, -2.71817803e-001, - 2.90395647e-001, 3.23451370e-001, 1.04014061e-001, - -3.88676301e-002, 2.21614793e-001, 1.87451437e-001, - 5.04132770e-002, 1.61463600e-002, 5.95637336e-002, - 3.70900407e-002, -3.57033648e-002, -8.46630242e-003, - 4.74362187e-002, 3.89632881e-002, -6.24761321e-002, - 7.58465603e-002, 1.93312734e-001, 2.01685980e-001, - 2.85420448e-001, 2.22651139e-001, 3.18631142e-001, - 2.85730332e-001, 3.37439440e-002, 2.36872770e-002, - 5.02690077e-002, 4.14218083e-002, -1.25837862e-003, - 1.67496409e-003, 5.44222072e-003, 5.56924939e-003, - 1.29806548e-002, 4.36843336e-002, 3.88843454e-002, - 5.36862686e-002, 3.30824591e-002, 3.48556265e-002, - 4.84384596e-002, 4.96730916e-002, -2.74709164e-004, - -2.17946261e-004, 4.82326187e-003, 4.55866661e-003, - 1.10241421e-003, 1.05224561e-003, 4.70233988e-003, - 4.51703928e-003, 1.61316730e-002, 4.48866114e-002, - 3.96761335e-002, 5.65250367e-002, -1.83062181e-002, - 3.84612568e-002, 3.75689715e-002, 5.42800836e-002, - 5.89085219e-004, 9.13972210e-004, 4.46719211e-003, - 5.28019760e-003, 3.84759195e-002, 2.15557851e-002, - 5.16407378e-002, 3.62993367e-002, 2.48027727e-001, - 2.17347875e-001, 3.10197592e-001, 2.71540523e-001, - -2.07228765e-001, 2.75205165e-001, 2.55649835e-001, - 3.18704486e-001, -2.45770514e-002, 3.91682014e-002, - 4.25577983e-002, 5.02727777e-002, 4.18820567e-002, - -3.83256422e-003, 5.23491018e-002, 3.44806537e-002, - 1.82845876e-001, -1.91645190e-001, 2.38697797e-001, - 2.52401084e-001, -4.09929715e-002, -1.15990236e-001, - 1.51587695e-001, 1.93411648e-001, -2.86246035e-002, - 4.94819274e-003, 3.90940048e-002, 3.27391028e-002, - 1.23746169e-003, -5.26416115e-004, 4.78526950e-003, - 4.65767365e-003, 1.77884400e-002, -2.61192042e-002, - 3.51225324e-002, 4.27427478e-002, 1.02264890e-002, - -3.17160711e-002, 3.02369948e-002, 4.34940867e-002, - -6.91001944e-004, -2.04336853e-003, 4.19469038e-003, - 4.91001084e-003, 3.36124445e-004, -1.24260364e-003, - 4.62219771e-003, 4.72282479e-003, -3.42963054e-003, - -3.06325871e-002, 3.05556860e-002, 4.63433154e-002, - -1.23451324e-002, -4.16709110e-002, 3.45609896e-002, - 5.59019335e-002, -5.33102371e-004, -3.85896605e-003, - 5.10730967e-003, 6.59612054e-003, -3.57003286e-002, - -3.37480977e-002, 5.08378670e-002, 4.73210625e-002, - -1.23063542e-001, -3.55430156e-001, 2.40266591e-001, - 3.97224247e-001, -3.25407684e-002, -3.04835200e-001, - 2.13020399e-001, 3.57529998e-001, 3.71762775e-002, - -1.93175208e-002, 4.93055135e-002, 4.12396118e-002, - -4.39904034e-002, -1.56847090e-002, 5.47321849e-002, - 3.82458642e-002, -6.79925680e-002, 2.84791994e-003, - 1.90873414e-001, 1.84111685e-001, 1.20009258e-001, - 1.45440593e-001, 2.03442812e-001, 2.19590873e-001, - 3.40065658e-002, 1.89974885e-002, 4.81042899e-002, - 3.89660895e-002, -2.71839928e-003, 1.80459610e-004, - 5.80643490e-003, 5.00546210e-003, 5.18574705e-003, - 2.34277472e-002, 3.22721824e-002, 3.71964872e-002, - 1.98352113e-002, 1.80607196e-002, 3.81789580e-002, - 3.82592008e-002, 6.61502359e-004, -6.48299756e-004, - 5.40223625e-003, 5.16275968e-003, 2.19575968e-003, - -3.84818530e-003, 5.77654224e-003, 6.64186478e-003, - 1.70572996e-002, -5.64606600e-002, 3.98038067e-002, - 6.72801435e-002, 2.66474169e-002, -4.24297899e-002, - 3.97436656e-002, 5.44223711e-002, 3.21891916e-004, - -3.72202863e-004, 3.54885217e-003, 3.39363096e-003, - -1.59808490e-002, -2.03988515e-002, 3.52561288e-002, - 3.63372788e-002, -3.28741944e-003, -2.14131206e-001, - 1.71873078e-001, 2.78277099e-001, 3.32195997e-001, - -3.07503015e-001, 3.73307794e-001, 3.51594985e-001, - 4.04536650e-002, -2.35130750e-002, 5.24488837e-002, - 3.56360041e-002, -1.49691273e-002, 1.18477421e-003, - 3.05151269e-002, 2.42814738e-002, -3.28159817e-002, - 4.47103567e-002, 1.37695044e-001, 1.36804298e-001, - 2.38008112e-001, 1.35608558e-002, 2.87483454e-001, - 1.48942739e-001, 5.52896149e-002, -1.46915931e-002, - 6.55776858e-002, 3.28799784e-002, -1.80373565e-004, - 7.38456947e-005, 3.86283174e-003, 3.41505697e-003, - -5.29089360e-004, 1.36495447e-002, 2.46098954e-002, - 2.68652719e-002, 2.45620143e-002, 1.45513006e-002, - 3.77722085e-002, 2.94708479e-002, 4.65047127e-003, - -1.31051755e-003, 7.13860476e-003, 4.50263685e-003, - -6.98138494e-004, -6.38988335e-004, 4.31709737e-003, - 4.81814519e-003, -6.32832432e-003, -1.80236194e-002, - 2.70679407e-002, 3.37262005e-002, 4.54956805e-003, - -1.73884388e-002, 2.77924761e-002, 3.19622569e-002, - 1.56917039e-003, -3.17301630e-004, 4.84537426e-003, - 4.42272751e-003, -2.64026150e-002, 4.33786772e-003, - 3.96052785e-002, 3.77517752e-002, -5.51256314e-002, - -5.75430170e-002, 1.51520520e-001, 1.73935726e-001, - 7.56346807e-002, -4.17034887e-002, 1.51487157e-001, - 1.49002582e-001, 2.97785737e-002, 3.21124075e-003, - 4.19798531e-002, 3.20670232e-002, -2.55699493e-002, - 5.38893454e-002, 4.54515368e-002, 6.48109615e-002, - -1.27181083e-001, 4.16281521e-001, 2.47511879e-001, - 4.62140173e-001, 3.91330458e-002, 2.79386729e-001, - 2.24591926e-001, 3.39507073e-001, 3.22142653e-002, - 2.84682550e-002, 4.72158976e-002, 4.48138118e-002, - 1.80051115e-003, 9.84718325e-004, 4.72172815e-003, - 5.11968276e-003, -1.18690720e-002, 2.95928717e-002, - 3.16297673e-002, 4.78018112e-002, -1.17865587e-002, - 4.62970138e-002, 3.82096656e-002, 5.96044734e-002, - -3.24207242e-004, 3.17007839e-003, 5.42911002e-003, - 6.24179700e-003, -5.63234848e-004, 4.09285072e-003, - 4.67640255e-003, 8.23435467e-003, -4.17124573e-003, - 3.95206995e-002, 2.60561854e-002, 6.71207756e-002, - -2.89049838e-003, 2.93027963e-002, 2.31961012e-002, - 5.93198128e-002, 1.04806735e-003, 1.85548724e-003, - 3.89577844e-003, 7.21744169e-003, 3.74405496e-002, - 3.83486599e-002, 5.58295324e-002, 5.34969345e-002, - 5.13848811e-002, 3.77152205e-001, 1.79161489e-001, - 4.21310931e-001, -9.38462466e-002, 4.26250219e-001, - 1.80673182e-001, 4.61132646e-001, -2.76903715e-002, - 5.42913079e-002, 4.59185615e-002, 6.53212368e-002, - 3.80461365e-002, 4.67227353e-003, 5.38022555e-002, - 2.78558210e-002, 6.52928501e-002, -1.81847271e-002, - 1.30877972e-001, 1.01120085e-001, -4.55324352e-002, - -7.16318423e-003, 1.07543908e-001, 9.24111903e-002, - -2.86381412e-002, 8.35110433e-003, 4.15160768e-002, - 2.56457347e-002, 2.66725570e-003, 5.66570088e-004, - 5.77612128e-003, 3.40505037e-003, 8.67367722e-003, - -9.18610021e-003, 2.09087338e-002, 2.03439482e-002, - -4.21086559e-003, -8.37657321e-003, 1.71094947e-002, - 1.83828566e-002, -1.89272780e-003, 1.30746994e-004, - 4.35057702e-003, 2.81766360e-003, 5.03752381e-003, - -5.78335137e-004, 9.31086671e-003, 6.97596418e-003, - 4.04164344e-002, 4.16810699e-002, 6.19139560e-002, - 6.68606162e-002, 2.21190937e-002, 2.78675538e-002, - 3.34197208e-002, 3.78318913e-002, -7.01271580e-004, - 7.98847119e-004, 2.55434634e-003, 2.58044759e-003, - 1.02754585e-001, 1.17558232e-002, 1.13603055e-001, - 5.56210279e-002, 1.53082758e-001, 1.46154806e-001, - 2.31830373e-001, 2.14475483e-001, 1.41976622e-003, - 2.10046917e-002, 8.51256698e-002, 7.10659027e-002, - -1.28289526e-002, 5.96782993e-005, 2.05581840e-002, - 1.14321727e-002, 6.67123124e-002, -5.43668233e-002, - 8.49927366e-002, 6.90845847e-002, 3.73792082e-001, - -3.74246061e-001, 4.23202455e-001, 4.09823418e-001, - 6.28216378e-003, -3.11804190e-002, 9.31044072e-002, - 8.46788511e-002, -1.42851928e-002, -2.35565403e-003, - 2.25322954e-002, 1.31483134e-002, -7.87994184e-004, - 7.36919348e-004, 5.94646763e-003, 5.10097574e-003, - 8.43485892e-002, -4.58313189e-002, 9.50149223e-002, - 6.72127157e-002, 3.19486782e-002, -4.18054014e-002, - 4.76678535e-002, 5.17576784e-002, -6.41179504e-004, - -1.64614292e-003, 3.74805019e-003, 3.61942523e-003, - 6.58383535e-004, 1.18744955e-003, 3.97546357e-003, - 3.80331930e-003, -6.24101982e-003, 2.38983333e-002, - 2.67522056e-002, 3.45510505e-002, -3.65258381e-002, - 2.11754758e-002, 4.97307479e-002, 3.74160856e-002, - -3.30050499e-003, -1.00034196e-003, 6.96389098e-003, - 4.47908044e-003, 2.01375615e-002, -2.52593984e-003, - 3.25143449e-002, 2.36946493e-002, 1.01427771e-002, - 4.03900184e-002, 1.36013746e-001, 1.33404315e-001, - -3.30328941e-001, 5.18405624e-002, 3.79156023e-001, - 1.85245275e-001, -3.84104662e-002, -3.23035987e-003, - 5.69899604e-002, 2.88269054e-002, 1.84536688e-002, - -3.16967368e-002, 3.63216735e-002, 4.35001515e-002, - 9.01609883e-002, -2.19776675e-001, 1.76763177e-001, - 2.81991929e-001, -3.25162202e-001, -1.22363165e-001, - 3.82728875e-001, 2.47789726e-001, -3.68449837e-002, - -1.87987881e-003, 5.63869402e-002, 2.89910119e-002, - -1.33167021e-003, -2.67478940e-003, 4.98381862e-003, - 6.58852421e-003, 8.81632511e-003, -4.57292832e-002, - 3.44046503e-002, 6.35011047e-002, -1.66392755e-002, - -4.71162312e-002, 4.21529151e-002, 6.23699278e-002, - -2.00917549e-003, -2.84930080e-004, 5.68251917e-003, - 4.75370185e-003, 1.80544273e-003, -4.31471090e-005, - 4.86758444e-003, 2.91459356e-003, 2.80092675e-002, - 3.05272359e-002, 4.62446548e-002, 3.80837880e-002, - -3.45457494e-002, 3.04860473e-002, 4.68125977e-002, - 3.93562466e-002, -5.64482471e-004, 2.04025084e-004, - 4.28620446e-003, 3.34730628e-003, 2.40965299e-002, - 3.61315673e-003, 3.98608856e-002, 1.84947737e-002, - 3.31346989e-001, 8.23410749e-002, 3.72676909e-001, - 1.52649879e-001, -2.86314726e-001, 1.60884365e-001, - 3.26304823e-001, 2.00045675e-001, -2.53282264e-002, - 1.71123948e-002, 4.27132063e-002, 2.88287010e-002, - 2.81202495e-002, 5.76091977e-003, 4.26688828e-002, - 1.92351285e-002, 3.00343603e-001, -3.14961411e-002, - 3.36743325e-001, 1.19072802e-001, -1.67005897e-001, - -1.66400354e-002, 2.33381763e-001, 1.18663192e-001, - -3.68839502e-002, 1.16336532e-002, 4.93060723e-002, - 2.66845077e-002, 3.04342783e-003, 9.19921033e-004, - 5.58145763e-003, 2.89529050e-003, 3.07930037e-002, - -1.32069429e-002, 4.14950550e-002, 2.31444351e-002, - -1.24327969e-002, -1.46019198e-002, 3.19796540e-002, - 2.37175506e-002, -3.52738844e-003, 5.51524281e-004, - 5.91230812e-003, 3.33590480e-003, 1.37414376e-003, - -2.25896991e-004, 4.95774997e-003, 4.19051666e-003, - 1.69149917e-002, 2.49563754e-002, 3.55922431e-002, - 3.97829562e-002, -9.83540900e-003, 2.47731321e-002, - 3.10027618e-002, 4.03111428e-002, -6.17250684e-004, - 4.49854677e-004, 4.29366948e-003, 4.60455054e-003, - 3.02225314e-002, 1.32084824e-002, 4.46053632e-002, - 3.26861627e-002, 1.92729354e-001, 1.00732550e-001, - 2.55306721e-001, 2.15500534e-001, -1.08658172e-001, - 1.16004318e-001, 1.94621086e-001, 2.22346678e-001, - -2.88404003e-002, 1.07095484e-002, 4.17583510e-002, - 3.58034335e-002, 3.70168984e-002, -7.18389405e-003, - 4.71619964e-002, 3.74235623e-002, 8.39719456e-003, - -2.42681041e-001, 2.13923082e-001, 3.39251190e-001, - -5.01429923e-002, -3.69140714e-001, 1.87279329e-001, - 4.12515074e-001, -2.78191399e-002, -3.32804285e-002, - 4.05107811e-002, 4.79195490e-002, 5.36393374e-004, - -2.89842836e-003, 4.25136462e-003, 5.89225581e-003, - -1.11532211e-002, -3.07406280e-002, 2.90425643e-002, - 4.93610948e-002, -1.61928707e-003, -1.74246170e-002, - 2.26078443e-002, 4.07558121e-002, 6.98779768e-004, - -1.18141191e-003, 3.53922253e-003, 5.09616220e-003, - 8.82607303e-004, -4.95884684e-004, 4.13070386e-003, - 4.64667147e-003, -1.60062425e-002, -4.17196825e-002, - 3.12348008e-002, 5.73412031e-002, 1.47182005e-003, - -5.11823744e-002, 3.15971933e-002, 6.47349209e-002, - -1.32723816e-003, -3.07547441e-003, 4.82989522e-003, - 6.19664928e-003, -2.80217696e-002, -4.51532081e-002, - 4.94651347e-002, 6.31105155e-002, -2.06022292e-001, - -2.72125453e-001, 2.92908639e-001, 4.49570090e-001, - 1.07837409e-001, -2.24769861e-001, 2.14156285e-001, - 3.51343840e-001, 1.98722556e-002, -3.18982117e-002, - 3.96654233e-002, 4.88475747e-002, -3.08895539e-002, - -1.51829440e-002, 4.84469868e-002, 5.15550300e-002, - -9.20621678e-002, -5.02680466e-002, 1.96435809e-001, - 2.54790872e-001, 5.53626679e-002, -4.89128530e-002, - 1.52903080e-001, 1.94468543e-001, 2.39952896e-002, - -1.16555532e-002, 3.57371494e-002, 3.58544290e-002, - -1.70265825e-003, 2.08158192e-004, 5.40921651e-003, - 5.92229934e-003, -1.04794027e-002, 1.84995327e-002, - 3.10572367e-002, 3.93100083e-002, 2.65617343e-003, - 1.81969460e-002, 2.62126662e-002, 3.58002633e-002, - 1.27488864e-003, 7.31205335e-004, 4.46448429e-003, - 4.93388344e-003, 1.42980239e-003, 2.54960760e-004, - 4.61151032e-003, 4.36816551e-003, 1.36019299e-002, - 2.29205396e-002, 3.62480693e-002, 4.47757244e-002, - -1.17766894e-002, 2.11010724e-002, 3.61599997e-002, - 4.42413874e-002, -1.24310004e-003, 2.46367708e-004, - 4.53805830e-003, 4.21015918e-003, 1.25484597e-002, - -7.30976462e-003, 3.57345790e-002, 2.91567445e-002, - 1.69873387e-001, -1.24379210e-001, 2.72533834e-001, - 2.89070249e-001, -9.57392901e-002, -2.25275289e-002, - 2.89393932e-001, 2.48136163e-001, -1.73103735e-002, - -3.57852574e-003, 4.11753654e-002, 3.19498330e-002, - 1.12949805e-002, 4.45119990e-003, 3.52766626e-002, - 2.84482930e-002, 2.12300256e-001, 1.28947869e-001, - 2.95956880e-001, 2.99868524e-001, -1.88016951e-001, - -2.21467130e-002, 3.35298449e-001, 2.68390566e-001, - -1.10384226e-002, -8.51244107e-003, 3.85704264e-002, - 3.13261747e-002, 1.46122405e-003, -1.41291501e-004, - 4.71794000e-003, 4.10273857e-003, 1.39183011e-002, - -2.55074315e-002, 3.81155536e-002, 4.40104976e-002, - -2.22028643e-002, -1.84843093e-002, 4.16928791e-002, - 4.31742258e-002, 5.02285218e-007, 5.55108709e-004, - 4.44004964e-003, 4.12418507e-003, 3.87760974e-003, - -7.58353621e-004, 6.67272089e-003, 4.07037139e-003, - 4.31991257e-002, 2.79247928e-002, 5.56175113e-002, - 4.17700931e-002, 2.79648416e-003, 2.59406716e-002, - 2.67337002e-002, 3.61059569e-002, -1.49655752e-004, - 1.43592618e-003, 3.36773088e-003, 3.67088104e-003, - 4.02040482e-002, -2.41892692e-003, 5.51913828e-002, - 2.30305381e-002, 3.68978232e-001, 7.17703030e-002, - 4.09149617e-001, 1.56966045e-001, -4.06015068e-002, - 5.83019070e-002, 1.03540055e-001, 9.90400463e-002, - -1.22829778e-002, 4.86336928e-003, 2.31508855e-002, - 1.61370952e-002, 3.05507798e-002, -6.98052766e-003, - 4.80294079e-002, 2.33587082e-002, 4.28223491e-001, - -1.41305268e-001, 4.60701704e-001, 1.99027866e-001, - -3.46333012e-002, -5.09534553e-002, 1.07162304e-001, - 9.94921178e-002, -1.27677033e-002, -3.71547253e-003, - 2.36987844e-002, 1.59694050e-002, 1.69674703e-003, - 5.81638422e-004, 5.28557645e-003, 3.76073364e-003, - 5.40124327e-002, -3.32987309e-002, 6.52195737e-002, - 4.90081385e-002, 1.10864099e-002, -3.46896350e-002, - 3.31475288e-002, 4.53536734e-002, -2.40949681e-004, - -1.79581181e-003, 3.57653922e-003, 4.09992691e-003, - 4.50140331e-004, 1.62169209e-003, 5.26480749e-003, - 5.15386648e-003, -1.25963881e-003, 2.88252644e-002, - 3.38862613e-002, 4.58878353e-002, -9.84541979e-003, - 2.26681978e-002, 2.91514210e-002, 4.04687300e-002, - -3.81247606e-004, 5.20769856e-004, 3.88591806e-003, - 4.17396706e-003, 3.55546661e-002, 1.19367028e-002, - 5.63235246e-002, 3.67497839e-002, -6.59136251e-002, - 1.80359706e-001, 3.24767500e-001, 3.04279387e-001, - -1.36861622e-001, 9.75617990e-002, 2.50658244e-001, - 2.48833686e-001, -1.89363007e-002, 9.13301110e-003, - 3.70825306e-002, 2.92979572e-002, 3.22120376e-002, - -1.15756467e-002, 5.63854575e-002, 3.83141786e-002, - 5.04945368e-002, -9.48792621e-002, 3.36740494e-001, - 2.97641307e-001, -1.38091460e-001, 1.08720779e-001, - 2.73554504e-001, 3.03473830e-001, -2.75880061e-002, - 7.80153880e-003, 4.43335772e-002, 3.46074216e-002, - 7.69617211e-004, -9.65687868e-005, 5.53147960e-003, - 5.12566231e-003, 1.11859841e-002, -2.62650102e-002, - 4.08181325e-002, 5.49963787e-002, -6.84863748e-003, - -3.72366831e-002, 3.78905535e-002, 5.93900569e-002, - -1.94035145e-003, -4.46942431e-004, 5.41484123e-003, - 5.61271468e-003, -7.11588887e-004, -3.71292526e-006, - 5.91454282e-003, 3.47895687e-003, -2.89339870e-002, - -2.75948737e-002, 5.01510464e-002, 3.72860245e-002, - 4.70629185e-002, -2.51456369e-002, 6.01770431e-002, - 3.63556966e-002, 2.06766208e-003, 1.09235034e-003, - 5.72754769e-003, 3.20768752e-003, -2.97030061e-002, - -1.63633991e-002, 5.07555678e-002, 2.85181068e-002, - -2.00849205e-001, -1.11773700e-001, 2.77860969e-001, - 1.66473165e-001, 3.98672014e-001, -8.38116407e-002, - 4.37409759e-001, 1.54861093e-001, 2.80071758e-002, - -6.13273168e-003, 4.78500053e-002, 2.04337556e-002, - -4.07708324e-002, -9.69395321e-003, 5.41419275e-002, - 2.53516044e-002, -8.41575041e-002, 2.64919680e-002, - 1.94101855e-001, 1.13964006e-001, 3.12516749e-001, - 2.55565941e-002, 3.59135628e-001, 1.25417560e-001, - 3.74428034e-002, -9.46382061e-003, 5.48927598e-002, - 2.32917257e-002, -3.83153837e-003, -4.90099366e-004, - 6.56587211e-003, 3.34663247e-003, -3.37026082e-003, - 1.32123567e-002, 2.96183750e-002, 2.28380691e-002, - 3.41917798e-002, 1.33528411e-002, 4.62681875e-002, - 2.45943312e-002, 3.78513872e-003, -1.24705641e-003, - 6.96970895e-003, 3.63916019e-003, -8.29251774e-004, - -4.04625134e-005, 4.81630210e-003, 3.18062725e-003, - -1.02135567e-002, -1.66181289e-002, 3.16474214e-002, - 2.67384537e-002, 2.71271653e-002, -1.46471905e-002, - 4.35810387e-002, 2.78550945e-002, 6.96915109e-003, - 2.25744653e-003, 9.14048124e-003, 4.54847701e-003, - -2.33637504e-002, -4.01911419e-003, 3.92615609e-002, - 2.03737970e-002, -7.99917355e-002, -5.38458303e-002, - 1.71351478e-001, 1.13179870e-001, 3.10916841e-001, - 1.86353289e-002, 3.60559553e-001, 1.35549933e-001, - 5.53980768e-002, 1.76782943e-002, 6.97571039e-002, - 2.84575392e-002, -2.86954902e-002, -1.72395259e-004, - 4.26688232e-002, 2.13792268e-002, -4.09252346e-002, - 4.50119004e-002, 1.61574289e-001, 1.13632940e-001, - 4.54430789e-001, 1.56103924e-001, 4.85478461e-001, - 1.94303319e-001, 2.77564451e-002, 9.22238734e-003, - 4.88271862e-002, 2.14804504e-002, -2.13092216e-003, - 4.14742331e-004, 5.63488202e-003, 3.62746185e-003, - 9.40661132e-003, 2.62817312e-002, 3.39161344e-002, - 3.49426530e-002, 6.36723861e-002, 2.93633714e-002, - 7.12636709e-002, 4.04762849e-002, 1.68982442e-004, - -1.23837695e-003, 5.12331771e-003, 3.25017353e-003, - -9.82108060e-004, -8.32006393e-004, 5.31202601e-003, - 4.25132504e-003, -4.95227519e-003, -3.76701467e-002, - 3.30872163e-002, 5.70167489e-002, -1.57988712e-003, - -3.66110504e-002, 2.51725968e-002, 6.20667487e-002, - -2.39295908e-003, -3.26834270e-003, 4.63009067e-003, - 7.78701855e-003, -4.20058854e-002, -9.26621910e-003, - 5.94654605e-002, 2.64846068e-002, -2.52715886e-001, - -2.79938251e-001, 3.20772082e-001, 3.29678088e-001, - 3.83910760e-002, -3.28467786e-001, 1.19357876e-001, - 3.71824503e-001, 1.07546290e-002, -3.98523398e-002, - 2.51158513e-002, 4.92743105e-002, -4.72148247e-002, - -2.88923644e-003, 6.50699288e-002, 2.25365367e-002, - -2.87712514e-001, 3.66899930e-002, 3.36406261e-001, - 1.24754377e-001, 2.50968412e-002, 3.06040179e-002, - 9.43311378e-002, 1.06742918e-001, 1.20985629e-002, - -9.98504838e-005, 2.12908201e-002, 1.94367226e-002, - -5.59439510e-003, -1.24111550e-003, 8.62212386e-003, - 3.42187169e-003, -3.35270353e-002, 1.04624778e-002, - 4.62805815e-002, 2.42543593e-002, 5.96485857e-004, - 1.17723020e-002, 1.84583366e-002, 2.28339192e-002, - 4.63247270e-004, 6.79799065e-004, 2.84932810e-003, - 3.00764199e-003, -2.94958637e-003, 1.65782997e-003, - 7.47142080e-003, 3.14219785e-003, -4.29947935e-002, - -1.33065572e-002, 6.55312389e-002, 2.66569946e-002, - 4.83469479e-003, -1.52406683e-002, 3.36950049e-002, - 2.92297862e-002, 4.21821699e-003, 5.46025462e-004, - 9.37048532e-003, 4.15355945e-003, -2.26233173e-002, - 2.43523717e-003, 5.23093604e-002, 1.36700785e-002, - -3.55755150e-001, -2.71105599e-002, 4.77553844e-001, - 1.03395432e-001, 2.72707306e-002, -3.52606736e-002, - 1.84082508e-001, 1.10759221e-001, 5.81315942e-002, - 1.53060525e-003, 8.88718963e-002, 2.63613556e-002, - -2.41119824e-002, -2.20160559e-003, 5.45895286e-002, - 1.35779837e-002, -3.47375602e-001, 3.27776745e-002, - 4.78795826e-001, 1.09530412e-001, 2.94232406e-002, - 4.21646163e-002, 2.02073202e-001, 1.06839612e-001, - 5.82773127e-002, 2.21337448e-003, 9.18661654e-002, - 2.62792818e-002, -3.38289910e-003, -1.37207471e-003, - 8.15750100e-003, 2.96857394e-003, -4.07727659e-002, - 1.61374081e-002, 6.52055666e-002, 2.99411677e-002, - 4.12037596e-003, 1.71990227e-002, 3.74386944e-002, - 3.05993389e-002, 3.86472698e-003, -5.08413126e-004, - 9.84979421e-003, 4.27141879e-003, 4.17772261e-003, - 6.49777846e-003, 1.07172374e-002, 1.41086346e-002, - -9.92022082e-003, 8.94793496e-002, 4.03430611e-002, - 1.52924463e-001, -3.84547806e-004, 6.83634430e-002, - 3.00866831e-002, 1.32382378e-001, -1.57749199e-003, - 4.52582538e-003, 7.94081017e-003, 1.31349359e-002, - 1.18417867e-001, 2.14056820e-002, 1.82778001e-001, - 5.03992476e-002, 4.28859815e-002, 2.71563351e-001, - 2.06897676e-001, 3.43189627e-001, -7.18206391e-002, - 3.33693832e-001, 1.77947834e-001, 4.05817181e-001, - -9.98187438e-002, 2.74093151e-002, 1.39393091e-001, - 5.17537929e-002, 1.19557492e-001, 1.53188258e-002, - 1.78525880e-001, 3.94865200e-002, 5.03927730e-002, - 3.22342990e-003, 1.57122299e-001, 9.96723399e-002, - -1.00750685e-001, -1.99685916e-002, 1.76948622e-001, - 1.10291354e-001, -9.87683833e-002, -3.55594303e-003, - 1.44022048e-001, 3.20415720e-002, 1.05560618e-002, - 2.48985249e-003, 1.73547808e-002, 4.89800656e-003, - 4.99845017e-003, -5.92993898e-003, 2.44251397e-002, - 1.72289107e-002, -1.75383259e-002, -7.31516909e-003, - 2.86991596e-002, 2.14440189e-002, -9.94609948e-003, - 1.94437546e-003, 1.59174390e-002, 5.56246378e-003, - -1.46691897e-003, 5.78336010e-004, 4.88652848e-003, - 3.68005084e-003, -1.34024955e-003, -1.04918834e-002, - 2.58407462e-002, 2.51803622e-002, 2.46862229e-002, - -9.49828140e-003, 4.20222990e-002, 2.77113840e-002, - 5.45754610e-003, 2.19218084e-003, 8.69189389e-003, - 4.98845568e-003, -2.50467248e-002, 1.22842919e-002, - 4.15801182e-002, 3.06094289e-002, -5.18082194e-002, - 3.37995552e-002, 1.65126160e-001, 1.53380916e-001, - 2.43592232e-001, 3.36746909e-002, 3.43700320e-001, - 1.66511580e-001, 5.29475138e-002, 1.68721117e-002, - 7.13462532e-002, 3.44519690e-002, -2.49897540e-002, - 3.02966461e-002, 4.57733050e-002, 4.51539829e-002, - -9.51977670e-002, 2.34089851e-001, 2.12499425e-001, - 3.02036554e-001, 2.82479674e-001, 2.15039939e-001, - 3.85761052e-001, 2.80138105e-001, 4.13482934e-002, - 1.38863698e-002, 5.92885055e-002, 2.98719667e-002, - 1.28221139e-003, 2.34964048e-003, 5.40695619e-003, - 5.72700892e-003, -8.32718890e-003, 4.44055386e-002, - 3.69981192e-002, 5.65049872e-002, 2.19191872e-002, - 4.33674566e-002, 4.36836109e-002, 5.45167625e-002, - 1.04896678e-003, -6.71892076e-006, 4.91152657e-003, - 3.59626114e-003, -2.60246661e-003, 1.71481154e-003, - 7.63114402e-003, 5.12429466e-003, -4.03376184e-002, - -1.66576020e-002, 5.68739399e-002, 4.07866687e-002, - -9.37322993e-003, -1.90691072e-002, 2.87755635e-002, - 3.41233127e-002, 6.94859948e-004, -8.46471346e-004, - 3.79526755e-003, 3.69578740e-003, -4.35023941e-002, - -9.62770078e-003, 6.63781092e-002, 3.57012190e-002, - -2.89529741e-001, -1.27961114e-001, 3.60951602e-001, - 2.24728331e-001, 6.03925111e-003, -3.81611213e-002, - 1.27240494e-001, 1.40888855e-001, 1.59262922e-002, - -8.77114071e-004, 2.75906045e-002, 2.22755056e-002, - -4.61787619e-002, 1.46949766e-002, 6.42802417e-002, - 3.84527445e-002, -2.34910086e-001, 2.76701808e-001, - 3.27686995e-001, 3.48263681e-001, -7.70635623e-003, - 2.11402848e-001, 1.46402583e-001, 2.76571721e-001, - 1.40228570e-002, 1.93870552e-002, 2.89932657e-002, - 3.39106172e-002, -1.06857880e-003, 5.31880127e-004, - 5.80959162e-003, 4.85768449e-003, -2.01628637e-002, - 3.82937156e-002, 4.54273820e-002, 5.79514354e-002, - -1.78685207e-002, 4.16031182e-002, 3.77997570e-002, - 6.00795336e-002, -1.39915559e-003, 3.40826157e-003, - 4.83534625e-003, 6.62761787e-003, -1.40314351e-003, - 1.34507252e-003, 7.76218623e-003, 5.51237119e-003, - -1.96583178e-002, -2.44641751e-002, 5.22860326e-002, - 4.55261022e-002, 1.45317577e-002, -2.25955620e-002, - 4.55775484e-002, 4.31148559e-002, 2.55248439e-003, - 5.47986070e-004, 6.85400376e-003, 4.95699374e-003, - -4.19742651e-002, -1.21669024e-002, 7.05902576e-002, - 4.16005142e-002, -1.32840037e-001, -8.94111693e-002, - 3.49115759e-001, 2.54492581e-001, 1.37017131e-001, - -4.66351733e-002, 2.90170789e-001, 2.14515388e-001, - 4.45895679e-002, 1.95438261e-004, 6.34036362e-002, - 3.64510641e-002, -5.74061796e-002, -1.61165418e-003, - 7.63359144e-002, 3.97692695e-002, 4.89251912e-002, - 1.58067092e-001, 3.21902931e-001, 2.73245960e-001, - 7.59716183e-002, 1.97337762e-001, 3.03884208e-001, - 2.73392171e-001, 4.29517180e-002, 1.44712087e-002, - 6.24329038e-002, 3.75150107e-002, -2.59948149e-003, - 1.09397795e-003, 7.83136394e-003, 5.46408258e-003, - 1.12996865e-002, 3.09248697e-002, 4.69215624e-002, - 4.85606343e-002, 8.53968039e-003, 2.72372141e-002, - 4.52250279e-002, 4.53648232e-002, 8.94372235e-004, - 2.41726491e-004, 5.92491217e-003, 4.85244021e-003, - -1.40903576e-003, -8.90507692e-007, 4.89218952e-003, - 4.26443666e-003, -1.77858546e-002, -2.20354758e-002, - 3.41736898e-002, 3.88980322e-002, 9.76457726e-003, - -2.15768963e-002, 2.96735726e-002, 3.81731316e-002, - 6.00321218e-004, -5.83299552e-004, 4.58148681e-003, - 4.69760224e-003, -2.10971218e-002, -1.04310960e-002, - 3.93711701e-002, 3.57526876e-002, -1.51606053e-001, - -2.12983470e-002, 2.33225867e-001, 2.13611633e-001, - 9.24635828e-002, -2.10329816e-002, 1.87323734e-001, - 2.06718698e-001, 1.61935445e-002, -8.37448612e-003, - 3.52249816e-002, 3.61254774e-002, -1.87978204e-002, - 2.04227283e-003, 3.57946120e-002, 6.89028278e-002, - -7.46450499e-002, 9.28569138e-002, 1.71603203e-001, - 5.33014536e-001, 2.63063721e-002, 8.39180127e-002, - 1.45311460e-001, 4.82435286e-001, 1.51303606e-002, - 1.67642604e-003, 3.14138308e-002, 6.27509877e-002, - 1.60100491e-004, 3.53178941e-003, 4.54883371e-003, - 7.49536185e-003, -1.07583811e-003, 4.41251621e-002, - 2.75762640e-002, 6.85375333e-002, -6.68003922e-003, - 4.90951426e-002, 2.65841074e-002, 7.22953230e-002, - -1.16300117e-003, 5.17055765e-003, 4.63545322e-003, - 8.87822174e-003, -1.16091559e-003, -1.32736168e-003, - 5.26378723e-003, 6.80209929e-003, -1.28726782e-002, - -2.80939266e-002, 3.43248546e-002, 5.19997366e-002, - -1.09478564e-003, -2.84143761e-002, 3.27871256e-002, - 5.09873442e-002, 3.68861511e-004, -1.60663889e-003, - 4.65880614e-003, 6.42652577e-003, -3.20060141e-002, - 4.21623513e-003, 4.64737490e-002, 5.35398461e-002, - -9.94165465e-002, -4.08936106e-002, 2.09142640e-001, - 3.24193448e-001, 8.36718976e-002, 2.60369945e-002, - 1.77627951e-001, 3.15471798e-001, 1.51287764e-002, - 4.87353466e-003, 3.51394489e-002, 4.27329466e-002, - -2.21638903e-002, 3.46084535e-002, 4.32780795e-002, - 5.26525155e-002, -2.94106960e-001, 1.50713429e-001, - 3.69871944e-001, 3.27524900e-001, 1.26131311e-001, - -3.69696878e-002, 2.16174394e-001, 2.96077371e-001, - 1.68672111e-002, 3.06555699e-003, 3.86780985e-002, - 4.12441418e-002, -6.26371882e-004, -8.17050692e-004, - 4.77662776e-003, 5.69377141e-003, -2.89926659e-002, - 3.98196541e-002, 4.67030704e-002, 6.71586469e-002, - -2.19510635e-003, 5.69822676e-002, 3.76643538e-002, - 7.52915666e-002, -2.66765303e-004, 2.85428343e-003, - 5.69314696e-003, 7.52491131e-003, -9.18843783e-003, - 2.63924641e-003, 1.20140668e-002, 4.82413592e-003, - -1.95528958e-002, -1.31726954e-002, 4.39164117e-002, - 2.70254239e-002, 8.97742715e-003, -1.52177429e-002, - 2.78257821e-002, 2.69922521e-002, 2.27250959e-004, - -2.92777491e-004, 4.23039682e-003, 3.47427744e-003, - -6.69676214e-002, 1.89819504e-002, 8.64558145e-002, - 3.04277744e-002, -2.65465677e-001, -6.45449094e-004, - 3.73301357e-001, 1.33107752e-001, 6.95367083e-002, - -5.77776693e-002, 1.36275843e-001, 1.14135765e-001, - 1.77109614e-002, -4.25556069e-003, 3.18907984e-002, - 2.11644918e-002, -3.28085795e-002, 9.68584511e-003, - 6.28186241e-002, 2.28248965e-002, -4.46789771e-001, - 1.44410163e-001, 5.27516484e-001, 1.89557865e-001, - 7.12090582e-002, 3.13203931e-002, 1.43156335e-001, - 1.06296346e-001, 2.02624835e-002, 1.92301569e-003, - 3.33552696e-002, 2.17506960e-002, -5.39654691e-004, - -1.46354514e-003, 7.22942874e-003, 3.37538612e-003, - -7.07226172e-002, 2.55927667e-002, 8.55576098e-002, - 3.72908413e-002, 1.70146232e-003, 1.86495110e-002, - 3.10686603e-002, 3.02251074e-002, 1.27966423e-003, - 3.97871336e-004, 4.41703759e-003, 3.77890421e-003, - 5.72360866e-003, -1.63266133e-003, 8.24184436e-003, - 4.28640144e-003, 1.05626984e-002, 7.54221249e-003, - 2.18154937e-002, 1.79711934e-002, -1.05806638e-003, - 6.48329221e-003, 1.28087271e-002, 1.39213940e-002, - -6.14859397e-004, 1.28077314e-004, 2.19311845e-003, - 1.92590756e-003, 6.43069297e-002, -2.41935346e-002, - 7.80989155e-002, 4.07582037e-002, 1.18673936e-001, - -1.08949132e-002, 1.74268886e-001, 1.06822729e-001, - -2.00369842e-002, 1.17094098e-002, 7.31786117e-002, - 6.93155527e-002, -1.11003546e-002, -1.85148267e-003, - 1.91142894e-002, 1.47923604e-002, 4.40617800e-002, - -4.04822379e-002, 6.27488717e-002, 5.25459424e-002, - 2.74913102e-001, -4.00513232e-001, 3.25244904e-001, - 4.34939593e-001, -2.81927027e-002, -3.07615012e-001, - 1.39715835e-001, 3.47727358e-001, -1.14661511e-002, - -3.92788313e-002, 2.79398300e-002, 4.78677079e-002, - -5.19864943e-006, -1.22141629e-003, 4.14072024e-003, - 4.85045416e-003, 1.66722517e-002, -4.18125503e-002, - 3.35686542e-002, 6.25395104e-002, 1.01584597e-002, - -5.50983436e-002, 3.64643633e-002, 7.74607733e-002, - 2.16501323e-003, -5.04283095e-003, 5.16946893e-003, - 9.28667840e-003, 3.55724915e-004, 1.56175531e-003, - 4.24759975e-003, 5.23077790e-003, 6.31232606e-003, - 3.63167189e-002, 3.00651956e-002, 5.58400452e-002, - -9.15933773e-003, 3.52820307e-002, 3.18862088e-002, - 5.64292111e-002, -5.08213299e-004, 9.78757977e-004, - 4.13047336e-003, 5.11607807e-003, 2.68853251e-002, - 6.81048585e-003, 4.14324850e-002, 3.53803635e-002, - 1.75981089e-001, 1.07409544e-001, 2.54122764e-001, - 3.54103595e-001, -2.03560248e-001, 1.09503455e-001, - 3.05689454e-001, 3.89076114e-001, -2.63544675e-002, - 7.24151824e-003, 4.23099697e-002, 3.93533371e-002, - 2.45407224e-002, -1.96986017e-003, 4.08603176e-002, - 2.74269879e-002, 1.75637275e-001, -4.21638228e-002, - 2.50617921e-001, 1.88746929e-001, -1.86518833e-001, - -3.65162157e-002, 2.77257264e-001, 2.08560839e-001, - -2.68864725e-002, 6.82722253e-004, 4.27449793e-002, - 3.13445143e-002, 1.79230445e-003, 4.13984299e-006, - 4.94025694e-003, 3.92910698e-003, 1.61281265e-002, - -2.06321944e-002, 3.41071710e-002, 3.59256603e-002, - -1.85074452e-002, -2.12109983e-002, 3.72946262e-002, - 3.71087492e-002, -1.78461976e-003, 1.97266825e-004, - 5.07350359e-003, 4.33710730e-003, -2.82683503e-003, - -1.19359128e-003, 6.62868097e-003, 5.99570293e-003, - 3.14087514e-003, -2.78334226e-002, 3.19014974e-002, - 4.70953844e-002, 9.51705780e-003, -2.25657690e-002, - 3.14052664e-002, 4.61520329e-002, -6.42713567e-004, - -1.36902626e-003, 4.89500165e-003, 5.97935729e-003, - -4.94960323e-002, 1.60539020e-002, 6.20331578e-002, - 4.37189676e-002, -5.16156815e-002, -4.26899716e-002, - 1.58083543e-001, 1.85904980e-001, 6.59719631e-002, - -1.16300061e-001, 1.40631273e-001, 2.20451578e-001, - 1.59964077e-002, -1.07376324e-002, 3.11893504e-002, - 3.68786380e-002, -6.57976568e-002, 6.31026104e-002, - 8.42285678e-002, 7.75944665e-002, -2.09056288e-001, - 3.22616488e-001, 2.76107848e-001, 4.08580899e-001, - 6.72071874e-002, 2.36650810e-001, 1.65921494e-001, - 3.26123953e-001, 2.13882718e-002, 3.37665044e-002, - 3.99016738e-002, 5.22956401e-002, -2.36839376e-004, - 3.40330950e-003, 7.25060888e-003, 9.96027049e-003, - -1.93952154e-002, 1.05671309e-001, 4.55407239e-002, - 1.37151212e-001, -4.94999904e-003, 1.25414938e-001, - 4.20850217e-002, 1.51789695e-001, -2.28748797e-003, - 1.15029998e-002, 6.91376021e-003, 1.57425646e-002, - 1.01292710e-004, 7.75000546e-004, 6.13448257e-003, - 4.08252655e-003, 1.58378351e-002, 3.23358402e-002, - 4.15963605e-002, 4.47639078e-002, -2.81866826e-002, - 3.08029819e-002, 5.91036528e-002, 4.57183421e-002, - -4.89510363e-004, -4.88330552e-004, 5.17472159e-003, - 4.00333293e-003, 2.51277462e-002, 6.02834811e-003, - 5.26072085e-002, 2.39137616e-002, 9.37835053e-002, - 7.77309984e-002, 3.26493591e-001, 1.70971930e-001, - -2.39648804e-001, 5.17886542e-002, 4.94340211e-001, - 1.78267375e-001, -1.62629448e-002, 1.11845434e-002, - 4.61893119e-002, 2.68542189e-002, 3.59777622e-002, - 4.00343118e-003, 6.09206446e-002, 2.32155658e-002, - -5.67094088e-002, -3.24830413e-002, 4.06495154e-001, - 1.43362358e-001, -4.12356183e-002, -9.68782324e-003, - 3.40103000e-001, 1.64706782e-001, -3.36525142e-002, - 1.27345305e-002, 5.54034449e-002, 3.01225875e-002, - 3.14629218e-003, 2.33554485e-004, 7.67135667e-003, - 3.80830793e-003, -9.58425738e-003, -1.62040088e-002, - 5.56353740e-002, 3.23054418e-002, -4.65717539e-003, - -1.78196784e-002, 4.25983630e-002, 3.52242589e-002, - -2.80691520e-003, -1.92486899e-004, 6.48346310e-003, - 4.52047959e-003, 1.24665094e-003, -3.37444908e-005, - 5.06259222e-003, 2.51999847e-003, 2.27144193e-002, - 1.35618877e-002, 4.17194143e-002, 2.52264012e-002, - -2.53066756e-002, 1.78256445e-002, 5.86067699e-002, - 2.98717078e-002, -1.40612246e-003, -3.39382415e-004, - 5.53003233e-003, 2.90397182e-003, 1.75282657e-002, - 2.44915579e-003, 3.87448557e-002, 1.49052450e-002, - 1.87096372e-001, 1.82819813e-002, 2.83652872e-001, - 1.15578242e-001, -1.58099920e-001, 7.22708106e-002, - 5.14822900e-001, 1.48862153e-001, -2.05490422e-002, - 1.82561844e-003, 4.55027707e-002, 1.78512894e-002, - 2.05973256e-002, 1.21212367e-003, 3.98578718e-002, - 1.45431561e-002, 1.26497388e-001, -2.61046570e-002, - 2.62088180e-001, 1.08118817e-001, -6.99524209e-002, - -4.35422771e-002, 5.21675229e-001, 1.33391872e-001, - -2.84821559e-002, 2.66567897e-003, 5.05591929e-002, - 1.87074710e-002, 2.10965960e-003, 3.12293327e-004, - 5.13789617e-003, 2.35026376e-003, 1.23891970e-002, - -9.37899575e-003, 3.64371166e-002, 2.03726515e-002, - -8.13251641e-003, -1.58545393e-002, 5.81441633e-002, - 2.73617879e-002, -3.43430392e-003, 5.72711520e-004, - 6.80775708e-003, 3.07082571e-003, -9.54177137e-003, - 1.27386372e-003, 1.27402144e-002, 4.44702990e-003, - -1.88990291e-002, -1.44343041e-002, 3.82997319e-002, - 2.60588694e-002, 3.99023294e-002, -1.74541641e-002, - 6.01189882e-002, 3.11379880e-002, 1.09690977e-002, - 3.46884783e-003, 2.11342834e-002, 6.52383314e-003, - -8.35700557e-002, 1.06626190e-002, 1.04226783e-001, - 2.72677913e-002, -1.88338384e-001, -3.14152311e-003, - 2.73256510e-001, 1.07427791e-001, 2.56466478e-001, - -4.84275185e-002, 3.75586987e-001, 1.24479160e-001, - 1.33077264e-001, -1.71911716e-003, 1.97551519e-001, - 3.69825289e-002, -7.15641454e-002, 6.95573352e-003, - 9.85657573e-002, 2.50269659e-002, -2.48267427e-001, - 6.08396269e-002, 3.27597201e-001, 1.19589448e-001, - 1.73018396e-001, 1.06932512e-002, 3.09445024e-001, - 1.07091010e-001, 1.52826846e-001, -1.88631490e-002, - 2.13139310e-001, 4.12904918e-002, -6.46950910e-003, - -8.54161452e-004, 1.16918562e-002, 4.04640287e-003, - -4.00559679e-002, 1.62444171e-002, 5.61752245e-002, - 2.90836766e-002, 1.68094765e-002, 1.27711864e-002, - 4.27627303e-002, 2.57688463e-002, 1.55277997e-002, - -2.98985583e-003, 2.30497159e-002, 6.21123472e-003, - 2.62268283e-003, 7.83565396e-004, 5.09114657e-003, - 4.21787659e-003, -2.26900773e-003, 2.91970149e-002, - 2.98764799e-002, 3.80678363e-002, -2.11513247e-002, - 2.46979017e-002, 3.56316492e-002, 3.63162942e-002, - -7.18257565e-004, 1.72859145e-004, 4.06398019e-003, - 3.69973108e-003, 4.03324738e-002, -1.28402896e-002, - 4.83624898e-002, 3.22873630e-002, 1.27727032e-001, - 8.37465748e-002, 2.20958903e-001, 1.94604769e-001, - -2.32852980e-001, 1.79212585e-001, 2.74806440e-001, - 2.24685460e-001, -2.76726931e-002, 8.44205357e-003, - 4.05019037e-002, 2.80209389e-002, 2.27456279e-002, - -2.11514644e-002, 3.82920206e-002, 3.21732573e-002, - 3.29599679e-001, -2.17517018e-001, 3.58417213e-001, - 2.56203949e-001, -2.14408293e-001, -8.92898664e-002, - 2.71941453e-001, 1.89257994e-001, -3.39757130e-002, - -2.06033536e-003, 4.54764664e-002, 2.86364015e-002, - 1.21602701e-004, 3.84825456e-004, 3.91394133e-003, - 3.23355384e-003, 3.58550958e-002, -2.56310608e-002, - 4.60496880e-002, 3.70559357e-002, -9.38699022e-003, - -3.05866040e-002, 3.72684486e-002, 4.01390716e-002, - -2.19259481e-003, -6.60316728e-005, 5.01982495e-003, - 3.92271206e-003, 1.69397751e-003, 1.92131952e-003, - 6.84812292e-003, 7.15827616e-003, 3.86785306e-002, - 9.07425359e-002, 5.33939935e-002, 1.22309782e-001, - 7.52597908e-003, 1.03035882e-001, 3.34443115e-002, - 1.39795274e-001, 1.22735277e-004, 9.92296636e-003, - 5.25453547e-003, 1.57190394e-002, 4.60208841e-002, - 7.30598532e-003, 8.10112581e-002, 2.79394165e-002, - 4.28355396e-001, 1.67501226e-001, 4.73816991e-001, - 2.27511033e-001, -3.76131572e-002, 8.46083611e-002, - 1.15576059e-001, 1.50661290e-001, -1.88525431e-002, - 1.18515231e-002, 3.40956077e-002, 2.52493657e-002, - 7.61251822e-002, 1.52429324e-002, 1.03591017e-001, - 3.13384496e-002, 2.98198998e-001, 3.79915759e-002, - 3.66490990e-001, 1.18047692e-001, -3.99042703e-002, - -7.59334117e-003, 9.72533226e-002, 6.83696195e-002, - -1.58719160e-002, 1.15384825e-003, 2.85790060e-002, - 1.34379398e-002, 1.13253575e-002, 2.78079743e-003, - 1.50677813e-002, 5.39503293e-003, 3.03690769e-002, - -7.06699071e-003, 4.48745377e-002, 2.09102444e-002, - -4.76954691e-003, -7.19787693e-003, 1.77053027e-002, - 1.51757598e-002, -1.18896901e-003, -1.65145306e-004, - 3.46992211e-003, 1.96957658e-003, -1.12952723e-003, - -4.67568985e-004, 4.64640372e-003, 3.31668509e-003, - -1.75885037e-002, -3.48075554e-002, 4.08908464e-002, - 4.41984087e-002, 1.79482549e-002, -3.35605703e-002, - 3.85457315e-002, 4.53580469e-002, 7.62137410e-004, - -7.82251533e-004, 4.80935862e-003, 4.17679362e-003, - -2.73774303e-002, -8.38513300e-003, 4.30194065e-002, - 2.39167977e-002, -2.68101901e-001, -1.60783872e-001, - 3.28703374e-001, 2.17175022e-001, 2.25667849e-001, - -1.84548229e-001, 2.81171292e-001, 2.40843371e-001, - 3.00048348e-002, -1.15150195e-002, 4.53631245e-002, - 3.04951966e-002, -3.17916162e-002, -6.56117545e-003, - 4.65598591e-002, 2.27673780e-002, -2.57733077e-001, - 1.17746321e-002, 3.16187948e-001, 1.30513504e-001, - 2.45742515e-001, 6.05590269e-002, 2.89561421e-001, - 1.43730402e-001, 3.03243678e-002, 4.19283868e-004, - 4.71218564e-002, 2.59615090e-002, -3.61595862e-003, - -1.16245274e-003, 6.32426655e-003, 3.40484455e-003, - -2.24902425e-002, 1.23885125e-002, 4.15641367e-002, - 2.48705484e-002, 2.87588667e-002, 1.29095251e-002, - 4.08623703e-002, 2.57937126e-002, 2.09415564e-003, - -9.73700662e-004, 5.62020997e-003, 3.62803577e-003, - 1.82777899e-003, 3.35287943e-004, 5.73225971e-003, - 3.09680053e-003, 1.19816903e-002, 2.26839185e-002, - 3.55720632e-002, 3.01396847e-002, -5.60194477e-002, - 2.22157650e-002, 6.61498234e-002, 3.17218117e-002, - -1.49685540e-003, -9.64540639e-004, 5.00647211e-003, - 3.06457584e-003, 2.96356361e-002, 4.59942548e-003, - 4.51519340e-002, 1.91363785e-002, 1.16840176e-001, - 5.16182519e-002, 1.84264690e-001, 1.03660516e-001, - -4.38472629e-001, 8.34785774e-002, 4.76708233e-001, - 1.32442743e-001, -2.11176965e-002, 2.96303537e-003, - 3.97652425e-002, 1.74964983e-002, 2.93119680e-002, - 5.37677959e-004, 4.36871611e-002, 1.75168440e-002, - 1.07176691e-001, -3.65292430e-002, 1.67659700e-001, - 8.89495164e-002, -3.63938421e-001, 4.23904555e-003, - 4.10424709e-001, 1.05458863e-001, -3.33030745e-002, - 8.44096672e-003, 4.90718707e-002, 2.02178769e-002, - 2.14610761e-003, -1.84569653e-005, 5.17759938e-003, - 2.57589947e-003, 1.29876221e-002, -1.45941814e-002, - 2.83449702e-002, 2.19956115e-002, -3.85970995e-002, - -1.19952532e-002, 5.15138432e-002, 2.32630782e-002, - -4.76643862e-003, 1.70734164e-003, 7.39020435e-003, - 3.66471778e-003, 7.26971251e-004, 2.15545297e-003, - 4.57167253e-003, 5.13185328e-003, -1.23596098e-002, - 2.75571868e-002, 3.33885476e-002, 4.46263514e-002, - -1.51240628e-003, 1.55778332e-002, 2.76741143e-002, - 3.67818326e-002, 4.50968597e-004, 9.61611629e-004, - 4.26810095e-003, 4.61527612e-003, 3.62615474e-002, - 4.91127092e-003, 4.86716218e-002, 3.49784419e-002, - -6.65372387e-002, 1.60774902e-001, 2.73390621e-001, - 2.94778228e-001, 5.03430329e-003, 3.02051961e-001, - 2.35672340e-001, 3.56049836e-001, -3.21634971e-002, - 2.21902318e-002, 4.71734628e-002, 4.07049954e-002, - 2.67027691e-002, -2.00254731e-002, 4.16458175e-002, - 3.44990902e-002, 9.33364779e-002, -2.00409919e-001, - 2.38255024e-001, 2.72387356e-001, 1.16895838e-002, - -1.67303205e-001, 2.70337343e-001, 2.74630874e-001, - -3.72102931e-002, -1.39367785e-002, 5.21427020e-002, - 3.70821245e-002, 1.29474705e-004, -4.56788111e-004, - 4.06568777e-003, 4.10553487e-003, 9.01050493e-003, - -2.05947943e-002, 3.02670486e-002, 3.77534032e-002, - 8.25584633e-004, -2.57664621e-002, 3.32191847e-002, - 4.32637855e-002, -5.52236394e-004, -9.53810173e-004, - 4.79148841e-003, 4.82157944e-003, -2.57506873e-003, - -1.83840818e-003, 8.02148972e-003, 7.11557735e-003, - -5.90607151e-003, -8.42882246e-002, 4.51226681e-002, - 1.13743573e-001, -3.97908222e-003, -9.45924744e-002, - 3.38357240e-002, 1.27510950e-001, -1.99651555e-003, - -8.08174349e-003, 5.31815737e-003, 1.34033281e-002, - -5.44208512e-002, -4.94793616e-003, 7.67848492e-002, - 3.18527892e-002, -2.78487593e-001, -1.28065512e-001, - 3.55041772e-001, 2.81757414e-001, 5.66720963e-002, - -1.37184918e-001, 1.34886459e-001, 3.16654861e-001, - 1.42935729e-002, -1.73984654e-002, 2.83187535e-002, - 4.33334075e-002, -5.37524596e-002, 4.66604531e-003, - 7.53754899e-002, 2.84372400e-002, -2.48834416e-001, - 1.61181211e-001, 3.29113543e-001, 2.25671113e-001, - 2.46867146e-002, 1.45939335e-001, 1.16228774e-001, - 2.11345926e-001, 1.18129216e-002, 1.33849401e-002, - 2.50243358e-002, 3.11401263e-002, -3.76529712e-003, - 5.81882137e-004, 8.21573287e-003, 4.97254403e-003, - -1.99663732e-002, 4.47501168e-002, 4.42005880e-002, - 6.27168566e-002, -6.01704884e-003, 4.74334210e-002, - 2.77915020e-002, 6.55142367e-002, -4.38152289e-004, - 4.65280516e-003, 4.10036463e-003, 7.91479647e-003, - -1.91111269e-003, -9.53427370e-005, 5.35262702e-003, - 4.24561091e-003, -1.17292497e-002, -2.61886343e-002, - 3.88232246e-002, 4.09875289e-002, 1.92790129e-003, - -2.77530756e-002, 3.02245487e-002, 4.37734500e-002, - -7.81893323e-004, -2.09684740e-003, 4.13836678e-003, - 5.41985221e-003, -3.50134298e-002, -1.38832694e-002, - 4.84971590e-002, 3.30356732e-002, -1.87234387e-001, - -1.60121366e-001, 2.64434636e-001, 2.22690970e-001, - 2.85957139e-002, -1.86964050e-001, 1.39659926e-001, - 2.50334203e-001, 1.64704341e-002, -1.60680898e-002, - 2.85847019e-002, 3.73090506e-002, -3.75042781e-002, - 4.54051560e-003, 4.83944379e-002, 3.52817290e-002, - -9.71777588e-002, 2.12434381e-001, 2.19442755e-001, - 2.94010878e-001, 8.53681192e-002, 3.71140838e-001, - 1.68792650e-001, 4.07280684e-001, 1.48737067e-002, - 4.66606170e-002, 3.03776469e-002, 5.60498536e-002, - -1.30532193e-003, 2.18329299e-003, 5.14517585e-003, - 5.03636571e-003, 1.05054416e-002, 3.76638137e-002, - 3.47955897e-002, 5.03469966e-002, 9.91088711e-003, - 2.75123287e-002, 3.04114819e-002, 4.64169532e-002, - -1.77237729e-003, 1.68881973e-003, 4.36157826e-003, - 5.65992482e-003, -2.19124332e-002, 3.41106812e-003, - 2.79062074e-002, 7.24234385e-003, -2.82213259e-002, - -1.30651901e-002, 4.72960770e-002, 2.92002447e-002, - 2.43018679e-002, -1.17240679e-002, 3.43982838e-002, - 2.57842951e-002, 2.22305302e-003, 4.93490894e-004, - 6.35943608e-003, 3.86787392e-003, -1.98080733e-001, - 9.15028714e-003, 2.39909247e-001, 3.83786298e-002, - -2.52312154e-001, 1.08923232e-002, 3.29173088e-001, - 1.33940607e-001, 1.95703730e-001, -2.28059199e-002, - 2.34189659e-001, 1.19789585e-001, 2.90271994e-002, - 5.02924318e-004, 4.99406867e-002, 2.73566023e-002, - -1.82854444e-001, -6.90150401e-003, 2.21967623e-001, - 4.59975116e-002, -2.47658834e-001, 1.09415933e-001, - 3.44517708e-001, 2.17634141e-001, 1.52343184e-001, - 8.36554840e-002, 2.15686709e-001, 1.65102407e-001, - 3.27785015e-002, 2.38796184e-003, 5.40966056e-002, - 3.31281759e-002, -1.20021086e-002, -7.25400983e-004, - 1.97462030e-002, 7.92020373e-003, -4.17707786e-002, - 5.04480414e-002, 6.95293099e-002, 7.33898357e-002, - 8.32931232e-003, 3.91818210e-002, 3.97024229e-002, - 5.46845496e-002, 2.96809897e-003, 1.80026982e-003, - 7.05421064e-003, 6.25462504e-003, -1.65306177e-004, - -3.92519141e-004, 4.57852986e-003, 4.60482109e-003, - 2.51011029e-002, 1.55348489e-002, 4.49424908e-002, - 4.55734059e-002, 1.02032656e-002, 2.74443179e-002, - 4.37169299e-002, 4.98711951e-002, -4.55340167e-004, - 3.36962228e-004, 4.85617714e-003, 5.03661949e-003, - 1.70926005e-002, 1.55665614e-002, 4.47047539e-002, - 3.60126048e-002, 1.99847624e-001, 1.12172596e-001, - 3.38170737e-001, 3.37872952e-001, -3.59039828e-002, - -1.95322223e-002, 2.59845138e-001, 2.56284773e-001, - -1.65826082e-002, 5.31114312e-003, 4.75918464e-002, - 3.59595902e-002, 3.10448930e-002, -1.57764985e-003, - 5.01003116e-002, 3.63513678e-002, -4.11987528e-002, - -1.38914302e-001, 2.97826260e-001, 2.89614797e-001, - 1.52766287e-001, -6.66577667e-002, 3.24640125e-001, - 2.51496524e-001, -2.11208872e-002, 5.51304023e-004, - 4.78222556e-002, 3.37564908e-002, 8.11756123e-004, - -1.13514019e-003, 4.73579671e-003, 4.96924669e-003, - 5.27022406e-003, -1.37087647e-002, 3.46499346e-002, - 4.25632633e-002, 1.76256932e-002, -2.00950019e-002, - 4.24684882e-002, 4.78123836e-002, -1.22557278e-004, - -1.42612564e-003, 5.37360134e-003, 5.57624409e-003, - -2.31040595e-003, -9.60370875e-004, 5.81289362e-003, - 5.60552208e-003, 4.94613172e-003, -3.39954644e-002, - 3.74880955e-002, 5.10010161e-002, 1.42092239e-002, - -2.12992970e-002, 3.66283990e-002, 4.54302803e-002, - -6.89296576e-004, -8.17949549e-005, 4.64251777e-003, - 5.26814489e-003, -3.54702361e-002, 2.37988122e-002, - 5.06955869e-002, 4.42867242e-002, -1.54898733e-001, - 5.53877056e-002, 2.60765612e-001, 2.97452062e-001, - 1.06513053e-001, -1.84277177e-001, 2.08500788e-001, - 3.13605845e-001, 2.47807000e-002, -1.79763921e-002, - 4.06998582e-002, 4.52198051e-002, -2.17165593e-002, - 6.88338187e-003, 4.28397879e-002, 2.79972218e-002, - -2.53142864e-001, 8.51888955e-002, 3.56578559e-001, - 2.06059128e-001, 8.88043642e-002, 2.31836036e-001, - 2.40353301e-001, 2.88952500e-001, 2.61044875e-002, - 2.58658882e-002, 4.35209461e-002, 4.31966782e-002, - -1.18849846e-003, -4.66435624e-004, 5.37846843e-003, - 3.97032220e-003, -1.37377381e-002, 2.71601249e-002, - 4.61064912e-002, 4.08176854e-002, 1.57107655e-002, - 2.46434081e-002, 4.10664044e-002, 4.09042947e-002, - -2.31277663e-004, 9.36450204e-004, 5.21331979e-003, - 4.66875779e-003, -7.36554386e-004, 1.05511898e-003, - 6.81241369e-003, 3.92379984e-003, -6.09043837e-002, - -2.74536852e-002, 7.56991282e-002, 4.11264338e-002, - 1.96198770e-003, -2.23520827e-002, 3.78208160e-002, - 3.34035009e-002, 3.52805178e-003, 2.83308764e-004, - 6.36398001e-003, 4.08650981e-003, -4.07525338e-002, - -1.91538595e-002, 6.55777529e-002, 3.38566601e-002, - -3.70056123e-001, -1.96215838e-001, 4.45056587e-001, - 2.41488174e-001, 1.58089802e-001, -1.39968069e-002, - 2.23763555e-001, 1.27894729e-001, 3.20874825e-002, - 5.18741878e-003, 4.71558906e-002, 2.61661913e-002, - -6.34398088e-002, -1.22298943e-002, 7.90171176e-002, - 3.52548659e-002, -2.06226498e-001, 5.93411103e-002, - 2.99776196e-001, 1.70053512e-001, 2.00059041e-001, - 7.88139701e-002, 2.48023868e-001, 1.47623941e-001, - 2.41582841e-002, 4.85607423e-003, 4.24464270e-002, - 2.54072417e-002, -6.33325893e-003, -1.49027526e-003, - 9.49805789e-003, 4.90677962e-003, -1.65013727e-002, - 1.90178584e-002, 4.10728380e-002, 3.36465538e-002, - 2.18606722e-002, 2.12603342e-002, 4.00022864e-002, - 3.28076966e-002, 1.05659629e-003, 1.06224128e-004, - 5.17339585e-003, 3.97232920e-003, -7.10183382e-003, - 5.57336061e-005, 1.21888788e-002, 6.90203765e-003, - -1.46903209e-002, -2.58391127e-002, 3.65981646e-002, - 4.11959104e-002, 3.84653686e-003, -2.20312197e-002, - 2.49643940e-002, 3.74040045e-002, 1.58012437e-003, - -1.59879608e-004, 4.98809479e-003, 5.24985977e-003, - -6.96644038e-002, 2.49346700e-002, 1.01480760e-001, - 5.49240932e-002, -1.97840810e-001, 1.22910134e-001, - 2.65590608e-001, 2.59955645e-001, 5.56140095e-002, - 3.39354500e-002, 1.60945177e-001, 1.63870335e-001, - 1.94912273e-002, -1.31509107e-004, 3.94036695e-002, - 2.26848256e-002, -4.56740968e-002, -2.87897866e-002, - 7.46989921e-002, 7.26806074e-002, -2.08579853e-001, - -6.80772886e-002, 3.07035893e-001, 3.86709780e-001, - 4.87396419e-002, 2.01636180e-002, 1.90007403e-001, - 2.87398905e-001, 1.94700416e-002, 5.10342559e-003, - 3.22437473e-002, 4.04890589e-002, -2.54385383e-003, - 7.89425243e-003, 8.88224784e-003, 1.56576149e-002, - 5.46615617e-003, 1.55782789e-001, 5.29342405e-002, - 1.88774630e-001, -1.13069098e-002, 1.51782408e-001, - 4.28995527e-002, 1.78600565e-001, -1.81669532e-003, - 1.14870556e-002, 5.02708834e-003, 1.43854348e-002, - -8.48111871e-004, 1.60250568e-003, 6.39591226e-003, - 4.78400663e-003, -5.19748079e-004, 2.92234179e-002, - 4.00849991e-002, 4.96516712e-002, 2.73517217e-003, - 3.35701145e-002, 4.21382636e-002, 5.31656630e-002, - -2.24760221e-003, 8.29571625e-004, 5.70955174e-003, - 5.17955888e-003, 2.15963367e-002, 1.06934067e-002, - 5.68631776e-002, 2.78764591e-002, -3.13944519e-002, - 1.51973262e-001, 3.19444299e-001, 2.37181172e-001, - -6.87080920e-002, 2.65863985e-002, 3.86785686e-001, - 2.35572666e-001, -2.61794012e-002, -1.03098145e-002, - 4.88233194e-002, 3.42737176e-002, 3.15629616e-002, - 5.18447533e-003, 6.18327036e-002, 2.46517081e-002, - -6.52320832e-002, -7.60818599e-003, 3.36535424e-001, - 1.38077691e-001, -2.13086739e-001, -5.90134859e-002, - 4.50309157e-001, 1.61933467e-001, -9.76539217e-003, - -6.12434046e-003, 3.99014130e-002, 2.29132529e-002, - 2.86078965e-003, -1.34604794e-004, 7.60102551e-003, - 3.50237917e-003, -7.97159504e-003, -1.21011641e-002, - 4.75000106e-002, 2.85885688e-002, -3.47996652e-002, - -8.89977813e-003, 6.01916201e-002, 2.93050036e-002, - -4.87120618e-004, 6.56316755e-004, 4.84638894e-003, - 3.28093930e-003, 5.86336886e-004, -1.46308495e-003, - 5.37910964e-003, 5.93220396e-003, -7.73199461e-003, - -4.65394035e-002, 3.96416299e-002, 6.36998788e-002, - 2.39646132e-003, -5.61831519e-002, 4.07373123e-002, - 6.95721731e-002, 2.08434090e-003, -2.50843819e-003, - 5.57818357e-003, 6.41468214e-003, -3.16979103e-002, - -2.14253087e-002, 5.02939075e-002, 4.71803583e-002, - -9.86820534e-002, -1.94748625e-001, 2.54088491e-001, - 3.04015756e-001, 1.74212843e-001, 2.09118612e-002, - 2.59474814e-001, 3.10536653e-001, 4.21855971e-002, - 1.64555181e-002, 5.39797544e-002, 4.96297218e-002, - -3.92721146e-002, -9.72342037e-004, 5.52383922e-002, - 3.50826681e-002, -3.49682122e-002, 3.75173166e-002, - 2.34874055e-001, 1.70737535e-001, 3.55231702e-001, - 1.60024446e-002, 3.91961187e-001, 1.90092131e-001, - 2.36670505e-002, 7.13682408e-003, 4.44928184e-002, - 3.62026058e-002, -2.20839866e-003, -6.67733140e-004, - 6.20428752e-003, 4.82847961e-003, -4.11335193e-003, - 1.93616431e-002, 3.53347994e-002, 3.37011144e-002, - 3.66289914e-002, 1.42978625e-002, 4.89954725e-002, - 3.44458111e-002, 1.95812015e-003, -2.11857236e-003, - 5.96937072e-003, 5.27717033e-003, -8.61863326e-003, - 2.30891700e-003, 1.13929240e-002, 5.09342272e-003, - 8.84655304e-003, -1.33910608e-002, 2.89479308e-002, - 2.35108510e-002, 6.43765405e-002, -2.77465992e-002, - 7.88133740e-002, 3.99612188e-002, -2.90343747e-003, - 2.10012007e-003, 8.74952134e-003, 4.65406058e-003, - -1.15977995e-001, 4.17658389e-002, 1.26113445e-001, - 4.89066951e-002, -4.16163006e-004, -4.30360530e-003, - 2.13535190e-001, 1.20621867e-001, 3.09764206e-001, - -1.25833601e-001, 3.76895964e-001, 1.87226877e-001, - 3.46875787e-002, -1.07441125e-002, 8.08798820e-002, - 3.67636085e-002, -7.36448094e-002, 2.65580025e-002, - 9.74181592e-002, 3.87173854e-002, -2.25177228e-001, - 1.40709028e-001, 4.39784616e-001, 2.11102486e-001, - 1.38709798e-001, 2.11543776e-002, 2.24876314e-001, - 1.46166787e-001, 8.13937113e-002, -2.55152080e-002, - 1.02271967e-001, 4.44186665e-002, -1.83690118e-003, - -4.33886744e-004, 9.00064316e-003, 3.89512000e-003, - -6.11469932e-002, 4.53346185e-002, 9.12907347e-002, - 5.29268645e-002, 1.04350010e-002, 1.73166376e-002, - 3.76003347e-002, 3.41104753e-002, 6.90125488e-003, - -1.65710086e-003, 1.00229075e-002, 5.41283237e-003, - 1.50438267e-004, -1.55858893e-003, 4.30637226e-003, - 6.94020744e-003, 8.79475474e-003, -1.50391143e-002, - 2.87656579e-002, 5.94964400e-002, 3.49844503e-003, - -4.09506308e-003, 2.44225226e-002, 6.02105446e-002, - -9.27398505e-004, -6.87617518e-004, 4.26856475e-003, - 8.00189003e-003, -2.77336799e-002, -1.28131500e-002, - 3.91117483e-002, 4.94445749e-002, -4.12131734e-002, - -1.68297112e-001, 1.46367595e-001, 4.68811333e-001, - 5.70503622e-002, -2.39916563e-001, 1.37036026e-001, - 5.73962092e-001, 1.63566973e-002, -2.90565789e-002, - 3.12745236e-002, 7.17171058e-002, -3.00697666e-002, - 1.19415587e-002, 4.14903536e-002, 3.20039578e-002, - -3.80519368e-002, 1.17628522e-001, 1.29251942e-001, - 1.95339337e-001, 3.91693227e-002, 1.55848429e-001, - 1.15821965e-001, 2.28084400e-001, 1.79596338e-002, - 2.24414673e-002, 2.98419762e-002, 4.05059457e-002, - -1.51313387e-003, 2.45591975e-003, 4.89379978e-003, - 5.36922598e-003, 2.43183831e-003, 3.48025374e-002, - 2.51340624e-002, 5.00458777e-002, 6.12320937e-003, - 3.48792411e-002, 2.30998825e-002, 5.22557124e-002, - 3.49409383e-004, 2.96899816e-003, 4.30125045e-003, - 6.17266633e-003, 8.20905901e-003, -8.20665678e-004, - 1.33831007e-002, 4.87024896e-003, 1.02105942e-002, - 6.46910397e-003, 2.75989436e-002, 2.19608266e-002, - -2.11761724e-002, 7.73508800e-003, 4.01736349e-002, - 2.24093758e-002, -9.69466940e-003, -1.11446378e-003, - 1.54403877e-002, 5.51378494e-003, 8.67767707e-002, - -2.81824032e-003, 1.18808918e-001, 2.95438264e-002, - 4.19924222e-002, -2.32304316e-002, 1.70611069e-001, - 1.20178044e-001, -1.73099428e-001, -7.31522292e-002, - 2.82943606e-001, 1.67059362e-001, -7.86331519e-002, - -6.36854488e-003, 1.23059846e-001, 3.44696231e-002, - 8.04535821e-002, -2.36815177e-002, 1.06172867e-001, - 4.91273589e-002, -3.53969336e-002, -3.19678396e-001, - 2.32226163e-001, 3.80956948e-001, -3.97885144e-002, - -1.91384897e-001, 2.84696251e-001, 3.33316356e-001, - -8.08369145e-002, -7.52563728e-003, 1.22712024e-001, - 3.99691910e-002, 1.52624154e-003, -6.03169436e-003, - 7.53959036e-003, 1.10080922e-002, -2.23102327e-003, - -6.47798255e-002, 3.83900702e-002, 1.01883136e-001, - 1.16505418e-002, -7.20591471e-002, 4.35554869e-002, - 1.00853942e-001, -2.95078056e-003, -4.88383090e-003, - 8.21291283e-003, 1.00437496e-002, 8.12370563e-004, - -3.52694158e-004, 4.45717340e-003, 3.37631139e-003, - 3.16575170e-002, 2.11769883e-002, 4.45162095e-002, - 3.36201824e-002, -2.56419331e-002, 2.25883853e-002, - 4.37760241e-002, 3.48373242e-002, -1.81760057e-003, - -5.65489172e-004, 4.78350278e-003, 3.52326757e-003, - 1.89714022e-002, 8.72360449e-003, 3.75165716e-002, - 2.56621856e-002, 2.78562039e-001, 8.86186585e-002, - 3.35062981e-001, 1.93071440e-001, -2.97520489e-001, - 1.35635687e-002, 3.50203663e-001, 1.71108022e-001, - -1.98744964e-002, 2.06284760e-003, 3.63080390e-002, - 2.45467834e-002, 3.10017355e-002, 2.42831558e-003, - 4.38434929e-002, 3.48619260e-002, 1.27062008e-001, - -1.02708459e-001, 2.65736610e-001, 3.08699399e-001, - -2.05880851e-001, -8.21589381e-002, 2.77145177e-001, - 2.25586236e-001, -2.36491598e-002, 3.33046936e-003, - 3.75509784e-002, 2.76729744e-002, 1.04072131e-003, - -9.30539682e-004, 4.56303125e-003, 4.40640049e-003, - 6.99423766e-003, -2.98039746e-002, 3.26230898e-002, - 4.42988984e-002, -8.20128340e-003, -2.80531477e-002, - 3.23732942e-002, 4.09515537e-002, -1.14590209e-003, - -7.01907557e-004, 4.28752182e-003, 4.00067819e-003, - -4.68697806e-004, 5.38673194e-004, 4.88681998e-003, - 2.81818840e-003, -2.01711431e-002, -1.02868152e-003, - 4.75773066e-002, 2.88336296e-002, 9.23425239e-003, - -1.52910664e-003, 3.79591025e-002, 2.96106078e-002, - 2.88265030e-004, 7.33429973e-004, 5.46451425e-003, - 3.66254081e-003, 7.46992882e-003, 3.65342782e-003, - 4.21109498e-002, 1.80875268e-002, -1.99096888e-001, - 6.16831370e-002, 4.10335690e-001, 1.63482875e-001, - 1.26601219e-001, 7.38497674e-002, 3.18788737e-001, - 1.66247413e-001, -5.18881995e-003, 7.18280021e-003, - 4.55884039e-002, 2.41523422e-002, 6.16844837e-003, - -3.79724195e-003, 4.40365896e-002, 1.75872389e-002, - -1.96959615e-001, -8.10786113e-002, 4.23331648e-001, - 1.57594338e-001, 1.73714027e-001, -3.81084569e-002, - 3.66747350e-001, 1.47094861e-001, -1.05744964e-002, - -2.37544693e-004, 4.60216105e-002, 2.15822756e-002, - -9.91384150e-004, -5.02826821e-004, 5.73594496e-003, - 2.87601608e-003, -1.76473856e-002, 2.69871176e-004, - 4.68756706e-002, 2.67860163e-002, 1.96770951e-002, - 2.91234523e-004, 4.52562347e-002, 2.67017968e-002, - -8.15299572e-004, -7.29915278e-004, 5.58733754e-003, - 3.27909901e-003, 3.12386639e-003, -4.80906630e-004, - 7.26101780e-003, 2.87472433e-003, -1.63509580e-003, - 1.60254315e-002, 5.72704673e-002, 2.74047162e-002, - -2.37356462e-002, 1.18933870e-002, 4.46808040e-002, - 2.45677009e-002, -2.01270124e-003, -3.17781814e-004, - 4.81493725e-003, 2.83777853e-003, 3.02158538e-002, - -4.03238228e-003, 5.46368249e-002, 1.74508356e-002, - 2.19738018e-002, 3.22319679e-002, 4.76854414e-001, - 1.24777175e-001, -1.81658998e-001, 5.63228168e-002, - 3.32694173e-001, 1.26034021e-001, -2.21070256e-002, - 2.42534373e-003, 3.93956490e-002, 1.80969462e-002, - 2.12713536e-002, -1.39483134e-003, 4.96425852e-002, - 1.63682699e-002, 1.05042800e-001, -4.57462445e-002, - 4.61783648e-001, 1.30350724e-001, -2.06591919e-001, - -9.18109808e-003, 3.43043149e-001, 1.26063332e-001, - -2.24714652e-002, 1.48726953e-003, 4.05132510e-002, - 1.86391715e-002, 1.54308241e-003, 4.49942949e-004, - 6.39701355e-003, 2.61314469e-003, 1.76221225e-002, - -1.34903789e-002, 5.67427464e-002, 2.56354995e-002, - -2.74428129e-002, -1.06082736e-002, 4.87003997e-002, - 2.52725538e-002, -2.14840192e-003, 5.19111287e-004, - 5.17898193e-003, 2.94149364e-003, -7.42218131e-003, - -1.07996631e-003, 1.31111443e-002, 6.32454222e-003, - 3.68605508e-003, -4.29624356e-002, 4.15230989e-002, - 7.15881437e-002, 6.18804188e-004, -3.81450094e-002, - 3.03605553e-002, 7.47205541e-002, -1.74228312e-003, - -3.82792228e-003, 5.19199483e-003, 9.51539166e-003, - -1.22957416e-001, -8.85932427e-003, 1.52967185e-001, - 3.50218341e-002, -1.21626146e-001, -2.78336555e-001, - 2.32596993e-001, 3.29369664e-001, 3.47768664e-002, - -3.35771829e-001, 1.24847911e-001, 3.80204350e-001, - 1.28995143e-002, -3.99384871e-002, 2.83349063e-002, - 5.19114807e-002, -1.19486511e-001, -1.29910279e-003, - 1.50498956e-001, 3.34297866e-002, -1.67115450e-001, - 1.33943304e-001, 2.43118465e-001, 2.10039631e-001, - 2.48973798e-002, 1.26970664e-001, 1.15697473e-001, - 2.02308029e-001, 1.35558592e-002, 1.25084547e-002, - 2.53159385e-002, 3.12567279e-002, -9.41064581e-003, - 2.46220705e-004, 1.48342149e-002, 5.24144433e-003, - -1.17203649e-002, 3.72340344e-002, 4.17254753e-002, - 5.46450950e-002, -8.34239880e-004, 4.21175435e-002, - 2.86128074e-002, 5.88546954e-002, -1.48525243e-004, - 4.29951586e-003, 4.05485602e-003, 7.39108771e-003, - -1.23966858e-003, 1.35402018e-002, 5.88599825e-003, - 1.77884605e-002, -1.85484942e-002, 1.34000003e-001, - 4.03550193e-002, 1.66864932e-001, -2.17707753e-002, - 1.08471178e-001, 4.64142300e-002, 1.49730131e-001, - -1.54392468e-003, 2.53369333e-003, 7.90089555e-003, - 1.23992069e-002, 2.13476960e-002, 2.19986797e-003, - 3.47623453e-002, 3.60944942e-002, -1.48037053e-003, - 1.04354635e-001, 1.20239571e-001, 1.94147542e-001, - -2.10740060e-001, 2.33036429e-001, 2.76267290e-001, - 3.08905214e-001, -8.74499232e-002, 3.31678577e-002, - 1.17241934e-001, 6.26994595e-002, 2.62651294e-002, - -4.88275215e-002, 4.91946898e-002, 6.42977208e-002, - 1.42653286e-001, -2.44268268e-001, 2.04026029e-001, - 2.98996150e-001, -1.07945718e-001, -1.06517874e-001, - 2.00058788e-001, 2.05977380e-001, -9.52278227e-002, - 1.04551313e-004, 1.19689398e-001, 4.63818945e-002, - -2.57298443e-003, -2.95171910e-003, 7.79771619e-003, - 1.18626598e-002, 1.99654922e-002, -7.77061135e-002, - 5.25462367e-002, 1.12864636e-001, 5.84073970e-003, - -9.47170630e-002, 4.76058275e-002, 1.17908254e-001, - -4.85184835e-003, -4.61698370e-003, 1.06288791e-002, - 1.03105670e-002, -1.22219877e-004, 1.96291669e-003, - 4.92525194e-003, 5.41333621e-003, -7.31364870e-003, - 2.81141493e-002, 4.04719263e-002, 4.43377905e-002, - 1.27881309e-002, 3.30714062e-002, 4.44729403e-002, - 4.67408225e-002, -4.80944291e-003, 5.22675924e-004, - 8.76400527e-003, 5.15973475e-003, 2.23703831e-002, - 1.90925859e-002, 3.77053767e-002, 3.38410661e-002, - -6.47988245e-002, 1.92830443e-001, 2.16275424e-001, - 2.46700078e-001, 1.72318462e-002, 1.02552548e-001, - 2.76852041e-001, 2.01491937e-001, -7.33717829e-002, - -6.13174355e-003, 9.22469720e-002, 3.64419110e-002, - 2.09725574e-002, -2.48798244e-002, 3.59432250e-002, - 4.06844728e-002, -5.90579510e-002, -2.47625798e-001, - 1.90312833e-001, 3.18223745e-001, -1.28796130e-001, - -2.95902342e-001, 2.90183842e-001, 3.68265271e-001, - -5.48656993e-002, -2.46359184e-002, 7.95982182e-002, - 4.32383120e-002, -9.43829364e-004, -4.61890781e-003, - 4.47807042e-003, 8.14849231e-003, -1.17613049e-002, - -4.26137224e-002, 3.12423445e-002, 6.50047064e-002, - -6.74507441e-003, -3.13584581e-002, 3.34230252e-002, - 5.49074970e-002, -4.22068551e-004, -4.06497944e-004, - 5.57367690e-003, 5.40800020e-003, -2.25375727e-004, - -5.47707547e-004, 4.09725448e-003, 3.79674183e-003, - 4.24940996e-002, 2.45128516e-002, 5.26743345e-002, - 4.15254235e-002, 2.65238229e-002, 3.35801654e-002, - 3.79658975e-002, 4.16835919e-002, 1.62467870e-004, - 1.81717973e-003, 3.04549700e-003, 3.68503202e-003, - 3.43614817e-002, 3.64862904e-002, 4.78550158e-002, - 4.73732613e-002, 2.92264581e-001, 3.14518809e-001, - 3.20873231e-001, 3.39491606e-001, 9.84274689e-003, - 8.72145221e-002, 1.17007799e-001, 1.44916520e-001, - -1.20558292e-002, 2.05024891e-003, 2.02210937e-002, - 1.93098541e-002, 4.89435643e-002, -8.52141343e-003, - 5.48078120e-002, 4.51418869e-002, 1.00437790e-001, - -2.59767562e-001, 1.79486290e-001, 3.24498922e-001, - -3.34164575e-002, -2.70093739e-001, 1.22753926e-001, - 3.01640630e-001, -1.07165202e-002, -2.97360085e-002, - 2.32902262e-002, 3.83230187e-002, 8.40469787e-004, - -2.77518854e-003, 3.67036392e-003, 6.41687959e-003, - 2.56709196e-003, -3.57832424e-002, 2.51771566e-002, - 5.87118492e-002, 7.06625916e-003, -3.59803662e-002, - 2.64152884e-002, 5.94717599e-002, 1.56470540e-003, - -3.40360799e-003, 3.85449338e-003, 7.11641042e-003, - 1.73329154e-003, 6.52334362e-004, 3.81806330e-003, - 2.77954247e-003, 1.28515987e-002, 2.64937449e-002, - 2.79382505e-002, 3.40290256e-002, -2.12242436e-002, - 2.41335742e-002, 3.27010527e-002, 3.34456079e-002, - -1.44295802e-003, 2.91063945e-004, 3.67708760e-003, - 2.83035380e-003, 2.37708539e-002, 2.56461278e-003, - 3.54120545e-002, 1.98160242e-002, 1.36494324e-001, - 3.08789480e-002, 2.23915830e-001, 1.59051180e-001, - -2.23135233e-001, 2.67338119e-002, 2.74716973e-001, - 1.70270666e-001, -1.89142283e-002, 1.70867192e-003, - 3.20278853e-002, 2.21597515e-002, 2.19427608e-002, - -1.63626997e-003, 3.60594615e-002, 2.49494389e-002, - 2.72658229e-001, 9.25067216e-002, 3.16752464e-001, - 2.86145836e-001, -2.86270857e-001, 1.72732517e-001, - 3.32478255e-001, 3.32147658e-001, -2.40012873e-002, - 1.15121370e-002, 3.92692648e-002, 3.05000953e-002, - 1.68406370e-003, 3.59723112e-004, 4.37758025e-003, - 3.34130297e-003, 2.99497098e-002, -2.79692151e-002, - 4.23052572e-002, 4.25305218e-002, -2.27582324e-002, - -2.77322847e-002, 4.42707874e-002, 4.51701209e-002, - -2.64080404e-003, 4.52427514e-004, 5.16474945e-003, - 4.28507617e-003, 9.22725711e-004, -2.49010348e-003, - 3.96157103e-003, 5.52080479e-003, -1.67376117e-003, - -2.96682082e-002, 2.95223314e-002, 4.51510176e-002, - 1.94146100e-003, -3.10791973e-002, 3.20025347e-002, - 4.50976901e-002, 2.71594443e-004, -2.45912420e-003, - 4.13131202e-003, 5.34946145e-003, -1.80860758e-002, - -2.61850823e-002, 3.03969458e-002, 4.44399342e-002, - -5.04124351e-002, -2.87478656e-001, 1.48474753e-001, - 3.31518263e-001, 9.64880511e-002, -2.30922788e-001, - 1.83244780e-001, 3.04624081e-001, 2.93813329e-002, - -8.22512340e-003, 3.98181528e-002, 4.24008481e-002, - -1.86209958e-002, 2.99344342e-002, 3.27226482e-002, - 4.44576666e-002, -1.35509253e-001, 2.09930420e-001, - 1.99663520e-001, 2.70251453e-001, 2.56678581e-001, - 1.93267539e-001, 2.97200412e-001, 2.53559440e-001, - 2.80964188e-002, 3.14830802e-002, 4.24908288e-002, - 4.56007309e-002, 2.79808970e-004, 7.37117545e-004, - 4.22278419e-003, 4.58082510e-003, -1.62153486e-002, - 2.53302716e-002, 3.71671617e-002, 4.11295891e-002, - 2.44651474e-002, 2.46007405e-002, 4.39370535e-002, - 3.92880440e-002, 1.15885795e-003, -6.83638384e-004, - 4.70872456e-003, 4.43171058e-003, -2.59128795e-003, - -5.77428285e-003, 6.90237479e-003, 1.06537221e-002, - -1.61563023e-003, -9.51967388e-002, 3.40222418e-002, - 1.22856155e-001, -1.28205083e-002, -1.01016432e-001, - 3.15336920e-002, 1.26722246e-001, -1.11505820e-003, - -8.12672917e-003, 4.12105769e-003, 1.18448194e-002, - -4.46803272e-002, 2.75374274e-003, 5.56591190e-002, - 3.96266617e-002, -1.05079435e-001, -7.57556350e-004, - 1.63487405e-001, 2.25484803e-001, 2.01506149e-002, - 1.99133903e-002, 1.01632021e-001, 2.10599720e-001, - 1.21266292e-002, 4.73676389e-003, 2.29355134e-002, - 3.15547511e-002, -3.00290082e-002, 3.70905958e-002, - 4.50101420e-002, 4.96930704e-002, -1.30851999e-001, - 3.55257630e-001, 1.84218913e-001, 4.04320538e-001, - 3.54435369e-002, 3.48093003e-001, 1.14981674e-001, - 3.95181894e-001, 7.37102469e-003, 4.34654020e-002, - 2.41966918e-002, 5.32058030e-002, 7.44609279e-004, - 2.74971267e-003, 4.85625258e-003, 6.47388073e-003, - -3.72483511e-003, 4.41837497e-002, 2.47344784e-002, - 6.60912320e-002, -2.30216677e-003, 4.68229391e-002, - 2.38951370e-002, 7.13309050e-002, -2.22772616e-003, - 5.17328223e-003, 4.80832718e-003, 9.34130792e-003, - 2.51238840e-003, 1.88885932e-003, 6.79677725e-003, - 5.87887364e-003, -2.13891380e-002, 5.66043109e-002, - 5.31652011e-002, 6.66076094e-002, -4.87122387e-002, - 3.61359343e-002, 6.03028871e-002, 5.53632304e-002, - 1.64740172e-003, -9.78567870e-004, 4.26467694e-003, - 4.64604190e-003, 4.84992117e-002, 7.54592707e-003, - 6.12038262e-002, 3.40735540e-002, 7.52970874e-002, - 1.22684002e-001, 1.91020042e-001, 1.81569323e-001, - -3.57159078e-001, 4.10335332e-001, 3.83024096e-001, - 4.31458205e-001, -3.21299061e-002, 5.66559583e-002, - 5.16338870e-002, 6.70729354e-002, 4.16055657e-002, - 2.74202344e-003, 5.47250435e-002, 2.86765117e-002, - 1.12020284e-001, -5.47982045e-002, 1.63653821e-001, - 1.16146632e-001, -9.22978818e-002, -2.31483690e-002, - 1.50954232e-001, 1.24802090e-001, -4.71594855e-002, - 2.46463418e-002, 5.58595955e-002, 4.44860011e-002, - 2.48214183e-003, 6.24834734e-004, 5.59437042e-003, - 3.52689927e-003, 1.18135056e-002, -1.33146625e-002, - 2.70369444e-002, 2.39794496e-002, -5.95018687e-003, - -1.47755118e-002, 2.41099969e-002, 2.50279643e-002, - -2.38196598e-003, 3.54772899e-004, 4.47601965e-003, - 3.83197772e-003, 2.40692243e-004, 1.38347142e-003, - 5.09824045e-003, 5.58520807e-003, -4.42042388e-003, - 2.44814791e-002, 3.44778188e-002, 4.81973179e-002, - -5.44923823e-003, 1.84220020e-002, 3.11794411e-002, - 4.45882790e-002, -9.30748356e-005, 8.45215574e-004, - 4.15264117e-003, 5.01339743e-003, 2.21847091e-002, - 9.20145959e-003, 4.65904027e-002, 3.89643572e-002, - -1.24568539e-002, 8.66978765e-002, 2.74910390e-001, - 3.21889222e-001, 6.52902760e-003, 2.05787614e-001, - 2.74224192e-001, 3.56812149e-001, -3.06353364e-002, - 1.25580514e-002, 4.75036465e-002, 4.05169725e-002, - 2.59647314e-002, 5.84103260e-003, 4.74147126e-002, - 3.61741148e-002, 4.80577983e-002, 9.33291763e-002, - 2.43000403e-001, 2.88781554e-001, -1.54893622e-001, - -1.27345636e-001, 2.98793286e-001, 2.98992515e-001, - -2.40622368e-002, -1.65438522e-002, 4.47592176e-002, - 3.96565460e-002, 1.62371760e-003, -4.54376917e-004, - 5.48681011e-003, 5.34112751e-003, -5.07376343e-003, - -2.92026233e-002, 3.59580480e-002, 4.95430082e-002, - -2.63428092e-002, -1.54181989e-002, 4.36801165e-002, - 4.65812460e-002, -1.03992461e-004, 7.05042214e-004, - 4.52256063e-003, 4.92217764e-003, 8.25293464e-005, - 5.39758475e-003, 4.80862055e-003, 1.01635950e-002, - 4.75146808e-003, 7.16937259e-002, 3.04609835e-002, - 9.48473141e-002, 4.75895446e-004, 7.07235634e-002, - 3.17955986e-002, 9.31262448e-002, -8.47499818e-004, - 4.30717971e-003, 5.11938846e-003, 9.03934054e-003, - 3.36437672e-002, 1.00488085e-002, 4.57433686e-002, - 4.56756689e-002, 6.25655279e-002, 1.00696206e-001, - 1.70984119e-001, 2.88986474e-001, -7.54981786e-002, - 7.54051208e-002, 1.94156110e-001, 2.65768468e-001, - -3.52180339e-002, 1.07312510e-002, 4.98360395e-002, - 3.99569720e-002, 2.89499275e-002, -4.49512340e-002, - 4.40503620e-002, 6.13632798e-002, 1.25162378e-001, - -3.46517861e-001, 1.99500307e-001, 4.42625701e-001, - -2.45848466e-002, -2.07260668e-001, 1.75584897e-001, - 3.15695822e-001, -3.01397610e-002, -1.38763608e-002, - 4.44217026e-002, 3.91816013e-002, -1.23579870e-003, - 3.73396142e-005, 4.55770455e-003, 7.21360417e-003, - 1.13895154e-002, -2.06114221e-002, 3.00113149e-002, - 6.12802804e-002, 1.21584460e-002, -4.18125503e-002, - 3.22441384e-002, 7.14861527e-002, -1.47159255e-004, - -3.72003578e-003, 4.88744862e-003, 8.24165717e-003, - -1.79127941e-003, -1.69239589e-003, 5.77180879e-003, - 4.76464583e-003, 1.38556585e-002, -4.26605083e-002, - 5.04138246e-002, 5.41799366e-002, 1.47016952e-002, - -2.36049499e-002, 3.68036143e-002, 4.36294973e-002, - -1.98261975e-003, -1.16823951e-003, 4.67918580e-003, - 5.08068921e-003, -4.01011743e-002, -1.14573045e-002, - 5.56089543e-002, 3.39657664e-002, -8.33081976e-002, - -1.62704453e-001, 3.00144702e-001, 2.66339779e-001, - 9.33380052e-002, -3.89790803e-001, 2.20962763e-001, - 4.37648058e-001, 2.16205902e-002, -4.80655134e-002, - 3.95926349e-002, 5.85443862e-002, -3.67467254e-002, - 2.36811792e-003, 5.24227694e-002, 3.18726040e-002, - -1.25521392e-001, 1.20118216e-001, 2.50252277e-001, - 2.08928704e-001, -3.67872156e-002, 1.11321568e-001, - 1.91721708e-001, 1.89622715e-001, 2.59643011e-002, - 2.20945873e-003, 3.79311889e-002, 3.19989324e-002, - -2.47121137e-003, -4.09981876e-004, 6.12672605e-003, - 4.35566204e-003, -1.05434163e-002, 1.56244701e-002, - 4.00401950e-002, 3.54572609e-002, -8.18431098e-003, - 1.90653652e-002, 3.46494950e-002, 3.61684524e-002, - 7.25696969e-004, 9.96676041e-004, 4.61134035e-003, - 4.57612518e-003, 1.27702230e-003, -4.60632564e-003, - 5.39319078e-003, 9.42065008e-003, 2.91906297e-003, - -6.83882684e-002, 3.65250260e-002, 9.19547006e-002, - 4.04103566e-003, -6.55113384e-002, 3.87290567e-002, - 8.92826319e-002, -2.98144034e-004, -3.89578682e-003, - 5.54050598e-003, 8.98450334e-003, -2.15072930e-002, - -7.86609203e-003, 3.86300795e-002, 5.37806973e-002, - -8.68916735e-002, -7.11086914e-002, 1.99202240e-001, - 4.09053028e-001, 1.42175496e-001, -7.84789473e-002, - 2.44444668e-001, 4.46999103e-001, 3.44251171e-002, - -1.85878528e-003, 5.04217111e-002, 6.31169006e-002, - -2.11399905e-002, 8.57273303e-003, 3.76519635e-002, - 3.90836373e-002, -6.69221058e-002, 8.11920688e-002, - 1.84240609e-001, 2.44613990e-001, 1.64758429e-001, - 1.24717668e-001, 2.40619138e-001, 2.49911740e-001, - 3.36355343e-002, 1.35248294e-002, 4.95795310e-002, - 4.32810672e-002, -3.79237579e-004, 1.66931935e-003, - 5.01009496e-003, 5.87941287e-003, -1.72817803e-004, - 3.65217291e-002, 3.24916430e-002, 5.27922846e-002, - 1.70139540e-002, 3.41512822e-002, 3.68220061e-002, - 5.18910810e-002, 1.22538069e-003, 9.96495597e-004, - 5.39974682e-003, 5.78471739e-003, 2.33551284e-004, - -2.66932184e-004, 4.94427839e-003, 3.28407786e-003, - 2.01862380e-002, 1.15599930e-002, 3.89787331e-002, - 3.36964242e-002, -1.48410080e-002, 1.28960470e-002, - 3.67284976e-002, 3.91592309e-002, -8.04729643e-004, - -4.37328184e-004, 4.30075917e-003, 4.37030196e-003, - 2.70407624e-003, -3.45145771e-003, 3.87120657e-002, - 2.21714377e-002, 1.55509084e-001, -6.53854460e-002, - 3.10876131e-001, 1.91462636e-001, -2.00077727e-001, - -1.84413522e-001, 2.98247874e-001, 2.99244195e-001, - 1.66050997e-003, -7.42121786e-003, 3.43614109e-002, - 3.13543826e-002, 1.35483688e-005, 3.18663660e-003, - 3.80790010e-002, 2.24238671e-002, 1.31838948e-001, - 2.51484532e-002, 3.29770356e-001, 2.04069600e-001, - -9.81072113e-002, 2.19275773e-001, 2.54220814e-001, - 3.40529084e-001, -5.94496634e-003, 1.77395456e-002, - 3.88080478e-002, 3.63339223e-002, -5.81239510e-005, - 1.47779996e-004, 4.99857543e-003, 3.12588573e-003, - 2.01484486e-002, -8.29818100e-003, 4.42516766e-002, - 3.81469503e-002, -2.69098533e-003, -1.57537777e-002, - 3.58674861e-002, 4.32395563e-002, -1.57527055e-003, - -2.15714725e-004, 4.23743669e-003, 4.06650035e-003, - -7.03471061e-003, 1.31529511e-003, 1.09345736e-002, - 3.67978727e-003, -2.18366124e-002, -1.81495324e-002, - 5.79929724e-002, 3.33615988e-002, -4.73473374e-005, - -2.09696479e-002, 3.20975706e-002, 3.68513614e-002, - 7.12880515e-004, -1.31089007e-003, 4.47757402e-003, - 4.58666543e-003, -6.45989478e-002, 5.13581140e-003, - 8.75046104e-002, 2.07393263e-002, -2.17008829e-001, - -6.04435876e-002, 4.29193795e-001, 1.50881752e-001, - 7.10558146e-003, -4.47870605e-002, 1.56287342e-001, - 1.54345363e-001, 1.82342511e-002, -3.23910685e-003, - 3.16726677e-002, 2.57061664e-002, -6.62174672e-002, - -5.61509049e-004, 8.78204033e-002, 1.96117330e-002, - -1.53485641e-001, 8.83154273e-002, 5.05718172e-001, - 1.74388304e-001, 5.00247031e-002, 2.38025323e-001, - 1.84939206e-001, 2.89228916e-001, 1.45805059e-002, - 2.98572592e-002, 3.30661051e-002, 4.12984081e-002, - -7.22136116e-003, -7.73749431e-004, 1.07722282e-002, - 3.54368612e-003, 2.43392983e-003, 2.89728623e-002, - 7.59452656e-002, 4.23004068e-002, 1.45970611e-002, - 2.50877738e-002, 4.44883518e-002, 4.77143601e-002, - -1.58423150e-003, 1.53555535e-003, 5.49014891e-003, - 5.79111790e-003, -4.66384721e-004, 5.49312332e-004, - 4.04639076e-003, 4.35531698e-003, 1.81212146e-002, - 2.78957505e-002, 3.58213373e-002, 4.44516093e-002, - 2.76294001e-003, 4.22828868e-002, 3.53838801e-002, - 5.39620593e-002, -2.46407883e-003, 1.20199879e-003, - 5.34284580e-003, 5.41094039e-003, 2.24659033e-002, - 2.58156992e-002, 3.87963131e-002, 3.96634154e-002, - 1.56173646e-001, 2.28688434e-001, 2.37844720e-001, - 2.93032736e-001, -1.77880645e-001, -3.43566909e-002, - 2.77109712e-001, 2.82779485e-001, -3.50040421e-002, - -1.59302242e-002, 4.75749858e-002, 4.10158634e-002, - 3.00995540e-002, 4.27642278e-003, 4.33635898e-002, - 3.30078192e-002, 8.72076601e-002, -2.41398886e-002, - 1.92041174e-001, 1.83807060e-001, -3.39364052e-001, - 1.08773159e-002, 3.76702130e-001, 2.81266809e-001, - -2.12542154e-002, -1.34004606e-003, 3.98138463e-002, - 3.66233066e-002, 1.47831521e-003, -4.99295478e-004, - 4.69900900e-003, 4.59312974e-003, 2.96252733e-003, - -2.71509290e-002, 3.24783400e-002, 4.28748094e-002, - -3.18390988e-002, -2.35561579e-002, 4.60848212e-002, - 4.75535467e-002, -1.48170837e-003, 9.73401417e-004, - 5.09234611e-003, 5.08767972e-003, 1.15789613e-002, - 1.62201412e-002, 2.40273885e-002, 2.26146933e-002, - -2.10904442e-002, 2.35465348e-001, 7.72660598e-002, - 3.13180387e-001, 4.42176573e-002, 1.90889105e-001, - 7.06328154e-002, 2.51980394e-001, -1.21593126e-003, - 1.79134943e-002, 5.70499105e-003, 2.71156393e-002, - 1.57662243e-001, -2.20622420e-002, 2.63532877e-001, - 4.80095707e-002, 8.01456869e-002, 6.67961091e-002, - 1.62772119e-001, 1.73188955e-001, 2.31185462e-002, - 5.34867272e-002, 8.54807645e-002, 1.32009178e-001, - -1.98305883e-002, 1.95711162e-002, 3.21200937e-002, - 2.42865346e-002, 1.64754957e-001, -3.94283794e-002, - 2.93788046e-001, 6.67415559e-002, 1.61186770e-001, - -1.43687755e-001, 2.69048184e-001, 3.13817948e-001, - 1.00524891e-002, -5.14715984e-002, 1.14133857e-001, - 1.81085333e-001, -1.62142143e-002, -1.76348649e-002, - 2.22028177e-002, 3.04187462e-002, 1.58622488e-002, - -2.85204570e-003, 2.92637050e-002, 1.44554153e-002, - 4.40131128e-002, -3.96232158e-002, 6.65981770e-002, - 1.05395161e-001, 3.51972505e-003, -7.47706741e-002, - 3.15710828e-002, 1.16811000e-001, -8.91002361e-004, - -1.06527898e-002, 3.98510927e-003, 1.72128826e-002, - 3.06298654e-003, 2.16686130e-002, 1.07673332e-002, - 3.91326584e-002, 1.27473362e-002, 2.99600154e-001, - 3.43754217e-002, 3.86584491e-001, -2.20081280e-003, - 3.17402363e-001, 2.80651078e-002, 4.08931941e-001, - -1.12089154e-004, 3.63334790e-002, 5.75711532e-003, - 4.98820879e-002, 1.06650829e-001, 7.01709390e-002, - 1.34368777e-001, 9.69581008e-002, 1.13351360e-001, - 1.62404299e-001, 1.89859301e-001, 3.34625006e-001, - -2.83815712e-002, 1.02266222e-001, 9.74304602e-002, - 2.68778980e-001, -2.36423351e-002, 3.67669240e-002, - 3.74047831e-002, 5.31625226e-002, 5.77210225e-002, - 1.75216757e-002, 8.06177109e-002, 3.28934118e-002, - 2.46247780e-002, 3.69451307e-002, 9.21278894e-002, - 1.19079754e-001, -1.78840701e-002, 2.70853899e-002, - 6.71056509e-002, 9.75957513e-002, -9.11568198e-003, - 1.34793075e-003, 1.94973219e-002, 1.30273066e-002, - 5.05332882e-003, 6.76018128e-004, 7.72095658e-003, - 3.89315747e-003, 2.57974211e-003, -4.89369500e-003, - 1.34949116e-002, 1.76596679e-002, -3.29486281e-003, - -5.24728326e-003, 7.46815465e-003, 1.47171216e-002, - -8.73528246e-004, -2.39803136e-004, 2.14184332e-003, - 2.24888930e-003, -1.23082995e-004, -1.88729656e-003, - 5.36931772e-003, 5.10155456e-003, 2.16921903e-002, - -3.40725817e-002, 4.88602854e-002, 5.03168330e-002, - 4.95262817e-002, -1.84262656e-002, 6.53368980e-002, - 5.64949960e-002, -4.49395389e-004, 4.89068567e-004, - 5.56473667e-003, 6.00634515e-003, -1.36577766e-002, - -3.35089373e-003, 3.57576460e-002, 2.95374263e-002, - 5.10752620e-003, -4.11100015e-002, 2.04582259e-001, - 1.82358742e-001, 2.00281918e-001, -2.43340924e-001, - 2.87278742e-001, 3.89808863e-001, 5.99900112e-002, - -1.27810845e-002, 7.33572096e-002, 6.25038594e-002, - -1.33543592e-002, -7.23744975e-004, 3.59366089e-002, - 2.88454257e-002, -3.46996263e-002, -4.73970687e-003, - 1.74184322e-001, 1.67772442e-001, 3.11880410e-001, - 1.54878929e-001, 3.74529213e-001, 2.70005554e-001, - 5.33408597e-002, 2.58619934e-002, 6.92637414e-002, - 4.88884151e-002, -4.91514569e-004, 2.19039517e-004, - 5.20196045e-003, 4.38722549e-003, 1.65933296e-002, - 2.96493005e-002, 3.98706496e-002, 4.45215032e-002, - 5.34379669e-002, 3.95455025e-002, 6.59420416e-002, - 5.94261065e-002, 8.25498893e-004, -8.37619475e-004, - 5.94672794e-003, 5.54657495e-003, 8.65527138e-004, - 3.37905622e-005, 3.86980246e-003, 3.52465967e-003, - 1.29830220e-003, 4.37972369e-003, 2.87536513e-002, - 3.12169474e-002, -1.46992784e-002, 4.85270750e-003, - 5.28677292e-002, 3.08932047e-002, 6.68344495e-004, - 1.46230785e-004, 4.36576875e-003, 3.48658301e-003, - -2.94506026e-004, -1.51154948e-002, 3.20782438e-002, - 3.32027748e-002, 5.56496009e-002, -1.28414318e-001, - 2.14014113e-001, 2.42984548e-001, -6.30112514e-002, - -3.31884809e-002, 3.87725204e-001, 1.96937695e-001, - 2.57746340e-003, -4.79576964e-004, 3.76079194e-002, - 2.75245328e-002, 4.06019716e-003, -5.58988051e-003, - 2.82953363e-002, 5.77558838e-002, 4.19354104e-002, - -3.39918844e-002, 1.61815584e-001, 4.76060480e-001, - -4.74359840e-003, -8.23315084e-002, 2.23791763e-001, - 4.23615128e-001, -9.05321038e-004, -1.03577208e-002, - 3.62869315e-002, 5.45922481e-002, -3.32591793e-004, - 1.11220451e-003, 3.08939372e-003, 4.98199137e-003, - -2.65438762e-003, 4.25784383e-003, 2.23738942e-002, - 4.33958732e-002, -2.57125916e-003, 2.42775623e-005, - 3.30257192e-002, 4.22165804e-002, 1.04107929e-003, - 2.62978516e-004, 3.65654426e-003, 5.11859218e-003, - 1.28278590e-003, 7.48605467e-004, 3.67415627e-003, - 3.61531135e-003, 6.73687086e-003, 2.63255890e-002, - 2.71721184e-002, 3.83111723e-002, -5.26902732e-004, - 2.57426463e-002, 2.46127900e-002, 4.04557884e-002, - 4.72494779e-004, 1.89158355e-003, 3.58690531e-003, - 4.87058470e-003, 2.54992023e-002, 2.48740870e-003, - 3.55160423e-002, 2.52447315e-002, 2.31430292e-001, - 1.61664680e-001, 2.80883461e-001, 2.60514081e-001, - -5.02783582e-002, 2.64979422e-001, 1.57515779e-001, - 3.08018744e-001, -2.45036352e-002, 1.71629842e-002, - 3.50713246e-002, 3.71713787e-002, 2.77987663e-002, - 1.09124917e-003, 3.80379222e-002, 2.45521031e-002, - 2.70439386e-001, -5.11925183e-002, 3.18299294e-001, - 2.13705868e-001, -1.60070196e-001, -2.29550749e-001, - 2.21577480e-001, 2.90852696e-001, -2.34394222e-002, - -2.85128839e-002, 3.72472294e-002, 4.14172783e-002, - 2.13764561e-003, -4.49471816e-004, 4.47308691e-003, - 3.76633345e-003, 9.80581250e-003, -3.55021209e-002, - 3.44092697e-002, 4.56379168e-002, -1.81081425e-002, - -2.81487592e-002, 3.38815376e-002, 4.41234410e-002, - 6.43402571e-004, -4.60845797e-004, 3.79992742e-003, - 4.43805521e-003, 5.36228006e-004, -2.06610374e-003, - 4.66774357e-003, 5.72758634e-003, 1.40961530e-002, - -3.37279513e-002, 3.64751779e-002, 5.37959673e-002, - 4.72118892e-003, -3.78795005e-002, 3.54411379e-002, - 5.64703308e-002, 3.17138364e-003, -2.87021254e-003, - 7.61066563e-003, 7.55515322e-003, -1.25271603e-002, - -8.80690385e-003, 3.03172600e-002, 2.90365629e-002, - 7.16134235e-002, -7.76727647e-002, 1.76459804e-001, - 1.82456344e-001, 1.97169166e-002, -8.12171996e-002, - 2.00149715e-001, 2.25194111e-001, 6.07882142e-002, - 5.42068807e-003, 7.21572787e-002, 5.03230691e-002, - -1.99873224e-002, 2.78855972e-002, 3.96729484e-002, - 5.11409715e-002, 2.43355967e-002, 1.28342688e-001, - 1.72545999e-001, 3.19969654e-001, 2.19818413e-001, - 2.09660694e-001, 3.05945277e-001, 3.58919680e-001, - 7.31117949e-002, 7.24184141e-002, 9.43640321e-002, - 9.20257792e-002, 3.09893186e-003, 1.52211748e-002, - 8.38299096e-003, 1.88492816e-002, 7.75790215e-003, - 1.72206119e-001, 4.78638895e-002, 1.93175182e-001, - 2.98244338e-002, 1.62227467e-001, 6.08990788e-002, - 1.81972951e-001, -1.51894812e-004, 7.00243376e-003, - 9.41616297e-003, 1.39451856e-002, 1.16274669e-003, - 1.62802244e-005, 5.26803965e-003, 5.02525875e-003, - 1.32558541e-002, 2.77810078e-002, 3.87222320e-002, - 5.78174703e-002, -1.75557435e-002, 3.02531794e-002, - 3.51771824e-002, 6.32217154e-002, -1.51240127e-003, - -3.05958703e-004, 4.52109007e-003, 5.99159161e-003, - 2.12252606e-002, 1.59332936e-003, 5.57250306e-002, - 3.49039920e-002, 1.35828242e-001, -1.05803959e-001, - 3.25697750e-001, 3.36189121e-001, -1.80865675e-001, - -1.40696973e-001, 2.77097493e-001, 3.56632620e-001, - -1.84258074e-002, -1.18503335e-003, 4.48247641e-002, - 3.82076874e-002, 2.52767857e-002, -4.16713534e-003, - 5.21950759e-002, 3.21496911e-002, -1.05310783e-001, - -1.06182478e-001, 3.21646810e-001, 2.40162507e-001, - -1.12358676e-002, -1.44657731e-001, 1.79866791e-001, - 2.47413933e-001, -1.58104245e-002, -1.09452503e-002, - 3.52567732e-002, 2.97921430e-002, 6.27911999e-004, - -1.78352685e-003, 5.03690960e-003, 4.90693096e-003, - -1.12684835e-002, -2.35388335e-002, 3.37046534e-002, - 4.32895981e-002, -4.50920407e-003, -1.69486757e-002, - 2.46122535e-002, 3.55487503e-002, 1.60759682e-005, - -1.46104011e-003, 3.22966021e-003, 4.12843004e-003, - -8.69608385e-008, 4.96440660e-003, 8.83160438e-003, - 1.51689779e-002, 2.02326644e-002, 1.34684965e-001, - 5.04313000e-002, 1.75326765e-001, 2.40011737e-002, - 1.49524882e-001, 6.23297542e-002, 1.80546135e-001, - -2.97599589e-003, 7.38297123e-003, 1.25257205e-002, - 1.65146850e-002, 8.43448788e-002, 5.51588014e-002, - 1.06184378e-001, 9.04930905e-002, 1.51264817e-001, - 3.08895916e-001, 2.38879949e-001, 3.67803991e-001, - -1.65365398e-001, 1.23536028e-001, 2.71949500e-001, - 2.54337728e-001, -8.42671245e-002, -1.37754073e-002, - 1.28227547e-001, 6.22237995e-002, 8.40069875e-002, - 1.92504190e-002, 1.04891576e-001, 4.41971570e-002, - 4.89748381e-002, 1.34232817e-002, 1.19695097e-001, - 8.83360729e-002, -1.86844915e-001, 4.72807214e-002, - 2.44394392e-001, 1.33087501e-001, -7.99883306e-002, - 3.76729257e-002, 1.19183443e-001, 6.42249659e-002, - 7.03541841e-003, 1.29510497e-003, 9.66657232e-003, - 4.17915126e-003, 6.10502297e-003, -4.32496378e-003, - 1.65778585e-002, 1.40455309e-002, -1.57807563e-002, - -3.26155825e-003, 2.56928466e-002, 1.51474960e-002, - -5.64011652e-003, 2.27094418e-003, 9.96483397e-003, - 4.53894725e-003, 5.25174488e-004, -3.21016487e-005, - 9.75013524e-003, 1.16321854e-002, 4.35950346e-002, - 5.47326058e-002, 8.12636912e-002, 1.10627964e-001, - -3.58870402e-002, 1.00300841e-001, 6.34212717e-002, - 1.23559244e-001, -1.52281398e-004, 6.46739453e-003, - 1.03215761e-002, 1.31933531e-002, 1.30988769e-002, - 7.28843957e-002, 8.31302479e-002, 1.07378773e-001, - 3.43977332e-001, 2.38595635e-001, 3.95055383e-001, - 3.07389349e-001, -1.99818864e-001, 1.26445949e-001, - 2.43584096e-001, 2.14314416e-001, -7.91306235e-003, - 4.68737595e-002, 6.70070276e-002, 6.55030534e-002, - 3.38820294e-002, 2.00402271e-002, 4.90883216e-002, - 4.52265851e-002, 2.54438818e-002, -1.88116115e-002, - 9.91776884e-002, 1.45049199e-001, -4.03250344e-002, - -2.90267877e-002, 1.02910005e-001, 1.42897367e-001, - -1.76689010e-002, 7.42195128e-003, 3.61094810e-002, - 3.31596397e-002, 2.48789933e-004, -1.02181723e-002, - 5.79160452e-003, 1.86435021e-002, -1.51093276e-002, - -1.29900649e-001, 3.19201276e-002, 1.84772745e-001, - 1.04245432e-002, -1.25262633e-001, 3.15998867e-002, - 1.80173576e-001, 2.55646580e-003, -9.23236739e-003, - 5.62068308e-003, 1.50679825e-002, 1.48978946e-003, - 1.57248776e-003, 6.07189769e-003, 4.46584076e-003, - -1.28119309e-002, 2.50388868e-002, 4.78922017e-002, - 4.01850678e-002, 7.70737696e-003, 2.69865263e-002, - 6.75654039e-002, 3.86463292e-002, -1.86443632e-003, - 3.68579131e-005, 5.54701686e-003, 3.56366672e-003, - 4.20762561e-002, 6.37826370e-003, 5.77158220e-002, - 2.68527549e-002, -7.84672424e-002, 1.96081042e-001, - 2.90613800e-001, 2.55851746e-001, -1.61071476e-002, - 1.61956370e-001, 5.41186154e-001, 2.36172259e-001, - -3.27235833e-002, 8.52079876e-003, 5.25726601e-002, - 2.50693150e-002, 3.49153765e-002, -5.90604916e-003, - 5.33541515e-002, 2.45472938e-002, 9.85565111e-002, - -5.89460433e-002, 2.15069667e-001, 1.58404887e-001, - -1.48929834e-001, -4.31929193e-002, 3.27090502e-001, - 1.69235766e-001, -3.76356803e-002, 6.28451351e-003, - 5.80177344e-002, 2.67149266e-002, 1.81665318e-003, - 2.98342260e-004, 5.81195764e-003, 3.27071152e-003, - 1.37078483e-002, -1.70746911e-002, 3.29508074e-002, - 3.04770581e-002, -1.61918290e-002, -1.73851270e-002, - 4.21899371e-002, 3.12943645e-002, -3.10294400e-003, - 9.20502003e-004, 6.94482960e-003, 4.02118126e-003, - -3.40937893e-003, -8.17511056e-004, 7.26177823e-003, - 5.89491148e-003, 1.31414470e-003, -4.26158458e-002, - 4.36045267e-002, 5.94104156e-002, 2.46496126e-002, - -3.40857059e-002, 4.71704379e-002, 5.54718524e-002, - -5.84799447e-004, -1.77249240e-004, 5.52742789e-003, - 5.41778328e-003, -4.37566377e-002, 1.33741396e-002, - 6.28035739e-002, 3.94107029e-002, -1.17717609e-001, - 3.76490653e-002, 2.78456479e-001, 2.43937790e-001, - 1.55214235e-001, -1.44252107e-001, 3.22522610e-001, - 2.89112091e-001, 2.32936144e-002, -2.01359596e-002, - 5.10336459e-002, 4.40745354e-002, -3.01843807e-002, - 6.73058163e-003, 5.80831431e-002, 3.52814421e-002, - -2.56830961e-001, -5.09573903e-004, 3.67746949e-001, - 2.54436284e-001, 6.53493479e-002, -3.08709312e-002, - 2.73755819e-001, 2.41604954e-001, 3.60095501e-002, - -7.19514769e-003, 5.70473373e-002, 4.03868556e-002, - -2.03352980e-003, -1.48077530e-003, 7.20995478e-003, - 5.34721371e-003, -3.14975902e-002, 2.10409947e-002, - 5.44213057e-002, 4.54206690e-002, 6.52502384e-003, - 2.40915492e-002, 4.14997488e-002, 4.48031127e-002, - 2.29175272e-003, -3.29906979e-005, 6.64252881e-003, - 5.63611183e-003, -9.49059241e-003, 3.09647265e-004, - 1.29010268e-002, 5.60804550e-003, 2.05616038e-002, - -3.31789590e-002, 5.88825606e-002, 5.34275472e-002, - -1.53242135e-002, -3.79350446e-002, 4.41093035e-002, - 6.18371293e-002, -8.99274135e-004, -3.96916969e-003, - 5.32312412e-003, 7.41007784e-003, -1.09724186e-001, - 5.83832990e-003, 1.27667695e-001, 3.04135606e-002, - 1.49719128e-002, -1.11102916e-001, 3.72743845e-001, - 2.22970322e-001, -1.15995981e-001, -1.64539188e-001, - 2.22285435e-001, 2.56501228e-001, 1.57296751e-002, - -1.44340005e-002, 2.96741333e-002, 3.36369723e-002, - -9.18495432e-002, 7.74337258e-003, 1.12030841e-001, - 3.12025957e-002, -1.03255801e-001, 2.03962997e-001, - 3.27785164e-001, 2.89341837e-001, -5.06281070e-002, - 1.96293592e-001, 1.71748355e-001, 2.88943529e-001, - 1.46105941e-002, 2.56536398e-002, 3.00942436e-002, - 4.00821455e-002, -5.65932831e-003, 4.33929585e-004, - 1.01944320e-002, 4.97881696e-003, -8.91146157e-003, - 3.48469801e-002, 4.77048419e-002, 5.69624268e-002, - -2.68929312e-003, 3.76855619e-002, 3.54229994e-002, - 6.21924475e-002, -6.42029569e-004, 3.96116544e-003, - 4.92240442e-003, 7.97605235e-003, 1.07921602e-003, - 6.20884355e-004, 4.87232395e-003, 4.06199787e-003, - 9.20054782e-003, 1.93710383e-002, 3.32513154e-002, - 3.49701978e-002, 1.72078405e-002, 2.68758759e-002, - 3.98116075e-002, 3.96788791e-002, -2.69526313e-003, - 1.20589032e-003, 6.35249447e-003, 4.86313831e-003, - 3.36535312e-002, 5.71798952e-003, 4.63519096e-002, - 2.81039849e-002, 7.93219656e-002, 1.75275460e-001, - 2.46898860e-001, 2.39451632e-001, 8.47723782e-002, - 9.96281430e-002, 2.98230320e-001, 2.20930740e-001, - -4.98853587e-002, -1.29031967e-002, 6.16726913e-002, - 3.71467471e-002, 3.18180956e-002, -1.27326725e-002, - 4.59976867e-002, 3.12258005e-002, 2.01633900e-001, - -1.16647512e-001, 3.00584406e-001, 2.53032297e-001, - -2.12415695e-001, -1.98646113e-001, 3.54038984e-001, - 2.95596153e-001, -2.65893023e-002, -2.54449360e-002, - 5.00257537e-002, 4.09210399e-002, 9.05830238e-004, - -5.45001880e-004, 4.74084029e-003, 4.38157935e-003, - 1.62221268e-002, -3.40629593e-002, 3.82286794e-002, - 4.88344803e-002, -2.27273088e-002, -3.20988670e-002, - 4.42925170e-002, 4.86763753e-002, 4.54039546e-004, - 3.56700708e-004, 5.01123210e-003, 4.47404338e-003, - -1.44134380e-003, 1.88235706e-003, 4.01732372e-003, - 5.31598646e-003, 6.68788515e-003, 2.60233674e-002, - 2.52397954e-002, 4.37321216e-002, 1.38338311e-002, - 4.26588878e-002, 3.18344533e-002, 5.56590967e-002, - -1.26712854e-004, 3.86536005e-003, 5.21022175e-003, - 6.55852025e-003, 1.87493730e-002, 4.67958301e-002, - 3.46395895e-002, 5.46571948e-002, 1.06081672e-001, - 3.93154114e-001, 1.91705614e-001, 4.17226493e-001, - -1.82305649e-002, 2.52133548e-001, 2.07446739e-001, - 3.24790388e-001, -4.51705530e-002, 1.98860792e-003, - 5.70125580e-002, 4.25158143e-002, 2.24714465e-002, - 6.86257472e-003, 3.22759934e-002, 2.62765549e-002, - 4.33130972e-002, -2.44772378e-002, 1.33596703e-001, - 1.22791134e-001, -2.44677782e-001, -1.45542845e-001, - 2.92755187e-001, 2.06158802e-001, -3.29289213e-002, - -2.35648323e-002, 5.50908484e-002, 4.26803082e-002, - 9.43250488e-004, -7.40030548e-004, 3.78845935e-003, - 3.44767072e-003, -3.80789186e-003, -2.11690050e-002, - 2.72302795e-002, 3.15607786e-002, -3.78122218e-002, - -1.63077917e-002, 4.99034822e-002, 3.65065746e-002, - -9.25651926e-004, 1.71749911e-003, 6.08301349e-003, - 4.85861860e-003, 1.13664637e-003, 2.77909148e-003, - 5.55911567e-003, 6.44167094e-003, 1.50881708e-002, - 5.95350154e-002, 3.64503935e-002, 7.80605897e-002, - 9.18881595e-003, 7.24333674e-002, 3.91849801e-002, - 8.81988928e-002, -2.30704411e-003, 4.52245260e-003, - 6.89602131e-003, 8.24652798e-003, 5.28386496e-002, - 9.72243771e-003, 7.14471191e-002, 3.45735177e-002, - 2.25104585e-001, 2.50488430e-001, 2.91423202e-001, - 3.03268313e-001, -8.18655118e-002, 1.67449832e-001, - 2.43857399e-001, 2.37386405e-001, -5.95385320e-002, - 4.44001565e-003, 7.78706968e-002, 3.63899134e-002, - 5.17994054e-002, -2.42439844e-003, 7.59232342e-002, - 2.90994551e-002, 2.96021163e-001, -2.56259590e-002, - 3.48816484e-001, 1.51918352e-001, -1.70105815e-001, - 1.27740074e-002, 2.65333563e-001, 1.36558011e-001, - -5.76588511e-002, 3.42574413e-003, 8.01081583e-002, - 3.24811898e-002, 4.42119734e-003, 1.65348453e-003, - 8.96701124e-003, 4.61452547e-003, 4.21528593e-002, - -1.38007635e-002, 5.22706285e-002, 3.04771606e-002, - -1.89469736e-002, -1.36360861e-002, 3.92872989e-002, - 2.73522008e-002, -5.05761104e-003, 1.17507391e-003, - 8.99556838e-003, 4.35906695e-003, 4.45711077e-004, - 9.32626834e-004, 3.19248415e-003, 2.82241427e-003, - -8.57623818e-004, 1.76345389e-002, 2.11219545e-002, - 2.58173309e-002, -3.63559760e-002, 1.90537274e-002, - 4.79786098e-002, 3.38414684e-002, -5.84913231e-003, - -1.71454635e-003, 9.20489058e-003, 5.38843777e-003, - 1.35097401e-002, 3.12438374e-003, 2.41273884e-002, - 1.46969333e-002, 2.79993620e-002, 3.77453640e-002, - 9.24753621e-002, 8.44339952e-002, -3.03173810e-001, - 3.44906151e-002, 3.52640271e-001, 1.43438324e-001, - -5.38948365e-002, -7.05463113e-003, 7.13458285e-002, - 3.30724940e-002, 1.43044172e-002, -5.83881512e-003, - 2.51355842e-002, 1.79260392e-002, 3.79957771e-003, - -8.03274289e-002, 1.03681743e-001, 1.27281517e-001, - -4.31041062e-001, -2.61547446e-001, 4.62310612e-001, - 2.91696072e-001, -3.00652608e-002, -1.51207866e-002, - 5.37048914e-002, 3.32520753e-002, 1.11835725e-004, - -3.49408481e-003, 4.24271310e-003, 5.66141959e-003, - -2.10977495e-002, -4.74559292e-002, 3.72308269e-002, - 5.82145713e-002, -5.58655299e-002, -3.84631008e-002, - 6.72160685e-002, 5.73425591e-002, 3.71804315e-004, - 7.72000581e-004, 5.10333758e-003, 4.49107029e-003, - 7.39997486e-003, -4.18536511e-004, 1.15082031e-002, - 4.47465107e-003, 1.55923842e-003, 1.71683896e-002, - 3.30129303e-002, 2.82511152e-002, -4.33601663e-002, - 1.78285912e-002, 5.82760721e-002, 4.01920564e-002, - -6.57038484e-003, -1.91310083e-003, 1.16106477e-002, - 6.91739470e-003, 8.24109986e-002, -1.31531712e-002, - 1.04092315e-001, 3.66929099e-002, 6.70612678e-002, - 9.37914476e-003, 1.64912969e-001, 1.06242254e-001, - -2.42193863e-001, 1.08691975e-001, 3.13543290e-001, - 1.89043745e-001, -8.64729062e-002, 4.75019775e-003, - 1.09655425e-001, 4.93897870e-002, 7.07161799e-002, - -1.19842347e-002, 1.01394527e-001, 4.17526364e-002, - 1.56859055e-001, -6.87215105e-002, 2.40000516e-001, - 1.45255387e-001, -3.44056845e-001, -2.16367960e-001, - 4.00603175e-001, 2.72822708e-001, -6.87216148e-002, - -2.41568405e-002, 9.96042117e-002, 5.55051751e-002, - 4.73161601e-003, 3.55727680e-004, 1.18464939e-002, - 5.27140871e-003, 1.48222493e-002, -3.01995445e-002, - 4.96222228e-002, 4.27069850e-002, -7.18837976e-002, - -3.64939049e-002, 8.66823122e-002, 5.74083216e-002, - 6.15082536e-005, 1.19818270e-003, 9.35305003e-003, - 6.64891675e-003, 2.89341464e-004, 2.91441288e-003, - 5.81410667e-003, 9.96389333e-003, -1.37929805e-003, - 5.81978261e-002, 3.38372365e-002, 8.44084397e-002, - -1.03070755e-002, 5.70067465e-002, 3.72837186e-002, - 8.52429271e-002, -1.50497700e-003, 2.44055619e-003, - 6.06038701e-003, 8.55911896e-003, 3.34790982e-002, - 9.12422966e-003, 5.07697389e-002, 5.29969893e-002, - 8.65660831e-002, 8.42465833e-002, 1.96463093e-001, - 3.35478097e-001, -8.32318440e-002, 1.69686124e-001, - 1.99573323e-001, 3.05845290e-001, -4.68200222e-002, - 2.44431030e-002, 6.15278669e-002, 5.04447408e-002, - 3.47841121e-002, -1.09779919e-002, 5.31856194e-002, - 5.66302501e-002, 1.12976700e-001, -3.05578578e-002, - 1.97755367e-001, 3.65947813e-001, -1.19604617e-001, - -1.12572260e-001, 2.06580430e-001, 3.05857033e-001, - -4.63389792e-002, -2.27051247e-002, 6.30062297e-002, - 5.11312298e-002, -4.01750876e-004, -1.00835841e-002, - 5.34370914e-003, 1.69194508e-002, 4.94422857e-003, - -1.36332422e-001, 3.33788730e-002, 1.76555574e-001, - -5.80904214e-003, -1.26220256e-001, 3.48347686e-002, - 1.64783567e-001, -9.14639677e-004, -8.28203280e-003, - 6.34397566e-003, 1.50025943e-002, -2.28060433e-003, - 4.23602964e-004, 6.72167446e-003, 2.74624489e-003, - -5.61005669e-003, -1.73921641e-002, 7.61997402e-002, - 3.21001336e-002, 9.01705865e-003, -1.41513133e-002, - 4.13631536e-002, 3.27320211e-002, 1.33506197e-003, - -5.20705886e-004, 5.32058394e-003, 3.63830337e-003, - -2.85401978e-002, -8.03705771e-003, 5.58048338e-002, - 2.17450745e-002, -5.34177013e-002, -9.31477472e-002, - 5.98729610e-001, 1.77922696e-001, 5.10586165e-002, - -1.10275194e-001, 2.32712567e-001, 1.90897092e-001, - 2.71967053e-002, -4.64135874e-003, 4.09105308e-002, - 2.90839300e-002, -3.92460078e-002, -6.78836228e-003, - 5.80536835e-002, 2.70429030e-002, -7.18922913e-002, - 4.39744852e-002, 3.42099339e-001, 1.97103307e-001, - 1.66122511e-001, 1.09304354e-001, 2.42503718e-001, - 2.20396116e-001, 2.10516118e-002, 1.38062201e-002, - 3.86878178e-002, 3.27172540e-002, -3.78967472e-003, - -3.45965469e-004, 6.88717561e-003, 3.73282586e-003, - 9.31892486e-004, 2.08256450e-002, 4.20116857e-002, - 3.64932865e-002, 2.02465300e-002, 1.59274805e-002, - 4.00486067e-002, 3.63475382e-002, 1.19747769e-004, - -5.69499563e-004, 4.90263477e-003, 4.58956137e-003, - -9.28676309e-005, 2.20248965e-003, 2.92798481e-003, - 4.72699851e-003, 1.50132924e-003, 2.77782753e-002, - 1.81654934e-002, 4.07214984e-002, -1.09689194e-004, - 2.71780156e-002, 1.74754076e-002, 4.02889289e-002, - 1.59636184e-004, 2.36715726e-003, 2.59951944e-003, - 4.76571685e-003, 2.18348615e-002, 2.56390460e-002, - 2.88818497e-002, 3.84213328e-002, 5.34553602e-002, - 2.49024510e-001, 1.15123190e-001, 2.87934065e-001, - -4.00300734e-002, 2.53985375e-001, 1.05018593e-001, - 2.89976329e-001, -1.87224522e-002, 2.81328894e-002, - 2.54903547e-002, 3.89502831e-002, 2.02975366e-002, - -3.63492072e-002, 2.75469106e-002, 4.54293415e-002, - 5.21606803e-002, -3.47772002e-001, 1.15415908e-001, - 3.77471030e-001, -3.56716365e-002, -3.53269696e-001, - 1.06108621e-001, 3.83693844e-001, -1.67498477e-002, - -3.91139016e-002, 2.48172525e-002, 4.79396395e-002, - -4.67530306e-004, -1.56367349e-003, 2.60419631e-003, - 4.48991405e-003, -2.79195752e-004, -1.73735172e-002, - 1.58364531e-002, 3.57004441e-002, 3.38498183e-004, - -1.68682747e-002, 1.51587008e-002, 3.57193574e-002, - 6.65560074e-004, -1.75902620e-003, 2.46480480e-003, - 4.64928057e-003, -3.61374510e-003, 1.06622872e-003, - 8.71437043e-003, 4.65720193e-003, -2.96752546e-002, - -2.88943499e-002, 5.78083992e-002, 4.94448319e-002, - 6.62464229e-003, -2.74689104e-002, 3.86888869e-002, - 5.23482226e-002, -1.20145280e-003, -1.68223598e-003, - 5.22239599e-003, 6.18878333e-003, -5.79075925e-002, - -6.67349435e-003, 8.22638199e-002, 3.13038267e-002, - -3.37060124e-001, -1.44177169e-001, 4.15860265e-001, - 2.37207219e-001, 4.87453230e-002, -2.05545127e-001, - 1.63114488e-001, 2.61529833e-001, 1.64549761e-002, - -2.41957232e-002, 3.30053456e-002, 3.71994451e-002, - -7.64987692e-002, -1.82128605e-002, 9.63686481e-002, - 4.24055941e-002, -2.42750123e-001, 4.79172990e-002, - 3.47129881e-001, 2.48744667e-001, -2.73161125e-003, - 8.55695233e-002, 1.50161073e-001, 1.76264137e-001, - 1.89458337e-002, 3.79054970e-003, 3.11407540e-002, - 2.59976089e-002, -6.72530709e-003, -7.79882481e-004, - 1.10866176e-002, 6.21424010e-003, -1.83734242e-002, - 2.96540391e-002, 5.12338020e-002, 5.17326035e-002, - -1.22122411e-002, 2.68673133e-002, 3.57843414e-002, - 4.42214534e-002, 3.97742173e-004, 1.57390721e-003, - 4.16042516e-003, 4.90509206e-003, 4.77333844e-004, - 5.37861197e-004, 5.33526018e-003, 4.41233441e-003, - -4.72834259e-002, -4.07388657e-002, 6.27048090e-002, - 5.66129573e-002, -4.53496439e-004, -4.69041914e-002, - 4.33743410e-002, 5.93196675e-002, -1.94337743e-004, - -1.93542382e-003, 5.31792361e-003, 5.86839067e-003, - -3.20390910e-002, -7.19967261e-002, 5.01963384e-002, - 8.05111080e-002, -2.76129276e-001, -3.14482272e-001, - 3.50102663e-001, 3.86542499e-001, 9.47851837e-002, - -1.45823747e-001, 1.88888043e-001, 2.49522462e-001, - 1.48757510e-002, -2.91766133e-002, 3.13850865e-002, - 4.44193445e-002, -2.67970376e-002, 1.66834556e-002, - 4.11802977e-002, 5.23972660e-002, -4.45177220e-002, - 2.28358597e-001, 1.66393980e-001, 2.84915060e-001, - -3.01972758e-002, 1.30291671e-001, 1.52350828e-001, - 2.03037471e-001, 1.48848956e-002, 7.92065728e-003, - 2.64247656e-002, 3.16285864e-002, 5.12239058e-004, - 2.84170196e-003, 5.36591467e-003, 7.10428180e-003, - -1.51880495e-002, 3.18845101e-002, 3.73750478e-002, - 5.12029715e-002, -1.57753304e-002, 3.23315337e-002, - 3.47339660e-002, 4.65497151e-002, 2.40173285e-005, - 2.53072963e-003, 4.30182647e-003, 5.60729019e-003, - 1.38046918e-003, 1.69433159e-004, 5.02821757e-003, - 4.31721378e-003, 1.89457703e-002, 2.10332330e-002, - 3.41987312e-002, 3.99526507e-002, 8.01386021e-004, - 2.70558838e-002, 2.93403249e-002, 4.42073867e-002, - -1.09663862e-003, 1.03883992e-003, 4.50252555e-003, - 5.13152778e-003, 2.73763277e-002, 8.69454816e-003, - 4.48965244e-002, 3.07965577e-002, 1.46554276e-001, - 8.07897672e-002, 2.26644471e-001, 2.07127899e-001, - -5.41738644e-002, -3.12492102e-002, 1.83792740e-001, - 2.45171994e-001, -2.74009537e-002, -7.67935487e-003, - 4.23589200e-002, 3.85910384e-002, 3.04029677e-002, - -5.72041096e-003, 4.68938090e-002, 3.48830447e-002, - 8.49509314e-002, -1.06957458e-001, 2.31050685e-001, - 3.10427547e-001, -1.80965006e-001, -2.14841828e-001, - 2.68586040e-001, 5.13728499e-001, -2.62678042e-002, - -3.76304798e-002, 4.55172285e-002, 6.31285906e-002, - 5.74547157e-004, -3.44047905e-003, 4.71054204e-003, - 7.08782487e-003, -9.33654141e-003, -5.42936139e-002, - 3.48209478e-002, 7.67921880e-002, -1.12769920e-002, - -2.29724441e-002, 3.21924426e-002, 6.23474009e-002, - 7.56548019e-004, 9.53452138e-004, 4.11686674e-003, - 6.37877081e-003, -6.56859390e-003, 1.16427522e-003, - 9.48857423e-003, 3.90681252e-003, -6.21081190e-003, - -1.18164560e-002, 2.64398307e-002, 2.74670385e-002, - 2.07944005e-003, -1.20492559e-002, 2.10373458e-002, - 2.48803739e-002, 1.24007475e-003, -2.42586451e-004, - 3.69105744e-003, 3.30799934e-003, -7.43903890e-002, - 9.20904055e-003, 8.93115029e-002, 2.87300646e-002, - -7.69404694e-002, -2.77620032e-002, 1.53614745e-001, - 1.18803345e-001, 5.72572537e-002, -1.58297457e-002, - 1.11093357e-001, 1.09468415e-001, 2.02685669e-002, - 4.63121943e-003, 3.02225873e-002, 2.31662430e-002, - -6.60674796e-002, 3.25243846e-002, 8.31635222e-002, - 4.58990186e-002, -8.70187134e-002, 3.84821087e-001, - 1.84657261e-001, 4.17104602e-001, 8.67294595e-002, - 4.10927862e-001, 1.44993916e-001, 4.47140455e-001, - 1.96166560e-002, 5.15637286e-002, 3.45950648e-002, - 6.02979399e-002, -1.23238642e-004, 2.05349526e-003, - 6.08939072e-003, 5.49284881e-003, 3.38067627e-003, - 4.13269177e-002, 2.62319483e-002, 5.88413216e-002, - 4.02665790e-003, 3.63149494e-002, 2.25721635e-002, - 5.63326553e-002, -1.92746019e-003, 3.13635659e-003, - 4.33258619e-003, 6.90767262e-003, 5.69540534e-005, - -1.32416037e-003, 5.23107266e-003, 4.32833331e-003, - 2.41326615e-002, -2.61927228e-002, 4.60466109e-002, - 4.26998101e-002, 4.91339788e-002, -2.53106002e-002, - 5.82773983e-002, 4.71544079e-002, 1.16992171e-003, - 9.58128192e-004, 4.03501792e-003, 3.77317122e-003, - -1.67122278e-002, 2.41981907e-004, 4.13877517e-002, - 2.77334154e-002, 1.20675385e-001, -3.94947492e-002, - 2.83629745e-001, 1.75296485e-001, 2.60654479e-001, - -1.65144026e-001, 3.54824811e-001, 2.62782663e-001, - 4.53326069e-002, -1.83963850e-002, 5.62965684e-002, - 2.95720715e-002, -1.99248251e-002, 3.21196346e-003, - 4.21055332e-002, 2.75120307e-002, 1.69415683e-001, - 1.01008713e-001, 3.07571054e-001, 1.77535400e-001, - 1.67430192e-001, 1.99380353e-001, 3.09215635e-001, - 2.71475226e-001, 5.26377074e-002, 1.23349624e-002, - 6.43677115e-002, 2.95671485e-002, 2.36357999e-004, - 1.60414481e-003, 5.25568891e-003, 4.26283432e-003, - 3.42482664e-002, 3.48388962e-002, 5.00035509e-002, - 4.76845503e-002, 3.23145874e-002, 2.96686105e-002, - 4.70607802e-002, 4.82110865e-002, 7.09447020e-004, - 6.46352191e-006, 4.26503038e-003, 3.70703056e-003, - 7.33548717e-004, -5.19235502e-004, 3.36975884e-003, - 4.85880440e-003, 7.60770403e-003, 6.89786859e-003, - 2.23930776e-002, 4.54504974e-002, -3.83415027e-003, - 1.01942876e-002, 2.14913059e-002, 4.40303273e-002, - -9.42585175e-004, -1.42632751e-004, 3.25369858e-003, - 4.64371033e-003, 7.46617652e-003, -6.27262564e-003, - 2.62310412e-002, 3.72666344e-002, 6.67020231e-002, - -1.09661356e-001, 1.52526468e-001, 3.30811590e-001, - -5.45070581e-002, -1.47410125e-001, 1.50329813e-001, - 3.61650944e-001, -9.54751018e-003, -1.19013358e-002, - 2.61489265e-002, 3.87533680e-002, 6.61386037e-003, - 4.63497918e-003, 2.68772542e-002, 5.40589839e-002, - 4.68552597e-002, 7.27368668e-002, 1.41640216e-001, - 5.05957365e-001, -5.06618805e-002, 8.74428377e-002, - 1.42659619e-001, 4.42887008e-001, -8.40514526e-003, - 6.62656408e-003, 2.51805410e-002, 4.62189540e-002, - 3.50320479e-004, 1.02709957e-004, 3.11562745e-003, - 5.45241358e-003, 2.58989749e-003, -4.06068284e-003, - 2.13735942e-002, 4.76458743e-002, -1.61433429e-003, - -3.23452358e-003, 2.15710383e-002, 4.84894961e-002, - -6.23154570e-004, 6.13919983e-004, 3.10594286e-003, - 5.20453975e-003, 3.73077899e-004, 1.87467784e-003, - 5.98467700e-003, 6.15559332e-003, -3.20107141e-003, - 1.83188710e-002, 2.70963106e-002, 4.67441715e-002, - -2.47014570e-003, 1.92007814e-002, 2.84967348e-002, - 4.74859551e-002, -2.27301661e-003, 7.02468853e-004, - 4.83502587e-003, 5.62064163e-003, 2.08965894e-002, - 4.05742991e-004, 3.91561128e-002, 3.65858637e-002, - 3.15222815e-002, 1.40836090e-002, 1.34923548e-001, - 2.31604874e-001, -3.79269458e-002, 6.51878398e-003, - 1.48719326e-001, 2.69068420e-001, -2.86001898e-002, - 3.11259390e-003, 4.04234119e-002, 3.57692949e-002, - 2.69355606e-002, 1.29530663e-002, 4.41374853e-002, - 6.49582446e-002, 3.57707292e-002, 1.71601087e-001, - 1.35424927e-001, 4.62578624e-001, -3.25986445e-002, - 1.91871107e-001, 1.49705365e-001, 5.27283370e-001, - -3.48239020e-002, 2.26272885e-002, 4.60198410e-002, - 6.56392500e-002, 2.61858164e-004, -8.97160918e-003, - 4.07639425e-003, 1.50352782e-002, 1.46965333e-003, - -1.06860258e-001, 2.16802824e-002, 1.39215395e-001, - 9.91490204e-004, -1.04308710e-001, 2.16919556e-002, - 1.43536836e-001, 2.68023810e-004, -6.91173784e-003, - 4.34115203e-003, 1.35962935e-002, 6.18679551e-005, - -1.82830496e-004, 4.01279470e-003, 5.51044103e-003, - 7.97778647e-003, 2.01511849e-002, 2.77588014e-002, - 4.84052226e-002, 3.97847005e-004, 3.29046100e-002, - 2.42063310e-002, 5.52795306e-002, -6.61084894e-004, - 1.78765506e-003, 3.82478163e-003, 5.95532078e-003, - 2.46783700e-002, 2.04826314e-002, 4.06620875e-002, - 4.23966758e-002, 7.21957758e-002, 1.16066173e-001, - 2.37992972e-001, 3.69812280e-001, -9.42135602e-002, - -1.12558745e-001, 2.00838074e-001, 4.47144210e-001, - -1.82117820e-002, -7.60587025e-003, 3.41910087e-002, - 4.37668785e-002, 2.36811098e-002, -1.20774545e-002, - 3.95656638e-002, 3.85235660e-002, -1.62511710e-002, - -1.35408759e-001, 2.23580629e-001, 3.09028506e-001, - -6.16990998e-002, 3.71268317e-002, 1.87640548e-001, - 3.78891945e-001, -1.69352982e-002, 1.59196393e-003, - 3.16520110e-002, 4.26048860e-002, 7.39720199e-005, - -1.09189481e-003, 3.88931367e-003, 5.50676603e-003, - 1.61955366e-003, -2.00329479e-002, 2.62168515e-002, - 4.88102362e-002, -1.72095629e-003, -2.35741306e-002, - 2.47166101e-002, 5.05742840e-002, -3.95942276e-004, - -1.20510941e-003, 3.57434433e-003, 5.32635208e-003, - 1.91839773e-003, 4.57531773e-004, 5.25985099e-003, - 4.09036549e-003, 8.74710921e-003, 2.49107890e-002, - 3.45176086e-002, 3.76662947e-002, -2.44426467e-002, - 1.82810277e-002, 4.06030118e-002, 3.74551229e-002, - 2.62929552e-005, -3.24057735e-004, 4.41613747e-003, - 4.48423717e-003, 3.56716849e-002, 4.31856170e-004, - 4.87761609e-002, 2.88040880e-002, 1.01086266e-001, - 7.26305842e-002, 2.42528647e-001, 1.84956759e-001, - -1.99511692e-001, 1.37431741e-001, 2.70613551e-001, - 2.36852169e-001, -1.44600524e-002, 2.17300355e-002, - 3.61289121e-002, 3.81431133e-002, 2.94107776e-002, - -1.40059991e-002, 4.58350703e-002, 3.42678912e-002, - 1.15458213e-001, -2.16179654e-001, 2.76253641e-001, - 3.31268430e-001, 1.14881131e-003, -1.25532985e-001, - 2.26148307e-001, 4.60717857e-001, -3.04317195e-002, - -2.42346385e-003, 4.44327183e-002, 5.49968667e-002, - 3.59341997e-004, -8.37984378e-004, 4.42245137e-003, - 4.97831451e-003, 4.78376809e-004, -2.67613009e-002, - 3.19371969e-002, 5.07990941e-002, 2.84169917e-003, - -3.16613838e-002, 2.89815329e-002, 5.82942590e-002, - 3.96356372e-005, -2.81634089e-003, 4.37215297e-003, - 7.06175715e-003, 2.81426730e-003, -3.30638315e-004, - 5.42435516e-003, 3.25267715e-003, 2.27596015e-002, - 2.12366655e-002, 4.08021808e-002, 3.19593586e-002, - -5.63460868e-003, 2.78968513e-002, 4.34862114e-002, - 4.04409058e-002, -2.72316672e-003, 5.18569781e-004, - 6.89155422e-003, 4.51510539e-003, 3.01335100e-002, - -3.25996801e-003, 4.35842015e-002, 1.94103736e-002, - 2.75416493e-001, 6.41916171e-002, 3.42330754e-001, - 1.54611662e-001, -1.96811967e-002, 1.39043331e-001, - 3.11173856e-001, 2.06926599e-001, -5.19828051e-002, - 8.87091924e-003, 6.87478632e-002, 3.15460786e-002, - 2.72254646e-002, -2.07598973e-003, 4.19356339e-002, - 1.90164037e-002, 3.51368695e-001, -2.56534163e-002, - 4.00920630e-001, 1.67174906e-001, -8.85509402e-002, - -1.17264584e-001, 2.63362944e-001, 2.06337228e-001, - -4.59932722e-002, -5.45775052e-003, 6.53853193e-002, - 3.18789780e-002, 2.39677192e-003, 6.48125657e-004, - 5.42123290e-003, 3.42254993e-003, 3.21353972e-002, - -2.67191809e-002, 4.79292311e-002, 3.91239859e-002, - -1.38112605e-002, -3.06168031e-002, 4.03212570e-002, - 4.40464914e-002, -1.39702554e-003, -4.31978406e-004, - 6.41646981e-003, 4.77021793e-003, 3.12466430e-003, - -2.28975471e-002, 7.66196847e-003, 2.89713778e-002, - 6.33611344e-003, -2.39555299e-001, 3.71616073e-002, - 2.77512044e-001, -5.41646592e-003, -2.40187228e-001, - 4.26309370e-002, 2.79004425e-001, -4.33657598e-003, - -2.34539453e-002, 9.75193083e-003, 3.02398074e-002, - -4.12821062e-002, -6.58996543e-003, 5.72507232e-002, - 4.77848798e-002, -7.15928674e-002, -1.61514178e-001, - 1.91557199e-001, 3.33098799e-001, 7.30017349e-002, - -1.21224083e-001, 1.68804094e-001, 3.19350928e-001, - 1.84654705e-002, -1.47228558e-002, 3.82439680e-002, - 4.87658903e-002, -5.30842915e-002, 1.94350607e-003, - 6.63302615e-002, 3.51443142e-002, -1.28262728e-001, - -3.25834937e-002, 2.29937434e-001, 1.97367877e-001, - 1.26699030e-001, -5.02422191e-002, 1.77830756e-001, - 2.02469721e-001, 2.54471432e-002, -1.92714005e-003, - 3.58501263e-002, 3.57589424e-002, -5.65284351e-003, - -2.31867773e-004, 8.83126818e-003, 5.27112978e-003, - -1.71663351e-002, 1.26550114e-002, 3.42237167e-002, - 2.89255828e-002, 1.34525960e-002, 8.67335033e-003, - 2.65099965e-002, 2.70900838e-002, 2.39379960e-003, - -3.88949498e-004, 4.75939037e-003, 4.90011647e-003, - -6.13736454e-004, -2.92004755e-004, 5.39444899e-003, - 5.36379730e-003, -2.81786956e-002, -3.09203714e-002, - 4.98314053e-002, 5.93405813e-002, -1.12266466e-002, - -3.24536189e-002, 3.79851833e-002, 5.59274070e-002, - -2.24416377e-004, -1.72029366e-003, 5.10276295e-003, - 5.98944956e-003, -3.56481597e-002, -1.63817860e-003, - 5.41838296e-002, 4.82429415e-002, -2.55131066e-001, - -1.09933458e-001, 3.44240397e-001, 4.12937194e-001, - 4.48624231e-002, -1.13450691e-001, 1.65998623e-001, - 2.45582357e-001, 1.88860856e-002, -7.97424745e-003, - 3.58502083e-002, 3.30560878e-002, -3.13844383e-002, - 1.98408752e-003, 5.31432033e-002, 3.45267169e-002, - -3.22585732e-001, 8.40642955e-003, 3.89903516e-001, - 2.09805474e-001, 8.32365528e-002, 4.14517708e-002, - 1.64400324e-001, 1.50986373e-001, 1.84640680e-002, - 4.98420000e-003, 3.42278890e-002, 2.64226496e-002, - -3.27542704e-003, -1.41565164e-003, 7.43143214e-003, - 4.94316453e-003, -3.47828455e-002, 1.91059876e-002, - 5.22384308e-002, 3.87741663e-002, 7.03252247e-003, - 1.66761745e-002, 3.08123510e-002, 3.27913947e-002, - 5.67097275e-004, 6.58561362e-007, 4.78072697e-003, - 4.05374402e-003, -2.01321527e-004, -1.18435419e-003, - 3.48160113e-003, 3.41328001e-003, 9.63453762e-003, - -2.08370835e-002, 2.58495286e-002, 3.02494224e-002, - 6.08110949e-002, -2.31621116e-002, 6.91817701e-002, - 3.95062529e-002, 6.89319056e-003, 2.74352450e-003, - 1.17317960e-002, 5.72071271e-003, -1.04950955e-002, - -1.19031302e-003, 2.41610836e-002, 1.72983967e-002, - 1.49107911e-002, -3.12254261e-002, 1.15572385e-001, - 1.04173429e-001, 4.04793084e-001, -1.02258146e-001, - 4.37901706e-001, 1.69308394e-001, 9.02732164e-002, - -1.11598549e-002, 1.13972120e-001, 3.53254005e-002, - -1.05809318e-002, 2.02802904e-002, 2.67510302e-002, - 3.12443040e-002, 9.52728558e-003, 1.69847757e-001, - 1.28200665e-001, 2.13020340e-001, 2.77720273e-001, - 1.34713680e-001, 3.34627628e-001, 2.27208853e-001, - 1.04058497e-001, -8.78034532e-003, 1.23796709e-001, - 4.04838547e-002, 1.81666506e-003, 6.16327580e-003, - 5.35797561e-003, 1.02028633e-002, 9.79472417e-003, - 7.45098814e-002, 3.76465097e-002, 9.57273841e-002, - 2.08109654e-002, 7.48619586e-002, 4.64533977e-002, - 9.56255570e-002, 5.26591204e-003, 4.06117353e-004, - 9.84816160e-003, 8.08466133e-003, 1.71453448e-003, - 5.75919228e-004, 5.01344353e-003, 3.78345768e-003, - 8.16216506e-003, 1.81635804e-002, 3.06533836e-002, - 3.65683064e-002, 1.13464370e-002, 2.04712190e-002, - 4.33445536e-002, 4.37897034e-002, -9.66559339e-004, - 5.94095793e-004, 6.89170230e-003, 4.78759175e-003, - 3.00303418e-002, 4.43214923e-003, 4.87857535e-002, - 2.27850415e-002, 7.71964714e-002, 7.76663348e-002, - 2.24471122e-001, 1.85265824e-001, 1.57701507e-001, - 1.60339788e-001, 4.08423662e-001, 2.45926961e-001, - -4.37496752e-002, 9.80627351e-003, 6.81254715e-002, - 3.21070626e-002, 3.07010747e-002, -6.43588882e-003, - 4.94124517e-002, 2.23643500e-002, 5.52364625e-002, - -1.15019105e-001, 2.35876769e-001, 1.96587592e-001, - 1.86581567e-001, -1.90175712e-001, 4.19416487e-001, - 2.66966313e-001, -4.42502126e-002, -1.04129110e-002, - 6.68301359e-002, 3.23840454e-002, 1.83410093e-003, - -6.19308848e-004, 4.76668170e-003, 3.40204709e-003, - 6.52513700e-003, -1.45020494e-002, 2.91067641e-002, - 3.43834907e-002, 1.17684118e-002, -2.13846881e-002, - 4.04844321e-002, 4.23832312e-002, -1.07075530e-003, - -1.72811968e-003, 6.49946183e-003, 4.80324402e-003, - 9.20474122e-004, 1.27918058e-004, 4.90651606e-003, - 4.16024914e-003, 1.43593643e-002, 2.35797167e-002, - 3.78634408e-002, 4.74189036e-002, -7.64353620e-003, - 2.45216060e-002, 3.60984467e-002, 5.33401407e-002, - 9.23751912e-004, 2.57440872e-004, 5.01757162e-003, - 5.44496393e-003, 1.07974280e-002, 8.72202776e-003, - 4.19123657e-002, 3.17334235e-002, 2.21872315e-001, - 3.73384962e-003, 3.26943815e-001, 2.75918782e-001, - -4.26727422e-002, 9.89571884e-002, 2.65677214e-001, - 3.33519071e-001, -1.82207078e-002, 2.05792040e-002, - 4.71296944e-002, 4.43636104e-002, 2.71830894e-002, - 1.23542212e-002, 5.16881272e-002, 3.69923487e-002, - 5.22292741e-002, 1.27249360e-001, 2.88938433e-001, - 3.26171517e-001, 6.22039177e-002, -3.60567868e-002, - 2.57878631e-001, 3.03057164e-001, -1.99615154e-002, - 5.91387157e-004, 4.59620580e-002, 4.01826799e-002, - 2.92548258e-003, -3.11809679e-004, 5.89012774e-003, - 5.33019612e-003, 9.43231047e-004, -2.70790253e-002, - 3.92526872e-002, 5.50332703e-002, -1.48342084e-003, - -2.21039634e-002, 3.79055701e-002, 5.50907031e-002, - 1.28618150e-004, -1.44833454e-003, 4.94491262e-003, - 6.00678241e-003, 1.81224430e-003, -1.05697196e-002, - 6.16982765e-003, 1.46749429e-002, 9.54157673e-003, - -1.27110168e-001, 4.06619199e-002, 1.50962636e-001, - -8.38937517e-003, -1.31518394e-001, 4.38847467e-002, - 1.58133179e-001, -3.61305242e-003, -1.16220703e-002, - 7.74174416e-003, 1.60133690e-002, -1.70947332e-002, - -2.36188415e-002, 2.96801161e-002, 4.13464233e-002, - -4.21366505e-002, -1.62019759e-001, 1.22083075e-001, - 2.59747416e-001, 2.18571108e-002, -1.66411489e-001, - 1.21662855e-001, 2.80145884e-001, 1.75116323e-002, - -1.64970849e-002, 3.42777818e-002, 4.23091613e-002, - -1.31019661e-002, 3.31670418e-002, 2.78341174e-002, - 4.82943319e-002, -1.87809858e-002, 2.96601087e-001, - 1.14447996e-001, 3.56841981e-001, 1.66157596e-002, - 3.16043317e-001, 1.16816960e-001, 3.66272032e-001, - 1.52570484e-002, 3.53752635e-002, 3.26626264e-002, - 5.18245213e-002, 2.50881445e-003, 9.70678963e-003, - 6.15595700e-003, 1.41277323e-002, 1.06076486e-002, - 9.83134210e-002, 3.72478366e-002, 1.27534211e-001, - -8.41326546e-003, 9.41439569e-002, 3.79238352e-002, - 1.27418607e-001, -3.23687657e-003, 8.82302038e-003, - 7.35660829e-003, 1.41352285e-002, -1.64404802e-003, - 3.92447342e-004, 4.82142251e-003, 3.15649295e-003, - -1.83749329e-002, -1.58861950e-002, 3.72349583e-002, - 2.99023036e-002, 1.66936796e-002, -1.83714572e-002, - 5.38590737e-002, 3.17759253e-002, 2.91193207e-003, - 8.75714177e-004, 6.88603753e-003, 3.11024114e-003, - -2.38313451e-002, -3.62528744e-003, 4.06976417e-002, - 1.97391361e-002, -1.69369966e-001, -5.82701750e-002, - 2.47128814e-001, 1.38084248e-001, 1.68469667e-001, - -6.56760186e-002, 4.75791186e-001, 1.38608858e-001, - 2.97641512e-002, 1.88729074e-003, 5.62591292e-002, - 1.86232328e-002, -2.17575897e-002, 4.50327480e-003, - 3.87341529e-002, 1.93069503e-002, -1.85957253e-001, - 6.38704076e-002, 2.58918196e-001, 1.29283771e-001, - 1.78002775e-001, 4.91814278e-002, 5.26999056e-001, - 1.20286942e-001, 2.72888895e-002, 7.17976247e-004, - 5.65995201e-002, 1.82215646e-002, -1.48999854e-003, - -3.62582301e-004, 4.75414842e-003, 2.78097973e-003, - -2.57614814e-002, 1.16593447e-002, 4.09605838e-002, - 2.48943362e-002, 2.27263775e-002, 1.54914754e-002, - 6.48234934e-002, 2.71732286e-002, 2.28209305e-003, - -8.69906333e-004, 7.19930232e-003, 3.02038714e-003, - 2.15283083e-003, -1.03846833e-003, 7.41043873e-003, - 3.86316935e-003, 6.36200458e-002, 1.85453333e-002, - 7.43713677e-002, 3.35111171e-002, 5.42623550e-003, - 1.43855158e-002, 2.39103083e-002, 2.33878121e-002, - -1.14925625e-003, 6.69531000e-004, 3.35156219e-003, - 2.60140235e-003, 3.00251618e-002, 8.29054322e-003, - 5.88875487e-002, 2.62247548e-002, 4.16477829e-001, - 9.59530100e-002, 4.87053782e-001, 1.69658020e-001, - -8.88054073e-003, 1.48125859e-002, 1.08007938e-001, - 8.39666054e-002, -1.47291282e-002, -1.84091667e-004, - 2.69065164e-002, 1.51565177e-002, 5.58463633e-002, - 1.62923895e-002, 7.44118243e-002, 3.90527509e-002, - 2.51060545e-001, -4.18364406e-002, 3.58623594e-001, - 2.08874196e-001, -9.04270727e-003, -1.14901058e-001, - 1.26962930e-001, 1.79194406e-001, -1.49709219e-002, - -1.41674876e-002, 3.23483497e-002, 2.65388172e-002, - 3.62401758e-003, -3.83121497e-003, 6.70421869e-003, - 1.04230074e-002, 5.92165627e-003, -9.31462422e-002, - 4.05674651e-002, 1.43465325e-001, 5.05873468e-003, - -9.68122706e-002, 3.39880437e-002, 1.47926018e-001, - 1.12899230e-003, -9.59601626e-003, 5.30394912e-003, - 1.67218838e-002, 8.24340968e-004, 2.49260105e-003, - 4.66691842e-003, 8.53133854e-003, 1.23416148e-002, - 4.63266298e-002, 3.38055678e-002, 8.62741992e-002, - 1.89903397e-002, 5.94463795e-002, 3.63817327e-002, - 9.81378853e-002, 1.45299884e-003, 5.68654714e-003, - 4.38441522e-003, 1.09752137e-002, 5.88627756e-002, - 9.26223118e-003, 6.96791112e-002, 5.54952249e-002, - 1.67349413e-001, 2.77220219e-001, 2.28151664e-001, - 3.64908695e-001, 7.17163377e-004, 1.99986890e-001, - 1.10109948e-001, 2.51462996e-001, -9.81207564e-003, - 2.05822960e-002, 2.23116037e-002, 3.16888914e-002, - 3.94334644e-002, -2.84751467e-002, 6.23225123e-002, - 4.89907041e-002, 3.42380941e-001, -2.24685863e-001, - 3.77891481e-001, 2.80112624e-001, -1.28449332e-002, - -3.45924869e-002, 9.24160257e-002, 9.99017730e-002, - -9.33077279e-003, -1.08606345e-003, 1.85161605e-002, - 1.55095952e-002, 3.93646682e-004, 9.63852392e-004, - 6.33800263e-003, 5.05425874e-003, 5.65369800e-002, - -2.87129171e-002, 6.85374290e-002, 4.91225608e-002, - 1.72351599e-002, -2.86089350e-002, 3.17395367e-002, - 3.80408876e-002, -1.46741440e-004, -1.21634302e-003, - 2.77845212e-003, 3.18037439e-003, 2.90887593e-003, - 1.01042364e-003, 6.66655134e-003, 6.12202985e-003, - -3.46626592e-004, 4.25331034e-002, 4.31754440e-002, - 6.05596229e-002, -9.99998115e-003, 3.47037911e-002, - 4.24779020e-002, 5.64086363e-002, -4.23930556e-004, - 6.14948163e-004, 5.96437603e-003, 6.04854757e-003, - 4.84874919e-002, -1.26212742e-002, 6.31966367e-002, - 3.95596325e-002, 7.42610618e-002, -2.43160725e-002, - 3.34331304e-001, 2.77823389e-001, -5.67018986e-002, - 1.26083717e-001, 2.63533920e-001, 2.41162732e-001, - -3.29856351e-002, 1.80903431e-002, 5.46210594e-002, - 3.81465182e-002, 2.50853933e-002, -1.51462452e-002, - 4.77615893e-002, 3.74578275e-002, 2.48156726e-001, - -1.87747598e-001, 3.68923366e-001, 3.51646692e-001, - 3.60826738e-002, -5.34147657e-002, 2.17152625e-001, - 2.10634261e-001, -3.78820375e-002, 3.70443659e-003, - 5.43114021e-002, 3.34283598e-002, -1.09538611e-004, - 9.71348956e-004, 5.12104621e-003, 4.95364144e-003, - 2.66056322e-002, -1.95497442e-002, 4.49500866e-002, - 4.75237891e-002, 1.93452574e-002, -3.72578762e-002, - 4.22570072e-002, 5.22306561e-002, -1.57073874e-003, - -1.76029641e-003, 5.75392554e-003, 5.36788162e-003, - -9.14825534e-004, -8.80310254e-004, 5.38215926e-003, - 4.33205394e-003, 5.21465950e-003, -3.38053666e-002, - 4.33093160e-002, 4.40932624e-002, 5.30197062e-002, - -2.50672717e-002, 6.31301403e-002, 4.27887440e-002, - -3.06701957e-004, 1.06290949e-003, 4.52589849e-003, - 4.04087361e-003, -2.07198933e-002, -6.74040476e-003, - 3.87595743e-002, 2.95916945e-002, -1.11944906e-001, - -4.83164936e-002, 2.11025566e-001, 1.74817413e-001, - 3.27829063e-001, -2.87847489e-001, 3.85699928e-001, - 3.43288451e-001, 3.44330855e-002, -4.07961644e-002, - 5.02957627e-002, 5.15679196e-002, -1.96855515e-002, - 3.11825122e-003, 3.55701782e-002, 2.91165281e-002, - -4.37406898e-002, 1.20760009e-001, 1.78096369e-001, - 1.93183109e-001, 9.29959416e-002, 2.07731828e-001, - 2.32177913e-001, 2.79255271e-001, 4.73063923e-002, - 3.18703661e-003, 5.74427284e-002, 4.48784530e-002, - -2.98399536e-004, 1.05906208e-003, 4.83281445e-003, - 4.67650592e-003, 1.03038736e-002, 2.49111969e-002, - 3.70531641e-002, 4.00314666e-002, 1.80148855e-002, - 2.94665080e-002, 4.28064205e-002, 4.57234941e-002, - 8.82897351e-004, 1.80123886e-003, 5.13969036e-003, - 5.36526786e-003, 1.17372640e-003, -3.82596394e-003, - 5.69205917e-003, 6.03580102e-003, 3.08722928e-002, - -3.71636897e-002, 4.61173728e-002, 5.02632745e-002, - 5.30462200e-003, -2.56294515e-002, 2.87182499e-002, - 4.06738110e-002, -3.20921303e-004, -1.41783862e-003, - 3.90886329e-003, 4.46093082e-003, -2.17698459e-002, - -1.84212793e-002, 3.92034017e-002, 3.47842202e-002, - 1.46407992e-001, -2.57573783e-001, 2.60830969e-001, - 3.15066546e-001, 5.20534366e-002, -3.59882414e-001, - 2.27762550e-001, 4.11584347e-001, 4.06653136e-002, - -3.09844576e-002, 5.05621620e-002, 4.89158072e-002, - -1.81607045e-002, 1.12315379e-002, 3.44120152e-002, - 2.96527222e-002, 2.41250787e-002, 1.07040152e-001, - 1.70361027e-001, 1.91243649e-001, 1.28568679e-001, - 1.48618609e-001, 2.18056202e-001, 2.34440267e-001, - 4.16820571e-002, 1.70182772e-002, 5.16944975e-002, - 4.07478251e-002, 4.49292944e-004, 1.32560416e-003, - 4.76974249e-003, 4.81889257e-003, 1.01765888e-002, - 3.16657387e-002, 3.54873799e-002, 4.66458984e-002, - 1.88336670e-002, 3.00407261e-002, 3.77432518e-002, - 4.68445793e-002, 1.26930245e-003, 5.83097048e-004, - 5.08362195e-003, 5.15837315e-003, 4.51536058e-003, - -6.30015158e-004, 7.17256172e-003, 3.42827453e-003, - 1.50481751e-003, 8.09004158e-003, 2.06233114e-002, - 1.97090432e-002, -2.61747073e-002, 7.95795489e-003, - 3.58824693e-002, 2.35213432e-002, -4.74452553e-003, - -1.53268292e-003, 9.06166155e-003, 5.23514021e-003, - 4.54923436e-002, -7.87566043e-003, 6.21051192e-002, - 2.48834733e-002, 4.88572605e-002, -8.26616678e-003, - 1.40771180e-001, 1.09917209e-001, -1.65044159e-001, - 4.62013707e-002, 2.26691097e-001, 1.36358693e-001, - -5.59300929e-002, 5.15262084e-003, 7.71782398e-002, - 4.33438495e-002, 4.86216880e-002, -2.23657954e-002, - 6.64402544e-002, 4.14840057e-002, 5.44595532e-002, - -1.79753125e-001, 1.76959991e-001, 2.76977748e-001, - -1.86743975e-001, -3.23111504e-001, 2.45216891e-001, - 4.09035057e-001, -6.48325905e-002, -5.03575429e-002, - 8.63393918e-002, 7.52198175e-002, 8.10848956e-004, - -1.84038971e-002, 6.93113403e-003, 2.33080611e-002, - -1.96736250e-002, -1.87951162e-001, 4.26854677e-002, - 2.22669140e-001, -2.24048235e-002, -1.56806976e-001, - 4.17777337e-002, 1.96762100e-001, 4.39157768e-004, - -9.87916626e-003, 6.82700984e-003, 1.80123989e-002, - -1.77077372e-002, 7.52239339e-006, 2.44247466e-002, - 5.45470417e-003, -1.32334651e-002, -2.65540667e-002, - 5.10200597e-002, 4.22737040e-002, 3.94944428e-003, - -2.42635105e-002, 3.21283899e-002, 4.08864170e-002, - 1.71553867e-004, -1.80931750e-003, 5.38295927e-003, - 5.32866456e-003, -1.70849711e-001, 9.89076216e-004, - 2.10647061e-001, 3.49141620e-002, -1.05339997e-001, - -9.64723080e-002, 3.20783913e-001, 1.85270011e-001, - 6.67648986e-002, -8.55200440e-002, 1.98685676e-001, - 1.79234564e-001, 1.55347129e-002, -4.36372636e-003, - 3.59015018e-002, 3.03908736e-002, -1.60337940e-001, - 2.25986913e-003, 1.96217433e-001, 3.80732268e-002, - -1.85693994e-001, 9.50805992e-002, 3.30457121e-001, - 2.52243072e-001, 7.69932196e-002, 2.23927181e-002, - 2.31279865e-001, 2.88399011e-001, 2.60731932e-002, - 9.04501975e-003, 4.44467589e-002, 4.62201238e-002, - -1.19487746e-002, 2.25587119e-003, 1.88990906e-002, - 8.65814742e-003, -1.11155529e-002, 9.59074423e-002, - 5.83304651e-002, 1.31050125e-001, 2.26843543e-003, - 1.08841300e-001, 4.35165949e-002, 1.48622662e-001, - -5.42826368e-004, 7.78748048e-003, 6.57071313e-003, - 1.52426269e-002, 3.77982797e-004, -2.39333371e-003, - 6.12187013e-003, 6.85055554e-003, -4.57958085e-003, - -5.79439737e-002, 3.58104259e-002, 7.21580610e-002, - 2.02425253e-002, -4.74769361e-002, 3.76996771e-002, - 6.55148253e-002, 2.66869029e-005, -7.84699747e-004, - 4.69531352e-003, 4.89120465e-003, -2.93799359e-002, - -3.04847620e-002, 5.26182465e-002, 4.94426899e-002, - -8.21013972e-002, -1.68493018e-001, 2.21307099e-001, - 2.91143119e-001, 2.01612368e-001, -2.01489419e-001, - 2.90814996e-001, 3.44116360e-001, 4.16495800e-002, - -2.73821801e-002, 6.35688603e-002, 4.84878868e-002, - -4.10652719e-002, -1.02877300e-002, 5.87255806e-002, - 4.68403138e-002, 2.62671430e-002, -6.12613037e-002, - 2.24031076e-001, 2.94217259e-001, 9.22827944e-002, - -4.58325706e-002, 2.49358132e-001, 3.14052165e-001, - 5.74267395e-002, -1.14586996e-002, 7.23505095e-002, - 5.06185964e-002, -1.47735584e-003, 2.94127665e-003, - 6.88582612e-003, 9.11731366e-003, 2.67762179e-003, - 5.69573715e-002, 4.14255261e-002, 8.20592865e-002, - 7.18305213e-003, 4.47388440e-002, 4.11017463e-002, - 7.19377846e-002, 3.11324839e-003, 6.55033858e-004, - 7.42117828e-003, 8.73263832e-003, -1.09105720e-004, - 3.17236263e-004, 5.44745149e-003, 4.21351288e-003, - 6.14835590e-004, 2.11462565e-002, 4.78719734e-002, - 4.81511541e-002, -8.36266670e-003, 1.98088214e-002, - 2.81212442e-002, 4.77564149e-002, -5.15299733e-004, - 9.28265858e-004, 3.51609266e-003, 4.85769706e-003, - 7.64055504e-003, 2.87408911e-004, 4.67224047e-002, - 2.22137850e-002, 6.13904670e-002, 5.86459152e-002, - 4.83767658e-001, 2.25772396e-001, -6.95771053e-002, - 3.90264094e-002, 1.87775582e-001, 2.94917911e-001, - -1.74354259e-002, 7.91245233e-003, 3.36113013e-002, - 3.32661681e-002, 1.06511442e-002, 1.47309562e-003, - 5.20217828e-002, 1.82299558e-002, -1.02220215e-002, - -2.92978249e-002, 5.47850847e-001, 1.42934918e-001, - -5.24625517e-002, -7.47075751e-002, 1.78034544e-001, - 1.76643968e-001, -1.44187426e-002, -7.83698913e-003, - 3.17337252e-002, 2.56432090e-002, 1.21156836e-003, - 5.43804708e-005, 6.97531831e-003, 3.33430641e-003, - -6.77335029e-003, -1.49149345e-002, 6.21738806e-002, - 3.43041942e-002, -7.54580833e-003, -7.31904712e-003, - 2.90180873e-002, 3.07608452e-002, -6.00914878e-004, - -1.62647411e-004, 3.51832877e-003, 3.81053123e-003, - -3.94202163e-003, 1.24621519e-003, 6.30647875e-003, - 2.72270944e-003, -3.96461710e-002, -1.24041941e-002, - 5.29382937e-002, 2.31701266e-002, 3.31146382e-002, - -1.36308977e-002, 4.49249856e-002, 2.49353107e-002, - 8.36578838e-004, 8.17770429e-004, 5.37381740e-003, - 3.38728516e-003, -2.76293717e-002, 3.93432472e-003, - 4.26195040e-002, 1.55946780e-002, -3.64180207e-001, - 5.97567484e-003, 4.02398586e-001, 1.12554856e-001, - 2.39854321e-001, -5.61563112e-002, 2.82966167e-001, - 1.23238564e-001, 1.82982888e-002, -8.40071030e-003, - 4.15301025e-002, 2.46791020e-002, -2.41217092e-002, - 3.65454791e-004, 3.99578921e-002, 1.46849835e-002, - -3.58765721e-001, 7.43032396e-002, 3.98976564e-001, - 1.34190753e-001, 1.50542185e-001, 5.74452281e-002, - 2.17210084e-001, 1.32333443e-001, 2.56350916e-002, - -3.07174609e-003, 4.21839170e-002, 2.47446131e-002, - -2.27116840e-003, -5.32404345e-004, 5.24953101e-003, - 2.47064559e-003, -3.81738767e-002, 2.03275960e-002, - 5.23648039e-002, 2.98299287e-002, 1.03695858e-002, - 2.14775316e-002, 3.34829390e-002, 3.14595625e-002, - 1.91582949e-003, 2.91765667e-004, 5.25544584e-003, - 3.80066410e-003, 2.89618620e-004, 1.10340700e-003, - 3.73637024e-003, 5.96147915e-003, -2.65994878e-003, - 1.55719398e-002, 2.78765708e-002, 5.36468849e-002, - -7.95364566e-003, -1.11135084e-003, 3.37510332e-002, - 5.30682951e-002, -9.33317788e-005, -7.51856773e-004, - 4.09037992e-003, 5.54494653e-003, 1.02812918e-002, - -2.06317399e-002, 4.05115150e-002, 5.48612475e-002, - 9.99446493e-003, -1.59633934e-001, 2.29201213e-001, - 5.24965465e-001, -6.06865287e-002, 5.35664521e-002, - 2.55002290e-001, 3.70572776e-001, -1.04617793e-003, - 1.29613141e-002, 3.74115855e-002, 3.98670323e-002, - -2.34552380e-003, -3.52888322e-003, 3.21510695e-002, - 3.25390734e-002, 1.28385782e-001, 2.37673968e-002, - 2.29985386e-001, 2.16592431e-001, 6.85705021e-002, - 3.31941061e-002, 2.32383817e-001, 2.57119298e-001, - -9.15157702e-003, 6.56758901e-003, 3.83365378e-002, - 3.55585627e-002, 3.00658023e-004, 5.95371122e-004, - 3.82785220e-003, 4.00372641e-003, 1.07001932e-002, - -5.86283067e-003, 2.98825130e-002, 3.75984497e-002, - 6.72252150e-003, -1.73600819e-002, 3.12981643e-002, - 4.28169891e-002, -2.78869556e-004, -1.24549703e-003, - 4.29221056e-003, 4.79799137e-003, 2.67186854e-003, - 8.94724053e-006, 6.30975747e-003, 4.12600022e-003, - 7.93014129e-004, 1.69133078e-002, 4.23345305e-002, - 3.34622972e-002, 1.89557057e-002, 1.97221078e-002, - 4.10278067e-002, 3.53127830e-002, -2.19257476e-004, - 1.45146088e-003, 4.94546304e-003, 4.19589784e-003, - 4.16785292e-002, 3.70034296e-003, 5.84318191e-002, - 2.76379604e-002, -1.13416798e-002, 1.09704547e-001, - 3.37160677e-001, 1.96451291e-001, 1.49498656e-001, - 9.44341049e-002, 2.76976973e-001, 1.66842222e-001, - -2.00197455e-002, 2.24745437e-003, 3.63280587e-002, - 2.33561881e-002, 3.56713794e-002, -1.93419699e-002, - 4.92533483e-002, 3.91433388e-002, 7.89594278e-002, - -2.44785309e-001, 2.41824567e-001, 3.83015424e-001, - 1.41952923e-002, -2.84608215e-001, 1.80937186e-001, - 3.78860831e-001, -1.62413977e-002, -3.51480171e-002, - 3.39127816e-002, 4.76940610e-002, 6.37955964e-005, - -4.96500987e-004, 3.50534497e-003, 4.77496255e-003, - 1.42052665e-003, -1.96377803e-002, 2.19083373e-002, - 4.57695350e-002, 3.17807426e-003, -1.61654856e-002, - 2.10586097e-002, 4.71598431e-002, 2.00618291e-003, - -1.65004574e-003, 3.84690799e-003, 6.43092953e-003, - 2.07435642e-003, 4.31420573e-004, 4.61803796e-003, - 3.74295469e-003, -1.17841549e-003, 2.36109644e-002, - 2.96828393e-002, 3.26051489e-002, -4.38484251e-002, - 1.88496187e-002, 5.23062684e-002, 3.47284302e-002, - -8.21188150e-004, -1.48791180e-003, 4.92349919e-003, - 4.08525532e-003, 3.41462605e-002, -8.80931225e-003, - 4.37170155e-002, 2.85100937e-002, 8.65714625e-002, - 2.74056904e-002, 1.66892141e-001, 1.34286210e-001, - -3.35248321e-001, 1.46516308e-001, 3.64468873e-001, - 2.01447338e-001, -2.79261675e-002, 1.73951369e-002, - 4.62843627e-002, 3.30038778e-002, 2.42298059e-002, - -3.45893502e-002, 3.95067073e-002, 4.39483970e-002, - 1.73994169e-001, -3.40172499e-001, 2.27439508e-001, - 3.61324966e-001, -9.73008573e-002, -1.40015796e-001, - 2.33539417e-001, 2.45423511e-001, -4.81073894e-002, - 9.03374329e-003, 5.82566634e-002, 3.65170352e-002, - -1.16245809e-003, -8.86177353e-004, 4.07968229e-003, - 4.53907484e-003, 1.39241358e-002, -2.90402956e-002, - 3.07569373e-002, 4.38754037e-002, 1.40174776e-002, - -4.64054756e-002, 3.56466807e-002, 5.56205586e-002, - -2.47544469e-003, -2.17692205e-003, 5.57487365e-003, - 5.45539940e-003, 2.10910453e-003, -4.06313688e-004, - 4.96956334e-003, 2.35398719e-003, 3.01903933e-002, - 1.50193060e-002, 4.15527113e-002, 2.20894814e-002, - -2.83371620e-002, 1.36181116e-002, 4.11717035e-002, - 2.20335461e-002, -3.50992708e-003, -6.94340677e-004, - 5.54211205e-003, 2.77867727e-003, 2.33740844e-002, - -1.50345115e-003, 3.85779440e-002, 1.56889670e-002, - 2.71237761e-001, 4.48433012e-002, 3.10179949e-001, - 1.08028643e-001, -2.88554668e-001, 2.31837854e-002, - 3.31245035e-001, 1.08195268e-001, -2.84288861e-002, - -5.24381269e-003, 4.05829363e-002, 1.85589623e-002, - 2.35502142e-002, -1.04699587e-003, 3.88297550e-002, - 1.57816093e-002, 2.80500621e-001, -4.64845635e-002, - 3.20336401e-001, 1.13392390e-001, -3.44386697e-001, - -7.71420598e-002, 3.78186852e-001, 1.30212888e-001, - -2.13494189e-002, -4.46908735e-003, 3.61517929e-002, - 1.74995512e-002, 2.36851652e-003, 3.12743359e-004, - 5.11393277e-003, 2.44790944e-003, 2.77275071e-002, - -1.92491654e-002, 4.21104319e-002, 2.65625268e-002, - -4.14638668e-002, -2.03547534e-002, 5.13344929e-002, - 2.79174838e-002, -1.49185816e-003, 3.66133230e-004, - 4.34653182e-003, 2.56167515e-003, -4.82546777e-004, - 8.14254337e-004, 4.46094293e-003, 3.52807995e-003, - -4.05639596e-002, -2.64247172e-002, 5.34367077e-002, - 4.07927819e-002, 1.45648662e-002, -2.64035165e-002, - 4.09743190e-002, 4.01855558e-002, 1.99037418e-003, - 6.55231197e-005, 5.49529772e-003, 4.27258201e-003, - -1.20463986e-002, -1.29751079e-002, 3.50548588e-002, - 2.92011350e-002, -3.75443995e-001, -5.03987744e-002, - 4.14879650e-001, 2.17881963e-001, 1.89858377e-001, - -1.79910026e-002, 2.64216006e-001, 1.88787535e-001, - 2.76132766e-002, -1.99032668e-003, 4.39910106e-002, - 3.09180934e-002, -3.30590345e-002, -2.53317561e-002, - 4.64196876e-002, 5.02985418e-002, -1.47115126e-001, - -8.13128054e-002, 2.39342511e-001, 3.00183415e-001, - 1.88768178e-001, 6.66946769e-002, 2.53345311e-001, - 2.04353228e-001, 2.09992770e-002, 6.10105810e-004, - 3.81637625e-002, 3.25379968e-002, -2.60758842e-003, - 9.80956946e-004, 5.73727954e-003, 5.36576752e-003, - -6.63519092e-003, 3.00421566e-002, 3.44486013e-002, - 4.42136601e-002, 1.71690937e-002, 2.47194041e-002, - 3.65825742e-002, 4.00261991e-002, 4.23919118e-004, - 3.16203979e-004, 4.64043440e-003, 4.53786692e-003, - -3.56691936e-003, -1.47014635e-003, 1.02764610e-002, - 8.08009785e-003, 5.34071103e-002, 5.24637997e-002, - 9.31957215e-002, 7.58594796e-002, 9.92475636e-003, - 4.00698520e-002, 5.48778139e-002, 5.76214232e-002, - -1.61392558e-002, -2.90618977e-003, 2.09105201e-002, - 6.82256324e-003, 6.25742897e-002, 4.81890403e-002, - 9.84695554e-002, 9.26701427e-002, 2.01510370e-001, - 2.11082146e-001, 3.26656014e-001, 2.90964127e-001, - -7.84019455e-002, 5.28291129e-002, 1.91133007e-001, - 1.41293555e-001, -1.90169349e-001, -9.03520640e-003, - 2.19832540e-001, 3.82665657e-002, 6.77380636e-002, - -1.36373527e-002, 9.11791772e-002, 5.53615391e-002, - 8.37476030e-002, -1.88397110e-001, 2.10516855e-001, - 2.70799637e-001, -8.85705352e-002, -6.10203519e-002, - 2.05734029e-001, 1.58850610e-001, -1.71845749e-001, - 5.54455584e-003, 2.03767970e-001, 4.90017757e-002, - 2.01359205e-003, -2.90890294e-003, 6.52724039e-003, - 9.94793419e-003, 2.11343057e-002, -5.63294254e-002, - 4.84789163e-002, 8.82393792e-002, 1.43941324e-002, - -4.77926359e-002, 5.83602414e-002, 6.63959458e-002, - -1.33471098e-002, 2.51228386e-003, 1.72555763e-002, - 9.87787079e-003, 2.17777956e-003, 5.67050418e-004, - 5.82611049e-003, 5.45673445e-003, -3.03299390e-002, - -3.58790085e-002, 5.28848357e-002, 6.08011968e-002, - -4.37262021e-002, -7.35825002e-002, 6.32381290e-002, - 8.53088051e-002, -5.70921577e-004, -4.50625736e-003, - 6.00393210e-003, 7.44324084e-003, -4.14827652e-002, - -5.53181469e-002, 6.38721958e-002, 6.92603886e-002, - -2.54547536e-001, -4.35968876e-001, 3.45436066e-001, - 4.95792687e-001, -2.44764499e-002, -1.21702440e-001, - 1.78065017e-001, 2.22687006e-001, 2.00447589e-002, - -8.13247263e-003, 3.43679450e-002, 3.06091886e-002, - -5.05792536e-002, -1.45518230e-002, 6.31573945e-002, - 4.35329303e-002, -7.55495429e-002, 3.97204645e-002, - 1.72285914e-001, 1.59182668e-001, 4.35511060e-002, - 3.74847874e-002, 1.25466794e-001, 1.44714683e-001, - 1.81623995e-002, 2.75270734e-003, 3.10526621e-002, - 2.74530016e-002, -2.61209020e-003, 2.18323927e-004, - 6.41126372e-003, 5.52855665e-003, -6.23021508e-003, - 2.29570922e-002, 2.90556382e-002, 3.87151726e-002, - 1.56730972e-003, 2.00467184e-002, 2.53731981e-002, - 3.39965150e-002, 5.11069957e-004, 8.16334796e-004, - 4.03755531e-003, 4.29850072e-003, 1.41956494e-003, - 1.34115908e-004, 7.54652126e-003, 4.96148597e-003, - 1.59447826e-002, 3.66905332e-002, 6.56107366e-002, - 5.70183955e-002, -1.44415116e-003, 4.24282961e-002, - 3.96796130e-002, 6.11045361e-002, -9.26901412e-004, - 2.14825384e-003, 6.68815291e-003, 5.66210644e-003, - 3.99944484e-002, 2.96033709e-003, 6.99780360e-002, - 3.13098766e-002, 1.63007557e-001, 1.50402114e-001, - 5.76265454e-001, 2.57686079e-001, -6.75063878e-002, - 1.00149103e-001, 2.46229932e-001, 1.66161150e-001, - -3.26280408e-002, 9.92711820e-003, 6.37223721e-002, - 2.71098297e-002, 3.47966142e-002, 3.29876854e-003, - 6.19585179e-002, 2.81408131e-002, 2.05604345e-001, - -5.81823401e-002, 3.77255768e-001, 1.79321557e-001, - -6.19551986e-002, -1.93697202e-003, 1.65072277e-001, - 1.13306113e-001, -4.12837863e-002, 6.80993684e-003, - 5.86988479e-002, 2.31786892e-002, 2.07194337e-003, - 1.07316801e-003, 7.11535476e-003, 3.78365233e-003, - 3.03741395e-002, -1.65279768e-002, 4.84914966e-002, - 2.89315265e-002, -2.29261746e-003, -1.22220069e-002, - 3.01976148e-002, 2.39973273e-002, -3.27422633e-003, - 3.17719852e-004, 6.26748055e-003, 3.26235802e-003, - 1.03587518e-002, -3.07533261e-003, 1.35828592e-002, - 4.99839615e-003, 1.98028535e-002, 5.89271821e-003, - 3.45190428e-002, 1.78731475e-002, -2.16708407e-002, - 1.03815924e-002, 3.53062563e-002, 1.87561233e-002, - -7.83631578e-003, -7.83876225e-004, 1.19542582e-002, - 4.06571524e-003, 7.25692660e-002, -2.48592962e-002, - 1.02418959e-001, 3.54194567e-002, 2.48378411e-001, - -3.56728807e-002, 3.09612155e-001, 1.04968853e-001, - -1.26788795e-001, 1.94368046e-002, 1.99240595e-001, - 7.37686306e-002, -8.76573622e-002, -4.57811449e-003, - 1.09009512e-001, 2.80926786e-002, 1.99685451e-002, - -8.57444573e-003, 7.29750246e-002, 2.56393421e-002, - 4.54411209e-001, -1.29574910e-001, 4.96573329e-001, - 1.65759936e-001, -1.44816458e-001, -2.43556947e-002, - 2.16742977e-001, 8.60012248e-002, -8.55450705e-002, - -3.53215757e-004, 1.08614884e-001, 2.83822119e-002, - -1.99933723e-003, 1.46731758e-003, 9.18669254e-003, - 3.45991435e-003, 7.93430507e-002, -2.45650485e-002, - 8.93894434e-002, 3.42552587e-002, -2.00023204e-002, - -1.44932587e-002, 4.34716418e-002, 2.37052068e-002, - -7.51220295e-003, 1.20172009e-003, 1.21320970e-002, - 4.13263682e-003, 1.58194068e-003, 1.15301483e-003, - 6.15172600e-003, 5.12615778e-003, -3.40383238e-004, - 4.13417891e-002, 4.54057083e-002, 5.33450469e-002, - -7.60150328e-002, 4.53879572e-002, 9.01818946e-002, - 6.27788454e-002, 1.03703851e-003, -1.77927723e-003, - 7.95174390e-003, 6.07462414e-003, 2.70644985e-002, - 3.52750812e-003, 4.65705208e-002, 2.78788805e-002, - 1.03035189e-001, 1.24013564e-002, 1.98826879e-001, - 1.47207528e-001, -3.97412896e-001, 2.36225113e-001, - 4.58425701e-001, 3.03237855e-001, -5.49223609e-002, - 3.60968821e-002, 8.54638517e-002, 5.64432628e-002, - 2.63260771e-002, -3.72053101e-003, 4.47022878e-002, - 3.07876430e-002, 5.44722751e-002, -7.96962604e-002, - 1.81072414e-001, 1.76651835e-001, -8.60578418e-002, - -8.24673623e-002, 2.15867683e-001, 2.08586812e-001, - -9.28842723e-002, 2.44577620e-002, 1.05652355e-001, - 5.36154844e-002, 4.89670434e-004, -3.50345159e-003, - 5.51807741e-003, 7.32674217e-003, -2.51668878e-003, - -5.27785569e-002, 3.71201001e-002, 6.94502145e-002, - -4.95869666e-003, -5.51631302e-002, 3.63920741e-002, - 7.29352608e-002, -4.82410146e-003, -2.62751174e-003, - 8.94907396e-003, 7.88427703e-003, -1.14653613e-002, - 9.85054721e-005, 1.82415284e-002, 9.71999858e-003, - -4.51716408e-003, -9.46174189e-002, 7.86934569e-002, - 1.28141195e-001, -2.10226793e-002, -9.59587619e-002, - 5.66897690e-002, 1.32944524e-001, -1.84065849e-003, - -6.62017614e-003, 7.08946399e-003, 1.39005883e-002, - -1.77031472e-001, -3.76397133e-004, 2.06264451e-001, - 3.97699885e-002, -1.66395292e-001, -1.08181074e-001, - 3.78817558e-001, 2.86990821e-001, -6.67377710e-002, - -1.43699765e-001, 1.88416809e-001, 2.45289475e-001, - 1.13764964e-002, -2.20306274e-002, 3.04424949e-002, - 3.77230011e-002, -1.92234248e-001, -1.18389782e-002, - 2.18624383e-001, 3.50411832e-002, -1.83629885e-001, - -4.28859666e-002, 3.40646654e-001, 1.68236569e-001, - -5.23082465e-002, -2.32460257e-002, 1.50205970e-001, - 1.33863270e-001, 8.41017067e-003, -2.11417093e-003, - 2.30619423e-002, 2.19395757e-002, -2.13791654e-002, - -2.99642864e-003, 2.60117147e-002, 6.84084464e-003, - -2.97131278e-002, 7.12682027e-003, 4.94422130e-002, - 2.65106689e-002, -1.56545406e-003, 9.70755611e-003, - 2.06394456e-002, 2.28620898e-002, 1.51201632e-004, - 5.92931290e-004, 2.84550735e-003, 3.29332054e-003, - 2.87039508e-003, -2.92273751e-003, 5.15063666e-003, - 6.25011977e-003, -2.41341884e-003, -3.79598103e-002, - 2.48989332e-002, 5.39868437e-002, 2.39855913e-003, - -3.84744070e-002, 2.49338802e-002, 5.28734401e-002, - -1.07839704e-003, -2.55158427e-003, 3.95357795e-003, - 5.46494173e-003, -1.88811999e-002, -5.37979789e-002, - 3.77575345e-002, 6.25194833e-002, -6.44850582e-002, - -4.10249650e-001, 1.66113630e-001, 4.56135750e-001, - 1.22875638e-001, -3.85639966e-001, 1.92509964e-001, - 4.33360308e-001, 2.79071797e-002, -4.72617298e-002, - 4.18688916e-002, 5.81854358e-002, -1.84454750e-002, - -2.71977484e-003, 2.89371889e-002, 2.53099576e-002, - -2.59791091e-002, 3.21819782e-002, 1.07581586e-001, - 1.16890885e-001, 7.60340765e-002, 1.36564551e-002, - 1.29477456e-001, 1.20489888e-001, 2.89817899e-002, - -8.08072835e-003, 3.82132754e-002, 2.77814027e-002, - -7.30284024e-004, 3.25747096e-004, 3.41667142e-003, - 3.31238657e-003, -2.26534088e-003, 1.12237846e-002, - 1.92107912e-002, 2.31894627e-002, 6.73362426e-003, - 1.10484315e-002, 2.09309142e-002, 2.32318193e-002, - 2.02956819e-003, 1.07048363e-004, 4.43599792e-003, - 3.51776020e-003, 1.15714148e-002, 5.11005661e-003, - 2.03093179e-002, 1.02689303e-002, -6.31626043e-003, - 1.19069062e-001, 4.68760021e-002, 1.50057524e-001, - -4.44165356e-002, 1.24437027e-001, 6.27774373e-002, - 1.49491832e-001, -4.19286219e-003, 4.72460501e-003, - 1.15651162e-002, 9.84418392e-003, 1.70612127e-001, - -1.03993984e-002, 2.03653693e-001, 3.23239863e-002, - 2.91575324e-002, 8.29053521e-002, 1.99773386e-001, - 1.62491888e-001, -2.11648881e-001, 1.49304703e-001, - 3.35659593e-001, 2.05625281e-001, -1.48804262e-001, - 1.57367941e-002, 1.98700830e-001, 3.87964845e-002, - 1.63211226e-001, 5.47261909e-004, 2.05679581e-001, - 3.83131094e-002, 7.15711564e-002, -1.41989924e-002, - 2.44172469e-001, 1.08589754e-001, -1.12728864e-001, - 9.91186872e-003, 2.65748918e-001, 9.92686301e-002, - -1.71578780e-001, 2.75157820e-002, 2.16747805e-001, - 4.24630530e-002, 1.32811889e-002, 2.09920364e-003, - 1.92391910e-002, 7.91439414e-003, 1.97727438e-002, - -1.98821574e-002, 4.28679399e-002, 3.07906736e-002, - -1.08812088e-002, -1.12594431e-002, 3.70054469e-002, - 2.16797609e-002, -1.70287695e-002, 3.02536925e-003, - 2.25223042e-002, 7.13726878e-003, 7.82367133e-004, - -1.90204580e-003, 4.09657788e-003, 4.97780368e-003, - 1.16198640e-002, -2.04924699e-002, 3.15632969e-002, - 4.75035869e-002, 8.04091617e-003, -2.45493967e-002, - 2.84411069e-002, 5.05774468e-002, -3.87385262e-005, - -1.91732240e-003, 4.07275837e-003, 5.60520310e-003, - -2.80449679e-003, 2.37705582e-003, 3.03682256e-002, - 3.35294530e-002, 5.27143404e-002, -1.61291696e-002, - 1.71058252e-001, 2.84809709e-001, 2.35560387e-002, - 9.15595144e-002, 1.93910807e-001, 5.23589611e-001, - 1.28407637e-002, 7.01445201e-003, 3.82948183e-002, - 7.00189024e-002, -5.79436542e-003, 1.33469924e-002, - 3.45128179e-002, 3.02302502e-002, -3.23486105e-002, - -2.54728599e-003, 2.14022756e-001, 2.31885448e-001, - 1.54229671e-001, -1.04133114e-001, 2.73041099e-001, - 3.96115601e-001, 8.89610033e-003, 5.71912108e-003, - 4.30686884e-002, 4.91254851e-002, -8.06216049e-005, - -4.49635845e-004, 4.39526793e-003, 3.91912088e-003, - -4.70918277e-003, 1.38344374e-002, 3.61316353e-002, - 4.24920395e-002, 1.47048049e-002, 2.19751634e-002, - 3.91494669e-002, 4.87100296e-002, 6.01112552e-004, - -4.72195650e-004, 5.15036797e-003, 5.33796474e-003, - 1.37680222e-003, 1.10616162e-003, 5.20052528e-003, - 5.30487159e-003, 1.41104385e-002, 3.70438471e-002, - 3.36884037e-002, 5.66899963e-002, 6.97378349e-003, - 3.73664014e-002, 3.19883563e-002, 5.77618629e-002, - 4.84314398e-004, 2.36032112e-003, 4.13807621e-003, - 6.42038416e-003, 5.23791946e-002, 1.47465467e-002, - 6.38903379e-002, 3.53736877e-002, 1.20182596e-001, - 1.99094325e-001, 2.20249802e-001, 2.64560252e-001, - -9.58455913e-003, 1.37647629e-001, 1.51822150e-001, - 2.17833549e-001, -2.16035545e-002, 1.47271166e-002, - 3.27121839e-002, 3.15667018e-002, 5.54000102e-002, - -1.88007299e-002, 6.74560666e-002, 3.73070389e-002, - -1.91078405e-003, -3.35321814e-001, 2.86631852e-001, - 3.75499606e-001, 1.33016929e-001, -2.42126465e-001, - 2.46761724e-001, 2.94863492e-001, -2.41457447e-002, - -1.27851749e-002, 3.75227779e-002, 3.10493559e-002, - 9.28804395e-004, -1.65637024e-003, 5.39178867e-003, - 4.78188647e-003, 1.04976323e-004, -2.44162176e-002, - 3.47964205e-002, 4.37843725e-002, 2.40434781e-002, - -3.48202325e-002, 4.10634428e-002, 5.26041761e-002, - 1.21385441e-003, -3.87992640e-003, 5.22370776e-003, - 6.61025243e-003, -3.70401947e-004, 1.52464432e-003, - 3.34715843e-003, 6.84986170e-003, -6.65065745e-005, - 1.80765353e-002, 1.76666528e-002, 5.65608330e-002, - -8.38330889e-004, 1.74706578e-002, 1.78968441e-002, - 5.66304810e-002, -3.87149950e-004, 1.20122801e-003, - 3.14781745e-003, 6.48948830e-003, 1.30051374e-002, - 1.89371016e-002, 2.85970904e-002, 6.26740605e-002, - 2.51143388e-002, 1.52231261e-001, 1.15233883e-001, - 5.67627192e-001, -5.62570430e-002, 1.35334209e-001, - 1.42666012e-001, 5.83254218e-001, -2.47970484e-002, - 9.82452370e-003, 3.92094180e-002, 6.24788143e-002, - 1.37677658e-002, -1.69326318e-003, 2.85686329e-002, - 2.50548497e-002, 1.08213099e-002, -2.88059935e-002, - 1.11038357e-001, 1.41683549e-001, -7.78764263e-002, - -3.97381932e-002, 1.58096388e-001, 1.61449209e-001, - -2.66763251e-002, -6.30402239e-003, 4.27860096e-002, - 2.93461978e-002, 6.99893921e-004, -1.23499543e-003, - 3.65411164e-003, 4.36573988e-003, -2.66477873e-005, - -1.54749071e-002, 2.01678891e-002, 3.47049162e-002, - -1.15397563e-002, -1.71859898e-002, 2.48308424e-002, - 3.64503749e-002, -2.10819114e-003, -5.35008730e-004, - 5.36014652e-003, 4.30902326e-003, -2.74277409e-003, - 1.08955905e-003, 8.03830754e-003, 3.31800780e-003, - -4.58923392e-002, -1.89108104e-002, 7.64036030e-002, - 3.48437466e-002, 7.43011013e-003, -1.65824667e-002, - 2.98996754e-002, 3.34651209e-002, 1.57458431e-004, - -4.55168949e-004, 3.73991788e-003, 3.85755394e-003, - -2.95322686e-002, -2.31468678e-003, 6.07944503e-002, - 1.94854010e-002, -3.21806312e-001, 1.98847502e-002, - 5.33819020e-001, 1.73681140e-001, 5.72664104e-002, - 3.20060328e-002, 1.54639810e-001, 1.57837659e-001, - 8.45384412e-003, 1.06075007e-004, 2.65813656e-002, - 2.50525232e-002, -3.79981361e-002, -7.36629311e-003, - 6.42939210e-002, 2.47323941e-002, -2.83599675e-001, - 2.47543765e-004, 4.08480078e-001, 2.19947949e-001, - 3.06573715e-002, -3.08870692e-002, 1.32238224e-001, - 2.05227792e-001, 1.03618391e-002, -2.76188296e-003, - 2.68374663e-002, 2.94455625e-002, -3.87750147e-003, - -4.27651103e-004, 7.94667285e-003, 4.36626375e-003, - -2.96430308e-002, 3.68025191e-002, 5.29608913e-002, - 6.13942742e-002, -3.61237046e-003, 3.80289815e-002, - 2.82509290e-002, 6.27428517e-002, -9.02639440e-005, - 2.57383264e-003, 4.14165342e-003, 6.76513137e-003, - -3.41219176e-003, 2.05946824e-004, 7.72836525e-003, - 4.28085215e-003, -2.17016991e-002, -3.80780213e-002, - 5.28462343e-002, 5.59466295e-002, -3.63916568e-002, - -4.50059697e-002, 5.20534515e-002, 5.99261746e-002, - -5.21701528e-004, -3.22830677e-003, 4.47474374e-003, - 5.85464807e-003, -5.48149645e-002, -1.37693062e-003, - 7.39732087e-002, 2.40775701e-002, -3.07783812e-001, - -2.11163387e-001, 3.91726851e-001, 2.61332899e-001, - -1.00725271e-001, -1.51284575e-001, 1.92123458e-001, - 2.03195527e-001, 1.40019907e-002, -9.02412925e-003, - 2.57640500e-002, 2.26185266e-002, -5.75711466e-002, - -1.76899356e-003, 7.82598108e-002, 2.20349040e-002, - -3.60545784e-001, 4.15453687e-002, 4.18028146e-001, - 1.42748430e-001, -5.31399390e-003, 6.43926039e-002, - 1.31017059e-001, 1.30755186e-001, 1.17937727e-002, - 8.35587829e-003, 2.44494043e-002, 2.04920433e-002, - -6.47854852e-003, -1.84040854e-003, 1.00298179e-002, - 4.21752734e-003, -4.13328409e-002, 1.52920289e-002, - 5.69869354e-002, 3.21877003e-002, -2.88933539e-003, - 1.55650824e-002, 2.67238840e-002, 2.87398025e-002, - 6.56597986e-005, 3.91842361e-004, 3.31543246e-003, - 3.45755485e-003, 3.06791672e-003, -6.24236825e-004, - 5.74120134e-003, 3.56121804e-003, 1.50307342e-002, - 1.38628958e-002, 2.82610413e-002, 2.36662254e-002, - -2.45962199e-003, 1.25058498e-002, 2.07038298e-002, - 2.24627368e-002, -2.85505294e-003, -5.12391271e-004, - 4.94227326e-003, 3.87609261e-003, 4.08195518e-002, - -9.80988424e-003, 5.33841066e-002, 2.95618940e-002, - 1.41797662e-001, 2.07527112e-002, 1.94433361e-001, - 1.19586468e-001, -8.58261883e-002, -1.28589803e-002, - 1.53331667e-001, 1.30182669e-001, -4.75986004e-002, - -3.41626778e-002, 5.67238554e-002, 4.73676138e-002, - 3.97600941e-002, -1.19482139e-002, 5.51989041e-002, - 3.26227508e-002, 1.76917538e-001, -1.14693202e-001, - 2.55759418e-001, 1.89051285e-001, -3.77938032e-001, - -3.37045580e-001, 4.09167230e-001, 3.68912190e-001, - -2.57755313e-002, -4.49117199e-002, 5.03511056e-002, - 5.84483407e-002, 1.98717485e-003, -1.61486480e-003, - 6.25056541e-003, 4.98232665e-003, 5.86288865e-004, - -5.51928617e-002, 4.83641364e-002, 6.34929314e-002, - -4.74447012e-002, -3.75959948e-002, 6.06290437e-002, - 5.57196252e-002, 1.55492721e-003, 8.89796473e-004, - 4.78098309e-003, 4.57485113e-003, 2.32570851e-003, - -4.61000454e-005, 5.33271721e-003, 3.50850448e-003, - 4.88811173e-003, 6.74983673e-003, 2.05036309e-002, - 1.79786254e-002, -2.35402789e-002, 8.20016582e-003, - 3.69760804e-002, 2.05052476e-002, -1.11714629e-002, - -2.09381105e-003, 1.70895122e-002, 5.55117009e-003, - 3.55839282e-002, -1.62688699e-002, 5.16472049e-002, - 3.51973958e-002, 4.62788455e-002, 2.86854128e-003, - 1.27446324e-001, 9.87818986e-002, -1.65281788e-001, - 1.02066835e-002, 2.36638039e-001, 9.76615697e-002, - -1.17021002e-001, -6.40790444e-003, 1.52675554e-001, - 3.62193547e-002, 3.37887928e-002, -6.64581060e-002, - 6.30477965e-002, 7.90274069e-002, 2.48829052e-001, - -3.66321445e-001, 3.04878056e-001, 4.06875074e-001, - -1.39927432e-001, -1.19348444e-001, 2.61016369e-001, - 1.96960986e-001, -1.16238281e-001, 2.13985739e-004, - 1.49088681e-001, 3.65309455e-002, -2.06618034e-003, - -1.78462046e-003, 7.03047495e-003, 8.73623602e-003, - 3.69863249e-002, -7.26447701e-002, 5.99827208e-002, - 9.97110158e-002, 1.65194776e-002, -9.33406204e-002, - 6.03881702e-002, 1.07704751e-001, -7.51533173e-003, - -3.42265330e-003, 1.29981749e-002, 9.10419319e-003, - -1.80508872e-003, 2.12717947e-004, 4.70349658e-003, - 4.25139675e-003, -1.38466023e-002, -1.22785475e-002, - 3.08468733e-002, 4.18176986e-002, 1.95937022e-003, - -1.41376313e-002, 2.44666170e-002, 4.34284396e-002, - 2.05769640e-004, -1.55254296e-004, 3.82689992e-003, - 4.62718401e-003, -6.24190271e-003, 1.33972345e-002, - 3.95702235e-002, 3.44763212e-002, -1.56583622e-001, - 1.88542932e-001, 2.44617164e-001, 3.55492949e-001, - 4.03271504e-002, 1.66625351e-001, 1.55895501e-001, - 3.32995355e-001, 2.05395790e-003, 1.63328573e-002, - 3.48845981e-002, 3.86462249e-002, -6.38879929e-003, - -7.70076364e-003, 4.18864898e-002, 3.31981666e-002, - -1.64861485e-001, -1.40449539e-001, 2.58063078e-001, - 3.67556006e-001, 6.05277531e-002, -1.15619034e-001, - 1.70414984e-001, 3.43002141e-001, -2.26436663e-004, - -8.43981933e-003, 3.72785591e-002, 3.84266078e-002, - -1.59260537e-003, -6.40274724e-004, 4.80833044e-003, - 4.60673077e-003, -1.45996725e-002, 9.17916466e-003, - 3.28245051e-002, 4.49648686e-002, 2.00779038e-003, - 9.16458108e-003, 2.52255462e-002, 4.40596677e-002, - 1.79938448e-004, -8.80469997e-006, 4.19697911e-003, - 4.67996206e-003, 3.82736442e-003, -1.47625646e-002, - 6.15786528e-003, 2.87267603e-002, 3.20863053e-002, - -1.75742760e-001, 5.46934567e-002, 2.55141199e-001, - -1.45298941e-002, -1.79312140e-001, 4.94085513e-002, - 2.56484002e-001, -9.64415725e-004, -1.01419725e-002, - 7.65354279e-003, 2.51454897e-002, 3.80204222e-003, - -4.41900222e-003, 1.66263636e-002, 2.16370504e-002, - 2.96718650e-003, -2.02334486e-002, 9.00744498e-002, - 1.67315602e-001, 1.96137801e-001, 1.01551991e-002, - 2.61346638e-001, 2.53470033e-001, 4.46058251e-002, - 3.72872048e-004, 8.32137391e-002, 5.76087013e-002, - 7.48848263e-003, 1.21367595e-003, 1.97274294e-002, - 1.92875955e-002, 8.05120096e-002, 9.78798941e-002, - 1.34171054e-001, 1.72494054e-001, 1.64211005e-001, - 2.10006863e-001, 2.50987917e-001, 3.34447294e-001, - 4.83485386e-002, 2.67696269e-002, 8.11100006e-002, - 7.48602003e-002, 7.05685979e-003, 1.51296956e-002, - 8.77191778e-003, 2.01675426e-002, 3.66060399e-002, - 1.79609865e-001, 7.07273036e-002, 2.27580771e-001, - 5.63408853e-003, 1.19803786e-001, 8.34077895e-002, - 1.65095791e-001, -3.83524527e-003, 3.64747993e-003, - 1.27672656e-002, 1.41506819e-002, -9.08240792e-004, - 8.55964376e-004, 7.63409957e-003, 6.91754464e-003, - 3.89121734e-002, 5.90996593e-002, 5.83460070e-002, - 8.21392983e-002, 7.66094134e-004, 5.59316836e-002, - 3.67648937e-002, 7.82606155e-002, -6.81548379e-003, - 1.47348634e-004, 9.65367071e-003, 7.87802786e-003, - 5.38743362e-002, 2.69446597e-002, 8.16549435e-002, - 4.18973900e-002, 1.95151150e-001, 1.74369559e-001, - 2.57831395e-001, 2.13222459e-001, -2.29261369e-001, - -1.90966837e-002, 2.91934729e-001, 1.49338380e-001, - -6.53886795e-002, -2.32485719e-002, 8.35308209e-002, - 3.73969525e-002, 6.89538047e-002, 1.73443798e-002, - 8.53613988e-002, 2.96787657e-002, 7.10650012e-002, - 1.43032477e-004, 1.49820998e-001, 7.83228800e-002, - -4.26771998e-001, -9.48134065e-002, 4.61324453e-001, - 1.42411768e-001, -2.34566219e-002, -7.50664389e-003, - 5.52680381e-002, 2.49793343e-002, 6.33119559e-003, - 9.81841702e-004, 9.01949219e-003, 3.23741930e-003, - 2.05036066e-003, -9.99634806e-003, 2.59505864e-002, - 1.77629013e-002, -6.84816465e-002, -1.90864410e-002, - 7.71601051e-002, 2.92942394e-002, -5.22628892e-004, - 1.13108603e-003, 6.81534875e-003, 3.70208151e-003, - 1.62208604e-003, 1.16287998e-003, 6.02226378e-003, - 4.77323122e-003, -8.61352775e-003, 3.21521424e-002, - 3.88680138e-002, 4.59227227e-002, -2.64585428e-002, - 2.77195517e-002, 4.46678586e-002, 4.72423173e-002, - -1.23506505e-003, 2.60845845e-004, 5.09942882e-003, - 4.94038360e-003, 3.65488045e-002, -1.50532171e-003, - 5.44468984e-002, 2.95599923e-002, 1.36571778e-002, - 7.06909597e-002, 2.35949054e-001, 1.83431238e-001, - -1.72302216e-001, 1.61880925e-001, 2.96505839e-001, - 2.63676643e-001, -3.89818847e-002, 1.30138258e-002, - 5.24068475e-002, 3.77169214e-002, 3.84665541e-002, - -8.70760530e-003, 5.75954765e-002, 2.92047057e-002, - -3.79103050e-002, -1.39585793e-001, 3.12056482e-001, - 2.16379195e-001, -1.58542603e-001, -2.98350126e-001, - 3.02868098e-001, 3.51077199e-001, -3.36919688e-002, - -2.14860104e-002, 4.88510467e-002, 3.97981852e-002, - 1.92001334e-003, -1.60568266e-003, 6.50510378e-003, - 4.93893214e-003, -1.91012584e-002, -3.33800614e-002, - 5.01080453e-002, 4.83681709e-002, -2.17047017e-002, - -1.88618619e-002, 4.01641168e-002, 4.12308797e-002, - -7.52015476e-005, -2.28680598e-004, 4.32163570e-003, - 4.35865903e-003, 2.70490479e-002, -6.84825704e-004, - 3.43067050e-002, 6.17356366e-003, 2.39735134e-002, - 2.27893274e-002, 4.21003662e-002, 3.11050676e-002, - -9.66988504e-003, 1.03852572e-002, 2.88341567e-002, - 2.25668754e-002, -7.61128124e-003, -2.56301532e-003, - 1.00554246e-002, 6.16265368e-003, 2.50551522e-001, - 2.68245279e-003, 2.91790307e-001, 3.62576060e-002, - 1.14721224e-001, 5.16858697e-003, 2.07068607e-001, - 9.26084071e-002, -1.47486687e-001, 2.43814401e-002, - 2.30100513e-001, 1.20975390e-001, -8.39462802e-002, - -1.49480198e-002, 1.17761582e-001, 5.79998344e-002, - 2.15490162e-001, 1.45044457e-003, 2.54375815e-001, - 5.29582873e-002, 1.25617504e-001, -1.51660472e-001, - 2.43653700e-001, 2.25837618e-001, -1.23329937e-001, - -2.05825970e-001, 1.99427903e-001, 2.92766958e-001, - -9.02467221e-002, -2.81001697e-003, 1.10291027e-001, - 6.96278661e-002, 1.48751903e-002, -3.79739387e-004, - 2.19930466e-002, 9.06850956e-003, -6.24362566e-003, - -7.02111199e-002, 5.97794354e-002, 9.92358923e-002, - -9.06269625e-003, -6.96127862e-002, 5.14767580e-002, - 1.15182832e-001, -2.38024490e-003, -1.97118358e-003, - 9.73811187e-003, 9.38718487e-003, 1.17059308e-003, - 2.05368524e-005, 3.94058926e-003, 4.11478197e-003, - -1.21010132e-002, -1.78996138e-002, 3.03023569e-002, - 3.99378203e-002, -9.05270223e-003, -3.60604040e-002, - 3.19008604e-002, 5.10208085e-002, 1.85278492e-004, - -2.39122077e-003, 4.08741459e-003, 6.24525594e-003, - -1.35850739e-002, -3.95950973e-002, 3.09544206e-002, - 5.37258163e-002, -9.28112119e-002, -2.36258626e-001, - 2.06774756e-001, 3.57305378e-001, 9.06552747e-002, - 2.68377122e-002, 1.87125638e-001, 3.51409703e-001, - 1.34615460e-002, 7.77042750e-003, 2.71302219e-002, - 5.48958220e-002, -1.20140063e-002, 2.21604668e-002, - 2.90827639e-002, 4.90229167e-002, 1.88260823e-002, - 2.27099672e-001, 1.63243756e-001, 3.59339952e-001, - 6.84766620e-002, 7.20704719e-002, 1.51662365e-001, - 4.14011836e-001, 1.05738100e-002, 2.59768305e-004, - 2.36111321e-002, 6.20392635e-002, 1.34602957e-003, - 2.72351643e-003, 3.87334614e-003, 5.61112864e-003, - 2.50762422e-003, 2.45754030e-002, 2.49570794e-002, - 4.29275446e-002, -8.11550359e-004, 2.86219213e-002, - 2.07919199e-002, 4.53207903e-002, -6.36888319e-004, - 2.97988043e-003, 3.08256946e-003, 5.85132698e-003, - 1.10182846e-002, -2.79207923e-003, 1.96487363e-002, - 6.21868996e-003, 1.25084445e-002, 4.61043557e-003, - 2.71300655e-002, 1.57057568e-002, -6.32894412e-003, - 2.65450240e-003, 1.97184607e-002, 1.57960616e-002, - -1.44749442e-002, -4.69847675e-003, 2.14987192e-002, - 8.17656424e-003, 1.47206277e-001, -1.22231748e-002, - 2.51753181e-001, 4.20641005e-002, 5.26786223e-002, - 7.07090273e-003, 1.92369491e-001, 9.22124982e-002, - -2.58383658e-002, -1.76173681e-003, 1.50639549e-001, - 9.36209485e-002, -1.38693482e-001, -7.27060996e-003, - 2.09240690e-001, 3.58006097e-002, 1.54830366e-001, - -6.99616503e-003, 2.47881278e-001, 4.26463336e-002, - 7.52865821e-002, -1.05373777e-001, 1.85593292e-001, - 2.15765759e-001, -1.21312708e-001, -1.51962832e-001, - 2.29232714e-001, 2.59889036e-001, -1.35756359e-001, - -3.33890840e-002, 2.05378175e-001, 5.56154884e-002, - 7.87807070e-003, -1.46997301e-002, 1.83449443e-002, - 2.45136060e-002, 8.24750587e-003, -1.93263665e-001, - 3.84137034e-002, 2.77849585e-001, -2.58357134e-002, - -1.82060033e-001, 4.69984263e-002, 2.69569874e-001, - -1.98798883e-003, -1.09475553e-002, 1.33612463e-002, - 2.12974362e-002, -1.03651386e-004, 3.42746149e-003, - 3.87865538e-003, 5.18378895e-003, -2.70733647e-002, - 4.38179336e-002, 4.17963080e-002, 5.23216762e-002, - -3.93696167e-002, 2.27921307e-002, 5.00496626e-002, - 4.38828431e-002, 9.72006295e-004, -9.05438792e-004, - 4.21113614e-003, 4.63688653e-003, 1.53591372e-002, - 1.69566472e-003, 2.47943643e-002, 2.26543434e-002, - -1.51467184e-002, 9.82322693e-002, 1.41803861e-001, - 1.67497352e-001, -2.57571965e-001, 3.66989821e-001, - 2.87033588e-001, 3.91064197e-001, -3.10255755e-002, - 5.54798022e-002, 4.40977179e-002, 6.44582957e-002, - 1.46722347e-002, -2.72763669e-002, 2.58744787e-002, - 3.70310768e-002, 4.03834619e-002, -2.55324185e-001, - 1.19679973e-001, 2.84334034e-001, -5.26406355e-002, - -2.56601214e-001, 1.37626931e-001, 3.10623854e-001, - -3.79404612e-002, -1.60005912e-002, 4.49377075e-002, - 4.84186485e-002, -1.18090957e-003, -3.24822217e-003, - 3.78579879e-003, 6.98036747e-003, -7.38616986e-003, - -3.94425318e-002, 2.59774439e-002, 5.87496236e-002, - -9.75577277e-004, -4.13582996e-002, 2.45748889e-002, - 5.96196502e-002, -9.79117103e-005, -3.49405175e-003, - 3.77443037e-003, 6.88561331e-003, 9.70340217e-004, - 6.68021676e-004, 4.10342962e-003, 3.57557298e-003, - 1.17320390e-002, 2.27749050e-002, 2.91489828e-002, - 3.68467420e-002, -6.21194392e-003, 2.32785959e-002, - 2.49584429e-002, 3.76470201e-002, -1.93215208e-004, - 1.13768328e-003, 3.46699846e-003, 4.09401115e-003, - 2.49638073e-002, 8.39341898e-003, 4.06371020e-002, - 2.82993671e-002, 1.15032107e-001, 1.21473789e-001, - 2.58370131e-001, 2.36102149e-001, -9.12555233e-002, - 9.18864980e-002, 1.73926979e-001, 2.25072071e-001, - -1.52149918e-002, 1.35464640e-002, 2.90765706e-002, - 3.05304416e-002, 2.61468235e-002, -4.29180590e-003, - 4.37493287e-002, 3.42919789e-002, 2.11766198e-001, - -1.79170985e-002, 2.87803710e-001, 4.04025048e-001, - -8.32301378e-002, 9.83695388e-002, 1.81242645e-001, - 4.87117946e-001, -2.71322727e-002, 7.62897264e-003, - 3.81772034e-002, 4.42665406e-002, 9.01051855e-004, - -1.87269936e-004, 4.08086227e-003, 4.29510744e-003, - 1.76048744e-002, -2.84400024e-002, 3.52592133e-002, - 4.84885089e-002, -1.36308477e-003, -3.67296450e-002, - 2.68296730e-002, 5.63360602e-002, -2.24978532e-004, - -1.76622241e-003, 4.00562398e-003, 6.20573992e-003, - 2.39285757e-003, 6.89114095e-004, 8.92397948e-003, - 7.39591941e-003, 1.79410409e-002, 5.55616617e-002, - 4.47599553e-002, 8.60066116e-002, 6.86877454e-003, - 7.19159395e-002, 3.61338742e-002, 9.40202475e-002, - -1.51869422e-003, 5.51153067e-003, 6.63688639e-003, - 1.01911733e-002, 8.41937214e-002, 1.44711919e-002, - 1.08053610e-001, 4.19539437e-002, 1.91650987e-001, - 2.36072943e-001, 2.68174529e-001, 2.92722672e-001, - -4.06847037e-002, 1.49789780e-001, 1.53167129e-001, - 2.29088798e-001, -5.34304976e-002, 9.04857181e-003, - 6.52994439e-002, 4.30457592e-002, 9.65435877e-002, - -1.20250462e-003, 1.16165280e-001, 3.44101973e-002, - 1.06911682e-001, -1.47572771e-001, 2.44407699e-001, - 2.11413816e-001, -1.28516227e-001, -3.01024050e-001, - 2.04677716e-001, 3.50684822e-001, -4.03924845e-002, - -3.18475328e-002, 6.20971508e-002, 5.63536063e-002, - 6.57607894e-003, -2.47886666e-004, 1.07915634e-002, - 6.16172981e-003, -9.62983817e-003, -4.51312587e-002, - 5.08295670e-002, 6.72423914e-002, -1.78609006e-002, - -2.59389449e-002, 4.59052064e-002, 6.37313947e-002, - 1.17163104e-003, -6.98963559e-005, 6.55550743e-003, - 7.25533813e-003, -1.06967040e-004, 8.26718227e-004, - 5.13120787e-003, 4.77318978e-003, -3.24981399e-002, - -3.22498716e-002, 4.95307706e-002, 5.13757542e-002, - -2.23821364e-002, -4.17967774e-002, 5.08044027e-002, - 5.67234382e-002, 8.31860816e-004, -1.81219040e-003, - 5.58810495e-003, 5.61108859e-003, -3.30744311e-002, - -2.65054647e-002, 4.99097407e-002, 4.44244742e-002, - -2.99735099e-001, -2.03918770e-001, 3.61009419e-001, - 3.40502053e-001, -5.05651236e-002, -9.96610075e-002, - 2.60790199e-001, 2.28453413e-001, 3.18538025e-002, - -3.96433845e-003, 4.47580032e-002, 3.37284841e-002, - -5.13346046e-002, -1.32723944e-002, 6.10941015e-002, - 4.68703099e-002, -1.10169575e-001, 3.08302771e-002, - 2.17644438e-001, 2.58864075e-001, 5.19696362e-002, - 2.15851933e-001, 2.13513181e-001, 2.75007874e-001, - 2.31907889e-002, 2.32532211e-002, 4.23328765e-002, - 4.01153602e-002, -2.67685251e-003, 1.16107194e-003, - 6.34597382e-003, 6.14679419e-003, -2.20540538e-003, - 3.53972092e-002, 3.58454548e-002, 4.98482250e-002, - 1.02983657e-002, 2.60643363e-002, 3.81390229e-002, - 4.59006689e-002, -1.23990793e-003, 5.13078528e-004, - 5.60203427e-003, 5.41330129e-003, -1.35241495e-002, - 2.13620238e-004, 2.06730999e-002, 6.48547243e-003, - -1.53612858e-002, -2.81669777e-002, 4.07239795e-002, - 5.20357341e-002, -8.98674503e-003, -2.23584082e-002, - 2.93790437e-002, 4.77689356e-002, 5.27967240e-005, - -1.70024310e-003, 3.78364418e-003, 5.40492963e-003, - -1.69750825e-001, 2.08226661e-003, 2.12656796e-001, - 3.43257263e-002, -1.33057415e-001, -1.66287974e-001, - 2.41251528e-001, 2.13063374e-001, -1.00080390e-002, - -1.65259555e-001, 1.32692054e-001, 1.96903184e-001, - 1.06437225e-002, -1.85134541e-002, 2.39597410e-002, - 2.88606752e-002, -1.77872658e-001, 7.44023826e-003, - 2.21580759e-001, 4.03177142e-002, -1.41448498e-001, - 3.13311934e-001, 2.97782660e-001, 3.71222377e-001, - -9.54941884e-002, 1.14280388e-001, 1.75231472e-001, - 1.97041512e-001, 1.52777201e-002, 2.08700192e-003, - 2.56989729e-002, 2.23504156e-002, -9.00160521e-003, - 1.35847344e-003, 1.98977720e-002, 6.39222562e-003, - -2.63894815e-002, 5.41677698e-002, 6.89711198e-002, - 7.54081458e-002, -4.95041311e-002, 6.15689084e-002, - 6.23987801e-002, 7.55310804e-002, -7.16296199e-004, - 3.89817660e-003, 4.89080697e-003, 6.47186860e-003, - 3.98698685e-005, -1.05521793e-003, 5.84879005e-003, - 3.28823947e-003, 5.36942631e-002, 2.52552461e-002, - 7.20391870e-002, 3.52777839e-002, 5.53023210e-003, - 1.74229890e-002, 3.08262277e-002, 2.63905637e-002, - -5.22155175e-003, -8.74981284e-004, 7.24770036e-003, - 4.14265692e-003, 2.25798618e-002, 9.19882022e-003, - 5.04839495e-002, 2.36541964e-002, 3.52479488e-001, - 1.21663958e-001, 4.84843552e-001, 1.72135711e-001, - -6.64514005e-002, 3.49435373e-003, 1.73392177e-001, - 1.09648280e-001, -5.74043766e-002, -2.14436315e-002, - 6.67066425e-002, 3.45392004e-002, 5.44992723e-002, - 2.36885119e-002, 6.88984990e-002, 3.34420912e-002, - 1.87246099e-001, 5.06492779e-002, 3.03388536e-001, - 1.40016392e-001, -2.59850770e-001, -1.53221160e-001, - 3.20479810e-001, 1.97534308e-001, -3.13718170e-002, - -2.39731520e-002, 5.16943745e-002, 3.61901112e-002, - 7.49462657e-003, 1.99104263e-003, 9.48054157e-003, - 4.33178525e-003, 3.21810832e-003, -1.77167896e-002, - 3.63582931e-002, 2.83572897e-002, -5.60720824e-002, - -2.89188717e-002, 6.49824217e-002, 3.93444635e-002, - 7.95509142e-004, 3.30914831e-004, 5.06167579e-003, - 3.55706015e-003, 1.85941812e-003, 8.69608833e-004, - 4.84401686e-003, 4.04066639e-003, -4.82021458e-002, - -4.38980870e-002, 6.12520054e-002, 5.73581420e-002, - 8.18254519e-003, -5.17133772e-002, 4.67864089e-002, - 6.34094775e-002, -5.99110826e-005, -1.26955518e-003, - 5.42875659e-003, 5.25524188e-003, -2.42859237e-002, - -5.56003861e-002, 5.18759973e-002, 6.46374896e-002, - -3.87063414e-001, -3.39285523e-001, 4.31698173e-001, - 3.86092544e-001, 1.66836083e-001, -1.80991992e-001, - 2.27329150e-001, 2.47178346e-001, 2.28840504e-002, - -3.62328961e-002, 4.22494113e-002, 4.65700589e-002, - -4.43630219e-002, -3.61148529e-002, 5.61251342e-002, - 5.23855537e-002, -5.79676032e-002, 1.82311924e-003, - 1.40561298e-001, 1.33089915e-001, 5.98192215e-002, - 2.79435124e-002, 1.16890974e-001, 1.12097286e-001, - 2.23740060e-002, -7.06675369e-003, 3.22793797e-002, - 2.69947760e-002, -1.82836573e-003, 3.21400468e-004, - 4.69138799e-003, 4.31861356e-003, -2.00031954e-003, - 1.24630947e-002, 2.08763704e-002, 2.37789042e-002, - 5.76614030e-003, 1.22851040e-002, 2.01909114e-002, - 2.29146220e-002, 1.25764275e-003, 4.92458872e-004, - 3.71642527e-003, 3.50781740e-003, 1.20348495e-003, - 1.72416074e-003, 4.10596840e-003, 4.18272009e-003, - 8.26224778e-003, 3.34666260e-002, 3.52320857e-002, - 4.77686524e-002, 2.35431399e-002, 4.19716947e-002, - 4.29758616e-002, 5.64190075e-002, 2.45268364e-003, - 4.70324466e-003, 5.92461601e-003, 7.31546711e-003, - 4.45825569e-002, 1.21625410e-002, 5.50570562e-002, - 3.17408666e-002, 1.22561246e-001, 3.00992042e-001, - 3.33865166e-001, 3.56897324e-001, 1.31786346e-001, - 2.62969017e-001, 2.45355755e-001, 3.00048888e-001, - -1.15499673e-002, 1.80970505e-002, 2.96120960e-002, - 2.96610333e-002, 3.87850367e-002, -4.31514066e-003, - 5.26699461e-002, 2.79314406e-002, 2.68324345e-001, - -8.45376179e-002, 3.35654169e-001, 1.95814922e-001, - 3.12873721e-003, -4.28246185e-002, 1.22002549e-001, - 1.18627504e-001, -1.17365699e-002, -2.49678409e-003, - 2.36644950e-002, 1.78527720e-002, 2.37836037e-003, - 1.28441071e-003, 5.57986321e-003, 4.00313456e-003, - 3.70390266e-002, -1.83547586e-002, 4.95511517e-002, - 3.52726094e-002, 7.28771277e-003, -1.76381916e-002, - 2.69160066e-002, 2.94426363e-002, 1.77758979e-004, - -7.49962579e-004, 3.03392578e-003, 3.09457071e-003, - -1.19149801e-003, -1.08149182e-003, 4.39706119e-003, - 3.69879347e-003, 3.64244846e-003, -1.96105037e-002, - 2.57881284e-002, 2.96051465e-002, 1.44342724e-002, - -2.39679627e-002, 4.46302965e-002, 3.75758708e-002, - 2.49624755e-002, 2.37988378e-003, 2.84343120e-002, - 6.75866148e-003, -1.56284384e-002, -3.55908880e-003, - 3.20439562e-002, 2.03037541e-002, -1.02747139e-002, - -4.79186922e-002, 1.34019956e-001, 1.07858457e-001, - 9.44288075e-002, -3.63510400e-002, 3.05357516e-001, - 1.63497373e-001, 2.47091368e-001, 2.27037109e-002, - 2.65645623e-001, 4.47422378e-002, -1.55569008e-002, - 8.85960064e-004, 3.19817178e-002, 2.03545690e-002, - -1.67914778e-002, 8.68693087e-003, 1.38204277e-001, - 1.27875894e-001, 3.09672058e-001, 1.47580504e-001, - 4.46895063e-001, 2.54223824e-001, 1.92097187e-001, - 2.75932699e-002, 2.16839731e-001, 4.95694913e-002, - -9.88232903e-004, 2.96607357e-003, 4.63947421e-003, - 6.46318309e-003, 1.35022392e-002, 4.57524024e-002, - 3.45665291e-002, 6.27924129e-002, 8.68114680e-002, - 8.04832578e-002, 1.07415333e-001, 9.52414051e-002, - 8.04744475e-003, -5.75166312e-004, 1.52557530e-002, - 7.63598597e-003, 1.90311242e-002, -2.40314077e-003, - 2.56034527e-002, 5.08742174e-003, 3.33953127e-002, - 5.16029075e-003, 4.59046029e-002, 1.84002928e-002, - 6.91922731e-004, 2.88150809e-003, 1.29961511e-002, - 1.07593508e-002, -3.49466893e-004, 2.61488321e-006, - 1.75058388e-003, 1.43331382e-003, 1.60334691e-001, - -6.34170510e-003, 2.00514466e-001, 3.11112795e-002, - 2.31425747e-001, 3.52172856e-003, 3.19053590e-001, - 9.93250981e-002, -5.27968339e-004, 2.09930795e-003, - 8.22112113e-002, 6.81145042e-002, -5.19519113e-003, - -4.74159257e-004, 1.36507638e-002, 1.07876873e-002, - 1.47521466e-001, -5.95817855e-003, 1.82952717e-001, - 3.90304551e-002, 2.32741252e-001, -2.16770694e-001, - 3.35168809e-001, 2.96427101e-001, 3.99672164e-004, - -2.19943225e-001, 1.03204735e-001, 2.78349578e-001, - -5.40162856e-003, -2.82574240e-002, 1.82372164e-002, - 3.80537175e-002, 7.98942614e-003, -7.62632489e-003, - 1.18681518e-002, 1.17544346e-002, 8.63514096e-003, - -1.53867066e-001, 4.35971469e-002, 1.82709262e-001, - 1.08698299e-002, -1.55900583e-001, 3.36352065e-002, - 1.89235881e-001, 2.52159080e-003, -1.79909524e-002, - 5.13185328e-003, 2.42942888e-002, -3.86357633e-003, - -2.73850933e-003, 8.40738695e-003, 8.13048333e-003, - -5.87489689e-004, -4.98416424e-002, 3.80313285e-002, - 7.77640417e-002, -9.18287877e-003, -4.70381938e-002, - 3.35176326e-002, 7.79544190e-002, -4.34074755e-004, - -3.51445586e-003, 5.28656784e-003, 8.38974304e-003, - -7.22312182e-002, 2.13446412e-002, 8.78918841e-002, - 5.16420044e-002, -9.14717019e-002, -1.01260342e-001, - 2.10852563e-001, 2.39998281e-001, -2.58193091e-002, - -1.59349129e-001, 1.44568756e-001, 2.21881643e-001, - 2.15368923e-002, -1.32458406e-002, 3.42412181e-002, - 3.29471342e-002, -4.47856262e-002, 3.53517421e-002, - 7.56701753e-002, 5.50080612e-002, -3.77302855e-001, - 1.89642251e-001, 4.38134164e-001, 3.15078944e-001, - 5.52166551e-002, 1.25871912e-001, 1.67149231e-001, - 2.37094998e-001, 2.09910143e-002, 1.95019562e-002, - 3.55134234e-002, 3.78143340e-002, -7.25829450e-004, - -1.23684446e-003, 8.17917753e-003, 5.82051696e-003, - -5.25934063e-002, 3.40433717e-002, 7.16307387e-002, - 5.70832379e-002, 2.14485032e-003, 2.96874903e-002, - 3.95551883e-002, 5.24301939e-002, -1.32778302e-006, - 9.94460657e-004, 5.07492991e-003, 6.27018884e-003, - -3.23928311e-004, 1.49933272e-003, 6.74494868e-003, - 3.32968868e-003, -6.72481433e-002, -2.50052325e-002, - 7.95577094e-002, 3.87396626e-002, -3.66781629e-003, - -2.33786553e-002, 2.67899148e-002, 3.53628099e-002, - 4.78151545e-004, -1.46027957e-003, 3.55862128e-003, - 4.15524095e-003, -2.56476868e-002, -5.80201810e-003, - 5.69369160e-002, 1.87090710e-002, -4.76102054e-001, - -1.29274681e-001, 5.19352973e-001, 1.66201890e-001, - 2.50380598e-002, -4.75100502e-002, 1.03745520e-001, - 9.97768715e-002, 1.21787591e-002, -5.20892907e-003, - 2.26638373e-002, 1.75256841e-002, -5.70426472e-002, - -1.50220022e-002, 7.90800080e-002, 2.47148462e-002, - -3.45961243e-001, -1.38807315e-002, 3.98294896e-001, - 1.14090107e-001, 3.13989148e-002, 3.09592374e-002, - 9.67002735e-002, 8.23300183e-002, 1.06661506e-002, - 2.87019694e-003, 2.10336745e-002, 1.49638858e-002, - -8.95086769e-003, -2.67435261e-003, 1.19088925e-002, - 4.40928247e-003, -3.19541208e-002, 1.05092973e-002, - 4.68084812e-002, 2.56876126e-002, 3.04058054e-003, - 1.38933808e-002, 1.94687359e-002, 2.46347077e-002, - 3.76121461e-004, 8.52892175e-004, 2.90752365e-003, - 3.19174374e-003, -1.74157950e-003, 1.64007500e-003, - 7.24167190e-003, 3.96097684e-003, -3.20685096e-002, - -1.45699894e-002, 5.32972887e-002, 2.91964598e-002, - -1.15637865e-003, -1.07215988e-002, 2.11115684e-002, - 2.45072674e-002, 7.31576991e-004, -3.65216634e-004, - 3.43297073e-003, 3.10700596e-003, -3.03997062e-002, - -3.78691056e-003, 5.89896888e-002, 2.73270514e-002, - -2.58094132e-001, -4.21430059e-002, 3.54403883e-001, - 1.49993807e-001, 2.55393647e-002, -3.06155551e-002, - 1.02922983e-001, 1.21110864e-001, 1.29136136e-002, - 1.20980018e-004, 2.42782179e-002, 2.08029076e-002, - -4.06285003e-002, 5.40943816e-003, 6.80232644e-002, - 4.76889834e-002, -2.63116241e-001, 1.66703194e-001, - 3.47084403e-001, 5.30446410e-001, 3.10972258e-002, - -2.61637819e-004, 1.51869357e-001, 2.56316096e-001, - 1.77619644e-002, 5.56571649e-005, 2.90770344e-002, - 2.90308557e-002, -1.43988605e-003, -8.67041468e-004, - 6.98374351e-003, 5.53098414e-003, -3.48292179e-002, - 9.22923256e-003, 5.58213033e-002, 6.74077943e-002, - -3.11009306e-002, 3.54543440e-002, 5.26124351e-002, - 5.78895733e-002, 1.22508034e-003, 1.45630341e-003, - 4.19611065e-003, 4.44500148e-003, 7.90028658e-004, - -4.80999530e-004, 5.71519975e-003, 2.30272324e-003, - 1.69104885e-003, 4.29736637e-003, 5.07244319e-002, - 2.16224492e-002, 7.24891480e-003, 4.40300442e-003, - 5.46884909e-002, 2.42669284e-002, -2.98203994e-003, - -2.29227124e-004, 6.98046107e-003, 3.33554135e-003, - 9.58750024e-003, -8.05163931e-004, 4.34402749e-002, - 1.29191540e-002, -1.83201432e-002, 1.86561067e-002, - 4.12497044e-001, 1.13015942e-001, 7.86208287e-002, - 9.46782064e-003, 4.61269885e-001, 1.21605575e-001, - -2.62066610e-002, -3.03415977e-003, 5.62672503e-002, - 1.89947542e-002, 1.03797000e-002, 1.70705968e-003, - 4.48550470e-002, 1.36639467e-002, -3.30627640e-003, - -8.51789955e-003, 4.35526192e-001, 1.13804020e-001, - 3.35606001e-002, -2.38368008e-002, 4.57458317e-001, - 1.34065419e-001, -2.14574430e-002, -1.18186011e-003, - 5.23424074e-002, 1.75685529e-002, 6.78375131e-004, - 2.53583479e-004, 6.07082993e-003, 2.44880933e-003, - 4.66674613e-003, -5.58829634e-003, 5.43123558e-002, - 2.44626831e-002, -4.35855798e-003, -7.17898039e-003, - 5.49796820e-002, 2.64951084e-002, -1.71965128e-003, - -2.20981718e-004, 6.22865139e-003, 2.76658847e-003, - 9.02252330e-004, -9.02517757e-004, 4.21836600e-003, - 3.39861657e-003, 3.12446686e-003, 5.17200259e-003, - 2.37624217e-002, 2.25288719e-002, -1.24041922e-002, - 7.04277819e-003, 2.83728708e-002, 2.31743120e-002, - -1.58788711e-002, -1.08444085e-003, 2.66969595e-002, - 4.74068150e-003, 1.61481258e-002, -4.20043431e-003, - 3.88615616e-002, 2.58607548e-002, 2.58022863e-002, - -4.28768583e-002, 1.37508139e-001, 1.36825740e-001, - -7.89732486e-002, -2.62764543e-002, 1.96789473e-001, - 1.45689398e-001, -1.44741416e-001, -1.28571410e-002, - 2.36176372e-001, 3.46129946e-002, 2.16463096e-002, - -1.60517674e-002, 4.76604402e-002, 5.80994934e-002, - 7.57112447e-003, -5.73348925e-002, 1.71171606e-001, - 2.85092682e-001, -1.02245219e-001, -1.18261985e-001, - 2.34709978e-001, 2.76372910e-001, -1.40970200e-001, - -1.19846556e-002, 2.30256215e-001, 5.01368903e-002, - 1.41083333e-003, -3.12350038e-002, 6.33377675e-003, - 4.18054424e-002, 3.09599284e-003, -2.46471822e-001, - 3.45784612e-002, 3.17137003e-001, -1.25991646e-002, - -2.36383244e-001, 4.38380204e-002, 3.02401066e-001, - -5.05522592e-003, -1.93533711e-002, 1.76845212e-002, - 2.66413838e-002, -1.00809382e-003, -4.95219720e-004, - 5.90430060e-003, 5.05420845e-003, 6.89927314e-004, - -3.08543444e-002, 3.79687846e-002, 4.46711592e-002, - 3.70318517e-002, -2.91046686e-002, 4.92666140e-002, - 4.32745814e-002, 1.88998575e-003, 6.69714762e-004, - 4.55419486e-003, 3.40860221e-003, -2.21881848e-002, - 3.66380648e-003, 4.65914644e-002, 3.43693979e-002, - -8.00025761e-002, 2.12891977e-002, 2.28287101e-001, - 2.12390780e-001, 2.81302691e-001, -8.63127187e-002, - 3.52442682e-001, 1.97802052e-001, 3.51786911e-002, - -4.40564146e-003, 4.73026522e-002, 2.36157756e-002, - -2.27466226e-002, -2.51641800e-003, 4.82367314e-002, - 3.84670235e-002, -1.00387573e-001, -5.32503240e-002, - 2.47183830e-001, 2.68763334e-001, 3.26810628e-001, - 9.68248472e-002, 3.87035996e-001, 2.40516707e-001, - 3.20061259e-002, 6.53688051e-003, 4.49231043e-002, - 2.47845817e-002, -8.06183962e-004, 1.36633185e-004, - 6.05399860e-003, 5.68357389e-003, 5.61926281e-003, - 3.80941182e-002, 4.11810391e-002, 5.35609759e-002, - 3.90191451e-002, 3.33131924e-002, 5.12483604e-002, - 4.76814024e-002, 1.16959179e-003, -5.87249815e-004, - 4.05293889e-003, 3.37092672e-003, 8.49662349e-003, - -3.05353664e-004, 1.19083980e-002, 5.94876427e-003, - 1.26975402e-002, 1.24475705e-002, 2.65752748e-002, - 2.55493708e-002, -4.30618459e-003, 8.85988493e-003, - 1.76795255e-002, 2.19207015e-002, -9.84183745e-004, - 1.68230501e-004, 3.66705609e-003, 3.06794699e-003, - 1.03565156e-001, -2.84971539e-002, 1.22936711e-001, - 5.51312417e-002, 9.86948833e-002, -1.18892659e-002, - 1.75863817e-001, 1.31010458e-001, -4.37558703e-002, - 3.87892220e-003, 1.02972172e-001, 1.02222525e-001, - -1.06558772e-002, 6.95119437e-004, 2.83989627e-002, - 1.93237774e-002, 1.05732255e-001, -5.34436665e-002, - 1.32150501e-001, 7.96161890e-002, 2.55580544e-001, - -2.44477093e-001, 3.25885385e-001, 3.37170571e-001, - -3.10328938e-002, -1.22067146e-001, 1.22326352e-001, - 2.20863819e-001, -2.12104507e-002, -2.46767029e-002, - 3.98123413e-002, 4.03812453e-002, 2.74505606e-003, - -1.04620103e-002, 8.48148763e-003, 2.05154531e-002, - 3.10126878e-002, -2.07978517e-001, 5.02654053e-002, - 2.82056272e-001, 1.01783937e-002, -2.26702958e-001, - 3.85931320e-002, 3.02737713e-001, 9.47979279e-004, - -2.41731331e-002, 7.13347085e-003, 3.49345244e-002, - -1.93630622e-005, 1.84503139e-003, 4.89430828e-003, - 3.89772258e-003, 5.92932152e-003, 2.59679332e-002, - 3.30115259e-002, 3.68545055e-002, -2.14470476e-002, - 3.87482755e-002, 6.66400492e-002, 5.26542366e-002, - -1.84487924e-002, -4.91144194e-004, 2.43405551e-002, - 5.75977471e-003, 1.87686160e-002, 1.94139441e-003, - 3.28042582e-002, 1.47143323e-002, 4.83184792e-002, - 4.08203751e-002, 1.38996109e-001, 1.01905480e-001, - 1.12733981e-002, 8.42738003e-002, 4.82205331e-001, - 1.71598405e-001, -2.05836445e-001, -9.41928665e-005, - 2.29555205e-001, 3.08672283e-002, 2.29558554e-002, - -2.64015724e-003, 3.72008383e-002, 1.61690284e-002, - 5.88465817e-002, -9.55595821e-003, 1.50403216e-001, - 1.01045892e-001, -1.06644921e-001, -1.54723510e-001, - 4.45733964e-001, 2.27773011e-001, -1.83696941e-001, - -3.80635960e-003, 2.05120742e-001, 3.88505347e-002, - 1.59599714e-003, -1.80544914e-003, 5.61793847e-003, - 4.37735580e-003, 3.44996504e-003, -3.19538452e-002, - 3.41449529e-002, 4.26940955e-002, -4.46109660e-002, - -5.21579199e-002, 8.86287317e-002, 6.48798347e-002, - -1.34079494e-002, -1.39535300e-003, 2.01129653e-002, - 8.01844057e-003, 2.80911685e-004, -1.73327862e-003, - 4.00827220e-003, 5.38913859e-003, 1.05805974e-002, - -3.52309160e-002, 2.97360215e-002, 5.30115366e-002, - 2.60529798e-002, -3.42200659e-002, 4.43336666e-002, - 5.73338866e-002, 3.49682197e-003, 9.50391754e-004, - 6.85214577e-003, 6.92250393e-003, -1.48448413e-002, - 5.48382197e-003, 2.94914208e-002, 2.93442141e-002, - 4.96152453e-002, 6.23829961e-002, 1.59839049e-001, - 2.11490780e-001, 2.45481551e-001, 8.59075338e-002, - 2.95003384e-001, 2.70723194e-001, 4.35767993e-002, - -5.45060029e-004, 5.87911569e-002, 4.41728272e-002, - -9.05477069e-003, 3.31023671e-002, 3.19191106e-002, - 4.83586676e-002, 6.66936859e-002, 2.79790640e-001, - 1.89648405e-001, 3.78308177e-001, 1.08947054e-001, - 1.76506460e-001, 2.08529934e-001, 3.89438629e-001, - 3.97680067e-002, 5.43950917e-003, 5.23699634e-002, - 5.16126566e-002, 3.00604454e-003, 4.61148843e-003, - 5.08555770e-003, 8.04807432e-003, 1.26966778e-002, - 4.69653830e-002, 3.05841658e-002, 6.67111576e-002, - 1.98901212e-003, 4.80992757e-002, 2.35337224e-002, - 6.61806092e-002, 1.24361439e-004, 3.40004964e-003, - 3.73138371e-003, 6.48838608e-003, -1.37527403e-003, - 1.92892947e-003, 8.01235158e-003, 7.86328129e-003, - 6.53081015e-002, 4.60427329e-002, 8.07231963e-002, - 7.35031962e-002, 2.97494177e-002, 3.92606258e-002, - 4.68786545e-002, 4.83056195e-002, -6.82232901e-003, - -1.06348644e-003, 1.11599388e-002, 6.06541429e-003, - 6.73312917e-002, 4.95019667e-002, 8.97477120e-002, - 8.46346766e-002, 1.61065161e-001, 2.57616818e-001, - 2.61434019e-001, 3.48728955e-001, -2.28945492e-003, - 2.84578446e-002, 1.32455781e-001, 1.06937796e-001, - -8.88093784e-002, -8.35900754e-003, 1.58670262e-001, - 2.71390658e-002, 5.84643632e-002, 1.17686866e-002, - 7.60028288e-002, 5.67667037e-002, 2.11994946e-002, - -8.76122490e-002, 1.22656174e-001, 1.87910870e-001, - -4.92638536e-002, -1.13077439e-001, 1.36658385e-001, - 1.92519382e-001, -1.08850814e-001, -3.02967466e-002, - 1.99721113e-001, 4.22114804e-002, 1.51572807e-003, - -2.40699295e-002, 4.84113907e-003, 4.10504416e-002, - 8.91006552e-004, -1.85930341e-001, 2.56168153e-002, - 3.12425733e-001, -7.66061665e-003, -1.73747793e-001, - 3.05944327e-002, 3.00116390e-001, -2.34762952e-003, - -1.20582655e-002, 1.55597394e-002, 2.50423327e-002, - 4.64053452e-003, 1.31815327e-002, 1.03905369e-002, - 1.98753886e-002, -2.85925902e-003, 1.78936675e-001, - 3.58177237e-002, 2.34596774e-001, -6.85126986e-004, - 1.77347541e-001, 2.82906666e-002, 2.40168005e-001, - 8.79249827e-004, 1.98684540e-002, 4.89538629e-003, - 2.98192706e-002, 1.19437180e-001, 1.23620015e-002, - 1.59890369e-001, 5.71271740e-002, 1.32662177e-001, - 2.01849014e-001, 2.53784329e-001, 3.57390255e-001, - -4.12550848e-003, 2.45275170e-001, 1.27774477e-001, - 3.61175448e-001, -1.35213882e-002, 4.08731066e-002, - 2.83008441e-002, 5.73501475e-002, 1.21517859e-001, - 1.60262305e-002, 1.63952798e-001, 4.54361774e-002, - 1.11065961e-001, -1.91418000e-003, 2.22473413e-001, - 1.57723308e-001, 1.11467959e-002, -1.87419169e-002, - 1.10898845e-001, 1.13510773e-001, -9.16777737e-003, - 2.41897185e-004, 2.16876604e-002, 1.80089585e-002, - 1.19621977e-002, 5.39656263e-004, 1.89288948e-002, - 6.74266228e-003, 1.52879469e-002, -1.80801842e-002, - 3.63262631e-002, 3.63762230e-002, 2.64065480e-003, - -1.52125303e-002, 2.05336530e-002, 3.02215423e-002, - -2.58399901e-004, -1.07357290e-003, 2.97610089e-003, - 3.52839613e-003, 1.67528924e-004, 3.27421911e-002, - 5.43456152e-003, 4.38110642e-002, -2.12557823e-003, - 2.54531264e-001, 2.70993188e-002, 3.31151992e-001, - -1.59709565e-002, 2.28082031e-001, 4.16778363e-002, - 3.07192862e-001, -3.94404400e-003, 1.93778165e-002, - 1.45082371e-002, 2.90858168e-002, 1.79418139e-002, - 2.81029437e-002, 4.20243479e-002, 4.60997596e-002, - 9.45981010e-005, 1.65993407e-001, 1.13546304e-001, - 2.69119233e-001, -1.46283776e-001, 2.24312827e-001, - 2.22039789e-001, 3.28966886e-001, -1.30636141e-001, - 2.89324448e-002, 2.12701291e-001, 6.49622902e-002, - 1.32539282e-002, 2.52275588e-003, 3.66358869e-002, - 1.77772660e-002, -6.22248789e-003, -6.71970053e-003, - 8.78235102e-002, 8.92970040e-002, -8.30244124e-002, - 2.58063991e-003, 1.60625920e-001, 1.10069282e-001, - -1.32420897e-001, 9.57973953e-003, 2.17087999e-001, - 3.57983969e-002, 5.97037666e-004, -9.98505056e-005, - 3.93639319e-003, 2.48794560e-003, -1.29124662e-003, - -2.93553458e-003, 1.42219122e-002, 1.36956833e-002, - -1.09455204e-002, -1.34272594e-003, 2.48647016e-002, - 1.64720640e-002, -1.53922634e-002, 1.93777203e-003, - 2.56655458e-002, 5.58676571e-003, 3.34015279e-003, - 6.54860772e-003, 6.58317655e-003, 1.36035830e-002, - 8.84217862e-003, 1.07475363e-001, 3.02014276e-002, - 1.51424900e-001, 2.09895591e-003, 9.79838595e-002, - 2.80720666e-002, 1.36248216e-001, 9.04590008e-004, - 7.44963996e-003, 5.80043206e-003, 1.39671164e-002, - 5.05666025e-002, -2.99624372e-002, 7.37488791e-002, - 5.77796772e-002, 2.37446830e-001, -1.25191629e-001, - 2.81919241e-001, 3.35360438e-001, -6.91805556e-002, - 7.76329413e-002, 1.50753543e-001, 1.63696691e-001, - -1.73796453e-002, 1.92317739e-002, 4.36294600e-002, - 4.85046506e-002, 3.16376239e-002, 9.39523056e-003, - 5.99465519e-002, 4.78008986e-002, 3.79478782e-001, - 8.83251056e-002, 4.19786721e-001, 3.16705465e-001, - -4.12204415e-002, 1.27333170e-003, 1.28486276e-001, - 9.64839235e-002, -2.79018749e-002, -1.11262994e-002, - 3.96513529e-002, 4.16703969e-002, 4.26674169e-003, - -7.29740656e-004, 8.34741909e-003, 5.18484600e-003, - 4.54053022e-002, -3.54805067e-002, 5.53547665e-002, - 5.14346994e-002, -9.86745581e-004, -1.92293432e-002, - 2.74057314e-002, 3.21857333e-002, -1.86607649e-003, - 4.83852258e-004, 5.40560111e-003, 3.98136815e-003, - -3.92367551e-003, -2.83178082e-003, 8.61285720e-003, - 6.70304801e-003, 4.31893888e-004, -3.12998965e-002, - 2.73820348e-002, 6.01236410e-002, -1.64162228e-003, - -3.52502614e-002, 3.48863751e-002, 6.56682923e-002, - 8.21573939e-003, -5.36556065e-004, 1.53148817e-002, - 6.31580129e-003, -5.69205098e-002, -9.56528541e-003, - 7.24000484e-002, 2.87410952e-002, -4.67739776e-002, - -1.51513398e-001, 1.14133060e-001, 2.06995502e-001, - 1.66307949e-002, -1.55291677e-001, 1.32269338e-001, - 2.09946752e-001, 1.30890340e-001, 1.90299063e-003, - 1.73274070e-001, 2.96688378e-002, -4.89410348e-002, - 3.25130373e-002, 6.51761293e-002, 4.85050902e-002, - -4.94197570e-002, 3.51085663e-001, 1.12871088e-001, - 4.14378762e-001, -6.17187237e-003, 3.28477353e-001, - 1.40179306e-001, 3.76278162e-001, 1.28038615e-001, - 7.89327174e-003, 1.70920596e-001, 3.48118320e-002, - 3.68560955e-004, -4.52603679e-004, 6.51012361e-003, - 8.13806243e-003, -2.94386875e-003, 2.83130339e-005, - 2.93854456e-002, 5.96994646e-002, -1.13331676e-002, - 3.61359701e-003, 3.30235772e-002, 5.72394207e-002, - 4.73040016e-003, -1.23292184e-003, 1.13868788e-002, - 7.24533200e-003, -1.67968939e-003, -4.13166155e-004, - 7.22032553e-003, 5.06170746e-003, 2.27298457e-002, - -3.03943399e-002, 4.43106927e-002, 4.57297452e-002, - 3.41034867e-002, -3.31700109e-002, 4.94486317e-002, - 5.31987362e-002, 2.95169535e-003, -4.17179224e-004, - 6.57134922e-003, 5.73574333e-003, -4.63713855e-002, - -2.94212485e-003, 6.76225871e-002, 3.06728166e-002, - 1.29077241e-001, -9.41477939e-002, 2.59669214e-001, - 1.73286468e-001, 2.10942000e-001, -1.35504737e-001, - 2.90184826e-001, 2.38101676e-001, 5.56428283e-002, - -1.21572753e-002, 6.96907490e-002, 4.00109217e-002, - -4.38148119e-002, 1.52237415e-002, 6.56550899e-002, - 4.71683666e-002, -8.85919854e-003, 9.33935717e-002, - 2.22988218e-001, 3.09971601e-001, 1.90344289e-001, - -3.63429263e-002, 2.73177117e-001, 3.95235986e-001, - 6.54967949e-002, -9.70427133e-003, 7.72961974e-002, - 5.87210916e-002, 2.08443758e-004, 3.13077099e-003, - 6.43938966e-003, 8.09351634e-003, 1.42409594e-003, - 7.00284764e-002, 4.44484241e-002, 9.26235169e-002, - 1.75023638e-002, 7.85790533e-002, 4.36227582e-002, - 1.02633432e-001, 2.06024852e-003, 4.34791343e-003, - 6.75012683e-003, 9.68222041e-003, -4.21689451e-003, - 8.14601517e-005, 9.51836072e-003, 4.77901706e-003, - -2.07972601e-002, -3.18394452e-002, 4.74201068e-002, - 5.08564375e-002, 2.13155355e-002, -3.70146595e-002, - 5.02051637e-002, 6.54489845e-002, 5.74798603e-003, - 2.96185073e-003, 1.68956406e-002, 9.38475598e-003, - -5.23452535e-002, -1.57598557e-003, 7.84670413e-002, - 2.72139572e-002, -2.52419949e-001, -1.12847969e-001, - 3.26467603e-001, 1.91814139e-001, 7.38653317e-002, - -1.64136410e-001, 2.30852738e-001, 2.40789086e-001, - 1.54696643e-001, -9.49823018e-003, 2.18371123e-001, - 4.56861295e-002, -5.53572662e-002, -3.00934468e-003, - 8.30358639e-002, 2.48194262e-002, -2.40097120e-001, - 6.29165322e-002, 3.32527548e-001, 1.57206148e-001, - 7.60490000e-002, 1.41736805e-001, 2.13315055e-001, - 2.11264268e-001, 1.39914721e-001, -1.18910382e-002, - 2.02473328e-001, 4.24516611e-002, -5.85166272e-003, - -9.17680445e-004, 1.08797764e-002, 4.35456540e-003, - -1.07469959e-002, 2.94085070e-002, 4.89977188e-002, - 4.33452241e-002, 7.90528394e-003, 3.04816756e-002, - 4.12009656e-002, 4.73061427e-002, 8.21258966e-003, - 1.31089109e-004, 1.77604053e-002, 6.09890791e-003, - 4.40929987e-004, 8.63185152e-004, 4.32868255e-003, - 3.59673519e-003, 6.47289259e-003, 2.04943214e-002, - 3.45489308e-002, 3.44533585e-002, -5.85731026e-003, - 1.78374946e-002, 4.20204997e-002, 3.29517461e-002, - -1.64285884e-003, -2.97739927e-004, 4.90933657e-003, - 3.42626637e-003, 2.70892847e-002, 6.71734940e-003, - 4.33158837e-002, 2.86409464e-002, 2.87829433e-002, - 9.96745974e-002, 2.68039733e-001, 2.08969474e-001, - -8.02270100e-002, 1.04598656e-001, 3.82447988e-001, - 1.95902407e-001, -2.93220319e-002, 3.94464983e-003, - 4.89282981e-002, 2.49203816e-002, 2.19267346e-002, - -1.87307745e-002, 3.86776589e-002, 3.23566496e-002, - 1.11303162e-002, -2.77801841e-001, 2.32485488e-001, - 3.12873900e-001, 8.96740481e-002, -8.41004401e-002, - 4.72381771e-001, 1.85945883e-001, -3.84881049e-002, - 9.70959489e-004, 5.54731637e-002, 2.42060311e-002, - -1.39552314e-004, -6.85706967e-004, 3.69664817e-003, - 3.38616106e-003, 8.64653569e-003, -8.30835290e-003, - 2.85062939e-002, 2.59687342e-002, 2.05748174e-002, - -2.26104800e-002, 5.69485277e-002, 3.54308486e-002, - -3.26153799e-003, -4.26382059e-004, 6.17297553e-003, - 3.51630221e-003, -2.66103772e-003, -2.73447856e-003, - 8.44519865e-003, 7.77669437e-003, 2.56656781e-002, - -9.58578214e-002, 6.18887581e-002, 1.10472813e-001, - 6.12745248e-002, -8.45582187e-002, 8.01504329e-002, - 1.10613957e-001, -2.00882088e-003, 5.57318097e-004, - 7.99408741e-003, 7.66139477e-003, -4.93056104e-002, - -8.46735667e-003, 7.01025724e-002, 3.37550528e-002, - -9.76232961e-002, -4.64017317e-002, 2.28782073e-001, - 1.89945564e-001, 2.91581929e-001, -3.29016238e-001, - 3.83022696e-001, 4.17531282e-001, 8.15534219e-002, - -6.28207177e-002, 1.11728013e-001, 7.99218714e-002, - -4.75611463e-002, -9.69609059e-003, 6.73274770e-002, - 2.97328029e-002, -7.03858137e-002, -1.59801468e-002, - 1.83945298e-001, 1.29438758e-001, 1.78236980e-002, - -2.26621944e-002, 1.79665372e-001, 1.36847496e-001, - 9.03438181e-002, -3.35118435e-002, 1.10390738e-001, - 5.10399938e-002, -4.10820264e-003, -2.98971543e-004, - 7.84748234e-003, 4.14658571e-003, -9.97419003e-003, - 1.13066817e-002, 2.77292766e-002, 2.50284132e-002, - 8.93906632e-004, 1.14214281e-002, 2.47567203e-002, - 2.47559734e-002, 7.02301040e-003, -4.26557061e-004, - 1.07785240e-002, 4.83565265e-003, 8.07376346e-004, - -1.28706262e-004, 2.72284169e-003, 2.23531737e-003, - -7.39711220e-004, 2.02148710e-003, 1.28067341e-002, - 1.24500906e-002, -1.66548155e-002, 4.29033581e-003, - 2.97614262e-002, 1.70716289e-002, -2.28544101e-002, - -2.10601254e-003, 3.63247767e-002, 5.66788530e-003, - 9.80014540e-003, 5.43274859e-004, 2.41594594e-002, - 1.47911794e-002, 4.22519166e-004, 6.75543910e-003, - 7.71960020e-002, 8.08040649e-002, -1.09644517e-001, - 8.69427901e-003, 1.96708247e-001, 9.86399874e-002, - -1.86484277e-001, -4.89060581e-003, 2.87452281e-001, - 2.74215229e-002, 1.22703072e-002, -3.14368382e-002, - 2.92209908e-002, 4.52133715e-002, -1.54442638e-002, - -2.20148504e-001, 1.02646276e-001, 2.90767848e-001, - -1.34273693e-001, -2.64837623e-001, 2.34487623e-001, - 3.28854084e-001, -1.67840287e-001, -1.21563040e-002, - 2.64842927e-001, 4.59406450e-002, 1.19692704e-004, - -2.59645693e-002, 5.15031395e-003, 3.48444544e-002, - -2.83613522e-003, -1.93632752e-001, 2.58913320e-002, - 2.50933588e-001, -5.93553437e-003, -1.75830483e-001, - 3.71600315e-002, 2.26495385e-001, -6.74186414e-003, - -1.36888912e-002, 1.72063559e-002, 1.97356809e-002, - -1.00606913e-002, 1.47593697e-003, 1.41065298e-002, - 3.79524427e-003, -1.06660295e-002, -5.94102638e-003, - 3.27260941e-002, 1.97261348e-002, 9.54669341e-003, - -5.11965202e-003, 3.25875133e-002, 1.92207415e-002, - 1.95254702e-002, 2.65741558e-003, 2.57893801e-002, - 5.36316214e-003, -8.72490928e-002, 8.97634309e-003, - 1.09697692e-001, 2.70425994e-002, -1.01479873e-001, - 6.32993353e-004, 2.03746185e-001, 1.05412938e-001, - 1.09129392e-001, 1.41416164e-002, 2.26249352e-001, - 1.05069391e-001, 1.73130661e-001, 1.69854984e-002, - 2.20244527e-001, 3.31395678e-002, -7.26372823e-002, - 2.53679249e-002, 9.79285017e-002, 3.85388955e-002, - -1.44449458e-001, 2.59159476e-001, 2.45576486e-001, - 3.08315903e-001, 1.71967775e-001, 2.58980542e-001, - 2.74206191e-001, 3.09301674e-001, 1.40433967e-001, - 1.26541313e-002, 1.89406186e-001, 4.13673259e-002, - -1.73848367e-003, 1.79615000e-003, 9.24829114e-003, - 6.15360821e-003, -1.37112280e-002, 4.91004772e-002, - 4.35283817e-002, 7.45901167e-002, 1.49363996e-002, - 4.40160073e-002, 4.67681848e-002, 7.68262595e-002, - 5.65097947e-003, -1.50164019e-003, 1.46066351e-002, - 7.17638340e-003, -2.58789794e-003, 4.97759902e-005, - 1.03954198e-002, 6.35587890e-003, -3.29220737e-003, - -7.85741359e-002, 6.69632256e-002, 1.01915762e-001, - 9.83012840e-004, -9.02397782e-002, 4.59129997e-002, - 1.20324314e-001, -1.18839927e-003, -7.98943546e-003, - 6.52735308e-003, 1.38541292e-002, -1.21964693e-001, - -1.91310961e-002, 1.50258482e-001, 4.09639217e-002, - -8.62667784e-002, -2.59082735e-001, 4.26688522e-001, - 3.33745748e-001, 3.23320292e-002, -1.73413783e-001, - 1.72175303e-001, 3.15947086e-001, 1.59674957e-002, - -2.90793963e-002, 3.26542631e-002, 5.04920818e-002, - -1.64151981e-001, -2.32534334e-002, 1.83525324e-001, - 3.80881019e-002, -6.05667755e-003, -3.06502115e-002, - 2.95429349e-001, 1.48555651e-001, 4.40459251e-002, - -7.45010227e-002, 1.39359951e-001, 1.62214309e-001, - 1.40695982e-002, -6.44925516e-003, 2.70182248e-002, - 2.60434020e-002, -1.75874904e-002, -2.10459391e-003, - 2.06520874e-002, 5.55473054e-003, -4.60935244e-003, - 1.21763637e-002, 3.12872529e-002, 2.89448537e-002, - 8.74072686e-003, 1.01558324e-002, 2.17585918e-002, - 2.76143309e-002, 1.26826693e-003, 4.03747836e-004, - 3.52936680e-003, 3.98725690e-003, -1.40487647e-003, - -4.70062601e-004, 7.09893228e-003, 4.83637024e-003, - 7.07132090e-003, -2.14580819e-002, 6.44712299e-002, - 3.91413420e-002, -2.01233160e-002, -2.53715962e-002, - 6.22829571e-002, 3.81993018e-002, 1.24279466e-002, - 1.60242047e-003, 1.54813603e-002, 4.75471932e-003, - -3.60027105e-002, -1.27295097e-002, 5.71787022e-002, - 3.04605253e-002, 7.41299093e-002, -1.43613935e-001, - 3.78137767e-001, 2.09294632e-001, -3.05251721e-002, - -4.34724800e-002, 4.12132442e-001, 1.57798439e-001, - 1.13735132e-001, 1.53466212e-002, 1.33593336e-001, - 3.11819185e-002, -3.45930867e-002, 7.80994596e-004, - 5.17473035e-002, 2.51920931e-002, -2.20567938e-002, - 3.65156084e-002, 2.34460250e-001, 1.49632514e-001, - 2.38319546e-001, 8.16858709e-002, 4.15595740e-001, - 1.76217228e-001, 7.09212944e-002, 8.30716360e-003, - 9.95021760e-002, 3.13518122e-002, -2.56474363e-003, - 3.89747409e-004, 6.81069912e-003, 4.49976651e-003, - -6.32025208e-003, 1.86515376e-002, 3.92984636e-002, - 3.25152501e-002, 4.55881245e-002, 2.04939116e-002, - 6.84917271e-002, 3.88184972e-002, 2.85918801e-003, - -2.36043753e-003, 9.37944558e-003, 5.53436810e-003, - -3.55755292e-005, 5.10710012e-003, 5.08267386e-003, - 9.32455808e-003, -5.05786529e-003, 6.15353212e-002, - 3.08603905e-002, 8.28966573e-002, -1.65740482e-003, - 5.11609167e-002, 3.34313139e-002, 7.39110559e-002, - -1.72284420e-003, 3.98638705e-003, 5.29703870e-003, - 7.95115810e-003, 3.21455263e-002, 6.80003921e-003, - 4.87990491e-002, 3.88132371e-002, -2.02715248e-001, - 6.50348887e-002, 3.39801699e-001, 2.56454825e-001, - 1.34349853e-001, 9.63571817e-002, 3.47312629e-001, - 2.60587484e-001, -5.96851371e-002, 1.18733232e-003, - 7.63539225e-002, 4.51321788e-002, 2.23090239e-002, - -1.34472158e-002, 4.25291918e-002, 3.64798121e-002, - 3.42806019e-002, 8.40516575e-003, 2.71845102e-001, - 2.70094395e-001, -4.13391329e-002, 8.06378275e-002, - 3.18724513e-001, 2.91111082e-001, -5.29102162e-002, - -4.55141766e-003, 7.52643570e-002, 3.91082540e-002, - 6.11050520e-004, 7.69450620e-004, 4.78606531e-003, - 5.93720935e-003, 8.00174195e-003, -2.83922851e-002, - 3.88161875e-002, 5.37482239e-002, -8.62447266e-003, - -3.83470058e-002, 4.28222269e-002, 5.76414242e-002, - -2.93091754e-003, 6.99161319e-004, 7.90051185e-003, - 6.44339062e-003, -3.18439677e-003, 8.43126327e-004, - 6.35919813e-003, 5.50763076e-003, -9.02521610e-003, - -1.93983726e-002, 3.05954162e-002, 3.67300026e-002, - 6.10128324e-003, -1.43011063e-002, 2.78378911e-002, - 3.06066573e-002, 2.56129354e-003, -2.04709635e-004, - 5.81366662e-003, 4.50799009e-003, -4.21293937e-002, - 1.85967349e-002, 5.96162379e-002, 4.40169647e-002, - -1.51291117e-001, 7.60666803e-002, 2.46913582e-001, - 2.08652258e-001, 5.02438508e-002, -1.81954112e-002, - 1.60742506e-001, 1.51795745e-001, 4.22467589e-002, - 1.22240428e-002, 5.40582500e-002, 3.60864215e-002, - -4.75319922e-002, 4.91343951e-003, 6.43219501e-002, - 5.25610521e-002, -1.52119994e-001, 6.56209812e-002, - 2.87779927e-001, 4.15883988e-001, 1.98886722e-001, - 2.83940136e-001, 2.69149989e-001, 3.77630889e-001, - 3.65253501e-002, 4.06953953e-002, 5.33575229e-002, - 5.42236045e-002, -5.45071962e-004, 2.14188709e-003, - 6.37035817e-003, 6.48479909e-003, 1.18714571e-003, - 6.53429776e-002, 4.01938632e-002, 7.90698975e-002, - 1.29537014e-002, 4.25115004e-002, 3.76559757e-002, - 6.08736984e-002, -1.19177159e-003, 1.08459397e-004, - 4.81045293e-003, 5.14263660e-003, -1.10354871e-002, - -9.84412269e-004, 1.57803576e-002, 6.45604730e-003, - -1.01217600e-002, -3.51575874e-002, 3.45370546e-002, - 5.00263236e-002, 1.06274849e-002, -2.78948862e-002, - 4.50723805e-002, 4.11879197e-002, 1.70449950e-002, - 2.86078453e-003, 3.05599142e-002, 6.74868328e-003, - -1.28471062e-001, 8.06444511e-003, 1.56233832e-001, - 3.74094769e-002, -1.10230640e-001, -7.49247223e-002, - 2.10462496e-001, 1.50505155e-001, 1.57189399e-001, - -6.42924458e-002, 2.99584806e-001, 1.28127933e-001, - 1.62739262e-001, -4.19129990e-003, 2.59014964e-001, - 3.27983312e-002, -1.37722522e-001, -8.35986109e-004, - 1.59479171e-001, 3.46532054e-002, -1.14119403e-001, - 5.35783209e-002, 2.16460004e-001, 1.71086788e-001, - 1.73671201e-001, 7.52907246e-002, 2.96701431e-001, - 1.75314754e-001, 1.53851792e-001, -7.44988490e-003, - 2.43045896e-001, 4.13947739e-002, -9.45762824e-003, - 2.62156851e-003, 1.43021680e-002, 1.15444371e-002, - 4.11565881e-003, 1.15078159e-001, 3.95081528e-002, - 1.61773831e-001, 3.95926787e-003, 1.05916999e-001, - 5.45068271e-002, 1.57652989e-001, 8.30027368e-003, - -6.58703793e-004, 1.95162445e-002, 1.38711734e-002, - -1.67466947e-004, -2.76064547e-003, 4.97301295e-003, - 6.39693392e-003, -7.37376558e-003, -3.23273726e-002, - 2.99282931e-002, 4.81397398e-002, -3.74012324e-003, - -2.72976737e-002, 2.58423816e-002, 4.07169685e-002, - 2.31679194e-004, -1.89782155e-003, 3.73486406e-003, - 4.50597936e-003, -2.97017191e-002, -6.99469913e-003, - 4.08488698e-002, 4.14547212e-002, -3.52616422e-002, - -1.49125621e-001, 1.30143359e-001, 2.04507619e-001, - 3.61363627e-002, -1.17855482e-001, 1.06558494e-001, - 1.67518213e-001, 1.57507174e-002, -1.12719117e-002, - 2.51267813e-002, 2.68110372e-002, -2.97467206e-002, - 8.03866759e-002, 4.94560562e-002, 8.94883871e-002, - -2.58783340e-001, 4.68461752e-001, 3.03278923e-001, - 5.04119515e-001, -9.01318714e-003, 1.13782525e-001, - 1.42335698e-001, 1.86370999e-001, 1.77042782e-002, - 6.90564513e-003, 2.75041796e-002, 2.70981155e-002, - 2.80046556e-003, -1.18870626e-003, 5.59515785e-003, - 5.28411474e-003, -5.24791330e-002, 2.57633589e-002, - 6.51617646e-002, 5.56475259e-002, -3.58009636e-002, - 5.21230660e-002, 5.16335778e-002, 6.33032992e-002, - 7.93931861e-007, 3.45006655e-003, 4.94950917e-003, - 5.67138661e-003, 1.11275376e-003, 1.10485853e-004, - 8.03402998e-003, 4.29422874e-003, -1.36806667e-002, - 2.78284904e-002, 7.02145398e-002, 4.25841585e-002, - 7.88296387e-003, 2.07339581e-002, 5.33555150e-002, - 3.91722322e-002, -2.93843169e-003, 1.76441704e-003, - 7.57261179e-003, 5.17795188e-003, 3.13079618e-002, - 9.65437200e-003, 6.09871037e-002, 2.77836546e-002, - -6.31582662e-002, 1.02010995e-001, 4.78460073e-001, - 1.88287303e-001, 1.71223566e-001, 2.36993268e-001, - 3.86554241e-001, 2.97252655e-001, -5.94406836e-002, - 8.76009744e-003, 7.55067617e-002, 3.45307626e-002, - 3.82441282e-002, 9.33016371e-003, 5.46697378e-002, - 2.63902768e-002, 5.91133498e-002, -1.73165761e-002, - 2.47937635e-001, 1.68654472e-001, 3.08601791e-003, - -8.97395685e-002, 2.37267867e-001, 2.01918185e-001, - -4.79256958e-002, -6.42168010e-003, 6.41158968e-002, - 3.57386023e-002, 2.63169245e-003, -8.31829326e-004, - 5.91636170e-003, 4.92899725e-003, 2.52606790e-003, - -2.69535985e-002, 3.33897732e-002, 4.20245118e-002, - -4.79709217e-003, -2.18368713e-002, 3.67036462e-002, - 4.47480269e-002, -2.15552538e-003, -3.73141433e-004, - 6.13019988e-003, 5.24189789e-003, 2.35755419e-004, - -1.12131611e-003, 4.90303664e-003, 5.23325009e-003, - -1.99312363e-002, -2.92828158e-002, 3.95784974e-002, - 4.87325452e-002, -2.30289325e-002, -3.90469953e-002, - 4.18192744e-002, 5.29230498e-002, -2.88001349e-004, - -2.90632108e-003, 4.66641551e-003, 5.66992955e-003, - -3.86912636e-002, -3.28221358e-002, 5.13542406e-002, - 5.43496460e-002, -1.41935989e-001, -3.50868165e-001, - 2.23830804e-001, 4.04724538e-001, 1.03419683e-004, - -1.91847876e-001, 1.57640204e-001, 2.51949698e-001, - 1.81328561e-002, -1.42083773e-002, 3.03394850e-002, - 3.21078077e-002, -3.69253270e-002, 3.32710482e-002, - 5.15794381e-002, 5.02343141e-002, -1.99838549e-001, - 2.64261007e-001, 2.65167862e-001, 3.17457765e-001, - 3.54596265e-002, 1.08147509e-001, 1.45420253e-001, - 1.84638947e-001, 1.79306548e-002, 8.52480624e-003, - 2.93126684e-002, 2.88261864e-002, -2.27550438e-004, - -7.22045297e-005, 5.52645419e-003, 5.33826463e-003, - -3.45012024e-002, 2.48074960e-002, 4.96455990e-002, - 4.64658700e-002, -1.12093613e-002, 2.95190699e-002, - 3.43790650e-002, 4.21592928e-002, 2.04200143e-004, - 1.52367877e-003, 4.18015523e-003, 4.57701692e-003, - 4.38495452e-004, -2.86567927e-004, 5.68177085e-003, - 4.44493257e-003, 3.47664356e-002, 1.68550350e-002, - 5.18942773e-002, 3.65178064e-002, -5.56516135e-003, - 2.08427291e-002, 4.46941480e-002, 3.32321823e-002, - -5.19445958e-003, -4.89973288e-004, 8.00019596e-003, - 4.63047018e-003, 3.12016234e-002, 1.15708690e-002, - 5.11614047e-002, 3.51619534e-002, 1.85953259e-001, - 1.61021143e-001, 3.14585119e-001, 2.41949782e-001, - -1.61177278e-001, -2.50306842e-003, 3.19896758e-001, - 1.50576323e-001, -5.01120128e-002, -1.00929653e-002, - 6.63522258e-002, 2.82221697e-002, 2.64293831e-002, - -1.40775526e-002, 5.01673631e-002, 3.21521945e-002, - 1.99655339e-001, -1.43755555e-001, 3.63628924e-001, - 2.12399751e-001, -2.11582318e-001, -4.08238657e-002, - 3.81332308e-001, 1.44136816e-001, -4.26723212e-002, - -1.36248744e-003, 6.20165952e-002, 2.34546270e-002, - 7.71336665e-004, 4.86145873e-004, 6.18654350e-003, - 3.97852529e-003, 3.26697044e-002, -1.97297558e-002, - 5.48824072e-002, 3.55606079e-002, -2.06194818e-002, - -2.10146122e-002, 5.45160770e-002, 3.32980081e-002, - -3.73067567e-003, 4.76565358e-004, 7.35110883e-003, - 3.82991764e-003, 4.12401091e-003, 2.19739657e-002, - 1.06776701e-002, 3.46820503e-002, -1.55384594e-003, - 1.89207584e-001, 3.62258703e-002, 3.00134242e-001, - 2.71800975e-003, 1.85836986e-001, 3.50094773e-002, - 3.00669372e-001, -4.60883556e-003, 1.47602754e-002, - 1.52966306e-002, 3.03351581e-002, 8.38526711e-002, - -1.27242308e-003, 1.35251626e-001, 6.22728765e-002, - 4.60779034e-002, 8.07707459e-002, 2.97255427e-001, - 2.31690690e-001, -4.84810723e-003, 1.07380249e-001, - 2.13377520e-001, 2.31346801e-001, -1.21020459e-001, - 3.73563054e-003, 2.01629236e-001, 5.44286184e-002, - 8.31865966e-002, 2.32443716e-002, 1.27538562e-001, - 5.13542369e-002, 6.26667067e-002, 1.89372469e-002, - 2.36343250e-001, 1.43187866e-001, -1.04482248e-001, - -5.09870313e-002, 2.21680075e-001, 1.44871607e-001, - -1.00097358e-001, -8.74007528e-004, 1.79414645e-001, - 6.06866851e-002, 6.95256516e-003, -1.29868230e-003, - 1.07491054e-002, 8.23279470e-003, 5.71512291e-003, - -1.59751326e-002, 3.04252636e-002, 4.63597476e-002, - -3.53042893e-002, -2.95351297e-002, 5.80053888e-002, - 5.76200895e-002, -3.42385843e-003, 5.31396479e-004, - 1.44946426e-002, 7.92821590e-003, -1.09873514e-003, - 5.97195351e-004, 5.55882603e-003, 4.42652125e-003, - -2.57614255e-002, -1.60067100e-002, 3.87777463e-002, - 3.14219147e-002, 1.47659220e-002, -1.65660251e-002, - 3.36389802e-002, 2.83229966e-002, 4.04711301e-003, - 1.22568384e-003, 7.00493390e-003, 4.38940851e-003, - -2.97235604e-002, -1.29998988e-002, 4.62000072e-002, - 3.23164165e-002, -1.74545318e-001, -1.02250464e-001, - 2.21590012e-001, 1.68145105e-001, 2.04567298e-001, - -1.21544627e-002, 2.43071571e-001, 1.25259459e-001, - 4.61350717e-002, 8.18210840e-003, 5.96726649e-002, - 3.05857155e-002, -3.45850177e-002, 8.08619615e-003, - 4.75152172e-002, 3.58759202e-002, -1.95346847e-002, - 2.50254840e-001, 1.92235604e-001, 2.97345251e-001, - 2.19514325e-001, 3.62594336e-001, 2.59641021e-001, - 3.92644525e-001, 3.87812667e-002, 2.93730721e-002, - 5.42786717e-002, 4.50693108e-002, 5.92695316e-004, - 4.57818341e-003, 6.22288743e-003, 7.73216086e-003, - 3.23909931e-002, 7.50573948e-002, 4.74709012e-002, - 8.57307762e-002, 1.27071822e-002, 6.59062862e-002, - 3.75832506e-002, 7.90285468e-002, -1.44189491e-003, - 3.14844889e-003, 5.19707473e-003, 6.68036612e-003, - -1.57141034e-003, 4.20028623e-003, 8.22775066e-003, - 1.02095604e-002, -1.55187491e-002, -3.13070305e-002, - 4.21758927e-002, 1.23698294e-001, -1.21266358e-002, - -8.84025469e-002, 5.03463075e-002, 1.48028448e-001, - 4.61311638e-003, -6.20809093e-004, 1.22915730e-002, - 9.58980247e-003, -9.39491540e-002, -3.01928781e-002, - 1.15081131e-001, 5.64177223e-002, -1.71791837e-001, - -2.40671918e-001, 2.59548545e-001, 4.14805204e-001, - 1.29000515e-001, -8.98676515e-002, 3.09890151e-001, - 2.26958424e-001, 8.87085125e-002, -4.98942053e-003, - 1.42437577e-001, 2.98285708e-002, -1.02239624e-001, - -8.47627409e-003, 1.19604088e-001, 2.57657338e-002, - -9.98179838e-002, -8.26956797e-003, 1.72935784e-001, - 1.06125116e-001, 1.44359574e-001, -2.26313225e-003, - 3.06711584e-001, 9.69486386e-002, 8.29439759e-002, - -6.23033801e-003, 1.40221044e-001, 2.24852022e-002, - -1.19965319e-002, -1.34888920e-003, 1.46460570e-002, - 3.54949269e-003, -1.26480237e-002, 3.15028336e-003, - 2.72203442e-002, 1.81745142e-002, 2.35456992e-002, - 6.69004442e-003, 4.76993881e-002, 1.97165776e-002, - 7.94531498e-003, -7.66413577e-004, 1.66391693e-002, - 3.53784231e-003, 6.82530878e-003, 1.03434734e-003, - 1.39330309e-002, 5.79186296e-003, -5.54630952e-003, - 4.05632406e-002, 4.07154784e-002, 5.80740944e-002, - -3.02880863e-003, 4.27104831e-002, 2.54242029e-002, - 6.03710897e-002, -1.22413051e-003, 3.42475437e-003, - 4.37929342e-003, 7.12590665e-003, 8.51948187e-002, - -4.31965018e-004, 1.22381017e-001, 2.86346860e-002, - -2.12142784e-002, 3.92712429e-002, 2.56528705e-001, - 1.50100365e-001, -4.58248006e-003, 5.08891754e-002, - 1.32059306e-001, 1.52845010e-001, -2.42711324e-002, - 7.19027128e-003, 3.43283378e-002, 2.79190037e-002, - 7.43860528e-002, -2.57766470e-002, 1.07575856e-001, - 4.52060662e-002, -1.31645752e-002, -3.56982261e-001, - 2.34234229e-001, 3.96898985e-001, -1.50428591e-002, - -3.55777055e-001, 1.37652472e-001, 4.07687962e-001, - -1.78802740e-002, -4.58789654e-002, 3.25259604e-002, - 5.75699173e-002, 1.38864131e-003, -3.80337262e-003, - 6.78821001e-003, 8.18398967e-003, -5.47176134e-003, - -4.44288962e-002, 2.81892642e-002, 7.55864605e-002, - -9.51335067e-004, -3.88935208e-002, 2.04928741e-002, - 7.32018054e-002, 8.99519306e-004, -4.71257837e-003, - 3.71234585e-003, 9.74879600e-003, -1.75506540e-003, - -1.28522282e-003, 4.91556851e-003, 3.52824526e-003, - 7.05349967e-002, 3.29220444e-002, 7.87264705e-002, - 4.38657887e-002, 1.90762896e-002, 2.61330158e-002, - 4.30946350e-002, 3.21095623e-002, -7.00387778e-003, - -1.27705385e-003, 9.53568798e-003, 4.05106088e-003, - 2.73340456e-002, 2.95335352e-002, 4.90822345e-002, - 4.12933007e-002, 4.24751043e-001, 2.86798120e-001, - 4.43411797e-001, 3.02740872e-001, -7.25919604e-002, - 1.78670026e-002, 1.72884822e-001, 9.62215662e-002, - -8.39383155e-002, -2.18592696e-002, 9.67164040e-002, - 3.72344293e-002, 6.52155876e-002, 3.33060957e-002, - 7.25034922e-002, 4.25110124e-002, 1.46655500e-001, - 3.27944607e-002, 1.97993636e-001, 1.15368351e-001, - -2.15420216e-001, -9.73495767e-002, 2.63130128e-001, - 1.40317589e-001, -6.54810965e-002, -1.34103717e-002, - 8.66524279e-002, 3.48677784e-002, 6.00937987e-003, - 1.90679915e-003, 7.66300783e-003, 4.58923494e-003, - 3.60630895e-003, -1.40028466e-002, 2.52983011e-002, - 2.32861321e-002, -4.57913205e-002, -2.64918413e-002, - 5.61321974e-002, 3.44764069e-002, -2.52895360e-003, - 8.90430470e-004, 8.04523565e-003, 3.68688628e-003, - -1.18846598e-003, 7.99353409e-004, 4.83294809e-003, - 4.96930582e-003, 2.00237427e-002, 1.69494040e-002, - 3.86182815e-002, 4.11371104e-002, 2.18218993e-002, - 3.62040810e-002, 5.59835918e-002, 4.95300367e-002, - -4.34442842e-003, 1.10889366e-003, 8.33642483e-003, - 5.14015788e-003, 2.88601462e-002, 3.66192125e-002, - 4.58639599e-002, 5.05718999e-002, 6.42118677e-002, - 3.57253253e-001, 2.54736453e-001, 4.07183141e-001, - 3.98161747e-002, 7.71493465e-002, 3.37335080e-001, - 2.19471738e-001, -6.26375601e-002, 1.09719171e-003, - 7.98693076e-002, 3.29901874e-002, 3.47709209e-002, - -1.28563233e-002, 4.77203578e-002, 3.92255038e-002, - 5.39819971e-002, -1.41661853e-001, 2.20112309e-001, - 2.57159472e-001, -1.03395090e-001, -4.17406037e-002, - 2.67610788e-001, 2.16380492e-001, -5.21981679e-002, - -4.60925017e-004, 7.21877813e-002, 3.33640352e-002, - 4.67540201e-004, -1.11774495e-003, 4.75865556e-003, - 5.30679012e-003, 1.14600165e-002, -2.94248387e-002, - 3.60229164e-002, 4.78747934e-002, -6.82003389e-004, - -3.13998312e-002, 4.07956354e-002, 4.88276929e-002, - -3.30374762e-003, -1.85139099e-004, 7.33554922e-003, - 5.25376434e-003, -5.81218861e-003, 9.75246658e-004, - 1.01421373e-002, 5.11880498e-003, -1.28789591e-002, - -2.83942539e-002, 4.90979254e-002, 4.45175543e-002, - 4.71973792e-002, -2.57508028e-002, 6.32508174e-002, - 4.82745208e-002, -2.11554521e-004, 1.62806269e-003, - 6.84130844e-003, 5.86893409e-003, -7.74707347e-002, - -7.98721705e-003, 9.77109745e-002, 3.38832028e-002, - -1.08144030e-001, -5.41070998e-002, 2.61021048e-001, - 1.81937248e-001, 3.73302042e-001, -8.02939683e-002, - 4.18802351e-001, 2.52882987e-001, 1.35148000e-002, - -2.65567712e-002, 5.14435470e-002, 5.13185970e-002, - -7.06844479e-002, -2.06210068e-003, 9.14429501e-002, - 3.67633402e-002, -8.29557702e-002, 7.89183453e-002, - 2.50843763e-001, 1.95483714e-001, 1.22827910e-001, - -6.95280358e-002, 2.44634405e-001, 2.93703943e-001, - 3.88750881e-002, -2.06481796e-002, 6.04290627e-002, - 5.33067547e-002, -4.61877696e-003, -4.43718862e-004, - 9.71618667e-003, 5.42296842e-003, -9.68726072e-003, - 2.26987451e-002, 4.34261486e-002, 4.26580347e-002, - 7.39494618e-003, 2.83192787e-002, 3.94290797e-002, - 4.79013622e-002, 2.44041975e-003, 3.87525244e-004, - 7.30041414e-003, 6.76704617e-003, 2.59537424e-004, - 2.23179493e-004, 5.96635323e-003, 4.21040319e-003, - 5.21342969e-003, 2.88310498e-002, 4.74737026e-002, - 4.21811007e-002, -2.56644078e-002, 1.57976784e-002, - 4.46873941e-002, 3.93889844e-002, 5.52937796e-004, - -4.00160759e-004, 4.58477251e-003, 4.38915752e-003, - 3.19865756e-002, 1.11644557e-002, 5.43653518e-002, - 3.11369970e-002, 1.15580268e-001, 1.15404345e-001, - 3.21548373e-001, 2.15470865e-001, -1.42044365e-001, - 2.69356728e-001, 2.79873848e-001, 3.42517227e-001, - -3.29614617e-002, 3.12037151e-002, 4.93345596e-002, - 4.54210714e-002, 4.85995859e-002, 4.13225638e-003, - 6.40919134e-002, 2.91910172e-002, -6.48553669e-002, - -9.65381116e-002, 3.42018336e-001, 1.97833225e-001, - 8.97923708e-002, -1.74389765e-001, 2.82666445e-001, - 2.47004583e-001, -4.70224097e-002, -3.44106671e-003, - 5.74761108e-002, 3.66617851e-002, 3.64125497e-003, - -2.70855468e-004, 7.10882619e-003, 4.83868411e-003, - -1.80798303e-002, -2.11880114e-002, 4.98473868e-002, - 3.82026024e-002, 5.09530585e-003, -2.22715586e-002, - 4.01552916e-002, 4.04942259e-002, -1.43909384e-003, - -1.47559913e-003, 5.71476715e-003, 5.10754623e-003, - -1.25507731e-003, 7.45190599e-004, 3.80149996e-003, - 6.20600069e-003, 2.23698583e-003, 9.55703668e-003, - 2.00041011e-002, 4.76151779e-002, 6.87249564e-003, - 1.36524597e-002, 2.50700396e-002, 5.24508134e-002, - 5.96610538e-004, 9.98592819e-004, 3.96254798e-003, - 7.30070472e-003, 1.53599475e-002, 3.26453522e-002, - 4.03602123e-002, 4.97906767e-002, 2.25695241e-002, - 2.63898641e-001, 1.98550463e-001, 4.05049324e-001, - 3.39142792e-002, 2.14805171e-001, 2.12186068e-001, - 3.57633471e-001, -1.92655642e-002, 2.59528924e-002, - 4.06120084e-002, 4.64949124e-002, 2.40897946e-002, - -1.82363123e-003, 4.43658940e-002, 2.95874625e-002, - -1.38830274e-001, -7.77805448e-002, 2.95958340e-001, - 2.00628087e-001, 1.49220183e-001, -7.43938684e-002, - 3.14405799e-001, 2.03001276e-001, -2.30113436e-002, - -4.62680298e-004, 4.62450236e-002, 3.18192691e-002, - 9.87501349e-004, -1.82841846e-003, 5.06597944e-003, - 6.02001185e-003, -1.00515326e-002, -1.95616111e-002, - 3.92911024e-002, 4.90281209e-002, 1.71848312e-002, - -1.46692079e-002, 4.33679707e-002, 4.35384847e-002, - -9.92864370e-004, -9.45454871e-004, 5.05618937e-003, - 4.45330096e-003, -1.89455482e-003, 1.01924664e-003, - 5.47396298e-003, 5.50725264e-003, 2.64821835e-002, - 3.85355279e-002, 4.61248159e-002, 5.40403724e-002, - -1.42985666e-002, 4.80444767e-002, 4.92304750e-002, - 5.84372580e-002, -1.32342754e-003, -5.09445526e-005, - 5.55007067e-003, 4.53268690e-003, 2.24945992e-002, - 5.20680174e-002, 4.49400842e-002, 6.15933724e-002, - 1.83242396e-001, 3.33588064e-001, 2.55692869e-001, - 3.69943500e-001, -3.19953680e-001, 1.76736638e-001, - 3.82789373e-001, 2.46170148e-001, -3.26596536e-002, - 2.07271315e-002, 5.34179248e-002, 3.90191153e-002, - 2.72653159e-002, 1.10321585e-002, 3.85627560e-002, - 3.02170645e-002, 1.54554127e-002, -3.19822542e-002, - 1.32366344e-001, 1.18247107e-001, -1.71698660e-001, - 3.39517854e-002, 2.27179140e-001, 1.50341451e-001, - -4.71530296e-002, 3.01904995e-002, 6.06380068e-002, - 4.44921255e-002, 9.07500449e-004, -4.87761019e-004, - 3.89302662e-003, 3.77065153e-003, 2.17351771e-004, - -1.71029847e-002, 2.44812313e-002, 2.89724488e-002, - -1.11505417e-002, -1.65190008e-002, 2.83724628e-002, - 2.99262200e-002, -3.63530195e-003, 8.17559601e-004, - 6.07362483e-003, 4.72348463e-003, 1.28928141e-003, - 1.68928283e-003, 4.57329350e-003, 4.24538134e-003, - -6.21611904e-003, 2.96066776e-002, 2.98969708e-002, - 3.98681909e-002, -9.09856986e-003, 1.90154910e-002, - 2.81123873e-002, 3.44849564e-002, -1.36532399e-004, - -1.98796552e-005, 3.91056109e-003, 3.77199799e-003, - 2.99714282e-002, 4.61167097e-003, 4.25469130e-002, - 2.19153557e-002, -1.56840719e-002, 4.31664772e-002, - 1.94492772e-001, 1.80637419e-001, -5.18362932e-002, - 2.24506557e-001, 3.65046412e-001, 2.84855336e-001, - -1.77851319e-002, 7.24218925e-003, 4.08620723e-002, - 2.75726318e-002, 2.38238405e-002, -4.43117553e-003, - 3.73514108e-002, 1.57569014e-002, 2.44181827e-002, - -5.06319478e-002, 1.74055710e-001, 1.23973772e-001, - 3.53487730e-002, -4.94569130e-002, 6.35212183e-001, - 1.92047298e-001, -2.49191094e-002, -2.97400169e-003, - 4.92371209e-002, 2.44353879e-002, 1.88710692e-003, - -6.76598749e-004, 4.21818998e-003, 2.53437692e-003, - 4.74869693e-003, -8.27151816e-003, 3.02943029e-002, - 2.29838770e-002, -6.13266893e-004, -1.77254025e-002, - 6.86361045e-002, 3.30270194e-002, -2.48508411e-003, - 1.00771256e-003, 6.28326880e-003, 3.26665910e-003, - 1.22059675e-004, 1.60762365e-003, 4.15758369e-003, - 4.02511004e-003, 3.76585987e-003, 1.82261206e-002, - 2.81589068e-002, 3.88235375e-002, -1.18863616e-004, - 1.88206378e-002, 2.54783910e-002, 3.93809602e-002, - -5.67283307e-004, 1.25314947e-003, 3.84614454e-003, - 4.29040054e-003, 1.94719080e-002, 5.13669383e-003, - 4.70000058e-002, 3.07252258e-002, 5.14155440e-002, - 1.74109742e-001, 2.75019288e-001, 2.82859087e-001, - -7.13021606e-002, 1.15653805e-001, 2.09029436e-001, - 2.50683725e-001, -1.83513481e-002, 1.20600592e-003, - 3.80684286e-002, 2.99978070e-002, 1.20677315e-002, - -3.52918729e-003, 4.85132411e-002, 2.57918667e-002, - 2.22692922e-001, 1.69695914e-002, 4.28202957e-001, - 1.91352293e-001, -2.81486988e-001, 2.08524112e-002, - 3.55084360e-001, 1.84717759e-001, -7.94254895e-003, - -4.57191700e-003, 3.73882316e-002, 2.62823198e-002, - 8.92978103e-004, 1.01834338e-003, 5.99345192e-003, - 3.60697345e-003, 2.75109336e-002, -1.38299521e-002, - 5.55288382e-002, 3.46056223e-002, -3.27798612e-002, - -1.05290618e-002, 4.88850251e-002, 3.23556140e-002, - -6.91882509e-004, 1.13581878e-003, 5.02510834e-003, - 3.96001991e-003, 5.69914794e-003, 3.29310680e-003, - 1.81126185e-002, 9.73004103e-003, -1.12414937e-002, - 9.21124890e-002, 8.40357319e-002, 1.30033344e-001, - -2.94073503e-002, 1.64824203e-001, 6.36400655e-002, - 2.25799844e-001, 4.73630056e-003, 1.56012084e-002, - 1.13203768e-002, 2.15071701e-002, 1.17525138e-001, - 8.08434933e-003, 2.02134818e-001, 4.13118936e-002, - 1.68788165e-001, 9.13315117e-002, 3.75461936e-001, - 1.72906205e-001, -1.00016080e-001, 1.06002994e-001, - 3.24096680e-001, 2.33727187e-001, -1.65826976e-002, - 1.36557287e-002, 5.35124615e-002, 3.22562046e-002, - 1.46939114e-001, 1.71321966e-002, 2.09726676e-001, - 3.74439880e-002, 9.64741558e-002, 1.32861119e-002, - 2.49447271e-001, 1.00834787e-001, -1.43856421e-001, - -6.24281913e-002, 2.76076138e-001, 1.47826791e-001, - -2.64277123e-002, -2.13274565e-002, 5.34056611e-002, - 4.43135574e-002, 1.55768525e-002, 3.06056114e-003, - 2.22637877e-002, 5.95938088e-003, 4.52638138e-003, - -1.10237561e-002, 3.92321348e-002, 1.92736015e-002, - -3.02263685e-002, -1.60094090e-002, 4.79190312e-002, - 3.55118215e-002, -7.05461658e-004, 4.46509710e-003, - 6.27193833e-003, 1.12766903e-002, -4.39052819e-004, - 6.70581998e-004, 5.84284635e-003, 3.22286831e-003, - -4.57185544e-002, -1.77277215e-002, 5.57319634e-002, - 3.38994674e-002, 1.69988889e-002, -2.27995273e-002, - 6.38282821e-002, 3.77635062e-002, 5.06386999e-003, - 8.64604488e-004, 1.08921295e-002, 3.88158625e-003, - -2.52955817e-002, -1.14465309e-002, 5.09220064e-002, - 2.24490277e-002, -2.53754228e-001, -7.95726404e-002, - 3.21508855e-001, 1.70892626e-001, 5.61222211e-002, - -5.31281717e-002, 4.82954919e-001, 1.59555227e-001, - 7.09870830e-002, -7.79745728e-003, 1.04557954e-001, - 2.76902560e-002, -4.01923917e-002, -5.37408330e-003, - 5.71514890e-002, 1.94807537e-002, -1.25349939e-001, - 1.86355822e-002, 2.49871448e-001, 1.14773087e-001, - -5.94334491e-002, 2.77761407e-002, 4.59074318e-001, - 1.17735602e-001, 8.59525874e-002, -7.77719356e-003, - 1.15392476e-001, 2.87632272e-002, -4.49562212e-003, - -5.63683570e-004, 7.15726847e-003, 2.72315345e-003, - -1.52084334e-002, 9.83578432e-003, 3.79725583e-002, - 2.18787976e-002, -7.45067419e-003, 1.24744168e-002, - 5.60605377e-002, 2.39783023e-002, 9.23642423e-003, - -6.98259566e-004, 1.36937797e-002, 3.90645908e-003, - -7.77245779e-003, 2.08907435e-003, 1.12393023e-002, - 4.94476920e-003, -1.66881476e-002, -1.39204003e-002, - 5.08930273e-002, 3.50964181e-002, 1.03630302e-002, - -2.20317133e-002, 5.05632609e-002, 4.50082906e-002, - 1.18324882e-003, 2.55386316e-004, 7.44419359e-003, - 5.25524514e-003, -7.27737173e-002, 1.03610884e-002, - 9.20159370e-002, 3.24739926e-002, -1.72712758e-001, - 5.02074808e-002, 3.02426636e-001, 1.92412049e-001, - 3.48184071e-002, 6.34253100e-002, 3.03254366e-001, - 2.66115338e-001, 2.92054433e-002, 1.10223191e-003, - 5.73338047e-002, 4.05868292e-002, -6.29234388e-002, - 1.12263095e-002, 8.14971477e-002, 3.36680226e-002, - -1.89794540e-001, 1.28527358e-001, 3.18985492e-001, - 2.71201640e-001, 5.08871675e-002, 1.54181153e-001, - 2.43487909e-001, 3.44089210e-001, 2.34066714e-002, - 1.84095930e-002, 5.14427200e-002, 4.99376468e-002, - -4.08498570e-003, 6.98811549e-004, 7.75707606e-003, - 5.11439145e-003, -1.83952437e-003, 5.44626378e-002, - 4.82029803e-002, 7.32534751e-002, 6.65971497e-003, - 6.38282076e-002, 4.16138321e-002, 8.69351253e-002, - -1.61601650e-003, 4.86592622e-003, 6.62171328e-003, - 9.13642161e-003, 4.71095741e-003, -1.15975272e-003, - 9.51271504e-003, 3.57039319e-003, 1.39031131e-002, - 1.39646865e-002, 5.13232648e-002, 2.51749977e-002, - -1.88226774e-002, 1.17449723e-002, 3.27024125e-002, - 2.51939148e-002, -3.18952138e-003, -1.71043284e-005, - 5.79566695e-003, 3.46143241e-003, 4.70647067e-002, - -6.60236971e-003, 7.59898499e-002, 2.23067384e-002, - 1.20817497e-001, 2.72582322e-002, 4.06054109e-001, - 1.25434905e-001, -1.28722757e-001, 2.97370274e-002, - 2.03950241e-001, 1.26980647e-001, -3.29234339e-002, - 4.65246942e-003, 4.53648344e-002, 2.37580910e-002, - 4.59579788e-002, -9.27980430e-003, 7.36637264e-002, - 2.69192010e-002, 8.53293166e-002, -1.93924293e-001, - 5.48409522e-001, 2.50464231e-001, -6.99807927e-002, - -1.67458832e-001, 2.03133956e-001, 2.28832498e-001, - -3.27250175e-002, -1.48264123e-002, 4.61489856e-002, - 2.91306321e-002, 2.50193337e-003, -1.07193983e-003, - 6.50288211e-003, 4.33244929e-003, -1.81976648e-004, - -4.86934856e-002, 5.56824803e-002, 6.84103817e-002, - -2.10909551e-004, -4.81125750e-002, 3.17766592e-002, - 7.19514713e-002, -9.48663976e-004, -3.43287387e-003, - 4.65957914e-003, 6.81364629e-003, -5.00741648e-004, - 1.43248832e-003, 8.48688278e-003, 3.53894662e-003, - -2.46845186e-002, -8.62894405e-004, 5.94778918e-002, - 3.37854549e-002, 1.63937034e-003, -5.24619082e-003, - 4.38687988e-002, 3.12263500e-002, -2.97254231e-003, - -2.43683637e-004, 6.82324357e-003, 3.98315676e-003, - 6.14169613e-003, 3.89714981e-003, 6.60829097e-002, - 2.33679954e-002, -2.64104217e-001, -1.62585033e-003, - 4.43446100e-001, 1.67372420e-001, -3.75959789e-003, - -5.95724694e-002, 2.80353814e-001, 1.64237410e-001, - -1.37227410e-002, -1.16472626e-002, 5.06657884e-002, - 2.52614077e-002, 1.06937892e-003, -1.33038920e-004, - 6.94163293e-002, 2.24372540e-002, -1.42519623e-001, - 9.82849449e-002, 3.57942611e-001, 2.04025477e-001, - -2.20066741e-001, 6.26464263e-002, 3.47821504e-001, - 1.79192364e-001, 2.26421538e-003, -2.37939693e-003, - 4.28808965e-002, 2.44935080e-002, -7.03600002e-004, - -9.22648527e-004, 8.08941387e-003, 3.51794390e-003, - -1.00610405e-002, -5.18130139e-004, 5.18572070e-002, - 3.55166905e-002, -3.54895405e-002, 5.80575969e-003, - 5.38809933e-002, 3.69104072e-002, 2.99434087e-005, - 9.37770645e-004, 5.01755392e-003, 3.86567577e-003, - -1.92401092e-003, 1.61523651e-002, 7.93422759e-003, - 1.99649744e-002, -2.86322869e-002, 1.50822923e-001, - 6.05035722e-002, 1.77199394e-001, -1.61833502e-002, - 1.14031769e-001, 6.79493099e-002, 1.46266684e-001, - -5.52987633e-003, 6.98042044e-004, 1.32759782e-002, - 1.35815740e-002, 5.70966350e-003, 1.64318085e-002, - 2.43609957e-002, 2.99686920e-002, -2.66293772e-002, - 1.44048050e-001, 1.43301725e-001, 2.44441450e-001, - -2.19009116e-001, 3.23435664e-001, 3.62245411e-001, - 3.96162540e-001, -1.59629732e-001, 3.47026512e-002, - 2.08886668e-001, 6.47822618e-002, 5.78400493e-003, - -1.56099221e-003, 1.77475065e-002, 1.40359867e-002, - 9.59723629e-003, -7.65937008e-003, 8.61959681e-002, - 8.40598270e-002, -6.65547773e-002, 9.44685377e-003, - 1.78458825e-001, 1.14265636e-001, -1.80084556e-001, - 3.17367762e-002, 2.25233197e-001, 4.89150323e-002, - 5.29777142e-004, -3.60576669e-004, 2.30879127e-003, - 2.28367466e-003, 1.27915898e-003, -5.08071063e-003, - 1.21255424e-002, 1.44864274e-002, -3.93652078e-003, - -3.91001813e-003, 2.15269737e-002, 1.81648713e-002, - -1.73137970e-002, 3.21909203e-003, 2.35285442e-002, - 5.87911950e-003, -2.79317354e-003, -4.57583141e-004, - 7.07548345e-003, 4.39220248e-003, 4.33313660e-003, - -2.34770551e-002, 3.83270346e-002, 3.70580107e-002, - 3.00595313e-002, -2.80614030e-002, 6.37034923e-002, - 4.22641151e-002, 5.65851899e-003, 2.26184377e-003, - 1.10122589e-002, 5.16930316e-003, -4.45525832e-002, - -4.21713898e-003, 6.63596690e-002, 2.47258022e-002, - 6.98553324e-002, -6.81030527e-002, 2.63832688e-001, - 1.46659955e-001, 1.61318004e-001, -7.21315593e-002, - 4.90701616e-001, 1.64811537e-001, 8.10271725e-002, - -1.33174553e-003, 1.10731266e-001, 2.48649996e-002, - -5.07935844e-002, 7.95128755e-004, 7.05482662e-002, - 2.30821744e-002, 1.32930592e-001, 3.64802554e-002, - 3.07359427e-001, 1.19167276e-001, 6.05384707e-002, - 2.36136336e-002, 4.67237651e-001, 1.32293716e-001, - 9.91441905e-002, -8.36287625e-003, 1.23440214e-001, - 2.78424360e-002, -4.42914618e-003, -2.18291374e-004, - 7.95381516e-003, 3.21509200e-003, 1.10977395e-002, - 1.07077016e-002, 3.95790078e-002, 2.48210691e-002, - 1.22093949e-002, 8.61310307e-003, 5.81321828e-002, - 2.70890538e-002, 1.15663139e-002, -1.57680188e-003, - 1.55390762e-002, 4.44419635e-003, 4.06940271e-005, - 1.99208572e-003, 9.37540829e-003, 5.48625970e-003, - -6.38979152e-002, -3.48853730e-002, 8.18926319e-002, - 5.91929257e-002, -1.37331793e-002, -3.92141826e-002, - 4.99641113e-002, 6.08047731e-002, 1.23422984e-002, - 3.23830289e-003, 2.11483166e-002, 8.72876775e-003, - -6.42955452e-002, -2.93162744e-002, 1.01604551e-001, - 4.57810387e-002, -3.12171280e-001, -2.24990889e-001, - 4.12157357e-001, 2.81330287e-001, 2.10236255e-002, - -3.18571664e-002, 2.03675166e-001, 1.32095084e-001, - 1.66247338e-001, 3.10270861e-003, 2.33760118e-001, - 3.94265540e-002, -1.08540811e-001, -1.54320858e-002, - 1.35823756e-001, 4.14102338e-002, -1.24880902e-001, - -1.07525056e-003, 2.74286926e-001, 1.31105348e-001, - 2.79390384e-002, 7.37826154e-003, 1.79938793e-001, - 1.04068756e-001, 1.63259432e-001, -8.65376927e-003, - 2.25626469e-001, 3.93561721e-002, -1.33689810e-002, - -1.23138272e-003, 1.79085582e-002, 4.52284236e-003, - -1.49320252e-002, 8.90577491e-003, 3.59397791e-002, - 2.65999790e-002, 7.47720851e-003, 1.04378713e-002, - 2.99874581e-002, 2.71008816e-002, 1.43444594e-002, - -1.82526628e-003, 2.29021944e-002, 6.44995179e-003, - -9.67613087e-005, -4.81938041e-004, 4.12259577e-003, - 5.39779942e-003, -7.22128851e-003, -4.82471520e-003, - 2.77866554e-002, 4.20214608e-002, 4.94691031e-003, - -4.85030934e-003, 4.49558012e-002, 3.84352133e-002, - 5.35036597e-005, -1.35544338e-004, 5.08618494e-003, - 3.69189028e-003, -3.32229654e-003, -9.81087214e-004, - 3.50369625e-002, 5.64893000e-002, -3.68312076e-002, - 8.51137447e-004, 1.69200897e-001, 4.71046209e-001, - 3.62989381e-002, -2.33039707e-002, 3.59761149e-001, - 2.86555678e-001, 1.02888206e-002, 1.21491903e-003, - 4.62396890e-002, 2.50889566e-002, -5.49650239e-003, - -2.45926902e-003, 3.34274769e-002, 3.71960439e-002, - -3.04122847e-002, -4.30522859e-002, 1.81689113e-001, - 2.60080278e-001, 2.97002736e-002, -8.91221873e-003, - 4.36748832e-001, 1.85659051e-001, 1.27591826e-002, - -2.55350769e-003, 4.84493598e-002, 2.42675208e-002, - -5.94562385e-004, 3.50929884e-004, 4.69964417e-003, - 4.58015781e-003, -4.35057795e-003, 7.88353104e-003, - 3.01268864e-002, 3.48160416e-002, 3.41847329e-003, - 4.40362515e-003, 5.42431846e-002, 3.10562402e-002, - 1.08156283e-003, -3.92696267e-004, 6.27076579e-003, - 3.26515012e-003, 5.66921481e-005, 1.30066974e-003, - 3.83141614e-003, 4.37377114e-003, 8.25973228e-003, - 2.61230469e-002, 2.66679209e-002, 3.99358310e-002, - -3.62263247e-003, 2.88011245e-002, 2.83258986e-002, - 4.09652516e-002, -1.90219027e-003, 1.22684822e-003, - 4.43796162e-003, 4.32462338e-003, 1.98847484e-002, - 1.12434570e-002, 3.46057788e-002, 3.27889472e-002, - 9.02206972e-002, 1.41839504e-001, 1.75394699e-001, - 2.30788097e-001, -1.01057321e-001, 7.57101700e-002, - 2.03508303e-001, 2.03122497e-001, -3.24133337e-002, - -5.02856914e-003, 4.22674082e-002, 3.13711204e-002, - 2.42219549e-002, -1.71331484e-002, 3.89782339e-002, - 4.62194122e-002, 1.34621397e-001, -1.40186459e-001, - 2.19794527e-001, 4.48013544e-001, -2.69726783e-001, - -1.56227589e-001, 3.20433050e-001, 3.67640913e-001, - -2.12322492e-002, -1.73122101e-002, 3.73820700e-002, - 3.58768553e-002, -6.54478616e-004, -1.60634855e-003, - 4.10144450e-003, 5.49678225e-003, 6.24448853e-003, - -3.08806691e-002, 2.90776957e-002, 5.27223535e-002, - -1.02118943e-002, -2.80743428e-002, 3.17422599e-002, - 4.87374403e-002, -3.83812207e-004, -2.03971460e-004, - 3.79695999e-003, 4.20703599e-003, 9.79241682e-004, - 2.84914230e-003, 4.64756927e-003, 5.52558899e-003, - -1.65319780e-003, 4.18981202e-002, 2.98663806e-002, - 5.41070625e-002, -1.54641028e-002, 2.63760928e-002, - 3.23166028e-002, 4.50081676e-002, 6.54445263e-004, - 4.88321180e-004, 4.04462684e-003, 4.66005504e-003, - 3.80743295e-002, 9.17382725e-003, 4.79715839e-002, - 3.23547684e-002, 8.91879126e-002, 1.85812220e-001, - 2.21095309e-001, 2.69712538e-001, -2.06896797e-001, - 3.07109088e-001, 3.06048363e-001, 3.62228483e-001, - -2.07896587e-002, 3.04713864e-002, 4.23092172e-002, - 4.46449630e-002, 3.40313315e-002, -7.94325955e-003, - 4.76395749e-002, 3.12249865e-002, 2.03840613e-001, - -6.79615587e-002, 2.71566153e-001, 2.11351201e-001, - -6.87851086e-002, 4.92598787e-002, 2.53420085e-001, - 2.38725513e-001, -3.56904566e-002, 2.27505472e-002, - 5.16679212e-002, 4.40366454e-002, 1.45393598e-003, - -4.47923900e-004, 5.21792006e-003, 5.41143725e-003, - 2.24383101e-002, -3.54746208e-002, 3.93679999e-002, - 5.50007001e-002, 4.45130607e-003, -4.46897186e-002, - 3.50439809e-002, 6.22434914e-002, -1.58807798e-003, - -1.66055688e-003, 5.61337452e-003, 6.47463743e-003, - -2.03082263e-002, 3.69805656e-003, 2.81881001e-002, - 8.73330329e-003, -1.49118621e-003, -2.91114897e-002, - 3.94707806e-002, 4.21071947e-002, 2.87185553e-002, - -3.51630822e-002, 4.45147902e-002, 5.06336801e-002, - 6.24638237e-003, 1.00873338e-004, 1.58811100e-002, - 6.85786596e-003, -2.38207400e-001, 2.38855500e-002, - 3.16633135e-001, 4.52342480e-002, -6.78703412e-002, - -4.34211977e-002, 2.27936894e-001, 1.37411356e-001, - 1.31687850e-001, -8.76225755e-002, 2.10173175e-001, - 1.64064437e-001, 1.08756639e-001, -8.87705572e-003, - 1.63078070e-001, 4.04106639e-002, -2.40746066e-001, - 1.48500800e-002, 3.35276514e-001, 4.05234843e-002, - -1.26043648e-001, 8.08395296e-002, 3.00401062e-001, - 1.69202670e-001, 8.59429464e-002, 6.24410659e-002, - 1.85815409e-001, 1.45261794e-001, 1.24018192e-001, - -5.09468419e-003, 1.75127178e-001, 3.69037390e-002, - -2.21530776e-002, -2.13611801e-003, 3.69731784e-002, - 8.58099293e-003, -3.09185758e-002, 2.33597513e-002, - 6.30639568e-002, 4.24166843e-002, 3.99215100e-003, - 1.61403511e-002, 3.52747180e-002, 3.33691277e-002, - 1.15464507e-002, -2.29318067e-003, 1.89898573e-002, - 5.45809092e-003, -1.09349762e-003, 1.92547421e-004, - 5.07747615e-003, 3.77102778e-003, -1.92132164e-002, - -1.30272033e-002, 4.01099436e-002, 3.05344630e-002, - -8.56804941e-003, -2.02910695e-002, 4.41863835e-002, - 3.45082842e-002, 4.77148592e-003, 6.69575064e-004, - 9.42680426e-003, 4.95748548e-003, -1.86131261e-002, - -5.41603053e-003, 3.94998789e-002, 2.72325128e-002, - -1.63843870e-001, -6.97195008e-002, 2.62915581e-001, - 1.85506105e-001, -2.02560741e-002, -1.30273262e-002, - 3.19598079e-001, 1.95862323e-001, 6.06066473e-002, - 2.08582617e-002, 8.68404657e-002, 3.95609327e-002, - -2.74542123e-002, -1.08068716e-002, 4.44816425e-002, - 3.27081047e-002, -1.43045977e-001, -8.68205950e-002, - 2.58705199e-001, 2.41302803e-001, 2.82456994e-001, - 1.77506223e-001, 4.16479260e-001, 2.94485241e-001, - 1.83004774e-002, 1.75511185e-002, 6.31242022e-002, - 3.59751657e-002, -3.11358017e-003, -1.48592939e-004, - 5.99183841e-003, 4.79491288e-003, 5.79231232e-003, - 2.97785625e-002, 4.57531810e-002, 4.75684032e-002, - 4.41647023e-002, 2.67524794e-002, 6.23162463e-002, - 4.64891791e-002, -1.83489313e-003, -1.32761546e-003, - 6.14902657e-003, 4.35579941e-003, -5.94246108e-003, - 2.36318694e-004, 9.32025351e-003, 4.49399697e-003, - 1.33604361e-002, -1.55792795e-002, 4.17626724e-002, - 2.99339164e-002, 1.79507248e-002, -9.47551243e-003, - 4.35472690e-002, 3.17171663e-002, 2.81336950e-003, - 7.87395518e-004, 6.95409020e-003, 4.78534820e-003, - -7.25719780e-002, 1.36409923e-002, 8.70845988e-002, - 3.44046094e-002, 6.68542534e-002, -3.75049710e-002, - 2.77206451e-001, 1.49351478e-001, 1.30032420e-001, - -9.03392062e-002, 2.68762618e-001, 1.87425762e-001, - 4.12325002e-002, 6.03705039e-003, 5.71639985e-002, - 3.34852412e-002, -5.57631850e-002, 2.52005104e-002, - 8.05010796e-002, 4.26077880e-002, -1.30467042e-001, - 1.67951718e-001, 3.46082568e-001, 2.56070614e-001, - 2.65554070e-001, 1.16157897e-001, 4.23641562e-001, - 2.40377709e-001, 3.05502862e-002, 2.46165022e-002, - 5.45057580e-002, 4.21090126e-002, -1.59740797e-003, - -8.07338278e-004, 8.23051762e-003, 5.17612696e-003, - -2.72540413e-002, 3.15245949e-002, 6.03555702e-002, - 5.17397597e-002, 3.59360985e-002, 2.82335915e-002, - 6.55857474e-002, 4.79425527e-002, 1.05818594e-003, - -1.34517776e-003, 6.90795900e-003, 5.05063403e-003, - 3.82433855e-003, -3.13678081e-003, 8.56088009e-003, - 1.11145293e-002, -6.88534528e-002, -6.70302883e-002, - 9.03044492e-002, 1.04181461e-001, -3.24898399e-002, - -6.50608018e-002, 6.08675256e-002, 8.51779729e-002, - 5.03614370e-004, -4.74074390e-003, 6.33614557e-003, - 8.30581877e-003, -1.98481940e-002, -6.82903007e-002, - 4.37250212e-002, 8.72333348e-002, -1.57058999e-001, - -3.43262315e-001, 2.37641439e-001, 4.41347122e-001, - -1.82775431e-003, -7.91592672e-002, 1.31337121e-001, - 1.79477289e-001, 1.66959055e-002, -1.10097472e-002, - 2.94818413e-002, 3.12093347e-002, -8.99937935e-003, - 4.41092765e-003, 2.71005724e-002, 3.73738334e-002, - -1.27989231e-002, 1.56527638e-001, 1.26124114e-001, - 2.61322170e-001, 4.23391350e-002, 2.18817636e-001, - 1.16047420e-001, 2.91860014e-001, 1.52235078e-002, - 3.17245983e-002, 2.99445894e-002, 4.70210686e-002, - 3.86986975e-003, 1.20170759e-002, 7.57357804e-003, - 1.73729416e-002, 2.63641477e-002, 1.37513876e-001, - 5.07775247e-002, 1.76254451e-001, -5.95777808e-003, - 1.26364186e-001, 4.16421555e-002, 1.63240999e-001, - -4.07395745e-003, 9.91008244e-003, 7.08855269e-003, - 1.70877669e-002, -1.11170923e-002, -5.21705442e-005, - 1.78142786e-002, 1.10911662e-002, -2.80756243e-002, - -1.21523730e-001, 7.11505637e-002, 1.61607161e-001, - -2.27243751e-002, -1.15835913e-001, 4.22964953e-002, - 1.51776031e-001, -1.27945724e-003, -1.08911609e-002, - 4.67973994e-003, 1.63722709e-002, -1.71199262e-001, - 5.35608688e-003, 2.04372615e-001, 3.68477106e-002, - -3.28139424e-001, -1.04424931e-001, 4.04559374e-001, - 1.86435297e-001, -2.86052725e-003, -6.11876436e-002, - 8.77493173e-002, 1.34858981e-001, 6.02519745e-003, - -7.88215641e-003, 1.71965845e-002, 2.00764146e-002, - -1.86131686e-001, -2.92322622e-003, 2.19693244e-001, - 2.66374499e-002, -3.08717489e-001, 3.38769965e-002, - 3.86864036e-001, 1.13347843e-001, -1.23525120e-003, - 1.20335817e-002, 8.04919899e-002, 7.51661733e-002, - 3.51150404e-003, 5.93361445e-004, 1.38492770e-002, - 1.25526851e-002, -2.24219467e-002, -1.49519218e-003, - 2.83255577e-002, 5.40213659e-003, -4.53717001e-002, - 1.80986635e-002, 6.24975972e-002, 3.35428864e-002, - -4.86023305e-003, 1.49603924e-002, 1.80897396e-002, - 2.72400808e-002, 2.74706690e-004, 1.30891323e-003, - 2.17083632e-003, 3.34587903e-003, 1.62541051e-003, - -8.51608114e-004, 2.64795101e-003, 3.25452769e-003, - -1.60800735e-003, 1.52363395e-002, 1.43066570e-002, - 2.31050588e-002, -1.09619945e-002, 1.54972775e-002, - 2.70695593e-002, 2.74317004e-002, -1.86361861e-003, - 1.12638227e-004, 4.44639567e-003, 5.18121012e-003, - 2.39312015e-002, -8.56994838e-003, 2.88776569e-002, - 2.54549906e-002, 4.11925912e-002, -1.67479794e-002, - 8.71123374e-002, 7.18192160e-002, -2.26621479e-001, - -1.72230706e-001, 2.45593518e-001, 2.66873866e-001, - -3.71600017e-002, -6.32971600e-002, 5.39278463e-002, - 8.74221921e-002, 2.74242908e-002, -1.24342572e-002, - 3.60504836e-002, 4.14114557e-002, 4.19543907e-002, - -9.53182578e-002, 1.37453571e-001, 1.83150455e-001, - -3.69004577e-001, -1.26253694e-001, 3.96372050e-001, - 4.71263528e-001, -3.50879952e-002, -3.95747600e-003, - 5.15815131e-002, 8.09085295e-002, 1.32712675e-003, - -6.69844775e-003, 4.72644018e-003, 1.13478480e-002, - -1.32245822e-002, -7.97027647e-002, 3.26517336e-002, - 9.73274633e-002, -4.80537787e-002, -6.13638312e-002, - 6.04412369e-002, 9.08696279e-002, 1.56564265e-003, - -3.26663692e-004, 5.16404957e-003, 6.60289638e-003, - 1.24615140e-003, -9.45627969e-003, 7.05524720e-003, - 1.11955618e-002, 1.23606073e-002, -1.14492550e-001, - 4.01435420e-002, 1.23050898e-001, 8.49128049e-003, - -1.05451852e-001, 3.32790837e-002, 1.22101635e-001, - -5.07431745e-004, -7.58410711e-003, 5.21358568e-003, - 1.04261981e-002, -2.84756385e-002, -1.63451321e-002, - 4.50552590e-002, 3.75863127e-002, 1.96022853e-001, - -6.27512112e-002, 3.50889891e-001, 2.49414340e-001, - -8.24798569e-002, -1.59383133e-001, 3.50574374e-001, - 2.56760359e-001, 6.98315278e-002, -1.06088072e-002, - 8.51998255e-002, 3.31440121e-002, -1.29138837e-002, - -1.62390957e-003, 3.62456404e-002, 2.58322097e-002, - 1.01054206e-001, -2.94539891e-002, 2.97698706e-001, - 1.92304835e-001, -6.37620986e-002, -2.94753462e-002, - 3.24267596e-001, 1.76750258e-001, 8.29481035e-002, - -3.53454729e-003, 9.61423665e-002, 3.59676071e-002, - -6.19188766e-004, 2.97186757e-003, 4.19584243e-003, - 8.15980136e-003, 8.21798760e-003, 4.08153273e-002, - 5.00195473e-002, 5.85759915e-002, -1.78319681e-003, - 3.97550724e-002, 4.40193936e-002, 5.31620719e-002, - 4.12888220e-003, -4.10497247e-004, 8.04116856e-003, - 7.35706743e-003, -4.22175450e-004, -1.73599191e-003, - 5.25541697e-003, 5.64784277e-003, -3.59286019e-003, - -5.37836254e-002, 3.72518711e-002, 7.12544546e-002, - 1.13558369e-002, -3.12631540e-002, 3.39801982e-002, - 5.68083040e-002, -8.68362433e-004, -2.49871489e-004, - 4.08930844e-003, 4.75280127e-003, -2.02498846e-002, - 2.88063660e-003, 4.74503264e-002, 4.09862474e-002, - -2.03744158e-001, 1.28458083e-001, 3.06850553e-001, - 3.84440243e-001, 1.25932872e-001, -1.42566785e-001, - 2.60690570e-001, 3.26525182e-001, 1.82061363e-002, - -2.46601701e-002, 4.71681990e-002, 4.65940386e-002, - -2.62444150e-002, -2.60885190e-002, 5.03471680e-002, - 5.09062074e-002, -9.84249786e-002, -2.05924183e-001, - 2.45774657e-001, 3.61178935e-001, -1.07422369e-002, - -1.09214326e-002, 1.82973027e-001, 1.73585668e-001, - 2.37655770e-002, -8.62058811e-003, 4.23916765e-002, - 3.30566727e-002, -2.31377198e-003, -7.94462569e-004, - 6.09066663e-003, 4.88477387e-003, -8.67428165e-003, - 8.43588170e-003, 3.22441757e-002, 3.41388471e-002, - 4.94148722e-003, 7.09931273e-003, 2.79781129e-002, - 2.96253227e-002, 1.12928229e-003, -1.88575323e-005, - 4.75444784e-003, 4.28413786e-003, 6.47929916e-003, - 7.54029863e-003, 1.21878916e-002, 1.05013493e-002, - -8.36565159e-003, 1.18670747e-001, 4.44035009e-002, - 1.37261286e-001, 2.91956356e-003, 1.19618416e-001, - 3.02474611e-002, 1.44324437e-001, 1.06339471e-003, - 1.24209719e-002, 5.16832713e-003, 1.72012951e-002, - 1.07969224e-001, 3.00955074e-003, 1.46908581e-001, - 4.38648686e-002, 1.69745963e-002, 1.76735595e-001, - 2.80311167e-001, 3.42543036e-001, 4.80395555e-003, - 1.43440202e-001, 1.50018573e-001, 3.84488314e-001, - -1.49732223e-002, 2.21629925e-002, 3.61146778e-002, - 6.38522878e-002, 1.03705287e-001, -2.53320765e-003, - 1.55240387e-001, 3.74434218e-002, 1.81413114e-001, - 2.38869097e-002, 2.85690099e-001, 2.08606988e-001, - -3.54666896e-002, 1.47195876e-001, 1.29157260e-001, - 2.35372633e-001, -1.30524533e-002, 1.86451245e-002, - 2.66041458e-002, 3.42372395e-002, 8.94248020e-003, - 2.05510226e-003, 1.84131227e-002, 6.05363399e-003, - 3.09058353e-002, -1.75713394e-002, 4.54613566e-002, - 3.29612270e-002, -1.85871252e-003, -2.39344966e-002, - 1.80598274e-002, 3.73671278e-002, -1.67032529e-003, - -2.87138228e-003, 3.68003338e-003, 6.13166159e-003, - -1.05921330e-003, 6.82556629e-003, 3.48771620e-003, - 1.54898241e-002, -6.53912313e-004, 5.29005155e-002, - 1.75646041e-002, 1.12349056e-001, 1.11676170e-003, - 5.18174581e-002, 2.18419433e-002, 1.09552212e-001, - -3.24350040e-005, 4.50902432e-003, 6.94114855e-003, - 1.21021466e-002, 1.04193585e-002, 5.98824844e-002, - 2.41424628e-002, 6.74528107e-002, 5.93524938e-003, - 4.22262639e-001, 8.12436566e-002, 4.64091033e-001, - -6.59171492e-002, 4.13061559e-001, 1.27198830e-001, - 4.55871582e-001, -7.69714043e-002, 3.88441458e-002, - 1.15428425e-001, 5.94496764e-002, 9.00141988e-003, - 3.24318331e-004, 1.87567435e-002, 1.24475947e-002, - -2.71391030e-003, -9.53208935e-003, 5.68696782e-002, - 6.60915226e-002, -6.54260814e-002, -1.33079169e-002, - 1.12581410e-001, 8.19441229e-002, -8.35759714e-002, - 2.67260056e-003, 1.25058964e-001, 2.59428825e-002, - 4.71337698e-004, -1.02687860e-004, 2.07044743e-003, - 1.80296134e-003, -1.28492553e-004, -3.71207437e-003, - 1.05537353e-002, 1.11673707e-002, -1.06104873e-002, - -4.02181502e-003, 1.87476464e-002, 1.37650417e-002, - -9.02369339e-003, 6.57681143e-004, 1.52333472e-002, - 3.21788318e-003, 8.87723546e-003, 2.60443557e-002, - 1.98430177e-002, 4.92201708e-002, 2.83161504e-003, - 2.49854103e-001, 2.69871261e-002, 4.20721799e-001, - 1.15932082e-003, 2.54799098e-001, 2.56296862e-002, - 4.19143796e-001, -4.80889762e-003, 2.80002132e-002, - 1.80573147e-002, 4.69259284e-002, 1.52728140e-001, - 1.23088236e-003, 2.66114771e-001, 6.21918552e-002, - 5.41570969e-002, 7.97681510e-002, 1.55707762e-001, - 1.66108161e-001, -3.13708149e-002, 6.82326183e-002, - 7.60037899e-002, 1.30955413e-001, -9.22511369e-002, - 8.51668604e-003, 1.91049680e-001, 3.25304940e-002, - 1.36528224e-001, 2.00508963e-002, 2.53582060e-001, - 5.29112443e-002, 4.51427363e-002, 2.62430636e-003, - 1.32641762e-001, 7.43263140e-002, -3.16440277e-002, - -4.13773162e-003, 8.42526853e-002, 4.92422953e-002, - -8.99830312e-002, 2.99831876e-003, 1.81624100e-001, - 2.06604302e-002, 6.68927841e-003, 3.47726978e-003, - 1.47515098e-002, 8.65441840e-003, 1.01656355e-002, - -3.02586891e-002, 2.85781380e-002, 4.18639444e-002, - -9.05011548e-004, -5.95434336e-003, 1.55862123e-002, - 1.30121950e-002, -8.81208479e-003, 2.54586083e-003, - 1.80733465e-002, 4.76971548e-003, -8.27358861e-004, - 2.18377355e-002, 5.13990177e-003, 2.63368096e-002, - -7.13481149e-003, 1.88986167e-001, 3.10087949e-002, - 2.32074484e-001, -1.48925846e-002, 1.86773703e-001, - 4.19135615e-002, 2.30617404e-001, -8.34476855e-003, - 1.21585336e-002, 1.59020405e-002, 1.78011302e-002, - 2.25374326e-002, 7.92513974e-003, 3.71329598e-002, - 3.48735005e-002, -1.99006926e-002, 4.88522090e-002, - 1.57278538e-001, 1.88754544e-001, -1.81692347e-001, - 3.30694877e-002, 3.23339969e-001, 2.27319077e-001, - -1.35318249e-001, -8.28538276e-003, 2.23953128e-001, - 4.42843325e-002, 1.49355158e-002, 4.09893179e-003, - 3.16452049e-002, 2.36522276e-002, 1.05743324e-002, - 7.00057251e-003, 1.49406955e-001, 1.12930261e-001, - -2.52727747e-001, 2.18888815e-003, 3.74347299e-001, - 1.78051189e-001, -1.30598947e-001, -3.43654677e-003, - 2.31296182e-001, 3.60466875e-002, 3.12888093e-004, - 6.11276264e-005, 4.24777763e-003, 3.10039218e-003, - 1.47112412e-003, -5.67848887e-003, 2.80046854e-002, - 2.17481013e-002, -4.79628332e-002, -1.26542328e-002, - 6.24828227e-002, 3.10126096e-002, -1.44989761e-002, - -4.45144455e-004, 2.92590316e-002, 5.60646504e-003, - 7.78113538e-003, -1.05064071e-003, 1.37602808e-002, - 4.42181900e-003, 1.82544086e-002, 8.77446774e-003, - 3.29946019e-002, 2.54361518e-002, 5.04026655e-004, - 8.09468701e-003, 1.46877980e-002, 2.22629029e-002, - -1.47044123e-003, 1.61177959e-004, 2.83315498e-003, - 2.48481310e-003, 7.29041472e-002, -3.05160973e-003, - 1.07438043e-001, 3.25134434e-002, 1.09158874e-001, - -1.01822838e-001, 1.88579097e-001, 2.03643531e-001, - 6.38896367e-003, -9.76260155e-002, 9.91083756e-002, - 1.73943818e-001, -1.25344191e-002, -9.18016396e-003, - 2.25441270e-002, 2.31056269e-002, 6.89186826e-002, - -9.55175702e-003, 9.44803208e-002, 5.71145937e-002, - 5.01949489e-002, -1.67774782e-001, 1.53527662e-001, - 5.22301555e-001, 5.07369125e-003, -2.14458227e-001, - 1.13948815e-001, 4.96716321e-001, -1.01674050e-002, - -3.12536843e-002, 2.14390568e-002, 6.26240298e-002, - 2.72170105e-003, -5.54659590e-003, 5.73343923e-003, - 1.19986236e-002, -5.77721803e-004, -6.33957461e-002, - 2.08757017e-002, 1.20051377e-001, 7.17012808e-005, - -6.48574084e-002, 2.01973394e-002, 1.21036664e-001, - 2.08065627e-004, -8.86558555e-003, 2.75856722e-003, - 1.64034273e-002, 3.07575031e-003, -3.33705335e-003, - 7.24127237e-003, 8.45715683e-003, 1.01433732e-002, - -5.73808551e-002, 4.27322239e-002, 7.95008317e-002, - 1.13873966e-002, -6.20227680e-002, 4.29966971e-002, - 7.93407559e-002, 5.38471155e-003, -8.23999406e-004, - 8.14305991e-003, 6.05960423e-003, -1.51280910e-002, - -3.30471061e-002, 3.99828590e-002, 4.88087498e-002, - 6.35074675e-002, -2.46789932e-001, 2.21069723e-001, - 3.39118958e-001, 1.94414109e-001, -1.56965882e-001, - 3.02428514e-001, 2.85379380e-001, 1.07464254e-001, - -5.99475065e-003, 1.18940353e-001, 3.85097414e-002, - -1.88522656e-002, 1.47113856e-003, 3.66571695e-002, - 2.54150834e-002, 1.34830728e-001, 5.17636202e-002, - 2.34486297e-001, 1.50422618e-001, 2.21448705e-001, - 7.78468475e-002, 3.19044173e-001, 1.80511206e-001, - 1.08744293e-001, 5.79220662e-003, 1.22558206e-001, - 3.44812982e-002, -4.50449035e-004, 6.24160049e-004, - 4.70181415e-003, 3.95265874e-003, 1.85695533e-002, - 1.59964412e-002, 3.52064706e-002, 3.31921317e-002, - 3.66733521e-002, 1.43799605e-002, 5.33194467e-002, - 3.74446623e-002, 9.35266726e-003, -2.06462201e-003, - 1.29954303e-002, 5.93745802e-003, -1.97881181e-003, - 2.08896847e-004, 5.64521784e-003, 3.06073762e-003, - -3.09338886e-003, -2.93017505e-003, 2.21546423e-002, - 1.95176955e-002, 6.70079421e-003, -6.68745069e-003, - 3.64756137e-002, 2.14807354e-002, 2.00931728e-002, - 1.97228161e-003, 2.64688954e-002, 4.57318267e-003, - -1.87848415e-002, -1.10911205e-005, 3.94506827e-002, - 2.13202201e-002, -1.58588067e-002, 2.01393068e-002, - 1.36659175e-001, 1.19895443e-001, 3.63181233e-002, - 2.56677363e-002, 2.49240547e-001, 1.32837325e-001, - 1.71335772e-001, 8.03564209e-003, 2.12338880e-001, - 3.43939327e-002, -1.86923649e-002, 2.18006242e-002, - 4.12342101e-002, 4.17094566e-002, 1.11967605e-002, - 1.73387527e-001, 1.47351503e-001, 3.40681404e-001, - 1.22564368e-001, 2.88264841e-001, 2.94072419e-001, - 4.40229863e-001, 1.29985526e-001, 3.06768492e-002, - 1.79168642e-001, 5.88516966e-002, 2.30424548e-003, - 1.06819542e-002, 7.25968136e-003, 1.38812196e-002, - 1.28335441e-002, 1.02502882e-001, 4.13689613e-002, - 1.23032600e-001, 2.17666011e-002, 8.00532326e-002, - 4.29950431e-002, 1.12208128e-001, -2.53576669e-004, - 3.93571718e-005, 9.53486562e-003, 8.48504435e-003, - 1.38973026e-003, 8.48550757e-004, 3.74633982e-003, - 3.47734918e-003, -3.19009414e-003, 4.75269509e-003, - 2.85249706e-002, 3.68416533e-002, 8.83590616e-003, - 2.07535643e-003, 3.24989073e-002, 4.12286445e-002, - 1.77503063e-003, 1.70148350e-003, 4.83152922e-003, - 5.38766664e-003, 1.23339677e-002, 2.98987632e-003, - 3.71842496e-002, 2.60314737e-002, 3.89226452e-002, - 7.45005906e-002, 2.20299378e-001, 2.23788232e-001, - 1.93452567e-001, 2.75172949e-001, 2.94719338e-001, - 3.48253578e-001, -8.32299795e-003, 1.60259102e-002, - 4.51488495e-002, 4.29881737e-002, 1.36661092e-002, - 3.98822920e-003, 3.83371376e-002, 2.87935659e-002, - 1.18393876e-001, 2.74649486e-002, 2.77803183e-001, - 2.41906002e-001, 2.43289322e-002, -2.30741560e-001, - 2.41815656e-001, 3.63216192e-001, -2.77034310e-003, - -2.54806131e-002, 4.28426266e-002, 4.58834916e-002, - 1.63475843e-003, 9.13897413e-004, 4.44125570e-003, - 4.96150553e-003, 9.26459688e-005, 1.06660940e-003, - 3.28382999e-002, 5.18984683e-002, -3.81281134e-003, - 7.58504868e-003, 3.14878151e-002, 5.11042103e-002, - 1.23384281e-003, 1.00893514e-004, 4.20111511e-003, - 5.10428753e-003, 7.27936393e-004, -2.54426821e-004, - 5.06912917e-003, 4.88908682e-003, 3.41030699e-003, - 1.42268883e-002, 3.07955649e-002, 4.46341969e-002, - -4.18339390e-003, 2.33396254e-002, 2.99146846e-002, - 4.76376936e-002, -2.03169510e-003, 5.29046636e-004, - 4.77279862e-003, 4.98667685e-003, 1.88505724e-002, - -7.35985814e-004, 4.76128571e-002, 3.60179953e-002, - -2.97344327e-002, -1.81745365e-002, 2.38403961e-001, - 2.51475066e-001, -6.75313994e-002, -1.90334827e-001, - 2.14080930e-001, 3.43468219e-001, -1.79009456e-002, - -1.81012731e-002, 4.19736989e-002, 3.96669917e-002, - 1.05794230e-002, -1.78676173e-002, 4.80983667e-002, - 4.05767038e-002, 9.25347358e-002, -2.96544433e-002, - 3.32458407e-001, 3.13212365e-001, -2.08748907e-001, - 1.21935323e-001, 3.01349312e-001, 3.47607315e-001, - -7.32508209e-003, -8.66176211e-004, 3.95084359e-002, - 3.50218825e-002, -4.21574747e-004, 1.40183314e-004, - 5.16130961e-003, 4.37905220e-003, 1.68641694e-002, - -1.73715241e-002, 4.30862010e-002, 4.92869765e-002, - -1.70458443e-002, -2.32463647e-002, 4.15493660e-002, - 5.19373380e-002, -3.72756971e-004, 4.56568596e-005, - 5.08059748e-003, 4.86868853e-003, 4.98040207e-003, - 2.61038840e-002, 7.67301256e-003, 4.84894589e-002, - 4.27468214e-003, 1.93786517e-001, 2.33575739e-002, - 3.29910040e-001, -9.81517974e-003, 2.00091258e-001, - 3.88790183e-002, 3.22174460e-001, -3.51005746e-003, - 2.25339383e-002, 1.21458601e-002, 3.91999446e-002, - 6.83316514e-002, -2.09338963e-002, 8.11480582e-002, - 6.02415428e-002, 1.73144545e-002, 8.73486400e-002, - 9.41953436e-002, 1.58770442e-001, -3.45752947e-002, - 9.89154950e-002, 1.08083457e-001, 1.70344755e-001, - -8.27986896e-002, 2.33830642e-002, 1.33915618e-001, - 4.24411595e-002, 1.04321145e-001, -7.44110867e-002, - 1.22729756e-001, 8.65912735e-002, 1.89454749e-001, - -2.91429669e-001, 2.63647139e-001, 3.39328289e-001, - 1.99410990e-002, -4.72663157e-002, 9.97839645e-002, - 1.10732466e-001, -7.24833459e-002, 8.70351493e-003, - 1.00089148e-001, 2.62471326e-002, -1.70180970e-003, - -5.86100575e-003, 9.04429611e-003, 1.23084467e-002, - 1.12310089e-001, -6.64201751e-002, 1.18204884e-001, - 9.92577896e-002, 2.70863120e-002, -2.77237669e-002, - 3.95603143e-002, 4.72277030e-002, -2.63575418e-003, - 1.19193748e-003, 7.31594348e-003, 4.77392739e-003, - -3.60072590e-003, 8.32299585e-004, 5.80790360e-003, - 2.76488042e-003, -1.45108076e-002, -1.11240689e-002, - 3.48514132e-002, 1.91537384e-002, 4.53401469e-002, - -1.11674899e-002, 5.45026287e-002, 2.09282171e-002, - 2.31315289e-003, 1.21036964e-003, 5.59996860e-003, - 2.72010127e-003, -3.21021602e-002, 8.65071546e-003, - 4.47664410e-002, 1.96721014e-002, -1.70513839e-001, - -2.61928560e-003, 2.47165635e-001, 9.40007791e-002, - 3.62221360e-001, -3.73418406e-002, 4.00760055e-001, - 1.01908818e-001, 2.26104334e-002, 1.45704369e-003, - 4.15865183e-002, 1.53429406e-002, -2.17782576e-002, - 8.92482419e-003, 4.01601270e-002, 1.97058655e-002, - -2.50109434e-001, 8.21587592e-002, 3.06139499e-001, - 1.29181981e-001, 3.47908825e-001, 2.35069059e-002, - 3.89249831e-001, 1.07083097e-001, 2.60619801e-002, - -2.24323291e-003, 4.35935520e-002, 1.62664764e-002, - -8.33854603e-004, -3.14922392e-004, 4.92400397e-003, - 2.63958913e-003, -3.53972986e-002, 1.92765482e-002, - 4.84058410e-002, 2.72613522e-002, 3.71565744e-002, - 1.63288526e-002, 5.04714474e-002, 2.54201051e-002, - 3.17098340e-003, -1.09138619e-003, 5.93690621e-003, - 2.81321653e-003, -3.70496814e-003, 3.92351154e-004, - 7.78979296e-003, 7.17163458e-003, -1.04132816e-002, - -2.76347380e-002, 3.87598351e-002, 5.28140292e-002, - 2.77243275e-003, -2.39244364e-002, 3.27184238e-002, - 4.58800383e-002, 1.26031926e-004, -5.29244600e-004, - 4.73394385e-003, 5.31433802e-003, -6.42648190e-002, - 1.17642125e-002, 7.93384388e-002, 5.58253117e-002, - -9.31233317e-002, 6.11644685e-002, 2.45969415e-001, - 3.26365739e-001, 1.80526040e-002, -3.42201404e-002, - 1.92550734e-001, 2.24543497e-001, 1.92402396e-002, - -7.00740516e-003, 3.62571813e-002, 3.27185355e-002, - -4.87911217e-002, 2.86727287e-002, 7.23520964e-002, - 5.83599210e-002, -2.25996971e-001, 1.97176352e-001, - 3.46723855e-001, 4.41665113e-001, -5.23265451e-002, - 5.11358045e-002, 2.22613841e-001, 2.25399449e-001, - 2.20378116e-002, 5.12250978e-003, 3.90009508e-002, - 3.03756315e-002, 4.96193068e-004, -1.20575925e-004, - 6.85492018e-003, 6.13456964e-003, -4.01056148e-002, - 3.86157781e-002, 6.23139255e-002, 6.56279102e-002, - -2.66264044e-002, 4.65123467e-002, 5.14871739e-002, - 6.41984865e-002, 9.58009041e-004, 2.29028007e-003, - 5.71412267e-003, 5.71809988e-003, 3.86371248e-004, - 4.02186997e-004, 6.43571466e-003, 4.82628914e-003, - 5.01139648e-003, 2.31649578e-002, 3.84076349e-002, - 3.63075323e-002, -1.66108273e-002, 3.51314694e-002, - 5.05697243e-002, 5.05171567e-002, -3.68827558e-003, - 9.26950073e-004, 7.28707388e-003, 5.63388877e-003, - 2.77649108e-002, 3.79563397e-004, 4.95463088e-002, - 2.95147486e-002, 7.34439418e-002, 3.32887284e-002, - 2.12087154e-001, 1.48412734e-001, -3.06454953e-002, - 1.12179533e-001, 3.90021861e-001, 1.94157362e-001, - -5.17759323e-002, 8.64893256e-004, 6.96944371e-002, - 3.13903987e-002, 3.81763354e-002, -8.97901785e-003, - 5.76705076e-002, 3.55934910e-002, 9.86828431e-002, - 5.36657944e-002, 2.95609474e-001, 2.70103872e-001, - -1.88393205e-001, -1.87578529e-001, 4.17067975e-001, - 2.99989998e-001, -3.24126557e-002, -1.55223701e-002, - 6.82310164e-002, 3.46063375e-002, 1.36885198e-003, - -5.36970329e-003, 6.91780867e-003, 9.74717457e-003, - -7.54494127e-003, -9.64072719e-002, 5.08550443e-002, - 1.16051994e-001, -1.54905682e-002, -6.72430173e-002, - 4.92810681e-002, 9.24144015e-002, 1.04615965e-003, - -6.57035387e-004, 5.55823231e-003, 6.52963482e-003, - 1.00130029e-002, -6.49160997e-004, 1.33807864e-002, - 4.26469184e-003, 1.96911916e-002, 1.71461366e-002, - 4.47124653e-002, 2.90661156e-002, -5.34156226e-002, - 2.00556368e-002, 6.77216202e-002, 3.44658308e-002, - -3.90850287e-003, 4.82012329e-005, 9.44601186e-003, - 5.06851869e-003, 8.65020677e-002, -4.79233265e-003, - 1.07230932e-001, 2.86896750e-002, 1.64223135e-001, - 2.09264737e-003, 3.00520539e-001, 1.06736824e-001, - -2.88038611e-001, 7.56558925e-002, 3.52823257e-001, - 1.46544084e-001, -5.56493849e-002, 1.85520388e-002, - 8.78182277e-002, 3.85484025e-002, 6.70790225e-002, - -5.39676799e-003, 9.96635258e-002, 3.75436991e-002, - 2.23307058e-001, -1.00335360e-001, 3.32042217e-001, - 1.92136392e-001, -1.62950128e-001, -2.39624754e-002, - 2.46767208e-001, 1.78781003e-001, -7.11942986e-002, - 8.63853842e-003, 9.43103954e-002, 4.28909436e-002, - 1.55141705e-003, -4.21166699e-003, 9.68140643e-003, - 1.21774878e-002, 1.77509822e-002, -1.17996782e-001, - 4.89403270e-002, 1.67351454e-001, 1.32873130e-004, - -1.19619392e-001, 3.78172174e-002, 1.66055530e-001, - -4.24491940e-003, -6.10710448e-003, 8.74687172e-003, - 1.31739415e-002, 7.12433946e-004, -2.03897907e-005, - 3.58625827e-003, 3.62933846e-003, 1.17288381e-002, - 2.22420543e-002, 2.76645571e-002, 3.82921435e-002, - 1.43213840e-002, 3.50011475e-002, 3.27770822e-002, - 5.05237803e-002, 1.36609515e-003, 3.39938165e-003, - 4.55830386e-003, 6.61629252e-003, 2.75865700e-002, - 1.89931709e-002, 3.79007496e-002, 3.11278421e-002, - 2.13486210e-001, 2.14173287e-001, 2.68442571e-001, - 2.94540882e-001, 1.06456876e-001, 1.65616184e-001, - 2.43395060e-001, 3.60361844e-001, -2.91061308e-002, - 3.46325384e-003, 4.21498604e-002, 4.46490236e-002, - 4.13087569e-002, 5.36750769e-003, 4.83754463e-002, - 3.45737822e-002, 9.20789987e-002, -7.64372870e-002, - 1.98110953e-001, 2.78736949e-001, -6.65126741e-002, - -2.60384887e-001, 2.03856677e-001, 3.33431154e-001, - -2.11337917e-002, -3.37661058e-002, 3.89528573e-002, - 4.89000678e-002, 1.57442922e-003, -2.99224840e-003, - 4.45807679e-003, 5.90406731e-003, -7.63245625e-004, - -4.30774838e-002, 2.67597344e-002, 5.70137650e-002, - -4.14376287e-003, -2.82976925e-002, 2.76060645e-002, - 4.96991165e-002, 4.80773218e-004, -1.44047046e-003, - 4.13747644e-003, 5.31413779e-003, 3.72035604e-004, - 9.27797798e-003, 1.20818354e-002, 1.69682577e-002, - 1.22484518e-002, 1.22288570e-001, 5.78640625e-002, - 1.79550156e-001, 3.12056206e-003, 1.27192825e-001, - 3.56264524e-002, 1.85517371e-001, -4.63341037e-003, - 1.15872910e-002, 1.55726131e-002, 1.90611631e-002, - 2.70312149e-002, 1.05001666e-002, 1.08881541e-001, - 3.04630380e-002, 1.43641233e-001, 3.75434682e-002, - 5.25782585e-001, 1.48664042e-001, 5.65424748e-002, - 4.98670563e-002, 2.20828295e-001, 1.30074084e-001, - -8.17288011e-002, 5.04210265e-003, 1.48974687e-001, - 2.47471314e-002, 3.48516069e-002, 1.64950062e-002, - 8.65122825e-002, 3.28999721e-002, 4.01853547e-002, - 3.04148402e-002, 4.44299966e-001, 1.14683598e-001, - 1.02173291e-001, -4.17306228e-003, 2.30491161e-001, - 8.39815214e-002, -8.44352990e-002, 2.33485643e-003, - 1.40377641e-001, 2.02775691e-002, 3.29969870e-003, - 1.20475772e-003, 8.18566419e-003, 4.31954116e-003, - 2.31548678e-003, -4.66147345e-003, 5.06790355e-002, - 2.28395034e-002, 8.85535497e-003, -3.22331372e-003, - 3.30918878e-002, 1.65133234e-002, -8.04446638e-003, - 1.71376672e-003, 1.29483836e-002, 4.62476211e-003, - 1.76254846e-002, -1.88969926e-003, 2.77795680e-002, - 4.41652630e-003, 1.06351841e-002, 1.14434108e-003, - 1.96020175e-002, 1.29774855e-002, -8.33335434e-005, - 3.87817330e-004, 7.83064589e-003, 7.41105061e-003, - -6.41104882e-004, -8.57562263e-005, 1.46575714e-003, - 1.08489406e-003, 1.48824856e-001, -6.79569133e-003, - 2.18783259e-001, 3.05516310e-002, 7.23954663e-002, - 7.52755627e-003, 1.32944047e-001, 8.92203078e-002, - -4.59107896e-003, -2.45885877e-003, 4.99948859e-002, - 6.19035698e-002, -5.65983634e-003, -2.04868658e-004, - 1.24731613e-002, 9.81150381e-003, 1.43544123e-001, - -2.34643035e-002, 2.04809755e-001, 5.39528206e-002, - 5.26381433e-002, -3.61999094e-001, 1.43025473e-001, - 4.22223926e-001, 3.87005945e-004, -3.63429189e-001, - 7.10218474e-002, 4.16151673e-001, -7.54907355e-003, - -5.24846762e-002, 1.71220843e-002, 5.99827319e-002, - 5.67777548e-003, -9.73423943e-003, 1.07930051e-002, - 1.62578784e-002, -5.16773714e-003, -1.14103779e-001, - 2.61291806e-002, 1.76046938e-001, 1.77420396e-003, - -1.16954520e-001, 1.78385712e-002, 1.81201413e-001, - 6.11299591e-004, -1.56468377e-002, 3.30709131e-003, - 2.52980944e-002, 7.67303980e-004, 4.84730490e-003, - 9.03593097e-003, 9.24420543e-003, -1.12873910e-004, - 5.53825609e-002, 2.64938381e-002, 8.80580246e-002, - 1.83939990e-002, 5.62089346e-002, 3.43471467e-002, - 8.89839679e-002, 6.55163371e-004, 4.71199350e-003, - 4.88332473e-003, 1.00303879e-002, 8.02734271e-002, - 2.91258972e-002, 1.21182963e-001, 4.26616780e-002, - -7.37710968e-002, 3.17319810e-001, 2.57416725e-001, - 3.52485329e-001, 9.89485011e-002, 2.77077794e-001, - 3.11092913e-001, 3.18979979e-001, -4.65123206e-002, - 2.36342642e-002, 6.63805157e-002, 3.95244509e-002, - 8.36885348e-002, 1.56202447e-002, 1.15560718e-001, - 2.63781101e-002, -7.03971609e-002, 1.35996444e-002, - 2.25910857e-001, 9.56450403e-002, 2.83287261e-002, - -4.62947190e-002, 3.43361467e-001, 1.22615792e-001, - -5.08939959e-002, -5.74340718e-003, 6.85586780e-002, - 2.59976368e-002, 6.81825029e-003, 1.72119495e-003, - 1.15671773e-002, 3.14676110e-003, -7.89477676e-003, - -2.68789660e-003, 3.14119495e-002, 1.30906738e-002, - -9.03922319e-003, -3.26895551e-003, 5.32587506e-002, - 1.78939532e-002, -4.46979934e-003, 1.35276990e-003, - 8.41446407e-003, 3.26595362e-003, 1.89789291e-002, - -4.52619791e-003, 2.82740407e-002, 6.73630321e-003, - 9.06412024e-003, 2.81206740e-004, 2.07586754e-002, - 1.13295922e-002, -9.53839393e-004, 1.53555127e-003, - 9.01862793e-003, 6.98903762e-003, -2.32783658e-003, - -1.47013896e-004, 3.93099990e-003, 1.68116856e-003, - 1.76747426e-001, -5.71347727e-003, 2.76768714e-001, - 3.39761227e-002, 6.74046651e-002, -5.03995689e-003, - 1.49266437e-001, 8.27085599e-002, -1.45453615e-002, - -1.28070936e-002, 5.56600764e-002, 6.24992661e-002, - -2.48428620e-002, -5.86171728e-003, 3.82034406e-002, - 1.53810587e-002, 1.84462368e-001, -1.30827073e-002, - 2.75164962e-001, 4.61187772e-002, 6.54363409e-002, - -1.28927276e-001, 1.66673273e-001, 2.27842063e-001, - -1.40152313e-002, -1.14277549e-001, 7.24021345e-002, - 1.90953001e-001, -3.17059457e-002, -1.59761012e-002, - 4.86448444e-002, 3.33326086e-002, 1.08296489e-002, - -2.56141908e-002, 1.92166567e-002, 3.83531414e-002, - -5.29666897e-004, -2.78895885e-001, 3.30350772e-002, - 3.90076041e-001, 5.72269270e-003, -2.83678681e-001, - 2.52124332e-002, 4.02075440e-001, -4.57629329e-004, - -3.62164415e-002, 6.62843836e-003, 5.30124642e-002, - -1.11582205e-002, 9.53415583e-004, 1.55076813e-002, - 4.15192731e-003, -1.09679429e-002, -2.37605460e-002, - 7.39281401e-002, 3.69090959e-002, 1.94377434e-002, - -1.64805483e-002, 4.47896831e-002, 3.43992971e-002, - 3.04943440e-003, 1.03234267e-003, 6.89421594e-003, - 4.36733197e-003, -1.28743678e-001, -4.07976238e-003, - 1.51495397e-001, 2.68022269e-002, -1.19218668e-002, - -5.10698147e-002, 4.70816851e-001, 1.49506986e-001, - 1.79543108e-001, -9.62078944e-003, 2.78156161e-001, - 1.36916697e-001, 3.40797715e-002, 3.91252711e-003, - 5.39000109e-002, 2.50812806e-002, -1.41936973e-001, - -9.35586542e-003, 1.61275014e-001, 2.57711150e-002, - 5.66888303e-002, 2.67902315e-002, 4.41444308e-001, - 1.19776256e-001, 1.92103669e-001, 4.27865423e-002, - 2.98687428e-001, 1.28920481e-001, 2.85674576e-002, - 3.20508098e-003, 5.29180951e-002, 2.32867915e-002, - -1.49935447e-002, -1.97129557e-003, 1.81307085e-002, - 4.85682115e-003, 8.71266425e-003, 2.06860267e-002, - 5.76637387e-002, 3.21643911e-002, 2.83388402e-002, - 1.50613505e-002, 4.60655764e-002, 3.11439689e-002, - 1.63046131e-003, -7.27391336e-004, 6.97528711e-003, - 4.39534476e-003, 1.32056409e-002, -3.08183674e-003, - 2.09101290e-002, 6.58102334e-003, 1.29380189e-002, - -1.82978739e-003, 2.96450406e-002, 2.24079452e-002, - -9.91141656e-004, 4.16766526e-003, 1.82250049e-002, - 2.69281697e-002, -5.23837749e-003, -1.95568384e-004, - 7.70508032e-003, 4.04042099e-003, 1.45597786e-001, - -5.74542256e-003, 2.15709060e-001, 3.66077423e-002, - 1.80239640e-002, -2.00821646e-002, 2.71021068e-001, - 1.47090450e-001, 5.77085875e-002, -2.80024968e-002, - 1.50770009e-001, 1.21794306e-001, -3.11835296e-002, - 4.83946363e-003, 4.65476848e-002, 2.03601643e-002, - 1.69091046e-001, -1.50763765e-002, 2.34937981e-001, - 4.57500294e-002, 3.63125317e-002, -1.00671068e-001, - 2.37603053e-001, 2.65611351e-001, 3.46937515e-002, - -9.32299495e-002, 1.38004556e-001, 2.57404953e-001, - -2.16272995e-002, -1.50187695e-002, 3.84778902e-002, - 3.85537893e-002, 1.10169491e-002, -2.37038657e-002, - 1.71175841e-002, 3.47833149e-002, 1.91903336e-003, - -2.45210767e-001, 3.53416130e-002, 3.34365904e-001, - 2.93298205e-003, -2.41154477e-001, 2.70228069e-002, - 3.39069307e-001, 1.03055546e-003, -3.21843103e-002, - 6.30802754e-003, 4.51718718e-002, 1.41209527e-003, - -1.90737576e-003, 4.98726685e-003, 4.51006927e-003, - 1.01096258e-002, -5.43930521e-003, 3.61862406e-002, - 3.72759067e-002, -3.39565165e-002, -1.88250244e-002, - 5.44485673e-002, 4.37305905e-002, 2.64843996e-003, - -1.40445388e-003, 6.19487790e-003, 4.03352967e-003, - -2.17624046e-002, -1.82713475e-002, 4.38660197e-002, - 3.59877199e-002, 1.84757337e-001, -3.18248332e-001, - 3.21517169e-001, 3.80470514e-001, -1.85171947e-001, - -1.06180757e-001, 3.72155517e-001, 2.35661969e-001, - 3.20810117e-002, -3.23420833e-003, 5.44544458e-002, - 3.23553383e-002, -2.06055008e-002, 8.72138329e-003, - 4.09046449e-002, 3.12976055e-002, 5.90908192e-002, - 7.96176195e-002, 2.29459539e-001, 2.06562266e-001, - 3.27803120e-002, 2.60424241e-002, 2.17292830e-001, - 1.71501860e-001, 1.76037475e-002, 5.79920106e-006, - 4.40918878e-002, 2.77764536e-002, -2.51126883e-004, - -6.92724949e-004, 4.75406926e-003, 3.94283561e-003, - -3.10880714e-003, -3.39074410e-004, 3.13349813e-002, - 3.44428271e-002, 8.16878956e-003, 1.09881524e-003, - 3.41738127e-002, 3.51036638e-002, 5.47025877e-004, - -6.95373747e-004, 4.52382350e-003, 4.13652882e-003, - -3.42876161e-003, -6.98866742e-003, 9.08405893e-003, - 1.40210763e-002, 7.56833842e-003, -1.19282879e-001, - 4.51784171e-002, 1.67128816e-001, 6.43699849e-003, - -1.24637634e-001, 4.95574251e-002, 1.67468041e-001, - 2.40992126e-003, -6.29011588e-003, 9.07869358e-003, - 1.53142465e-002, -9.15075839e-002, 4.64412477e-003, - 1.04631267e-001, 4.35410850e-002, -6.38875142e-002, - -7.48379827e-002, 1.80437595e-001, 2.22124502e-001, - 1.87828511e-001, -5.92624620e-002, 2.48284832e-001, - 2.23612577e-001, 7.58577138e-002, 1.76201575e-002, - 9.58390757e-002, 5.68092614e-002, -7.91533068e-002, - 1.33310119e-002, 1.01283863e-001, 4.12546322e-002, - -1.48838326e-001, 1.20405771e-001, 2.39482120e-001, - 1.92808926e-001, 3.17184180e-001, 1.37051538e-001, - 3.66446614e-001, 2.09678188e-001, 7.01371282e-002, - 2.46880762e-002, 9.95559096e-002, 4.60574441e-002, - -4.82784398e-003, -6.27209432e-004, 1.07727284e-002, - 5.74793294e-003, -2.79337782e-002, 2.18983311e-002, - 5.12542538e-002, 3.98211032e-002, 5.67525476e-002, - 2.08578669e-002, 7.10581914e-002, 4.89839725e-002, - 2.38885800e-003, -3.08640162e-003, 1.03559084e-002, - 7.78588606e-003, 3.67656304e-003, 3.34189972e-003, - 5.14624780e-003, 9.78124142e-003, -1.26801990e-002, - 7.83045143e-002, 4.71753180e-002, 1.51857793e-001, - 2.62265317e-002, 7.81126022e-002, 4.14011292e-002, - 1.59409836e-001, 1.65761303e-005, 1.04185538e-002, - 2.81856325e-003, 2.28843633e-002, 6.58180937e-002, - -1.79790915e-003, 7.26784840e-002, 2.78007016e-002, - -1.25232577e-001, 5.61704226e-002, 4.81152952e-001, - 1.74125269e-001, 2.52749711e-001, 7.81400576e-002, - 3.23183924e-001, 1.34899333e-001, -4.12223907e-003, - 5.97448787e-003, 1.32331513e-002, 1.51473787e-002, - 3.66931446e-002, -1.29877534e-002, 5.06946072e-002, - 2.60525923e-002, 1.98723480e-001, -1.56914979e-001, - 3.53639513e-001, 2.60633737e-001, 7.08161294e-002, - 3.82688479e-003, 1.84264898e-001, 1.02780506e-001, - 1.03533268e-003, -5.97470254e-003, 1.20262103e-002, - 1.22704888e-002, 1.20482058e-003, 2.78151361e-004, - 5.56181837e-003, 3.41198966e-003, 4.47167233e-002, - -2.38288399e-002, 6.02623746e-002, 3.35751846e-002, - 1.80067625e-002, -2.05779821e-002, 3.40854004e-002, - 2.59864181e-002, -4.18487361e-005, -1.40403130e-003, - 1.63604261e-003, 2.52205017e-003, 2.23135925e-003, - 1.30197534e-003, 6.07227255e-003, 5.26877912e-003, - 9.80108604e-003, 4.56156395e-002, 4.24742289e-002, - 7.03627393e-002, -8.46046396e-003, 4.63926308e-002, - 5.40388823e-002, 7.40533769e-002, -8.32801510e-004, - 3.23944143e-003, 5.62913297e-003, 8.91475659e-003, - 2.81320382e-002, -2.34957016e-003, 4.86738458e-002, - 2.30867732e-002, 1.40906602e-001, 4.87614088e-002, - 3.41252387e-001, 1.42254993e-001, -8.24360847e-002, - 7.02397823e-002, 4.98901784e-001, 1.79703310e-001, - -1.56918094e-002, 6.99880160e-003, 4.34652753e-002, - 2.34166998e-002, 1.82497334e-002, -6.16017496e-003, - 4.42847684e-002, 2.47399062e-002, 2.67333269e-001, - -1.27810165e-001, 3.44027668e-001, 2.14701295e-001, - -7.12215751e-002, 3.24788205e-002, 2.91407645e-001, - 1.59609511e-001, -1.95706300e-002, 7.73607893e-003, - 4.12725210e-002, 2.40565110e-002, 1.35130482e-004, - 5.87943883e-004, 4.79987729e-003, 3.36831133e-003, - 3.95139754e-002, -2.10476257e-002, 5.31235412e-002, - 3.89287770e-002, 4.35794238e-003, -2.70064417e-002, - 3.90821211e-002, 3.80326621e-002, -1.70353218e-003, - -6.60260557e-004, 4.98709362e-003, 3.58469621e-003, - 3.35493428e-003, -2.31384081e-004, 6.60338392e-003, - 3.53649841e-003, 1.66865196e-002, 1.36947921e-002, - 3.25152017e-002, 2.49032900e-002, -3.53922043e-003, - 1.50139956e-002, 2.83893812e-002, 2.71606836e-002, - -3.67719424e-003, -3.60897364e-004, 6.70602685e-003, - 4.36361087e-003, 4.09112275e-002, 8.41302332e-004, - 5.53048812e-002, 2.28702687e-002, 1.28675058e-001, - 3.34938504e-002, 2.00673744e-001, 1.06970891e-001, - -1.88834835e-002, 3.71163413e-002, 1.81975141e-001, - 1.16173640e-001, -5.25426753e-002, -7.98252877e-003, - 6.56578913e-002, 3.37604843e-002, 4.47024330e-002, - -6.44838717e-003, 5.79495467e-002, 2.62708254e-002, - 4.62290794e-002, -1.37922868e-001, 2.36441508e-001, - 2.03315943e-001, -1.81510463e-001, -4.66651529e-001, - 2.87694544e-001, 4.90471721e-001, -4.30964902e-002, - -5.76362945e-002, 6.34526983e-002, 6.90355599e-002, - 2.66015250e-003, -4.00859118e-003, 6.88023120e-003, - 6.67537889e-003, -3.07201315e-002, -6.33280352e-002, - 5.66047169e-002, 7.59194121e-002, -2.74921842e-002, - -2.73559876e-002, 4.46654148e-002, 5.36484793e-002, - 1.61531719e-003, -8.30357822e-005, 4.86370362e-003, - 5.70098730e-003, 5.20510133e-003, -2.21302453e-003, - 1.25183286e-002, 6.09893026e-003, 2.42898855e-002, - 7.43166124e-003, 4.08831313e-002, 2.35326365e-002, - -6.66292384e-003, 8.99123214e-003, 2.44419258e-002, - 2.20882110e-002, -1.16733685e-002, -3.16659152e-003, - 1.81619078e-002, 6.38693199e-003, 7.43015856e-002, - -1.19429212e-002, 1.48818731e-001, 4.80405129e-002, - 1.83314160e-001, 1.65841486e-002, 2.54589468e-001, - 1.13374270e-001, -6.09883927e-002, 7.00640865e-003, - 1.39327288e-001, 8.98848325e-002, -1.23338006e-001, - -6.51265029e-003, 1.87236920e-001, 4.00198177e-002, - 9.21804607e-002, -1.65872667e-002, 1.59318492e-001, - 5.25956042e-002, 1.70404360e-001, -2.30027080e-001, - 2.61933595e-001, 3.09825718e-001, -7.92384297e-002, - -2.44809687e-001, 1.85500771e-001, 3.13322812e-001, - -1.16979830e-001, -1.75097957e-002, 1.84891164e-001, - 4.81431559e-002, 4.78243362e-003, -4.31177020e-003, - 1.30245946e-002, 1.46375997e-002, 1.24762941e-003, - -7.56648332e-002, 4.70487662e-002, 1.71883538e-001, - -2.35420396e-003, -8.89780596e-002, 4.07618508e-002, - 1.83640957e-001, -2.00394541e-003, -5.99988503e-003, - 1.37780067e-002, 1.69243831e-002, 3.64120002e-003, - -1.79818328e-002, 7.13798637e-003, 2.36211475e-002, - -8.36881169e-004, -1.74317792e-001, 4.64359485e-002, - 2.05320299e-001, 8.98172846e-004, -1.59219339e-001, - 6.70857877e-002, 1.86270267e-001, 1.04062920e-002, - -4.12687333e-003, 1.65277217e-002, 1.30646462e-002, - -5.87530388e-003, -2.47012060e-002, 2.10013445e-002, - 3.79484482e-002, -1.88243724e-002, -1.67529151e-001, - 1.07763648e-001, 2.44292736e-001, 2.37248406e-001, - -1.30218700e-001, 3.30083191e-001, 2.39669025e-001, - 1.80634007e-001, 3.88050568e-003, 2.09455580e-001, - 3.81536447e-002, -7.90061057e-003, 1.97215169e-003, - 1.82509702e-002, 1.33870859e-002, -8.02660361e-003, - 8.41318443e-003, 8.26665759e-002, 7.99529776e-002, - 2.67483532e-001, 7.71090295e-003, 3.40396166e-001, - 9.76443440e-002, 1.86542749e-001, 2.10730266e-003, - 2.15689510e-001, 2.91083604e-002, -8.31079786e-004, - 6.75234129e-004, 3.22662923e-003, 2.71376758e-003, - -1.76371250e-003, 7.69818202e-003, 1.55002307e-002, - 1.61868688e-002, 3.99414375e-002, 8.02045316e-003, - 5.61552718e-002, 2.01973226e-002, 2.26068478e-002, - -8.59408930e-004, 2.71050930e-002, 5.01371687e-003, - 1.14861724e-003, 1.50513742e-003, 5.50795300e-003, - 4.71740356e-003, -1.86856429e-003, 2.33288463e-002, - 3.86340208e-002, 3.95905413e-002, 2.00784812e-003, - 2.90869698e-002, 3.12437061e-002, 4.19260003e-002, - -3.27296834e-003, 1.58889254e-003, 5.94886206e-003, - 3.61894886e-003, 3.61735933e-002, -2.01671734e-003, - 5.72656095e-002, 3.85267325e-002, -3.11265606e-002, - 1.88015297e-001, 3.69316757e-001, 2.48565137e-001, - -1.64857716e-003, 9.81145948e-002, 1.91375405e-001, - 1.69773683e-001, -5.50316311e-002, 1.00874947e-002, - 6.64951727e-002, 2.45436896e-002, 2.23797094e-002, - -1.38527220e-002, 5.10221794e-002, 2.81748716e-002, - 3.92138511e-002, -4.30637524e-002, 6.49698496e-001, - 1.75239921e-001, -4.05457392e-002, -2.49719433e-002, - 1.84973821e-001, 1.12328053e-001, -4.88360636e-002, - 1.32316170e-004, 6.27473220e-002, 2.15638708e-002, - 5.39895729e-004, 1.22886524e-003, 6.13088813e-003, - 3.43482685e-003, 1.59300845e-002, -1.68861840e-002, - 8.15144256e-002, 3.22992131e-002, -1.13205090e-002, - -1.05855735e-002, 3.30026187e-002, 2.62900740e-002, - -3.78088956e-003, 1.53493806e-004, 6.45236997e-003, - 3.45515180e-003, -8.02707672e-003, -7.40883825e-003, - 1.10471668e-002, 1.32651906e-002, -3.63130891e-003, - -1.55680418e-001, 3.69757935e-002, 1.91082507e-001, - 1.29512008e-002, -1.51351407e-001, 4.08575721e-002, - 1.89852118e-001, 5.36770327e-003, -4.48594429e-003, - 1.30090201e-002, 1.14631671e-002, -1.25502214e-001, - -1.11660687e-003, 1.35139346e-001, 3.00246701e-002, - -9.36462581e-002, 4.54396755e-002, 2.23663732e-001, - 2.34369293e-001, 1.53965920e-001, 2.84844097e-002, - 3.34531516e-001, 2.55160838e-001, 1.24421395e-001, - -8.98631930e-004, 1.68898270e-001, 3.33501361e-002, - -1.29866973e-001, -2.05308013e-003, 1.43026441e-001, - 1.95240621e-002, -1.14211885e-004, 2.77220048e-002, - 2.20706537e-001, 1.29763022e-001, 2.17893459e-002, - 2.71288343e-002, 3.24601620e-001, 1.40689954e-001, - 1.42685577e-001, -3.21800751e-003, 1.92560256e-001, - 2.52667293e-002, -1.57271400e-002, -1.51062827e-003, - 1.90329328e-002, 3.72170494e-003, 2.65013357e-003, - 8.81872140e-003, 3.53813209e-002, 2.39379909e-002, - 4.97067859e-003, 7.94091914e-003, 5.45118712e-002, - 2.49662325e-002, 1.67793836e-002, -5.99640844e-005, - 2.57613100e-002, 4.23984602e-003, 9.11585521e-004, - 1.23175501e-003, 5.51634468e-003, 3.99949821e-003, - -4.44465801e-002, -3.61757427e-002, 6.60553426e-002, - 5.53800389e-002, -9.87967011e-003, -4.98970933e-002, - 4.37918715e-002, 6.27485812e-002, 4.71158302e-004, - -2.10690009e-003, 5.02164336e-003, 5.59445005e-003, - -3.66213843e-002, -2.46193092e-002, 5.99575639e-002, - 3.99093330e-002, -3.15856785e-001, -2.69604474e-001, - 4.51675951e-001, 3.45172763e-001, 4.54344265e-002, - -4.02648859e-002, 1.75692856e-001, 2.02505335e-001, - 2.07604691e-002, -9.98175610e-003, 3.57741714e-002, - 3.04054283e-002, -8.15729126e-002, -2.75970101e-002, - 9.48362425e-002, 4.20563407e-002, 3.64288725e-002, - 3.95796970e-002, 3.55688095e-001, 1.79478407e-001, - -1.54695055e-002, 9.96134281e-002, 1.76530808e-001, - 1.78467497e-001, 1.84328146e-002, 7.80479470e-003, - 3.20577584e-002, 2.53488608e-002, -6.83331536e-003, - -1.31273479e-003, 1.02121141e-002, 5.08186920e-003, - 1.34789683e-002, 1.81757342e-002, 4.47204001e-002, - 3.28160748e-002, -4.18463023e-005, 1.28999650e-002, - 3.20588164e-002, 3.07000652e-002, 4.80672694e-004, - 8.51778605e-004, 4.23426880e-003, 4.02227556e-003, - 1.86226374e-004, -1.31816021e-003, 2.59128795e-003, - 3.27449734e-003, -1.16092488e-002, -1.36232646e-002, - 2.45352481e-002, 2.60935836e-002, -1.54920826e-002, - -1.29484646e-002, 6.89565390e-002, 2.53210329e-002, - 2.30698823e-003, -9.56227814e-005, 4.72718989e-003, - 2.70532747e-003, -1.09986113e-002, -4.49674055e-002, - 2.19032150e-002, 5.42535856e-002, -1.66546665e-002, - -3.14189941e-001, 1.45049676e-001, 3.55420709e-001, - 1.04721477e-002, -1.77834049e-001, 3.56747538e-001, - 2.38752276e-001, 2.45233011e-002, -2.40357965e-002, - 3.75254489e-002, 3.69298123e-002, -1.18358061e-002, - 4.28921022e-002, 2.11354587e-002, 5.41989766e-002, - -3.27079110e-002, 2.90153384e-001, 1.31759584e-001, - 3.47058922e-001, 2.40639262e-002, 1.81866989e-001, - 2.74744272e-001, 2.51230389e-001, 2.16414258e-002, - 1.67539883e-002, 3.42084765e-002, 3.88511345e-002, - 2.38018438e-005, 1.55139586e-003, 2.33600964e-003, - 3.42549360e-003, -1.21949650e-002, 1.39298271e-002, - 2.49184240e-002, 2.66312957e-002, -9.63842310e-003, - 1.30343661e-002, 5.84793612e-002, 2.57744920e-002, - 1.40069937e-003, 5.92209457e-004, 4.40399488e-003, - 3.01517523e-003, -3.46985064e-004, -5.03952142e-005, - 5.31752501e-003, 6.35228213e-003, 2.53152940e-002, - 3.42324302e-002, 4.69049960e-002, 5.95137887e-002, - 2.16109445e-003, 3.86528634e-002, 3.99573036e-002, - 5.54553233e-002, -1.97702274e-003, 5.33642597e-004, - 5.26886526e-003, 4.83393809e-003, 2.54760217e-002, - 1.68767218e-002, 5.05727418e-002, 5.46420999e-002, - 2.13189602e-001, 1.15637712e-001, 3.31940383e-001, - 4.94554579e-001, -1.37116805e-001, 2.71728691e-002, - 2.58520067e-001, 1.81873605e-001, -2.63011623e-002, - -2.54576467e-003, 4.74528745e-002, 3.08478847e-002, - 3.69306542e-002, -1.41723664e-003, 5.85495159e-002, - 3.99739146e-002, 1.23647198e-001, -2.37187631e-002, - 2.38696530e-001, 2.58105665e-001, -1.77942291e-001, - -4.77271676e-002, 2.85946369e-001, 1.56311914e-001, - -2.13065092e-002, -7.48645468e-003, 4.57693934e-002, - 3.08453776e-002, 1.84981676e-003, 2.12969506e-004, - 6.61364151e-003, 5.78347594e-003, 1.69476066e-002, - -2.48001497e-002, 3.87588926e-002, 4.54713553e-002, - -1.71788558e-002, -2.28241533e-002, 4.02273573e-002, - 3.85270342e-002, -1.31283817e-003, 6.63753424e-004, - 5.56732854e-003, 4.32373071e-003, -2.59263651e-003, - -6.65440457e-004, 6.39319373e-003, 4.11480479e-003, - -3.46953352e-003, -2.36233175e-002, 3.10438070e-002, - 3.83906141e-002, 3.24174725e-002, -1.70276947e-002, - 4.72923927e-002, 3.89629677e-002, 6.42905897e-003, - 2.20905524e-003, 1.09989131e-002, 5.60652558e-003, - -2.90253069e-002, 3.31235188e-003, 4.13050540e-002, - 2.76916716e-002, -2.53912117e-002, 2.24262699e-002, - 1.52028248e-001, 1.49900660e-001, 2.14929134e-001, - -3.26696411e-002, 2.86391824e-001, 1.57241821e-001, - 6.74641728e-002, -1.96131021e-002, 8.69787857e-002, - 4.39449362e-002, -2.65153255e-002, 3.10135316e-002, - 5.00398688e-002, 5.10357581e-002, -8.82840082e-002, - 2.01645777e-001, 1.92476094e-001, 2.95728713e-001, - 1.59509063e-001, 1.39415428e-001, 2.85971344e-001, - 2.80103922e-001, 4.78431731e-002, 1.64858438e-002, - 7.82329068e-002, 6.05795681e-002, 2.55108043e-003, - 1.47819733e-002, 8.47461913e-003, 2.41835117e-002, - 5.80782024e-003, 1.79729596e-001, 5.25040440e-002, - 2.48616025e-001, 6.90247398e-004, 2.04886511e-001, - 5.61831258e-002, 2.63205618e-001, -1.71787839e-003, - 1.03712017e-002, 1.29396813e-002, 2.11048536e-002, - 7.52221036e-004, -1.26726954e-004, 5.59074292e-003, - 3.45530384e-003, 1.18463486e-003, 9.13447607e-003, - 5.20339385e-002, 3.44187580e-002, -5.62683446e-003, - 1.04888463e-002, 3.85360345e-002, 3.23285684e-002, - -6.88143016e-004, 1.46538601e-004, 4.84671723e-003, - 4.09424258e-003, 1.26695400e-002, 1.80267857e-003, - 4.32734340e-002, 2.39847396e-002, -1.37384254e-002, - 4.61643748e-002, 4.34518188e-001, 1.90165043e-001, - -9.27215163e-003, 3.25765945e-002, 2.69707650e-001, - 2.08064899e-001, -1.85836218e-002, 1.76061818e-003, - 4.27262969e-002, 2.94757877e-002, 1.56526342e-002, - -3.07228882e-003, 4.52620797e-002, 2.96953302e-002, - 3.31496522e-002, -9.80771706e-002, 3.20279747e-001, - 3.21695238e-001, -4.37824503e-002, -3.09181865e-002, - 3.20898205e-001, 3.85530978e-001, -1.57355126e-002, - -7.30920304e-003, 4.23619039e-002, 3.69138345e-002, - 1.34899688e-004, -5.74111647e-004, 4.79741115e-003, - 3.98567459e-003, -1.11334759e-003, -1.51997106e-002, - 3.93949002e-002, 4.14542519e-002, 3.27371294e-003, - -1.55838095e-002, 3.83089297e-002, 4.41002101e-002, - -5.90957876e-004, -7.91987113e-005, 4.46587754e-003, - 4.32963157e-003, 3.31658777e-003, -1.05587300e-003, - 5.97378612e-003, 1.01491939e-002, -1.72577538e-002, - -7.00797439e-002, 4.14733365e-002, 9.89260525e-002, - -4.05085906e-002, -1.02858774e-001, 6.47240505e-002, - 1.17111683e-001, 7.22425710e-003, -4.17799642e-003, - 1.48019744e-002, 8.62815790e-003, -2.27564983e-002, - -6.63803890e-002, 3.52139398e-002, 7.83590004e-002, - -5.58208935e-002, -3.72597009e-001, 1.65406600e-001, - 4.68772531e-001, -5.36271073e-002, -1.66878074e-001, - 2.75772512e-001, 2.71215588e-001, 1.43652931e-001, - 9.64281266e-004, 1.74762920e-001, 3.26237455e-002, - -1.50290858e-002, 2.34136544e-003, 3.11335307e-002, - 2.48657987e-002, 1.44594302e-002, 3.45998593e-002, - 1.38346717e-001, 1.25195488e-001, 5.94761735e-003, - 1.25080636e-002, 2.59729147e-001, 1.14005826e-001, - 1.38629973e-001, -4.60010814e-003, 1.74479559e-001, - 2.81239152e-002, -1.34839024e-003, 3.37739405e-003, - 4.79178503e-003, 6.28814287e-003, -7.91021250e-003, - 1.88464914e-002, 2.59633772e-002, 3.65990289e-002, - 1.64833281e-003, 1.74697973e-002, 4.25480306e-002, - 3.19722816e-002, 1.38249109e-002, -1.36349862e-003, - 2.01439522e-002, 4.59381379e-003, -1.64641402e-004, - -4.04173479e-004, 3.58811277e-003, 3.51981586e-003, - 1.48628419e-003, 3.48016899e-003, 2.50876751e-002, - 2.44193599e-002, 9.21602082e-003, 8.59159045e-003, - 6.05519265e-002, 2.68160272e-002, 7.13967311e-004, - 7.30255037e-004, 6.54868642e-003, 3.33576859e-003, - 2.21545482e-003, 1.17019322e-002, 2.92588249e-002, - 2.97803860e-002, -7.92404637e-003, 9.33405682e-002, - 1.48929015e-001, 1.89269349e-001, 8.67320001e-002, - 4.09430824e-002, 5.09591103e-001, 1.61255985e-001, - -1.77204155e-003, 5.68440533e-004, 5.17220609e-002, - 1.98756251e-002, 4.88318177e-003, -7.80621031e-003, - 3.33701894e-002, 5.28696515e-002, 5.41221611e-002, - -1.74460728e-002, 1.88377142e-001, 4.30440098e-001, - -2.47789379e-002, 7.71614583e-003, 4.11523610e-001, - 2.40406275e-001, -2.10693525e-003, 3.17033357e-003, - 4.96479496e-002, 2.99403984e-002, -5.59468172e-004, - 1.77953516e-005, 4.02552774e-003, 6.21560868e-003, - 8.25765543e-003, -1.42405857e-003, 3.67207192e-002, - 4.62592654e-002, 1.08522000e-002, -2.32805824e-003, - 5.98602816e-002, 4.32243608e-002, -6.05787616e-004, - 2.42577851e-004, 6.52677892e-003, 4.45520971e-003, - 2.76852166e-003, -8.34983541e-004, 5.25853876e-003, - 4.78431163e-003, 1.51227145e-002, 2.03391425e-002, - 3.41737792e-002, 3.35749276e-002, 4.36852220e-003, - 2.12276485e-002, 3.42700258e-002, 4.05239835e-002, - -2.52573285e-003, -1.11811177e-003, 7.11218221e-003, - 5.08506503e-003, 3.86714861e-002, 1.24720838e-002, - 5.08760847e-002, 3.12606245e-002, 7.61479884e-002, - 1.12062760e-001, 1.96651518e-001, 2.05659911e-001, - 6.51840642e-002, 1.43229410e-001, 2.91841924e-001, - 2.17187658e-001, -5.43823019e-002, 1.91386137e-002, - 7.49107897e-002, 3.96408252e-002, 4.97247502e-002, - -1.45514207e-002, 6.17339611e-002, 5.66507317e-002, - 1.12742662e-001, -5.13944663e-002, 2.38511488e-001, - 3.95964354e-001, 1.31948814e-001, 7.17137009e-004, - 2.59704411e-001, 3.10301483e-001, -5.14029115e-002, - 2.15244200e-002, 7.10075423e-002, 5.27296364e-002, - 1.73363881e-003, -1.04769031e-002, 5.47071686e-003, - 1.68058686e-002, 1.27297062e-002, -1.38758853e-001, - 3.63955274e-002, 1.91837609e-001, 2.91840266e-002, - -1.58084959e-001, 4.39441353e-002, 2.02974558e-001, - 8.37585772e-004, -1.37619274e-002, 6.62360340e-003, - 1.94775686e-002, 3.27803369e-004, -5.33757091e-004, - 6.18692674e-003, 4.05589771e-003, -2.76383682e-004, - -6.25664555e-003, 5.37534207e-002, 4.45099324e-002, - 4.63864207e-003, -1.09774191e-002, 4.52622399e-002, - 4.58335504e-002, -6.29627320e-005, 3.87704968e-005, - 5.06274030e-003, 4.32718452e-003, -2.84210127e-003, - -8.57501570e-003, 5.22448309e-002, 3.03079318e-002, - 3.86017933e-002, -7.93132558e-002, 4.83269244e-001, - 2.86461920e-001, 3.11897527e-002, 2.50743958e-003, - 3.37397307e-001, 2.13424429e-001, 8.01136158e-003, - -4.99300705e-003, 4.60651517e-002, 3.20640355e-002, - -4.27142996e-003, -1.06073003e-002, 4.94018868e-002, - 3.32895257e-002, 5.94639592e-002, -5.89034334e-002, - 3.24358553e-001, 2.39677593e-001, 7.89630786e-003, - -1.32399052e-001, 2.58479208e-001, 2.55604565e-001, - 9.95129719e-003, -1.81891527e-002, 4.62219380e-002, - 3.70838307e-002, 1.52333116e-004, -6.90068773e-005, - 5.42562315e-003, 4.23521735e-003, 1.66372850e-003, - 1.28490687e-003, 3.51890586e-002, 3.92919183e-002, - 3.73867573e-004, 2.11879914e-003, 3.23241800e-002, - 4.05631587e-002, 1.00262032e-003, 9.68229870e-006, - 4.77328617e-003, 5.36736660e-003, 5.59988339e-003, - 1.71302434e-003, 9.29309614e-003, 6.47302484e-003, - -4.59645735e-003, 3.71168144e-002, 3.84372808e-002, - 5.78700900e-002, -5.33113815e-003, 3.04497238e-002, - 3.59558314e-002, 6.14841878e-002, 1.32748648e-003, - 2.76901806e-003, 5.07515715e-003, 8.23519100e-003, - 8.58329460e-002, -6.09076815e-004, 9.94224697e-002, - 3.74424681e-002, 8.84357914e-002, 1.71468392e-001, - 2.04253390e-001, 2.39608839e-001, -3.42158340e-002, - 2.65012383e-001, 1.43150672e-001, 3.07535440e-001, - -1.11470735e-002, 3.08231525e-002, 2.83209756e-002, - 4.37656641e-002, 7.72918537e-002, -2.22982019e-002, - 9.09510180e-002, 4.84188721e-002, 1.91579327e-001, - -2.72829920e-001, 2.44132787e-001, 3.46910506e-001, - -2.33611465e-003, -2.10956976e-001, 1.12750165e-001, - 2.95897692e-001, -1.68745276e-002, -2.35843658e-002, - 2.94871461e-002, 4.29613255e-002, 1.46999431e-003, - -2.40769540e-003, 6.25330396e-003, 9.44812875e-003, - 7.73691572e-003, -7.90743157e-002, 3.28901038e-002, - 1.18888989e-001, 7.73730502e-003, -1.02619477e-001, - 2.89676040e-002, 1.41587704e-001, 1.35345687e-003, - -1.14994198e-002, 4.71179234e-003, 1.76804587e-002, - -8.73311516e-003, -2.96265032e-004, 1.31530138e-002, - 5.27545484e-003, 1.41940592e-002, -8.57935026e-002, - 6.83441758e-002, 9.64536294e-002, 1.07343040e-001, - -1.39529034e-001, 1.56038627e-001, 1.71288803e-001, - -1.30320806e-002, -3.96915246e-003, 1.64081622e-002, - 1.33022992e-002, -1.25990793e-001, 5.44561120e-003, - 1.54320180e-001, 3.61218974e-002, -5.55622987e-002, - -7.65958354e-002, 1.95310727e-001, 1.38151035e-001, - 2.33739898e-001, -2.59036362e-001, 3.00421804e-001, - 3.34109515e-001, 2.88515873e-002, -5.60630932e-002, - 5.90530410e-002, 7.18742236e-002, -1.59539893e-001, - 1.51301799e-002, 1.84768245e-001, 4.64650504e-002, - -2.43076030e-002, 7.57834464e-002, 1.82631075e-001, - 2.01535776e-001, 1.15698718e-001, 6.39441833e-002, - 1.74167827e-001, 1.68023631e-001, 3.01340576e-002, - 6.57773402e-004, 4.46980670e-002, 2.84471400e-002, - -1.31297661e-002, 3.88145796e-003, 2.00503655e-002, - 1.21191368e-002, 5.94441220e-003, 1.06587470e-001, - 5.12968004e-002, 1.39909685e-001, -2.50547957e-002, - 9.30951163e-002, 5.10406606e-002, 1.32480562e-001, - 1.30955724e-003, 4.51177033e-003, 5.95032703e-003, - 1.21263992e-002, -9.01567633e-004, -6.71040209e-004, - 3.17750755e-003, 2.90092872e-003, 2.93604890e-003, - -1.61952469e-002, 2.17293389e-002, 2.41308901e-002, - 7.78268501e-002, -2.46687774e-002, 8.85305628e-002, - 3.81748118e-002, 3.88341793e-003, 3.45479394e-003, - 1.10849636e-002, 5.39862877e-003, -1.23523623e-002, - 1.37991563e-003, 2.26786137e-002, 1.53907649e-002, - -2.22730767e-002, 1.29416874e-002, 9.79454145e-002, - 9.13293734e-002, 4.68888909e-001, -7.45782182e-002, - 5.53779304e-001, 1.63228437e-001, 7.25829154e-002, - -1.12544922e-002, 1.04465850e-001, 2.86082737e-002, - -1.23833250e-002, 4.83490806e-003, 2.30499953e-002, - 1.57644656e-002, -1.40017001e-002, 3.47276106e-002, - 9.72236991e-002, 8.22671726e-002, 2.72090346e-001, - -1.23575274e-002, 3.76874745e-001, 1.20924078e-001, - 1.15669660e-001, -2.19954364e-002, 1.37529418e-001, - 3.54014896e-002, -9.06514702e-004, 1.11622759e-003, - 3.44248302e-003, 3.20737483e-003, -2.31525931e-003, - 1.34160165e-002, 1.92502569e-002, 2.14159545e-002, - 2.71839499e-002, 1.26957502e-002, 4.68544587e-002, - 2.35981233e-002, 1.42000625e-002, -3.48547054e-003, - 1.77302659e-002, 5.92808332e-003, 2.32379641e-002, - -5.25489915e-003, 2.89710294e-002, 9.38143115e-003, - 6.06249794e-002, 1.82796493e-002, 8.27816278e-002, - 3.36056054e-002, 1.06068968e-003, 1.37684196e-002, - 2.32883655e-002, 2.14003101e-002, -8.55620237e-005, - 2.71067285e-004, 2.56011984e-003, 1.87297945e-003, - 2.38402665e-001, 6.86540361e-003, 2.64383495e-001, - 3.54370214e-002, 3.69333506e-001, 4.68392782e-002, - 4.44394797e-001, 9.54948515e-002, -1.39188971e-002, - 1.93603393e-002, 7.08659962e-002, 5.41271567e-002, - -8.42405390e-003, 2.71851337e-003, 1.57117266e-002, - 8.81020911e-003, 2.65057325e-001, 1.33905662e-002, - 2.84654349e-001, 3.25007215e-002, 2.92220950e-001, - -2.00551227e-002, 3.65475953e-001, 9.52477306e-002, - -1.41089028e-002, -1.50714805e-002, 6.37156218e-002, - 5.10072708e-002, -9.46419407e-003, -4.10920614e-003, - 1.62612703e-002, 1.13658784e-002, 3.11257821e-002, - 4.53709951e-003, 3.36387604e-002, 8.17076582e-003, - 4.19874638e-002, -2.52019130e-002, 6.54499754e-002, - 4.11823615e-002, 5.47064294e-004, -2.30084565e-002, - 2.10976079e-002, 3.08011528e-002, -1.11414003e-003, - -1.14384014e-003, 3.17322928e-003, 3.83398170e-003, - -1.57899526e-003, -4.13291808e-003, 8.43590870e-003, - 7.99330603e-003, 3.43958922e-002, -6.59522042e-002, - 5.72937131e-002, 8.26737806e-002, 2.85807513e-002, - -5.32896705e-002, 6.78831637e-002, 8.16897750e-002, - 3.95463360e-003, 4.75657405e-004, 1.36386286e-002, - 7.80364545e-003, -3.94968353e-002, -3.81128583e-003, - 5.63770384e-002, 3.24881189e-002, 2.52660345e-002, - -1.19644493e-001, 1.73955977e-001, 2.01824069e-001, - 1.79489613e-001, -3.16967994e-001, 3.43316615e-001, - 3.66257936e-001, 1.37954012e-001, -1.43703213e-002, - 1.83049187e-001, 4.56292853e-002, -3.18362266e-002, - 1.89066343e-002, 5.55861630e-002, 3.49441804e-002, - -9.65992138e-002, 1.08612977e-001, 1.79961830e-001, - 1.68873459e-001, 1.23454414e-001, 8.00265223e-002, - 2.59060264e-001, 1.66611254e-001, 1.60219550e-001, - -6.42421283e-003, 2.01646894e-001, 3.89300436e-002, - -1.82872138e-003, -1.21824043e-004, 6.93430379e-003, - 5.44634927e-003, -1.50113320e-002, 1.44005567e-002, - 3.60265337e-002, 3.80336009e-002, 1.32540548e-002, - 1.38102686e-002, 4.35172170e-002, 3.99822257e-002, - 1.48715684e-002, -1.96879287e-003, 2.18772572e-002, - 6.04122691e-003, -1.80603880e-002, 3.42165725e-003, - 2.26863362e-002, 6.69563981e-003, -2.57283300e-002, - -1.43095218e-002, 4.62224819e-002, 2.96645574e-002, - 6.83449721e-003, -9.96981002e-003, 2.47344449e-002, - 2.30757222e-002, 1.74231792e-003, 5.07917372e-004, - 4.91782697e-003, 3.38517339e-003, -2.00532272e-001, - 1.93203073e-002, 2.27027074e-001, 4.34132069e-002, - -1.59467310e-001, 1.11828884e-002, 3.03548187e-001, - 1.34803355e-001, 7.09123015e-002, 3.71835008e-002, - 1.58790559e-001, 1.25229269e-001, 2.17518285e-002, - 3.82123189e-003, 3.96100469e-002, 2.14699842e-002, - -2.08548278e-001, 1.92565769e-002, 2.40116328e-001, - 4.45325300e-002, -1.48952186e-001, 2.67847538e-001, - 3.74230087e-001, 3.08942169e-001, 9.28772497e-004, - 1.41403109e-001, 1.84651092e-001, 2.03379169e-001, - 2.20369007e-002, 1.05770696e-002, 4.27785367e-002, - 2.95586810e-002, -1.23484246e-002, 6.48107962e-004, - 2.20085792e-002, 7.42822560e-003, -3.10762059e-002, - 6.87905326e-002, 8.20134953e-002, 8.78421441e-002, - -2.62798201e-002, 5.56517839e-002, 5.10867722e-002, - 6.81435391e-002, 7.78003523e-005, 3.31580010e-003, - 7.40378723e-003, 6.82929484e-003, -1.16520014e-003, - -3.50329326e-003, 3.93039733e-003, 6.05288474e-003, - -1.44932640e-003, -2.79454980e-002, 2.35758089e-002, - 3.75214852e-002, 3.57960910e-002, -3.84781882e-002, - 6.90986067e-002, 4.96469587e-002, 2.95826830e-002, - 4.37073596e-003, 4.65552174e-002, 8.95102974e-003, - -1.26990974e-002, -5.25877485e-003, 2.28465628e-002, - 1.94722824e-002, -2.27956437e-002, -3.04060280e-002, - 1.05464503e-001, 1.05113313e-001, 1.69866025e-001, - -6.35107756e-002, 3.12670082e-001, 1.37495831e-001, - 3.13361079e-001, -6.58902340e-003, 3.99461776e-001, - 4.11871746e-002, -1.28430696e-002, 1.01598967e-002, - 2.56596878e-002, 1.91458985e-002, -2.38159969e-002, - 7.32836202e-002, 1.12053163e-001, 1.07124127e-001, - 1.02870204e-001, 6.21872358e-002, 2.80696094e-001, - 1.13716990e-001, 3.23663473e-001, -9.12736077e-003, - 4.04724121e-001, 3.94104794e-002, -1.62818073e-003, - 4.72497661e-003, 4.65753255e-003, 7.87023548e-003, - -1.42819306e-003, 4.28009033e-002, 2.80283615e-002, - 6.68943450e-002, 4.94110584e-003, 2.53343172e-002, - 5.31894639e-002, 4.55614068e-002, 3.70860323e-002, - -3.22115631e-003, 4.78403121e-002, 7.63620576e-003, - -1.31725578e-003, 2.85196258e-003, 4.01563803e-003, - 7.37627968e-003, -6.29378334e-002, 6.51164055e-002, - 7.56453425e-002, 9.12300199e-002, -1.05439480e-002, - 7.95619562e-002, 6.20942116e-002, 1.13587290e-001, - -3.81259946e-003, 2.21663318e-003, 1.40280044e-002, - 8.59492086e-003, 5.18649491e-003, 6.12037256e-003, - 2.23718733e-002, 2.27380041e-002, -7.00574666e-002, - 1.31534964e-001, 1.82413295e-001, 1.97621107e-001, - -6.87815920e-002, 2.63437390e-001, 2.44498685e-001, - 3.70128244e-001, -1.26506284e-001, 1.42223164e-002, - 1.59295842e-001, 5.89584485e-002, 1.19446917e-002, - -1.59429628e-002, 2.72178967e-002, 3.17737162e-002, - -2.71188598e-002, -8.68504122e-002, 1.38739750e-001, - 1.86675951e-001, -1.40978560e-001, -1.84341788e-001, - 2.58360595e-001, 2.66163856e-001, -1.07511915e-001, - -9.61795170e-003, 1.50227547e-001, 5.96396588e-002, - -1.28242915e-004, -1.45297162e-002, 6.71864441e-003, - 1.90117452e-002, -2.77217384e-002, -1.40178517e-001, - 5.34226187e-002, 1.68228701e-001, -5.46801044e-003, - -1.33699685e-001, 5.43692261e-002, 1.61031500e-001, - -4.08629281e-003, -6.31647371e-003, 1.43179009e-002, - 1.44188693e-002, 7.20773404e-003, -1.08039344e-003, - 1.58877410e-002, 5.61290188e-003, 3.21011357e-002, - 4.40617912e-002, 5.53035028e-002, 5.41140251e-002, - -1.17129758e-002, 4.26699333e-002, 4.80313674e-002, - 5.58231771e-002, -1.79779623e-002, -5.79153420e-004, - 2.55838279e-002, 8.92208517e-003, 9.22345370e-002, - 1.20251281e-002, 1.16040133e-001, 3.58671956e-002, - 2.34262869e-001, 2.39307936e-002, 3.12692881e-001, - 1.56017065e-001, -2.24983152e-002, 5.65324090e-002, - 2.67311245e-001, 1.74979240e-001, -1.92895502e-001, - 3.52373836e-003, 2.27009490e-001, 5.61031774e-002, - 1.16468407e-001, 8.01826920e-003, 1.40487924e-001, - 2.86860559e-002, 8.11902657e-002, -2.50531882e-002, - 2.68358916e-001, 1.36613727e-001, 2.41586044e-002, - -1.12819128e-001, 3.56344789e-001, 1.89534321e-001, - -1.75679281e-001, -4.35267854e-003, 2.21132040e-001, - 4.08056043e-002, 1.26955481e-002, 2.36365618e-003, - 1.79749727e-002, 4.61699395e-003, -1.84053928e-002, - -3.04329153e-002, 6.73262402e-002, 4.25412357e-002, - -8.53231363e-003, -7.05022290e-002, 7.81466588e-002, - 7.54325464e-002, -1.02863191e-002, -2.93857534e-003, - 2.17440259e-002, 7.41611188e-003, -2.47597359e-002, - 2.49445951e-003, 3.15877758e-002, 6.06227480e-003, - -5.05666025e-002, -1.54739702e-002, 6.44001737e-002, - 2.73920204e-002, -5.09730948e-004, -1.16559416e-002, - 1.93075817e-002, 2.19773650e-002, 1.16108602e-003, - -9.03045293e-004, 3.31779383e-003, 3.01444391e-003, - -2.30419204e-001, 2.50473176e-003, 2.76444644e-001, - 3.01350206e-002, -3.13921630e-001, -2.40830574e-002, - 3.88626546e-001, 1.07829839e-001, -6.76530832e-003, - -1.81471668e-002, 1.02409691e-001, 8.51773843e-002, - 1.24582835e-002, -2.62532826e-003, 2.38880571e-002, - 1.50719108e-002, -2.37691954e-001, -8.61239713e-003, - 2.84230262e-001, 3.33867297e-002, -2.96004921e-001, - 5.26871718e-002, 3.71568859e-001, 1.48500398e-001, - 2.49161082e-003, 6.17422312e-002, 1.10814176e-001, - 1.29722670e-001, 1.00924615e-002, 6.64435187e-003, - 2.34634578e-002, 1.92077290e-002, -2.36092918e-002, - -2.91618379e-003, 3.02643515e-002, 9.16731078e-003, - -2.50446573e-002, 6.03477843e-002, 6.89561069e-002, - 8.83836970e-002, -8.71155690e-003, 6.39709830e-002, - 3.66609693e-002, 9.21602696e-002, -1.05720793e-003, - 5.24457730e-003, 4.43346845e-003, 9.79377329e-003, - 5.57302148e-004, 1.15439796e-003, 3.92750697e-003, - 3.12922057e-003, -5.71732642e-003, 2.45009065e-002, - 3.78852561e-002, 3.75423953e-002, -5.27135842e-002, - 2.74700262e-002, 8.66812468e-002, 4.46223319e-002, - 1.33825724e-005, -3.03541805e-004, 5.84903313e-003, - 4.52302070e-003, 1.42743886e-002, 3.82958306e-003, - 2.78293286e-002, 1.41082928e-002, 2.04094909e-002, - 5.16655333e-002, 1.31353334e-001, 1.12603672e-001, - -3.43036473e-001, 1.83837950e-001, 5.73568463e-001, - 2.40373090e-001, -2.08034143e-002, 2.31251065e-002, - 5.65174669e-002, 4.27107438e-002, 1.39991362e-002, - -8.50635115e-003, 2.88135521e-002, 2.01325882e-002, - -8.39824323e-003, -1.35288224e-001, 1.22661144e-001, - 1.86894998e-001, -1.11594044e-001, -1.55173317e-001, - 2.48389468e-001, 2.93729544e-001, -5.13114929e-002, - 1.03787249e-002, 6.95244893e-002, 5.44045679e-002, - -8.39073560e-004, -1.90486154e-003, 5.13474457e-003, - 5.79105830e-003, -2.24558860e-002, -3.40926386e-002, - 3.80256325e-002, 5.22457696e-002, -7.13752955e-003, - -3.08772940e-002, 3.52728553e-002, 5.23030013e-002, - -1.51626649e-003, -1.35737238e-003, 6.16440596e-003, - 5.93446521e-003, 5.42144710e-003, 4.60648298e-004, - 8.53316020e-003, 6.23580627e-003, -1.39827151e-002, - 2.53829435e-002, 3.40735801e-002, 3.99512202e-002, - -5.46334404e-003, 2.36028228e-002, 2.99196169e-002, - 3.97813916e-002, -1.22632447e-003, 1.81829964e-003, - 6.05830876e-003, 5.66651998e-003, 9.61474851e-002, - -2.74193827e-002, 1.03648238e-001, 4.61002886e-002, - -1.05032220e-001, 9.30551738e-002, 2.88791597e-001, - 1.98862642e-001, 5.77209182e-002, 1.57411933e-001, - 2.06085637e-001, 2.15129048e-001, -3.30203883e-002, - 1.70280281e-002, 5.62255308e-002, 3.39509882e-002, - 5.53619377e-002, -3.24091800e-002, 7.93005601e-002, - 5.14482260e-002, 2.74235308e-001, -1.00711212e-001, - 4.60091561e-001, 3.27564448e-001, -7.25335851e-002, - 1.48206782e-002, 2.18435988e-001, 2.07124755e-001, - -3.08191422e-002, -5.43476548e-003, 5.24915233e-002, - 3.05754896e-002, -1.92884915e-003, 3.39482911e-003, - 7.65309576e-003, 6.08912297e-003, 6.41766340e-002, - -4.66941595e-002, 7.98886195e-002, 6.87892660e-002, - -8.57512467e-003, -3.29010561e-002, 4.25806977e-002, - 4.77607995e-002, -8.59156076e-004, -6.59302459e-004, - 5.56133129e-003, 4.32816148e-003, -2.02884548e-004, - -5.10847749e-005, 4.69313189e-003, 2.95974570e-003, - 3.41564119e-002, 2.54477747e-002, 4.76921722e-002, - 3.53121683e-002, -5.60492417e-003, 2.71143038e-002, - 3.57408486e-002, 3.70954163e-002, -2.77766748e-003, - 3.85665859e-004, 5.00153610e-003, 3.65482876e-003, - 2.38988791e-002, 1.38407936e-002, 4.45925593e-002, - 2.60501988e-002, 2.21807510e-001, 2.05907419e-001, - 3.86589020e-001, 2.55959392e-001, -1.44060716e-001, - 2.06038728e-002, 2.44246513e-001, 1.60548672e-001, - -3.61935310e-002, -1.47429470e-003, 4.44673486e-002, - 2.36029811e-002, 4.64454293e-002, 9.86780040e-003, - 6.14871904e-002, 2.64012665e-002, -3.54809649e-002, - -5.97414002e-002, 4.60920662e-001, 1.85958534e-001, - -1.39554590e-001, -1.74606547e-001, 2.49421403e-001, - 2.19785839e-001, -2.87548136e-002, -1.24701792e-002, - 3.98490429e-002, 2.53598634e-002, 4.34497232e-003, - -1.64722034e-004, 7.38438126e-003, 3.87908635e-003, - -1.56984832e-002, -2.88501102e-002, 5.34661859e-002, - 3.77516076e-002, -1.88391060e-002, -1.57075673e-002, - 3.54725718e-002, 2.92595699e-002, -1.09411892e-003, - -1.91089828e-004, 4.22210386e-003, 3.22442688e-003, - -1.36062615e-002, 1.05247914e-003, 1.79585386e-002, - 3.86288483e-003, -6.17308170e-003, -9.73103568e-003, - 4.69529331e-002, 2.17833929e-002, 1.05656823e-002, - -1.06734205e-002, 2.79902183e-002, 2.60093212e-002, - 3.04558454e-003, 2.10975966e-004, 6.54858071e-003, - 4.03114501e-003, -1.30951539e-001, 5.71429776e-003, - 1.53291121e-001, 2.22143419e-002, -3.21260914e-002, - -1.84248500e-002, 3.26950610e-001, 1.05043143e-001, - 6.43414706e-002, -2.42694002e-003, 1.70530185e-001, - 1.25270396e-001, 4.25674617e-002, 1.24265160e-002, - 5.86441830e-002, 3.30683328e-002, -1.32363021e-001, - -1.44638529e-003, 1.49159253e-001, 3.01326197e-002, - 3.31634209e-002, 1.10656016e-001, 3.54020745e-001, - 1.76053196e-001, 2.15963557e-001, 3.58960688e-001, - 2.70412385e-001, 3.91135663e-001, 3.47723812e-002, - 5.21673486e-002, 6.21174723e-002, 6.15952797e-002, - -1.20083997e-002, -5.25435200e-004, 1.52393831e-002, - 5.88657660e-003, 3.68944481e-002, 4.92485091e-002, - 7.44043142e-002, 5.85696064e-002, 4.26059440e-002, - 3.97698432e-002, 6.20104410e-002, 6.21217713e-002, - -2.99512106e-003, -1.51346321e-003, 7.67024234e-003, - 7.29140267e-003, -2.19081100e-002, 1.62938784e-003, - 3.02054062e-002, 5.55407722e-003, -9.43394378e-003, - -1.43591547e-002, 4.09824364e-002, 2.63625402e-002, - 2.39185784e-002, -1.00178551e-002, 4.61641885e-002, - 2.61390153e-002, 1.13441171e-002, 2.41404329e-003, - 1.88232455e-002, 5.64646441e-003, -2.08024487e-001, - 3.43158143e-003, 2.64386088e-001, 2.56371889e-002, - -4.95990366e-002, -3.70232016e-002, 2.08310276e-001, - 9.33615491e-002, 2.46271312e-001, -2.53092051e-002, - 3.50821316e-001, 9.94852036e-002, 9.28793773e-002, - 1.29044745e-002, 1.52942255e-001, 3.02331895e-002, - -2.12025717e-001, -3.69173568e-003, 2.69855589e-001, - 2.76996456e-002, -6.49028048e-002, 7.64461467e-003, - 1.92067370e-001, 9.61353406e-002, 3.17508519e-001, - 2.83307713e-002, 3.87722969e-001, 1.09714970e-001, - 7.65533149e-002, -9.83712729e-004, 1.42217726e-001, - 3.30454856e-002, -2.29455680e-002, -2.71740695e-003, - 2.94756480e-002, 5.55390632e-003, -7.71900453e-003, - 1.11731114e-002, 3.50102931e-002, 2.33130679e-002, - 4.22947407e-002, 1.16984798e-002, 5.90405278e-002, - 2.79223211e-002, 7.87995383e-003, -2.59227748e-003, - 1.72567181e-002, 6.71987329e-003, -1.20394416e-002, - 1.48220779e-003, 1.54185202e-002, 4.02399153e-003, - -3.16616073e-002, -1.11894216e-002, 4.71948758e-002, - 2.24794503e-002, 8.71130172e-003, -8.97126738e-003, - 2.39553917e-002, 2.07301322e-002, 3.49693699e-003, - 3.82516955e-005, 8.44262820e-003, 4.49021626e-003, - -1.07319616e-001, 4.09964100e-003, 1.27259463e-001, - 2.49791071e-002, -2.05961257e-001, -1.45705428e-003, - 2.82777041e-001, 9.76810083e-002, 1.04983971e-001, - 6.27673343e-002, 1.95430219e-001, 1.35582119e-001, - 3.18247303e-002, 3.23163345e-002, 7.23246485e-002, - 4.82086129e-002, -1.06010363e-001, -3.42765055e-003, - 1.24640450e-001, 2.33189259e-002, -2.02040046e-001, - 3.41712981e-002, 2.79922366e-001, 1.09340549e-001, - 3.87853682e-001, 1.60595685e-001, 4.67429608e-001, - 2.18994945e-001, -1.81544274e-002, 3.53516899e-002, - 9.01426375e-002, 5.64363487e-002, -1.08309556e-002, - -1.47121947e-003, 1.38413021e-002, 3.97847919e-003, - -2.33413633e-002, 1.77652333e-002, 4.94348630e-002, - 3.01202126e-002, 6.82704821e-002, 2.31151897e-002, - 8.54375437e-002, 4.42842767e-002, -6.28036587e-003, - -2.79220403e-003, 1.20545514e-002, 6.98712841e-003, - 1.90917854e-004, -4.43690456e-004, 5.16694738e-003, - 5.04565705e-003, -2.04068888e-002, -1.84633527e-002, - 4.11882885e-002, 4.40061092e-002, 9.11508501e-003, - -2.38819681e-002, 4.11570966e-002, 4.43160497e-002, - 1.77409023e-003, -2.49434117e-004, 6.47644885e-003, - 5.20561589e-003, -2.92123184e-002, -2.49857530e-002, - 4.60102819e-002, 4.47427407e-002, -1.35693878e-001, - -2.03182861e-001, 2.12718219e-001, 2.92544812e-001, - 1.14241533e-001, -1.67951614e-001, 2.54352748e-001, - 2.49058425e-001, 4.72151414e-002, -5.37572196e-003, - 6.59130439e-002, 4.01720591e-002, -3.41837704e-002, - 3.01572704e-003, 4.75505292e-002, 3.28899547e-002, - -1.36454478e-002, 1.20497242e-001, 1.89006343e-001, - 1.88455716e-001, 1.41477108e-001, 2.47198462e-001, - 4.41509724e-001, 3.02717835e-001, 4.06770036e-002, - 2.45115012e-002, 7.10767284e-002, 4.44169603e-002, - -1.71653950e-003, 9.73282207e-004, 5.35577536e-003, - 4.58281301e-003, 5.04510291e-003, 2.05228347e-002, - 3.87891904e-002, 3.46267521e-002, 2.91174557e-002, - 1.74555071e-002, 6.93410411e-002, 3.95450965e-002, - -5.26728363e-005, -1.09300902e-003, 7.95292761e-003, - 5.56783006e-003, 9.08821763e-004, -2.24834145e-003, - 4.68082214e-003, 5.91779687e-003, 1.83910376e-003, - -2.94795800e-002, 3.49223502e-002, 4.86294664e-002, - -1.03316391e-002, -3.16753127e-002, 3.19195725e-002, - 4.74771969e-002, 3.04021756e-004, -2.95576360e-003, - 4.55233548e-003, 5.67006413e-003, -2.17900854e-002, - -2.08423510e-002, 3.41358930e-002, 4.04675342e-002, - 5.79713881e-002, -1.85442120e-001, 1.86351612e-001, - 2.75540262e-001, -4.15417030e-002, -1.30092099e-001, - 1.42073527e-001, 2.15910167e-001, 2.25388911e-002, - -9.21247434e-003, 3.27286124e-002, 3.18597667e-002, - -1.55554479e-002, 3.98783349e-002, 2.99257468e-002, - 4.91307750e-002, 2.86417250e-002, 3.59979063e-001, - 1.40617162e-001, 3.99027705e-001, 2.85316110e-002, - 3.59043926e-001, 1.26061156e-001, 4.03767914e-001, - 1.83028840e-002, 4.51066680e-002, 3.15215997e-002, - 5.35620041e-002, 1.45748863e-003, 3.46826646e-003, - 4.07011900e-003, 5.77551872e-003, 7.65740499e-003, - 2.79508885e-002, 2.36673411e-002, 4.47407551e-002, - -3.33503383e-004, 2.37928610e-002, 1.93922985e-002, - 4.15808633e-002, -1.30219467e-003, 2.02090666e-003, - 3.90930055e-003, 4.89130989e-003, -6.05806068e-004, - -2.92351027e-003, 7.88010098e-003, 7.08801532e-003, - 9.89010558e-003, -3.98767404e-002, 3.72068100e-002, - 5.99054396e-002, -2.17520948e-002, -2.97880098e-002, - 4.88797240e-002, 5.17962873e-002, 3.53855212e-005, - -3.33034608e-004, 7.41690025e-003, 5.01275714e-003, - -5.51024526e-002, -2.67200195e-003, 6.93046227e-002, - 3.24157812e-002, 3.09197046e-002, -1.49361372e-001, - 1.95004344e-001, 2.24164456e-001, -1.27384216e-001, - -2.23411918e-001, 2.58619905e-001, 2.77117729e-001, - 5.07877544e-002, -1.27773639e-002, 6.42648041e-002, - 3.48535739e-002, -5.46033010e-002, 3.93911786e-002, - 7.17816129e-002, 5.05776368e-002, -8.39272514e-002, - 3.02607536e-001, 2.14085236e-001, 3.62470061e-001, - -1.67579457e-001, 1.59429029e-001, 2.89740264e-001, - 2.30624706e-001, 5.86073473e-002, 9.54948366e-003, - 7.72162080e-002, 3.04335654e-002, 6.49370253e-004, - -1.87737169e-004, 7.54403742e-003, 7.10637402e-003, - -1.28461560e-002, 4.53343801e-002, 4.66500409e-002, - 7.08684921e-002, -5.34336083e-002, 4.19693179e-002, - 7.20108747e-002, 6.20908476e-002, 2.18614750e-003, - 1.07705803e-003, 8.83576367e-003, 4.50497214e-003, - -9.50324698e-004, 3.47396568e-003, 6.58482732e-003, - 9.47102811e-003, 1.81556232e-002, 7.84319714e-002, - 4.78195958e-002, 1.05147243e-001, -7.89934956e-003, - 8.52155089e-002, 4.42460850e-002, 1.12552427e-001, - -2.19299644e-003, 4.61396761e-003, 8.35671369e-003, - 9.85286571e-003, 1.84137858e-002, 5.82196303e-002, - 5.98505400e-002, 7.60253593e-002, 2.69996971e-001, - 2.74832577e-001, 3.47938180e-001, 4.02189672e-001, - -1.62171215e-001, 2.29011938e-001, 2.56482810e-001, - 3.33429575e-001, -7.62702227e-002, 2.83829905e-002, - 1.13329701e-001, 5.18410094e-002, 2.53723878e-002, - 2.85243113e-002, 4.37922440e-002, 4.29126285e-002, - 2.55283918e-002, 5.23957796e-002, 1.32534027e-001, - 1.32073879e-001, -5.68600856e-002, 1.12185292e-002, - 1.46881893e-001, 1.03744917e-001, -8.23501199e-002, - 1.91164147e-002, 1.11492746e-001, 3.73669825e-002, - 1.29195920e-003, 9.62972263e-005, 3.51895741e-003, - 3.24542797e-003, 5.53198915e-004, -7.78890820e-003, - 1.70703549e-002, 1.80437490e-002, -8.09771009e-003, - -7.41679268e-003, 2.04795580e-002, 1.97210610e-002, - -7.19455350e-003, 8.75104975e-004, 1.11770155e-002, - 3.96838132e-003, -5.63427247e-003, 1.11700571e-003, - 1.05389189e-002, 3.67103121e-003, -4.39266488e-002, - -1.29531985e-002, 5.61705716e-002, 2.30689961e-002, - 2.36553513e-002, -8.02992936e-003, 4.12214249e-002, - 2.24872194e-002, 6.58289576e-003, 3.15606827e-003, - 1.10693313e-002, 5.73476916e-003, -6.78739697e-002, - 2.58149044e-003, 9.46369022e-002, 2.38442887e-002, - -3.07767421e-001, -3.99018899e-002, 3.55418146e-001, - 1.05499983e-001, 2.46170253e-001, 9.72394599e-004, - 3.11702579e-001, 1.22805834e-001, 6.14283048e-002, - 5.49100898e-003, 9.00931060e-002, 4.14946601e-002, - -9.00401548e-002, -8.78764503e-003, 1.10800855e-001, - 2.45537031e-002, -2.15711907e-001, 1.72357168e-002, - 2.92681694e-001, 1.09947354e-001, 2.97381401e-001, - 1.44300267e-001, 3.45713973e-001, 1.87802926e-001, - 4.47225459e-002, 7.95229524e-003, 7.51055479e-002, - 3.60214524e-002, -1.11893108e-002, -1.93728833e-003, - 1.40377367e-002, 4.14076168e-003, -8.45494308e-003, - 1.87067688e-002, 4.45654355e-002, 2.84636300e-002, - 4.83300649e-002, 2.63806563e-002, 6.34109676e-002, - 3.93242091e-002, 1.14565599e-003, -3.13568220e-004, - 7.85825402e-003, 5.25389053e-003, 2.44294060e-003, - 2.42750184e-003, 4.78296634e-003, 5.26289502e-003, - 1.14642894e-002, 4.30778749e-002, 3.58578935e-002, - 5.83167672e-002, -2.54779644e-002, 2.60548703e-002, - 4.00348082e-002, 4.51852977e-002, 2.72473117e-004, - 1.01199863e-003, 4.48874431e-003, 4.69636405e-003, - 2.82162335e-002, -3.98120191e-003, 4.15835157e-002, - 3.45985219e-002, 1.76307589e-001, -3.77342924e-002, - 2.83326983e-001, 2.93128550e-001, -2.01874346e-001, - 1.28209829e-001, 2.65954554e-001, 2.59223312e-001, - -1.53193166e-002, 2.28801332e-002, 3.57125364e-002, - 4.00145389e-002, 3.58659215e-002, 2.11239811e-002, - 4.72436063e-002, 4.98791449e-002, 1.55122384e-001, - 1.32576779e-001, 2.15446576e-001, 4.05249864e-001, - -6.00764453e-002, 1.08669348e-001, 1.60631984e-001, - 3.16573739e-001, -2.39903964e-002, 2.32544169e-002, - 4.16386761e-002, 4.67085503e-002, 7.38923787e-004, - -4.11611376e-003, 3.86038423e-003, 1.05979079e-002, - 8.22571758e-003, -7.49883801e-002, 2.72722989e-002, - 1.18851371e-001, 3.34989047e-003, -7.67947137e-002, - 2.43261214e-002, 1.26759887e-001, 2.31939812e-005, - -6.89504948e-003, 4.86843893e-003, 1.34549541e-002, - 2.65835179e-003, -5.65463037e-004, 5.64496685e-003, - 3.90065624e-003, 2.91622207e-002, 2.32059136e-002, - 4.20165956e-002, 3.74335647e-002, 9.71937552e-003, - 2.71006674e-002, 3.54648158e-002, 3.89718972e-002, - -1.35485758e-003, 9.09453142e-004, 5.36696380e-003, - 4.35321592e-003, 3.99548337e-002, 2.01310962e-003, - 5.14443405e-002, 2.45061573e-002, 2.72968382e-001, - 9.49313790e-002, 3.32186699e-001, 2.00856119e-001, - 3.70291783e-003, 8.99963528e-002, 2.08381787e-001, - 1.65421546e-001, -3.46575342e-002, -2.17440049e-003, - 4.96577024e-002, 2.92146336e-002, 3.73614132e-002, - -1.06232213e-002, 4.80567254e-002, 2.60160547e-002, - 2.44251937e-001, -2.38601699e-001, 3.36373001e-001, - 2.88420022e-001, 7.25727007e-002, -1.59560084e-001, - 3.35377723e-001, 2.24177107e-001, -4.14708853e-002, - -1.46759031e-002, 6.09082989e-002, 3.41559350e-002, - 1.51184702e-003, -2.90232274e-004, 4.55083698e-003, - 3.64449969e-003, 2.29397714e-002, -2.53504254e-002, - 4.06986549e-002, 4.02112268e-002, 1.73116364e-002, - -4.11341190e-002, 5.39263301e-002, 5.31164370e-002, - -1.01077603e-003, -1.42367091e-003, 6.80600898e-003, - 5.65620651e-003, -1.76228117e-004, -5.34199527e-004, - 5.67487488e-003, 2.23183190e-003, 1.00441445e-002, - 7.46616337e-004, 7.61599541e-002, 2.19836459e-002, - -2.33763756e-004, 4.26920597e-003, 2.85301916e-002, - 1.94503982e-002, -7.69298174e-004, 2.36380074e-004, - 5.38321771e-003, 2.52745836e-003, -4.30645328e-003, - -2.92758141e-005, 3.92679237e-002, 1.11128734e-002, - 9.78806987e-002, 1.06478063e-002, 6.43846095e-001, - 9.31661576e-002, -1.21229384e-002, 5.43623371e-003, - 1.53589845e-001, 8.94345790e-002, 6.71541085e-004, - 1.33169279e-003, 4.55232151e-002, 1.72809772e-002, - -8.95455573e-003, -5.90395299e-004, 4.25957069e-002, - 1.18017578e-002, 1.24113195e-001, 3.96754313e-003, - 5.90151131e-001, 9.92434621e-002, -3.63675840e-002, - 2.11613905e-003, 1.64076895e-001, 8.79030004e-002, - 4.84205550e-003, -1.11923995e-003, 4.67619449e-002, - 1.71091389e-002, -2.68041942e-004, 7.30468659e-004, - 5.96465589e-003, 2.45779031e-003, 1.50468834e-002, - -6.35766541e-004, 6.48049563e-002, 2.05660351e-002, - -4.61802725e-003, -8.25893949e-004, 2.85643954e-002, - 1.90742183e-002, 2.14510248e-004, 3.58698853e-005, - 5.31338062e-003, 3.06957681e-003, -2.19711731e-003, - 3.75989545e-003, 5.80938021e-003, 7.42135942e-003, - -9.40195657e-003, 3.56943309e-002, 3.21472399e-002, - 5.63004613e-002, 8.58347397e-003, 3.19095366e-002, - 3.51317450e-002, 5.18210232e-002, -1.70136441e-003, - 1.37849222e-003, 4.93236491e-003, 4.72068554e-003, - 2.35266145e-002, 3.17094140e-002, 4.70931530e-002, - 4.34285253e-002, -1.49594143e-001, 3.21884453e-001, - 3.03081244e-001, 3.71884495e-001, -4.83593196e-002, - 2.15402558e-001, 2.69723415e-001, 2.87446797e-001, - -4.87914644e-002, 9.16649494e-003, 6.32152185e-002, - 3.05984486e-002, 3.00699007e-002, -9.80056543e-003, - 4.73630391e-002, 2.98659895e-002, -1.28402382e-001, - -1.13855503e-001, 2.78228402e-001, 1.81477636e-001, - -1.15977041e-001, -6.86891750e-002, 2.60790676e-001, - 1.68829679e-001, -4.92806546e-002, -3.75257782e-003, - 6.63003176e-002, 2.87662987e-002, 4.72040119e-004, - -2.25436292e-003, 5.13981981e-003, 5.31879393e-003, - -1.36627564e-002, -3.26122828e-002, 4.23725657e-002, - 4.75674570e-002, -1.11756455e-002, -3.11497133e-002, - 3.84742841e-002, 4.72233221e-002, -3.76263307e-003, - -6.80940459e-004, 6.61981571e-003, 4.39543417e-003, - 1.71720167e-003, -8.93132761e-003, 6.45093853e-003, - 1.30165806e-002, -8.00827332e-003, -1.05911352e-001, - 4.30164151e-002, 1.23715602e-001, -2.77498970e-003, - -9.34844688e-002, 5.47177382e-002, 1.09229900e-001, - 1.67970490e-002, -1.49340834e-003, 2.46030111e-002, - 9.84680559e-003, -2.68313084e-002, -2.39563501e-003, - 5.02900258e-002, 3.45724262e-002, -4.43177558e-002, - -1.25150278e-001, 2.02189520e-001, 2.34211206e-001, - 3.57102565e-002, -1.00962497e-001, 2.73136109e-001, - 1.87526479e-001, 2.32135013e-001, 7.18920678e-003, - 2.87316889e-001, 3.54088843e-002, -3.48386765e-002, - 1.92256700e-002, 5.87226525e-002, 3.49941440e-002, - -1.15558021e-001, 9.01991948e-002, 2.35425428e-001, - 1.86392307e-001, 4.61034589e-002, 5.44133782e-003, - 3.05017442e-001, 1.43867388e-001, 2.43313387e-001, - -4.91690589e-003, 3.06260169e-001, 3.67767029e-002, - -3.33225960e-003, 2.58146174e-004, 8.49048421e-003, - 5.97780198e-003, -2.19489560e-002, 1.84392650e-002, - 4.72883843e-002, 4.19946574e-002, -2.15081847e-003, - 1.52263707e-002, 5.23376577e-002, 2.96893362e-002, - 2.73985155e-002, -2.24781269e-003, 3.51949856e-002, - 5.32059791e-003, -4.98826965e-004, -7.86616467e-004, - 5.61828911e-003, 3.92779103e-003, 2.08379934e-003, - -1.51677011e-002, 3.29723507e-002, 3.30230743e-002, - 2.20715571e-002, -1.84691418e-002, 6.26353621e-002, - 3.37988846e-002, 4.13050177e-003, 1.22256705e-003, - 1.01178661e-002, 3.57012916e-003, -1.90855991e-002, - -1.09308679e-002, 3.76139171e-002, 2.53926367e-002, - 1.47567810e-002, -1.33801445e-001, 1.60411566e-001, - 1.82990491e-001, 2.73802191e-001, -3.44406441e-002, - 4.56929833e-001, 1.33629382e-001, 3.12037449e-002, - 3.27451318e-003, 7.54952207e-002, 1.93592999e-002, - -2.17034556e-002, 2.11804714e-002, 3.84898819e-002, - 3.37422490e-002, 5.62095223e-003, 1.79407462e-001, - 1.46931037e-001, 2.38333121e-001, 3.15349489e-001, - 1.25552535e-001, 4.25946593e-001, 2.01110229e-001, - 2.50952411e-002, -1.48531585e-003, 6.91053867e-002, - 2.34109145e-002, 6.31303468e-004, 2.79925787e-003, - 5.48894471e-003, 6.71290560e-003, 7.32302084e-004, - 4.11350690e-002, 3.49964574e-002, 5.92407137e-002, - 2.18003839e-002, 3.85633595e-002, 4.91592735e-002, - 5.43430112e-002, 5.02467796e-004, -8.96583661e-004, - 7.22839311e-003, 4.10622451e-003, -2.36469693e-003, - 2.71263561e-004, 4.97689843e-003, 3.04938667e-003, - -9.83248278e-003, -5.59934229e-003, 3.15804891e-002, - 2.42151152e-002, -1.10283270e-002, -8.19462910e-003, - 6.34602383e-002, 2.45484617e-002, 1.01309158e-002, - 5.39142871e-004, 1.27740791e-002, 3.16218100e-003, - -2.48553865e-002, 2.47672549e-004, 3.89128886e-002, - 2.04578023e-002, -5.01269698e-002, -1.79246217e-002, - 1.74967915e-001, 1.20787494e-001, -8.15110952e-002, - -3.50112165e-003, 5.26133418e-001, 1.11585997e-001, - 8.42057317e-002, 7.11752940e-003, 9.90618318e-002, - 1.98723711e-002, -2.05349773e-002, 1.48062026e-002, - 3.58609930e-002, 2.93250419e-002, -6.66814819e-002, - 1.24696851e-001, 1.90271363e-001, 1.94310576e-001, - -4.31094393e-002, 1.07073799e-001, 5.53210735e-001, - 1.76720738e-001, 6.80803806e-002, 7.76414759e-003, - 8.86258036e-002, 2.51701549e-002, -9.97185474e-004, - 1.86643552e-003, 4.12429031e-003, 5.09901671e-003, - -1.14785125e-002, 3.02784890e-002, 3.67218703e-002, - 4.80510853e-002, -8.64030886e-003, 3.48282754e-002, - 7.25332201e-002, 5.03628068e-002, 4.53823153e-003, - -2.16682292e-005, 9.85342171e-003, 3.73164890e-003, - -1.94692941e-004, 1.71271991e-003, 3.81085323e-003, - 1.17606670e-002, 2.12176330e-003, 1.07581364e-002, - 2.12716572e-002, 9.01039541e-002, 1.99449761e-003, - 5.49176941e-003, 2.23083571e-002, 9.19591039e-002, - 5.37800894e-004, -9.54411880e-005, 4.15082136e-003, - 1.18904673e-002, 3.01529299e-002, 4.13118601e-002, - 4.22038250e-002, 5.79419136e-002, 5.27448878e-002, - 3.77283901e-001, 1.23703599e-001, 4.33074206e-001, - -2.83136871e-002, 3.73059660e-001, 1.09496817e-001, - 4.29316461e-001, -2.27331743e-002, 4.62900698e-002, - 3.62023115e-002, 6.08008727e-002, 3.39721180e-002, - -1.38534941e-002, 4.56226394e-002, 3.66528183e-002, - 6.56210333e-002, -9.41200480e-002, 1.24774344e-001, - 1.70637861e-001, -3.35848071e-002, -7.47112632e-002, - 9.39033329e-002, 1.57536492e-001, -2.45438609e-002, - -1.09931203e-002, 3.61485034e-002, 2.91584730e-002, - 5.10202895e-004, -6.71185786e-003, 4.67723422e-003, - 1.45036038e-002, 4.27734805e-003, -9.38326120e-002, - 2.82978676e-002, 1.46824166e-001, 1.11081827e-004, - -9.86573100e-002, 2.68268771e-002, 1.52261481e-001, - -3.17375758e-004, -9.29237530e-003, 4.71507153e-003, - 1.67271588e-002, 1.07489747e-003, -1.18991057e-003, - 6.00941805e-003, 9.55977477e-003, -2.57819407e-002, - -6.94254488e-002, 4.95845899e-002, 1.07062519e-001, - -2.04380769e-002, -7.40858763e-002, 4.44759540e-002, - 9.78846699e-002, -4.33005480e-004, -4.06903401e-003, - 5.85848466e-003, 8.29321519e-003, -3.31305116e-002, - -2.69517358e-002, 5.40309027e-002, 6.49120063e-002, - -1.23842880e-001, -3.10098212e-002, 3.07431936e-001, - 4.69439119e-001, 4.42483369e-003, 1.87655576e-002, - 1.86200306e-001, 2.93116808e-001, 1.90981738e-002, - -3.99299804e-003, 3.81703265e-002, 3.83973718e-002, - -3.66593599e-002, 1.24313589e-003, 5.99002540e-002, - 4.75870967e-002, -7.70235360e-002, -9.95777473e-002, - 2.46509165e-001, 3.29576254e-001, -2.98869843e-003, - -5.05827479e-002, 1.68728873e-001, 3.08404684e-001, - 2.08542645e-002, -4.97112691e-004, 3.80443744e-002, - 4.25783657e-002, -2.72934278e-003, 2.35216878e-003, - 7.98216090e-003, 7.24953227e-003, -8.41944944e-003, - 5.20406775e-002, 4.15498167e-002, 7.54703060e-002, - 2.09320709e-003, 4.82900105e-002, 2.98782587e-002, - 7.59602860e-002, -3.79317557e-004, 3.18133226e-003, - 5.33585902e-003, 8.91746208e-003, -5.50332852e-003, - -3.13695782e-004, 9.50451847e-003, 4.60966816e-003, - 2.61870660e-002, -2.87075751e-002, 6.48848787e-002, - 4.65245917e-002, -1.32335545e-002, -3.22434679e-002, - 4.63708863e-002, 4.87490520e-002, 2.64079613e-003, - -3.19659594e-005, 6.92713074e-003, 4.87097772e-003, - -8.67482945e-002, -5.72921243e-003, 1.05465174e-001, - 3.01229078e-002, 1.85530752e-001, -1.34304926e-001, - 4.42220986e-001, 2.36426502e-001, -1.47165507e-001, - -1.71595007e-001, 4.05910671e-001, 2.53136992e-001, - 6.41245618e-002, -5.82069391e-003, 7.76707307e-002, - 3.28559391e-002, -8.10010284e-002, -3.03129083e-003, - 1.00331925e-001, 2.66331974e-002, -2.57333163e-002, - 6.04735408e-003, 2.60613412e-001, 1.71866491e-001, - 6.49271086e-002, 7.12581153e-004, 2.52900690e-001, - 1.75866202e-001, 5.03133722e-002, -6.98494306e-003, - 6.55571073e-002, 3.62087376e-002, -5.91531536e-003, - -1.52604806e-003, 1.00624245e-002, 3.90631845e-003, - -3.94150894e-003, 1.84762366e-002, 3.82918678e-002, - 3.58017348e-002, 2.76802829e-003, 1.56035861e-002, - 3.49525735e-002, 3.27214971e-002, 2.71142321e-003, - -1.50907249e-003, 6.63377158e-003, 5.65727241e-003, - 1.62432482e-003, 1.51139572e-002, 5.10483468e-003, - 2.93546505e-002, -6.80830190e-003, 1.22371681e-001, - 2.70263217e-002, 2.43943110e-001, -1.08346418e-002, - 1.23633638e-001, 3.69075872e-002, 2.58595824e-001, - 1.35764503e-003, 1.14808204e-002, 8.93679913e-003, - 2.93713678e-002, 1.93250347e-002, 1.10404612e-003, - 3.76472361e-002, 3.26946750e-002, 2.68288609e-002, - 4.47165929e-002, 1.21133536e-001, 1.48674950e-001, - -5.36087714e-002, 8.12152848e-002, 1.42229661e-001, - 1.68108374e-001, -2.62820795e-002, 1.49120465e-002, - 6.11291900e-002, 3.81312966e-002, 3.03923637e-002, - -4.70609963e-002, 5.39006032e-002, 6.72720820e-002, - 7.45122060e-002, -2.47739926e-001, 1.71537191e-001, - 3.40257943e-001, -2.40236260e-002, -1.87481359e-001, - 1.16379187e-001, 3.00258100e-001, -3.60659361e-002, - -2.32096966e-002, 6.63679615e-002, 3.91180031e-002, - -1.65261546e-004, -2.86889030e-003, 5.36406226e-003, - 3.43324691e-002, 6.08660420e-003, -6.84589967e-002, - 2.89289989e-002, 2.96898514e-001, 5.18821273e-003, - -8.85908157e-002, 2.95521375e-002, 3.11457753e-001, - 4.32452798e-004, -1.02034705e-002, 8.39250442e-003, - 3.45046110e-002, -3.30023060e-004, 3.17715248e-003, - 3.90961440e-003, 7.81657267e-003, -4.25945688e-003, - 5.54775409e-002, 2.98374612e-002, 8.37200955e-002, - 1.04939081e-002, 7.78801069e-002, 3.21689472e-002, - 1.00135699e-001, 1.49617472e-003, 7.07556307e-003, - 5.36045991e-003, 1.14625357e-002, 2.16668714e-002, - 3.12171318e-002, 3.89262103e-002, 4.99484353e-002, - 1.24280844e-002, 2.80992955e-001, 2.04940200e-001, - 3.84459466e-001, 3.79510187e-002, 8.29645023e-002, - 2.71342307e-001, 4.24742907e-001, -2.89629418e-002, - 2.59109633e-003, 5.30277751e-002, 5.30903228e-002, - 2.95954347e-002, -1.47759216e-002, 4.26768772e-002, - 3.95781994e-002, 9.72620547e-002, -4.15433049e-002, - 1.77941635e-001, 1.86567605e-001, -1.10366285e-001, - 1.12868018e-001, 2.45807901e-001, 2.77942806e-001, - -2.40960922e-002, 7.10086804e-003, 4.93664965e-002, - 4.44020294e-002, 1.43286411e-003, -3.16695170e-003, - 4.64364095e-003, 1.10888304e-002, 1.19861467e-002, - -6.07318282e-002, 3.06084994e-002, 9.13160816e-002, - -3.47453915e-003, -7.37789050e-002, 3.10838483e-002, - 1.02456376e-001, -6.91589317e-004, -4.94363392e-003, - 5.42175956e-003, 9.50117595e-003, -8.57459102e-003, - 2.97975377e-003, 1.14271203e-002, 4.72496264e-003, - -2.90696602e-002, -6.36231015e-003, 4.15226035e-002, - 2.59576160e-002, 4.10870137e-003, -9.68039781e-003, - 2.58795638e-002, 2.38951892e-002, 8.85120127e-003, - 2.62349402e-003, 1.26148295e-002, 4.59877495e-003, - -6.92161918e-002, 1.25312656e-002, 8.19750503e-002, - 2.83107944e-002, -2.35732719e-001, 9.22704041e-002, - 3.02019149e-001, 1.64944336e-001, -9.94042493e-003, - 1.20740589e-002, 2.13061020e-001, 1.15125932e-001, - 1.01787709e-001, 9.64067876e-003, 1.22909263e-001, - 2.96113156e-002, -4.75387610e-002, 1.16195697e-002, - 6.30609840e-002, 2.62219533e-002, -2.19712719e-001, - 2.54752904e-001, 3.41269583e-001, 2.74984628e-001, - -1.78804323e-001, 1.44309953e-001, 3.60315591e-001, - 1.82486162e-001, 1.07831284e-001, 5.36960491e-004, - 1.28269121e-001, 2.89877243e-002, -1.15892920e-003, - 8.86278169e-004, 4.99420566e-003, 4.31421073e-003, - -2.81735342e-002, 3.83082591e-002, 5.08154146e-002, - 5.05706295e-002, -3.88417281e-002, 4.11613360e-002, - 6.02349937e-002, 5.05011939e-002, 8.50107521e-003, - 1.57887454e-003, 1.21016474e-002, 4.79667401e-003, - -4.61413106e-003, 1.58571568e-003, 1.62567664e-002, - 6.40946953e-003, -6.37550652e-002, -3.73516455e-002, - 8.92712772e-002, 4.82163467e-002, -9.38306912e-004, - -1.26114683e-002, 3.17917317e-002, 2.59730443e-002, - 6.30235812e-003, 9.79930395e-004, 8.93434975e-003, - 4.55480255e-003, -1.22770630e-001, -1.82586201e-002, - 1.63378537e-001, 4.53053974e-002, -2.49445423e-001, - -9.78159830e-002, 4.06328231e-001, 1.81529045e-001, - 5.69055341e-002, 4.17296495e-003, 1.91178754e-001, - 1.24619648e-001, 7.25165755e-002, 2.77265068e-002, - 8.45057741e-002, 4.24199961e-002, -1.56968296e-001, - -4.51552048e-002, 1.78847060e-001, 5.68467490e-002, - -5.55407405e-002, 5.34253474e-003, 2.13429630e-001, - 1.28754288e-001, 2.77069986e-001, 1.92105964e-001, - 3.48773062e-001, 2.45155275e-001, 5.22683784e-002, - 4.13026325e-002, 7.83010274e-002, 5.25132865e-002, - -1.23536279e-002, -2.85793119e-003, 1.55950543e-002, - 6.78951154e-003, 9.51058324e-003, 2.06938069e-002, - 3.47044207e-002, 3.52543294e-002, 6.82940409e-002, - 3.82144079e-002, 7.90959373e-002, 5.63451909e-002, - -1.14804856e-003, -1.74868642e-003, 8.29619635e-003, - 6.90209121e-003, 4.90573235e-003, 7.01154349e-003, - 1.04373451e-002, 1.14463856e-002, -7.27631375e-002, - -1.00009851e-001, 1.08693145e-001, 1.33295834e-001, - -3.79429478e-003, -7.52723068e-002, 6.61587194e-002, - 9.39128622e-002, 4.15488752e-003, -2.05434440e-003, - 9.47639346e-003, 7.07148015e-003, -8.66178796e-002, - -1.11137047e-001, 1.15494154e-001, 1.29684597e-001, - -2.01659784e-001, -2.81885743e-001, 4.29140329e-001, - 4.00116712e-001, 1.61063984e-001, -8.19818452e-002, - 2.60927618e-001, 1.89129755e-001, 5.61236069e-002, - -8.51336867e-003, 8.05868953e-002, 4.24915068e-002, - -4.22554202e-002, -2.53797993e-002, 5.62871285e-002, - 4.70983610e-002, 3.87868173e-002, 2.02770121e-002, - 1.43757090e-001, 1.18835725e-001, 1.27099276e-001, - -6.51791692e-003, 2.09670737e-001, 1.15584679e-001, - 6.31195456e-002, -2.55762204e-003, 8.65577236e-002, - 3.88255157e-002, -1.28198927e-003, 7.71958032e-004, - 4.37876116e-003, 3.35119641e-003, 3.08339926e-003, - 1.05303507e-002, 2.30713673e-002, 2.04586312e-002, - 2.07124427e-002, 1.13012847e-002, 3.70752551e-002, - 2.14702673e-002, 4.98828478e-003, 8.64515532e-005, - 1.02276932e-002, 4.47560521e-003, -3.81779601e-003, - 1.36464753e-003, 5.58763556e-003, 3.65285156e-003, - -4.13655071e-003, -5.56299556e-003, 1.75176114e-002, - 1.67321023e-002, 9.22260713e-003, -5.00429096e-003, - 2.14064661e-002, 1.67557038e-002, 4.17866139e-003, - 1.42195355e-003, 6.52679848e-003, 3.76927550e-003, - -6.03038371e-002, 4.27438617e-002, 6.91918805e-002, - 5.11959530e-002, -8.43329057e-002, 4.98080403e-002, - 1.49911895e-001, 1.18057325e-001, 1.04593985e-001, - 2.44206432e-002, 1.62239209e-001, 9.61746275e-002, - 4.34135161e-002, 1.62015241e-002, 5.98978065e-002, - 2.97506563e-002, -3.72296572e-002, 4.72790524e-002, - 5.81042133e-002, 5.60080595e-002, -3.67406726e-001, - 3.74141395e-001, 4.02259678e-001, 4.01143730e-001, - 1.35038972e-001, 1.40202254e-001, 2.42719695e-001, - 1.98769599e-001, 4.19962630e-002, 1.91215836e-002, - 6.50438666e-002, 3.53781097e-002, 1.36398175e-003, - -1.09967077e-003, 4.70998371e-003, 3.86128225e-003, - -4.15291637e-002, 4.25053686e-002, 5.39959408e-002, - 5.66324145e-002, -7.43458467e-003, 6.61409795e-002, - 5.26940823e-002, 7.44498447e-002, 1.14739442e-003, - 1.81748043e-003, 7.46846106e-003, 5.53872529e-003, - 6.27481728e-004, 1.52442732e-003, 4.45928006e-003, - 4.75080032e-003, 7.07501778e-004, 2.47310828e-002, - 2.87153572e-002, 3.89706306e-002, -2.13905312e-002, - 2.43685376e-002, 3.46790068e-002, 4.49020863e-002, - -2.21734299e-004, 8.14921339e-004, 3.54345469e-003, - 3.53529374e-003, 6.09852653e-003, 1.03145456e-002, - 3.44479829e-002, 3.09231319e-002, 4.62041944e-002, - 4.32460047e-002, 1.60633460e-001, 1.69408277e-001, - -6.87505007e-002, 1.61549971e-001, 2.42016345e-001, - 2.36310095e-001, -2.49767676e-002, 2.56587043e-002, - 4.44714427e-002, 4.07596119e-002, 1.95577908e-002, - 1.01010166e-002, 3.99741977e-002, 4.51948084e-002, - -1.00405268e-001, 2.92661265e-002, 2.81227231e-001, - 5.13678908e-001, -5.30544482e-002, -2.27696195e-001, - 2.04092368e-001, 4.09497559e-001, -3.05421073e-002, - -1.87538732e-002, 4.71128188e-002, 5.32201193e-002, - -1.13892462e-003, -7.22491043e-003, 4.28033154e-003, - 8.88159592e-003, -2.12664083e-002, -4.09835875e-002, - 3.67105380e-002, 6.61041364e-002, -1.34289660e-003, - -1.23327477e-002, 2.34996788e-002, 5.33899590e-002, - 8.63789639e-004, -8.73284182e-004, 5.06539317e-003, - 5.96527616e-003, -1.24043529e-003, 1.69587471e-002, - 4.23492491e-003, 2.35944670e-002, -5.27649047e-003, - 1.24127597e-001, 2.44911760e-002, 1.72694236e-001, - 1.07771892e-003, 1.20087355e-001, 2.75717136e-002, - 1.65300459e-001, -6.10584219e-004, 1.12859104e-002, - 8.22739769e-003, 1.72632206e-002, 7.42112519e-003, - 4.10377905e-002, 2.15362459e-002, 5.36268912e-002, - -3.01968195e-002, 3.05822313e-001, 1.20120794e-001, - 3.80827576e-001, -6.93408921e-002, 2.67409116e-001, - 1.83031201e-001, 4.11002576e-001, -9.02508497e-002, - 7.57188257e-003, 1.25208661e-001, 6.61415607e-002, - 6.03615632e-003, 6.59306243e-004, 1.70226004e-002, - 1.68809928e-002, -2.18584742e-002, -1.00567639e-002, - 1.06227852e-001, 1.16301544e-001, -1.85717717e-001, - -4.64929081e-002, 2.54150271e-001, 2.15452880e-001, - -9.15614218e-002, -1.52458167e-002, 1.43167078e-001, - 5.70368543e-002, 4.25272992e-005, -2.64925853e-004, - 2.54304917e-003, 2.60409177e-003, -7.49179302e-003, - -1.01252468e-002, 2.40737498e-002, 2.64798440e-002, - -4.21637930e-002, -2.33797971e-002, 5.65421507e-002, - 4.79805171e-002, -4.87917429e-003, 1.91434287e-003, - 1.66190788e-002, 7.67231965e-003, 1.33072352e-003, - -9.78686076e-005, 6.78903656e-003, 5.45646437e-003, - 7.46300817e-002, 4.15001214e-002, 8.67150202e-002, - 6.17935732e-002, 2.94497143e-002, 3.05122025e-002, - 4.32188883e-002, 3.93493064e-002, -2.84205220e-004, - 1.19737082e-003, 2.87835882e-003, 2.84028705e-003, - 7.80180693e-002, 2.40470823e-002, 9.25106257e-002, - 4.90432046e-002, 3.28646153e-001, 2.82004774e-001, - 3.88466448e-001, 3.35129350e-001, 4.39490518e-003, - 2.74974257e-002, 1.02260388e-001, 8.82497206e-002, - -8.18342436e-003, 7.36656148e-005, 1.67623125e-002, - 1.22095998e-002, 7.77934119e-002, -1.76567510e-002, - 9.48676094e-002, 4.40776534e-002, 3.03172678e-001, - -1.65985718e-001, 3.78487647e-001, 2.34448060e-001, - -2.09479611e-002, -3.93367112e-002, 1.00874558e-001, - 9.62910578e-002, -8.45210906e-003, -3.97811178e-003, - 1.85004156e-002, 1.45347575e-002, 3.42289405e-003, - 3.10582225e-004, 8.34951270e-003, 6.17939001e-003, - 5.71831353e-002, -4.34696265e-002, 7.29855224e-002, - 6.59330711e-002, 1.12361042e-002, -3.51147316e-002, - 3.37003097e-002, 4.98397127e-002, 2.37776461e-004, - -2.09215353e-003, 3.20749125e-003, 4.67557507e-003, - 1.08460465e-003, -1.58078002e-003, 6.26542559e-003, - 6.23548077e-003, -2.28077471e-002, -4.37737815e-002, - 5.18673621e-002, 6.31949753e-002, 1.66369472e-002, - -4.78324890e-002, 6.45286143e-002, 6.34730458e-002, - 1.50655920e-003, -2.60766737e-005, 8.24974477e-003, - 5.57620451e-003, -3.00320406e-002, -3.99100892e-002, - 5.33652529e-002, 5.46750389e-002, -1.47179499e-001, - -3.00637394e-001, 2.83807874e-001, 3.55758488e-001, - 1.91871271e-001, -2.21259698e-001, 3.75735968e-001, - 2.86309928e-001, 4.76833917e-002, -3.76007147e-002, - 7.80327916e-002, 5.48400320e-002, -3.01048476e-002, - 3.23646958e-003, 4.76263426e-002, 3.86994369e-002, - -8.79256949e-002, 9.28635299e-002, 1.89324200e-001, - 1.88549146e-001, 1.00816645e-001, 4.14951667e-002, - 2.07787663e-001, 1.70501798e-001, 4.76320609e-002, - -1.75777022e-002, 6.56624660e-002, 4.30362560e-002, - -8.78426246e-004, 5.29132842e-004, 5.55528468e-003, - 5.45634096e-003, -1.32802734e-002, 1.97098907e-002, - 3.53509970e-002, 3.88027318e-002, 5.43550914e-003, - 1.95314735e-002, 3.36822830e-002, 3.63000594e-002, - 2.96453969e-003, 3.45997338e-004, 6.66336855e-003, - 5.29111736e-003, -4.24324255e-003, -1.72550317e-005, - 8.91301874e-003, 7.58611364e-003, -1.47588598e-002, - -8.53176042e-002, 4.68110517e-002, 1.22012451e-001, - -2.70807813e-003, -9.16026831e-002, 3.34098712e-002, - 1.31695464e-001, -2.50290235e-004, -6.12248341e-003, - 5.63205639e-003, 1.30844777e-002, -5.05484082e-002, - 1.11912768e-002, 8.04531351e-002, 2.66444273e-002, - -3.40809524e-001, -7.44860852e-003, 3.89816910e-001, - 1.78419098e-001, 5.67384027e-002, -6.00901991e-002, - 1.36478916e-001, 1.75254881e-001, 2.98385266e-002, - -7.55122490e-003, 4.65409905e-002, 3.08469962e-002, - -3.72882560e-002, 1.59910286e-003, 7.31606185e-002, - 1.83523968e-002, -4.18866664e-001, 1.87555254e-002, - 4.60109442e-001, 1.25374317e-001, 5.54817505e-002, - 5.60201751e-003, 1.36322334e-001, 1.19310990e-001, - 3.05398945e-002, 4.16364666e-004, 4.75649908e-002, - 2.40068492e-002, -3.85612086e-003, -1.03118038e-003, - 1.00460229e-002, 3.32013937e-003, -5.59931435e-002, - 1.76706724e-002, 6.81127012e-002, 3.11804209e-002, - 5.25416760e-003, 1.70073118e-002, 2.52347738e-002, - 3.01045384e-002, 2.65405443e-003, 5.34436549e-004, - 6.05701888e-003, 4.12437506e-003, 7.66065205e-004, - 5.30321384e-003, 8.67406931e-003, 1.02001289e-002, - 1.59658138e-002, 1.07309990e-001, 4.03410159e-002, - 1.32884935e-001, -1.72508936e-002, 9.45583358e-002, - 3.88353541e-002, 1.25197768e-001, -1.78346282e-003, - 4.89227101e-003, 7.68853165e-003, 1.05564548e-002, - 3.69745493e-002, -2.88413925e-004, 1.05328083e-001, - 4.49599028e-002, 2.87217796e-001, 1.14178071e-002, - 3.53052557e-001, 3.00575525e-001, -1.33457348e-001, - 1.74220204e-001, 2.16695338e-001, 2.54705846e-001, - -7.01925606e-002, 2.20581442e-002, 1.05166577e-001, - 4.44618426e-002, 5.86991496e-002, 3.40926461e-002, - 1.09637685e-001, 5.26126847e-002, 1.96565643e-001, - 1.58195183e-001, 2.68987775e-001, 2.49975741e-001, - -1.09739415e-001, -1.06912572e-002, 2.00793684e-001, - 1.40791908e-001, -7.35393167e-002, -1.65361294e-003, - 1.07865565e-001, 3.31357419e-002, 8.88100453e-003, - 9.85716237e-004, 1.27087692e-002, 5.39219286e-003, - 9.91348363e-003, -1.07484180e-002, 2.90263444e-002, - 2.51683239e-002, -2.16029286e-002, -1.00446679e-002, - 3.56367938e-002, 2.37711612e-002, -6.34079706e-003, - 1.51869899e-004, 1.31145632e-002, 4.09506168e-003, - 6.38593966e-003, 4.71096544e-004, 2.03711074e-002, - 8.41846317e-003, 3.48604172e-002, 5.17429113e-002, - 8.17406625e-002, 7.47280493e-002, -5.16920537e-003, - 3.78000624e-002, 5.09400964e-002, 5.53336181e-002, - -1.32919326e-002, -3.22934403e-003, 2.13203765e-002, - 7.96795171e-003, 1.42224967e-001, 2.76892651e-002, - 2.02975690e-001, 5.78789562e-002, 1.21760421e-001, - 1.44251794e-001, 2.75746256e-001, 2.17271656e-001, - -1.88143492e-001, 5.02246171e-002, 3.07975233e-001, - 1.68761656e-001, -1.33560091e-001, -1.00740539e-002, - 1.99939236e-001, 4.24872711e-002, 1.41997561e-001, - 2.55586021e-002, 1.81826606e-001, 4.75769751e-002, - 1.72120780e-002, -3.24046016e-002, 1.71318278e-001, - 1.10139832e-001, -2.49061450e-001, -4.86445092e-002, - 3.64622325e-001, 1.38596743e-001, -1.17098615e-001, - -5.54556632e-003, 1.98052034e-001, 3.79107259e-002, - 1.01807741e-002, 1.03542686e-003, 1.61165111e-002, - 4.86413948e-003, 4.28371644e-003, -1.15187988e-002, - 3.40575650e-002, 2.42045857e-002, -4.84566949e-002, - -1.84776504e-002, 6.59929141e-002, 3.23043913e-002, - -8.26447364e-003, 4.93927801e-004, 2.13816408e-002, - 6.07682345e-003, 2.56850407e-003, -1.28260267e-003, - 5.59888640e-003, 6.14566822e-003, -6.38986239e-003, - -3.07733566e-002, 3.60840261e-002, 5.25087453e-002, - 6.62272237e-003, -4.63882089e-002, 4.80177589e-002, - 6.12564832e-002, 1.01628341e-003, -3.74758616e-004, - 4.97409655e-003, 4.01774514e-003, -7.51104532e-003, - -3.90391611e-002, 3.92462909e-002, 5.13733700e-002, - -4.44275774e-002, -2.56930411e-001, 2.22605705e-001, - 3.46573979e-001, 1.74536079e-001, -1.35904178e-001, - 4.05359715e-001, 2.68215001e-001, 3.12223732e-002, - -1.44030498e-002, 5.22563234e-002, 3.58880423e-002, - -1.39208483e-002, -4.40870784e-003, 2.99210493e-002, - 2.89249737e-002, 4.76978496e-002, -7.16011878e-003, - 1.62448987e-001, 1.53468177e-001, 1.57207772e-001, - 3.54196131e-002, 3.65552098e-001, 2.92077929e-001, - 3.86876650e-002, -2.06909113e-004, 5.67679070e-002, - 4.61119190e-002, -6.87375665e-004, 8.69148993e-004, - 3.83950188e-003, 4.03268496e-003, 1.55322738e-002, - 1.89655852e-002, 3.50074060e-002, 3.60263996e-002, - 3.49808186e-002, 2.57034209e-002, 5.60228489e-002, - 5.55419587e-002, 1.02251640e-003, -6.30586699e-004, - 5.91233000e-003, 6.59376150e-003, 4.94902069e-003, - -1.86873472e-003, 7.60530448e-003, 3.81611567e-003, - 3.83621752e-002, 1.22824227e-002, 5.14861643e-002, - 2.63252426e-002, -3.31066474e-002, 1.96326599e-002, - 4.68022078e-002, 3.06402706e-002, -4.03741980e-003, - -1.27014332e-003, 9.04868916e-003, 4.32978850e-003, - 3.50493602e-002, -5.26706688e-003, 5.16249985e-002, - 2.03453768e-002, 3.69972736e-001, -4.48030159e-002, - 4.03539360e-001, 1.40177444e-001, -1.77495927e-001, - 5.87065816e-002, 2.60529518e-001, 1.31213188e-001, - -6.54592291e-002, 9.00592562e-003, 8.73926803e-002, - 2.92119682e-002, 3.20146047e-002, -1.84462755e-004, - 4.83794734e-002, 1.88726839e-002, 3.45559090e-001, - -1.09153405e-001, 3.83754492e-001, 1.66600257e-001, - -2.52013002e-002, -6.20860048e-002, 2.35830322e-001, - 1.35787621e-001, -7.76976645e-002, 8.66357703e-003, - 9.31155309e-002, 2.95015704e-002, 2.51894491e-003, - 3.43301217e-004, 5.85913472e-003, 3.22685018e-003, - 3.42968926e-002, -2.38228980e-002, 4.81311865e-002, - 3.42290960e-002, 1.06891291e-002, -2.99723987e-002, - 4.33674715e-002, 3.78877223e-002, -6.81435782e-003, - -1.37472627e-004, 9.90772806e-003, 4.59276605e-003, - 5.71267174e-006, 2.25598109e-003, 7.89625011e-003, - 6.93986239e-003, -6.29912876e-003, 5.53602353e-002, - 4.40634266e-002, 7.72960782e-002, -1.83164403e-002, - 4.93812785e-002, 5.97080141e-002, 6.80798590e-002, - -6.75417599e-004, 5.17717504e-004, 6.02840818e-003, - 4.81458055e-003, 2.07935758e-002, 7.09656207e-003, - 5.07221036e-002, 3.19024101e-002, 6.60482189e-003, - 3.48839723e-002, 2.54149646e-001, 2.26584241e-001, - -2.39599496e-001, 6.61971495e-002, 4.98392135e-001, - 1.71931505e-001, -1.10178320e-002, 3.47741088e-003, - 5.15836999e-002, 2.71472447e-002, 1.53584173e-002, - -2.83181202e-003, 4.02497798e-002, 2.57743280e-002, - 5.73414005e-002, -1.21677248e-002, 1.82024553e-001, - 1.56189561e-001, -2.61440963e-001, -2.22775899e-002, - 4.40052480e-001, 1.50541261e-001, -1.28261326e-002, - 1.69024023e-003, 5.60021028e-002, 2.50953250e-002, - -2.66160467e-004, -2.96943914e-003, 4.78079356e-003, - 6.53145136e-003, -3.84344929e-003, -5.76544441e-002, - 3.48366499e-002, 7.71493688e-002, -1.86418965e-002, - -5.58816157e-002, 5.25868386e-002, 7.48110935e-002, - -5.62298228e-004, 1.44153208e-004, 6.69383118e-003, - 5.38853509e-003, 8.32493324e-003, 6.40204176e-003, - 1.19810151e-002, 1.88249405e-002, 3.11126057e-002, - 1.62196413e-001, 5.59694059e-002, 2.91855901e-001, - -1.99626070e-002, 1.72993764e-001, 3.90656926e-002, - 3.00635219e-001, -3.21668386e-003, 1.36117740e-002, - 1.75082423e-002, 2.29751673e-002, 1.38153225e-001, - 2.68129297e-002, 1.56741038e-001, 7.70549402e-002, - 1.73838720e-001, 1.00775205e-001, 2.75515139e-001, - 2.05310538e-001, -1.33084998e-001, 5.05970381e-002, - 2.04148635e-001, 1.77028626e-001, -1.03618704e-001, - 1.45573216e-002, 1.81394681e-001, 4.61075641e-002, - 1.83382481e-001, -1.87237766e-002, 1.97760582e-001, - 8.73149335e-002, 1.35204062e-001, -2.39239782e-002, - 2.54438788e-001, 1.40628681e-001, -6.43654689e-002, - 1.84144601e-002, 1.50653601e-001, 1.07955910e-001, - -1.11444473e-001, 2.34487262e-002, 1.63343892e-001, - 5.18857129e-002, 1.30196279e-002, 5.62183326e-003, - 1.74581613e-002, 1.48049239e-002, 2.67971400e-002, - -1.60583202e-002, 4.26650457e-002, 3.80941145e-002, - 9.27713700e-004, -3.36274249e-003, 1.59086287e-002, - 1.44939227e-002, -6.58174977e-003, 4.69991053e-003, - 9.44213476e-003, 5.83350006e-003, -2.01070751e-003, - 7.02627050e-003, 8.59917887e-003, 1.52900806e-002, - 1.16412640e-002, 9.72349346e-002, 4.13307138e-002, - 1.38350740e-001, -7.50632258e-003, 1.00314751e-001, - 4.16858792e-002, 1.36290237e-001, -3.98817938e-003, - 5.46907447e-003, 9.24866740e-003, 1.23526109e-002, - 1.61043741e-002, 2.64466926e-002, 5.53895347e-002, - 4.57012281e-002, 8.86022598e-002, 1.05171211e-001, - 1.87518120e-001, 2.07543731e-001, -1.65264010e-001, - 4.09861542e-002, 2.46122658e-001, 2.04669520e-001, - -6.89859763e-002, -3.23389564e-003, 1.06713772e-001, - 4.75442968e-002, 1.83009114e-002, -1.17725953e-002, - 4.16268110e-002, 3.82095501e-002, 4.57344111e-003, - -1.26618043e-001, 1.63819835e-001, 2.25353420e-001, - -2.50031710e-001, -1.85364619e-001, 3.40604752e-001, - 2.81969577e-001, -4.16241288e-002, -2.39963327e-002, - 1.04248293e-001, 5.05095385e-002, -4.44970734e-004, - -1.63897332e-002, 6.22170791e-003, 2.57861931e-002, - -4.54655150e-003, -1.42566949e-001, 3.40666100e-002, - 2.02057734e-001, -1.65482014e-002, -1.20208174e-001, - 4.67606299e-002, 1.78047493e-001, 3.45984241e-004, - -5.14302775e-003, 8.58887658e-003, 1.37583334e-002, - -3.57981975e-004, 7.96325738e-004, 6.17344957e-003, - 4.47339704e-003, 1.30980182e-002, 2.12750002e-003, - 4.11835462e-002, 5.27174063e-002, -2.64226622e-003, - 1.30782528e-002, 3.82300727e-002, 5.52873574e-002, - -8.83860223e-004, 8.81143089e-004, 4.72350232e-003, - 6.03228621e-003, 4.28642752e-003, -1.92495086e-003, - 4.97817360e-002, 2.46507172e-002, 2.41220966e-002, - -1.38729648e-003, 3.12360048e-001, 2.18596384e-001, - 6.27988428e-002, -4.39027697e-002, 3.74912858e-001, - 4.90667731e-001, -9.96470451e-003, 5.93375461e-003, - 5.41904718e-002, 5.22951335e-002, 5.41513367e-003, - -1.56058857e-004, 4.32091691e-002, 1.97433569e-002, - -8.47502053e-003, -2.13523023e-002, 3.04045320e-001, - 1.71369657e-001, 5.28724678e-002, -3.25847268e-002, - 2.98050642e-001, 2.18972594e-001, 1.93685223e-003, - -5.12523577e-003, 5.39415814e-002, 3.82831469e-002, - -2.18496461e-005, -7.05721613e-005, 5.20970160e-003, - 3.57400207e-003, -4.56330672e-005, -7.63911661e-003, - 3.47761437e-002, 3.85068953e-002, 6.03024056e-003, - -7.38385832e-003, 3.61952037e-002, 4.21778187e-002, - 2.22564660e-004, -9.21148981e-004, 5.83203882e-003, - 5.15531190e-003, -6.86012488e-003, 7.41264841e-004, - 1.02452142e-002, 3.10278661e-003, -1.48160486e-002, - -7.54278013e-003, 3.48589830e-002, 2.33035590e-002, - 5.06343357e-002, -1.42429229e-002, 9.00403932e-002, - 3.20422053e-002, -1.40751316e-003, 1.86681410e-003, - 9.65119433e-003, 5.07272454e-003, -5.84177077e-002, - -3.48771602e-004, 7.75648430e-002, 1.94960330e-002, - -1.15567319e-001, 2.87522282e-003, 2.02719256e-001, - 1.00827120e-001, 2.82412261e-001, -7.98782781e-002, - 6.32183492e-001, 2.02341557e-001, 1.08435722e-002, - -2.00779047e-002, 7.62282163e-002, 4.46583256e-002, - -5.48206270e-002, -4.20943554e-003, 7.42413476e-002, - 2.19402295e-002, -1.01499051e-001, 2.31318250e-002, - 1.92801252e-001, 1.17116973e-001, 1.45916805e-001, - 7.71507248e-002, 3.03799301e-001, 1.85407162e-001, - 4.89964485e-002, -7.52447522e-004, 8.56002048e-002, - 4.80317138e-002, -5.63204614e-003, 8.77296494e-004, - 9.45582986e-003, 3.99675639e-003, -7.15318229e-003, - 1.69315543e-002, 3.37829441e-002, 3.18339430e-002, - 2.40230821e-002, 1.94318462e-002, 4.38940860e-002, - 4.25206535e-002, 2.11683754e-003, -3.19715519e-003, - 1.05595132e-002, 6.59760321e-003, -3.71438742e-004, - 1.45214153e-002, 4.75508720e-003, 1.91784073e-002, - -1.97951943e-002, 1.40173718e-001, 4.37818654e-002, - 1.81588069e-001, -3.81804295e-002, 1.12698525e-001, - 6.57305494e-002, 1.70204014e-001, 4.51282738e-003, - 7.50573399e-003, 1.28309317e-002, 1.70807410e-002, - 4.85504838e-003, 2.95912684e-003, 1.69704184e-002, - 2.10371353e-002, -1.20035233e-002, 7.61459321e-002, - 1.28528133e-001, 1.43589646e-001, -1.84797421e-001, - 2.35029057e-001, 2.42713764e-001, 3.04082930e-001, - -1.42969666e-002, 4.10731286e-002, 6.38739914e-002, - 6.00985996e-002, 1.06659671e-002, -1.70213021e-002, - 2.21641269e-002, 3.30471098e-002, 2.51056463e-003, - -1.08873211e-001, 9.30830911e-002, 1.93824068e-001, - -5.20968959e-002, -1.00527920e-001, 1.07092410e-001, - 2.04365358e-001, -2.68926974e-002, -3.86623596e-003, - 5.21116965e-002, 4.58438396e-002, 2.56258808e-003, - -2.50821244e-002, 6.00915961e-003, 4.48984094e-002, - -9.15090367e-003, -2.13016316e-001, 3.28570977e-002, - 3.35866421e-001, -8.99429619e-003, -2.23973170e-001, - 2.49315556e-002, 3.41769338e-001, 3.95945227e-003, - -2.62113232e-002, 9.79656167e-003, 4.24683467e-002, - 1.87349948e-003, 9.84645355e-003, 1.00777950e-002, - 1.94617566e-002, 2.18052622e-002, 1.51721671e-001, - 5.76297008e-002, 2.09277600e-001, 7.69732287e-004, - 1.70632228e-001, 4.49829176e-002, 2.37463459e-001, - 9.43725638e-004, 1.78789496e-002, 6.67491090e-003, - 2.71125417e-002, 6.67879879e-002, 9.81974602e-003, - 9.53209326e-002, 6.07425235e-002, 2.58381993e-001, - 1.15543835e-001, 3.36941540e-001, 2.28405222e-001, - -9.18492302e-003, 6.14163876e-002, 9.24348086e-002, - 1.50450915e-001, -1.05824843e-002, 1.04980944e-002, - 2.81263776e-002, 2.06585564e-002, 7.70776719e-002, - 7.76046468e-003, 1.00062415e-001, 5.79406917e-002, - 1.39666855e-001, -5.98824024e-002, 2.26813495e-001, - 1.95354626e-001, 1.16358949e-002, -6.36395961e-002, - 8.76043141e-002, 1.29100800e-001, -1.17384307e-002, - -1.27121080e-002, 2.94430666e-002, 2.29152516e-002, - 2.84692808e-003, -1.31431911e-002, 7.43156765e-003, - 2.69128866e-002, 7.30246305e-003, -1.81277424e-001, - 3.70565131e-002, 2.82689184e-001, 7.19675515e-003, - -1.86331734e-001, 2.78705042e-002, 2.76835948e-001, - -5.84863119e-005, -2.09473278e-002, 5.23371948e-003, - 3.24158072e-002, 6.20560779e-004, 5.59846312e-003, - 4.98010498e-003, 1.72092989e-002, 1.49564845e-002, - 9.59008262e-002, 4.89377603e-002, 1.55125827e-001, - -1.03257885e-002, 1.29862607e-001, 7.13427961e-002, - 2.35838294e-001, 1.44414580e-003, 6.10541180e-003, - 1.11658899e-002, 2.81679817e-002, 2.08213702e-002, - 4.87733148e-002, 3.88153046e-002, 7.32768178e-002, - 1.58719465e-001, 1.10154644e-001, 2.36384675e-001, - 3.20800602e-001, -3.42339240e-002, 1.04679935e-001, - 2.59444386e-001, 2.48260185e-001, -3.99012938e-002, - 5.89206908e-003, 7.17140660e-002, 7.49280304e-002, - 5.49725071e-003, 1.21550178e-002, 2.28959601e-002, - 3.87788042e-002, -6.63904250e-002, -2.09386903e-003, - 1.84957236e-001, 2.15710193e-001, 7.86916241e-002, - -1.14168219e-001, 2.90177226e-001, 2.12368712e-001, - -7.52578676e-002, -6.32758625e-003, 1.16911143e-001, - 5.19949570e-002, -3.88519693e-004, -1.73486583e-002, - 3.22982669e-003, 2.32010297e-002, -2.35942975e-002, - -1.48313284e-001, 3.51036638e-002, 1.95252329e-001, - -9.25061002e-004, -1.56310678e-001, 5.63877188e-002, - 2.02185079e-001, -5.11548063e-003, -1.54674686e-002, - 1.16099445e-002, 2.34665088e-002, 2.80642766e-003, - -3.65511427e-004, 5.59710804e-003, 2.08656583e-003, - -3.18262639e-004, 5.99283725e-003, 2.45897565e-002, - 1.53120048e-002, -2.90753711e-002, 8.94530211e-003, - 5.17762601e-002, 2.43959446e-002, -1.72347203e-003, - -1.52765401e-003, 9.02712904e-003, 4.07398492e-003, - 2.89523732e-002, 4.35102003e-004, 4.28095870e-002, - 1.40722878e-002, 9.85869113e-003, 1.70462504e-002, - 1.69073060e-001, 9.97062773e-002, -1.65962309e-001, - 3.20333727e-002, 3.95550072e-001, 1.47643238e-001, - -2.62758303e-002, 6.71335822e-003, 7.25318715e-002, - 2.41552554e-002, 3.60712186e-002, -2.62402976e-003, - 5.03392145e-002, 1.49321994e-002, -1.73340410e-001, - -8.88076648e-002, 3.29057306e-001, 1.51613802e-001, - -3.39162275e-002, -2.08006993e-001, 5.56526124e-001, - 2.52405167e-001, -2.06759982e-002, -8.19038879e-003, - 6.53652623e-002, 2.46379916e-002, 4.03581094e-003, - -1.73935003e-003, 7.00797234e-003, 3.76252108e-003, - -5.30277342e-002, -3.33810374e-002, 7.14490861e-002, - 4.14084271e-002, 4.48293606e-004, -3.92354019e-002, - 5.76164909e-002, 4.99886125e-002, -5.61877503e-004, - -1.99506595e-003, 5.86631009e-003, 3.74720921e-003, - 2.48122000e-004, 6.06004428e-003, 4.84270556e-003, - 9.14941169e-003, -1.34772360e-002, 7.44289458e-002, - 3.71439718e-002, 9.23962817e-002, -1.95853058e-002, - 3.24210338e-002, 4.11063097e-002, 7.32243359e-002, - 1.66876160e-003, -1.00549718e-003, 5.20461332e-003, - 8.26402940e-003, 2.98503656e-002, 2.94992188e-003, - 4.37130667e-002, 3.69641855e-002, 7.98763037e-002, - 8.35075676e-002, 1.97564900e-001, 2.41541028e-001, - -1.19720206e-001, 3.89236063e-001, 2.62408555e-001, - 4.48110014e-001, -4.91748713e-002, 4.90706563e-002, - 6.62173629e-002, 6.84985295e-002, 3.02371811e-002, - -2.11000489e-003, 4.34068069e-002, 3.92870530e-002, - 1.43192634e-001, -7.30105070e-003, 2.10100383e-001, - 2.60372698e-001, -4.89001386e-002, -1.26311466e-001, - 1.97911799e-001, 2.36602679e-001, -5.43179810e-002, - -1.10569820e-002, 7.08812699e-002, 4.24184501e-002, - 1.54498382e-003, -4.76601388e-004, 5.31441113e-003, - 6.16529211e-003, 6.29850477e-003, -3.37387472e-002, - 3.34497355e-002, 5.77023029e-002, -8.03876389e-003, - -3.41042578e-002, 3.58259641e-002, 5.72688803e-002, - -1.73254032e-003, -8.31985031e-004, 6.90766424e-003, - 6.55100727e-003, 1.73307173e-002, -2.74645817e-003, - 2.17273198e-002, 5.81444008e-003, 7.90261012e-003, - 1.29678911e-002, 3.28157656e-002, 2.28558294e-002, - -4.12083268e-002, 1.20090405e-002, 5.38161062e-002, - 2.38342080e-002, -6.20030006e-003, -1.41642941e-003, - 1.11146485e-002, 5.49253821e-003, 1.75296739e-001, - -2.04450041e-002, 2.08604902e-001, 3.62349078e-002, - 7.34942928e-002, 1.05393389e-002, 1.95594907e-001, - 7.23996162e-002, -3.32623899e-001, 2.09648069e-002, - 3.81029397e-001, 1.01538658e-001, -4.37683985e-002, - -2.58181058e-003, 7.99947158e-002, 3.27840745e-002, - 1.53835043e-001, -1.44761847e-002, 2.05939472e-001, - 3.91880348e-002, 1.76826879e-001, -6.22164384e-002, - 2.87056744e-001, 1.18792541e-001, -3.17783117e-001, - -5.15993359e-003, 3.66875321e-001, 1.05949394e-001, - -4.67395745e-002, 7.97165930e-003, 7.85661563e-002, - 3.15783434e-002, 1.08121401e-002, 2.30087060e-003, - 2.40100399e-002, 6.21330226e-003, 4.53678183e-002, - -2.21918393e-002, 6.66830987e-002, 3.52239385e-002, - -3.78592536e-002, -1.39360577e-002, 5.33417352e-002, - 2.94285752e-002, -5.22885891e-003, 1.69244164e-003, - 9.70636401e-003, 5.62303979e-003, -4.38220450e-004, - 5.92093042e-004, 4.64186911e-003, 4.56910767e-003, - 9.65746678e-003, 2.87390705e-002, 3.48499827e-002, - 4.35322486e-002, -1.27660874e-002, 2.83681601e-002, - 3.49571519e-002, 4.09556627e-002, -1.68165145e-003, - 1.04252955e-004, 4.64826077e-003, 4.02006740e-003, - 3.03824674e-002, 2.01038197e-002, 4.55924384e-002, - 3.75426523e-002, 4.51361202e-002, 1.88560903e-001, - 2.60742933e-001, 2.71252215e-001, -1.97166324e-001, - 6.35329485e-002, 2.76494175e-001, 2.17231840e-001, - -3.08353510e-002, 7.07984949e-003, 4.28827517e-002, - 2.89144851e-002, 3.18031572e-002, -2.17463505e-002, - 4.59147431e-002, 4.12405841e-002, -8.14863071e-002, - -3.25881004e-001, 2.79273719e-001, 3.64172131e-001, - -6.82911351e-002, -1.89375073e-001, 2.30375707e-001, - 2.63114899e-001, -3.34911905e-002, -8.07714649e-003, - 4.33289036e-002, 2.97675990e-002, -6.98961143e-004, - -2.42234650e-003, 4.14250931e-003, 5.52703207e-003, - -2.33380566e-003, -2.38639265e-002, 2.71185674e-002, - 4.04958390e-002, 1.73171342e-003, -2.64544785e-002, - 2.65978854e-002, 3.87204960e-002, -8.86554597e-004, - -1.36479805e-003, 3.74020892e-003, 4.07703314e-003, - 1.42452645e-003, 3.96508753e-004, 3.78689822e-003, - 3.77549161e-003, 1.40049635e-002, 3.60943452e-002, - 3.77207398e-002, 5.24687879e-002, -5.00186253e-003, - 3.83898281e-002, 2.90348809e-002, 5.97543567e-002, - 2.26077856e-004, 2.42098072e-003, 4.30449983e-003, - 6.61954097e-003, 2.19684541e-002, -1.31935312e-003, - 3.63971740e-002, 2.35745851e-002, 2.26374477e-001, - 3.43985297e-002, 3.34942251e-001, 2.55791038e-001, - -5.46679422e-002, 7.89841288e-004, 1.76281542e-001, - 4.28227752e-001, -1.90640092e-002, 4.07471647e-003, - 3.47835533e-002, 4.75241914e-002, 2.27731280e-002, - 1.25472632e-003, 3.72697040e-002, 2.12778263e-002, - 2.66798973e-001, 1.43162664e-002, 3.36752176e-001, - 2.19823301e-001, -6.94490224e-002, 8.16009045e-002, - 1.65427193e-001, 3.29582900e-001, -2.08972972e-002, - 5.50982868e-003, 3.66881266e-002, 3.91745605e-002, - 1.74252375e-003, 3.21815256e-004, 4.48521739e-003, - 3.46260495e-003, 2.54907552e-002, -3.08065917e-002, - 4.08474095e-002, 4.71400544e-002, -4.70628589e-003, - -3.81404459e-002, 2.82813851e-002, 5.65899797e-002, - -4.24364087e-004, -1.81930780e-003, 4.48606908e-003, - 6.28054840e-003, -4.23456513e-005, 1.66161638e-003, - 2.44106795e-003, 4.22534812e-003, 1.76459982e-003, - 1.81697328e-002, 1.43938391e-002, 3.53702232e-002, - -1.69203046e-003, 1.70971155e-002, 1.49491383e-002, - 3.41582671e-002, -9.07229478e-005, 1.26479950e-003, - 2.27134861e-003, 3.98747344e-003, 1.10390168e-002, - 2.33517364e-002, 2.14653052e-002, 3.80233377e-002, - 2.83285975e-002, 1.77806556e-001, 9.88892540e-002, - 2.79604644e-001, -3.53805013e-002, 1.78063720e-001, - 1.03151873e-001, 2.74594903e-001, -1.19653540e-002, - 2.40656249e-002, 2.17684489e-002, 3.72022241e-002, - 1.37827508e-002, -1.29073123e-002, 2.34477594e-002, - 6.28627837e-002, 3.61914188e-002, -9.16479602e-002, - 1.03909343e-001, 5.46336055e-001, -3.03950962e-002, - -8.04238319e-002, 1.02356702e-001, 5.38302660e-001, - -1.40282968e-002, -9.31930542e-003, 2.35590935e-002, - 6.23215139e-002, -2.85562681e-004, -1.92007667e-003, - 2.77348305e-003, 5.61149698e-003, 1.30424870e-003, - -2.23890189e-002, 1.68343186e-002, 4.59387526e-002, - 4.11018700e-004, -2.21157148e-002, 1.53852906e-002, - 4.62391265e-002, 1.72702770e-004, -2.03558803e-003, - 2.54593277e-003, 5.79388533e-003, 1.15702662e-003, - 4.16022143e-004, 3.67589388e-003, 2.70864693e-003, - 4.56775026e-003, 9.00508929e-003, 1.62339620e-002, - 1.72136277e-002, -3.89261311e-003, 7.01204780e-003, - 1.50520317e-002, 1.62174795e-002, -2.37151771e-003, - -8.36538893e-005, 4.34339093e-003, 3.24996957e-003, - 2.89841946e-002, -1.95805859e-002, 4.11992148e-002, - 3.53463776e-002, 2.55951658e-002, -4.96490719e-003, - 1.06167853e-001, 1.01377510e-001, -5.77141158e-002, - -2.54620314e-002, 1.17147475e-001, 1.05475821e-001, - -3.73391248e-002, -3.17469761e-002, 4.97923531e-002, - 4.54294682e-002, 4.34651822e-002, -7.16463327e-002, - 6.71436191e-002, 8.79766867e-002, 2.41985604e-001, - -2.96507508e-001, 3.00974190e-001, 3.53799969e-001, - -3.04317117e-001, -2.38321379e-001, 3.62273306e-001, - 3.05348158e-001, -4.75293621e-002, -7.14569762e-002, - 7.85766840e-002, 8.75604153e-002, -1.28676672e-003, - -2.52495520e-003, 6.61523920e-003, 8.37263372e-003, - 3.26525532e-002, -9.42325145e-002, 5.87534681e-002, - 1.11764111e-001, -2.44678557e-002, -9.48260799e-002, - 6.43202960e-002, 1.13797903e-001, -1.14947732e-003, - -3.83573701e-004, 7.41728023e-003, 7.63741182e-003, - 1.07863289e-003, -1.97885279e-003, 5.99826733e-003, - 6.70104753e-003, -1.65678449e-002, -3.36551070e-002, - 4.91795540e-002, 5.87871037e-002, -3.80842690e-003, - -4.05573659e-002, 4.73157465e-002, 5.83044663e-002, - 2.69333087e-003, -1.64417631e-003, 6.64612930e-003, - 6.18805736e-003, -4.05251086e-002, -1.68106426e-002, - 5.76436184e-002, 5.31540774e-002, 4.20534430e-004, - -2.54363567e-001, 2.68174708e-001, 3.47518712e-001, - 9.50038731e-002, -2.96481382e-002, 2.58324206e-001, - 2.48891294e-001, 4.41128723e-002, 1.92121521e-003, - 5.88836819e-002, 4.22982611e-002, -3.86111885e-002, - 3.92325670e-002, 5.81594929e-002, 5.64622916e-002, - -1.65954515e-001, 2.05544800e-001, 2.95285910e-001, - 3.03745627e-001, 1.69497699e-001, -6.87054396e-002, - 2.63151377e-001, 2.27899283e-001, 4.27119099e-002, - -1.08077880e-002, 5.83135709e-002, 4.23451960e-002, - -7.33535899e-006, -1.33037532e-003, 6.36608107e-003, - 5.91794541e-003, -3.82060967e-002, 2.64509805e-002, - 5.56011871e-002, 5.13820387e-002, 7.60364463e-004, - 3.42363715e-002, 4.24196124e-002, 4.92314212e-002, - 2.67057703e-003, -4.11717745e-004, 6.61276001e-003, - 6.08804869e-003, 2.19713827e-003, 1.29396922e-003, - 4.75354772e-003, 4.60508652e-003, -1.98240305e-004, - 4.22377586e-002, 3.51304375e-002, 5.14660329e-002, - -2.73072403e-002, 2.58358009e-002, 4.04664576e-002, - 4.30108197e-002, 6.34649536e-004, -3.84897081e-004, - 3.90471611e-003, 4.11391957e-003, 2.75315735e-002, - -5.35860425e-003, 3.65735441e-002, 2.67491452e-002, - 1.83188304e-001, -8.58959556e-002, 2.57568330e-001, - 2.69653380e-001, -1.99571237e-001, 2.30363667e-001, - 3.22497040e-001, 3.31420481e-001, -2.83673462e-002, - 2.52011232e-002, 4.44216244e-002, 4.02410664e-002, - 2.06619222e-002, -8.20607692e-003, 3.01746484e-002, - 2.42782328e-002, 1.24723487e-001, -1.28083631e-001, - 2.07011014e-001, 2.11988360e-001, 7.76381940e-002, - -2.28807479e-001, 2.93384522e-001, 3.04326922e-001, - -4.37437519e-002, -3.82132013e-003, 5.38253933e-002, - 3.89983393e-002, 8.40971188e-004, -1.08972145e-003, - 3.43402615e-003, 3.73311783e-003, 4.95361304e-003, - -2.34485958e-002, 2.55162511e-002, 3.50086503e-002, - 1.72425678e-003, -2.88469102e-002, 2.96949428e-002, - 4.17819917e-002, -4.42938268e-004, -1.92393432e-003, - 4.46829852e-003, 5.18261641e-003, 3.69543181e-004, - -1.59951963e-003, 3.93762346e-003, 5.78814652e-003, - -1.12184137e-003, -2.48987023e-002, 2.15706974e-002, - 4.77993600e-002, -6.00643270e-003, -2.80696880e-002, - 2.35450082e-002, 4.74224277e-002, -1.40940119e-003, - -3.27531295e-003, 3.74166924e-003, 6.44595083e-003, - -1.40981087e-002, -2.43048696e-003, 2.98326164e-002, - 5.60167469e-002, -8.59203711e-002, -6.02166057e-002, - 1.61611304e-001, 4.02052969e-001, -3.18184793e-002, - -1.34040952e-001, 1.56238690e-001, 3.95601898e-001, - 1.18285576e-002, -1.12403166e-002, 2.85633299e-002, - 4.88060117e-002, -2.27975100e-002, -2.41165385e-002, - 3.56014520e-002, 6.28538579e-002, -6.99950084e-002, - -1.58647522e-001, 1.62244901e-001, 4.36351627e-001, - 8.30271989e-002, 3.95276397e-002, 1.82579458e-001, - 3.45244437e-001, 1.49705810e-002, 1.86171532e-002, - 2.98302919e-002, 4.81688902e-002, 1.94524284e-004, - 4.39067371e-003, 4.53423103e-003, 8.80029239e-003, - 3.16244387e-003, 5.66499270e-002, 2.74247006e-002, - 7.45502785e-002, 1.04588317e-002, 4.04985622e-002, - 2.84064449e-002, 6.24506809e-002, -1.03793929e-004, - 2.10452615e-003, 4.14585602e-003, 6.66545192e-003, - -2.18234886e-003, -1.31676365e-002, 7.48362532e-003, - 2.21068934e-002, -9.37326904e-003, -7.92185068e-002, - 3.94669548e-002, 9.96319950e-002, 9.13007092e-003, - -6.35812134e-002, 5.01077883e-002, 7.90558383e-002, - 9.53181554e-003, 1.37107295e-003, 1.67170800e-002, - 7.53458962e-003, -3.02319750e-002, 1.25650978e-002, - 5.30114062e-002, 4.34347726e-002, -4.19244096e-002, - 5.70846535e-002, 1.73060685e-001, 3.43476564e-001, - 1.31401047e-001, 7.55042350e-003, 2.65651971e-001, - 3.50536466e-001, 1.60775200e-001, -1.47862034e-003, - 1.99804530e-001, 4.57878634e-002, -3.87166850e-002, - 2.33999752e-002, 6.96328804e-002, 5.26673943e-002, - -1.04012452e-001, 1.71452146e-002, 2.17494547e-001, - 3.54905188e-001, 4.98272851e-002, -6.94948360e-002, - 2.23041341e-001, 2.33348027e-001, 1.65717468e-001, - -1.55858723e-002, 1.98014840e-001, 4.08611670e-002, - -1.02810294e-003, -3.94828571e-003, 7.53542408e-003, - 1.25457263e-002, -3.28204148e-002, 1.84723418e-002, - 4.40765284e-002, 5.76498322e-002, 1.57398707e-003, - 3.28500308e-002, 3.46641466e-002, 5.10399193e-002, - 1.90921146e-002, 1.33939413e-003, 2.45246366e-002, - 5.91939455e-003, -6.65524130e-005, -1.06110156e-003, - 3.84681649e-003, 3.56194493e-003, 1.88292395e-002, - -2.27825046e-002, 3.52051929e-002, 3.43467556e-002, - 5.35981059e-002, -2.54571233e-002, 7.18974620e-002, - 4.43622321e-002, 1.15995167e-003, 1.30922592e-003, - 4.91026184e-003, 3.26128164e-003, -1.08446879e-002, - -2.92651844e-003, 2.71990821e-002, 1.64176617e-002, - 5.39902337e-002, -3.84052359e-002, 1.45949215e-001, - 1.06688388e-001, 3.34792852e-001, -1.53650463e-001, - 5.09475350e-001, 2.12439999e-001, 2.69271452e-002, - -4.97345021e-003, 4.67213355e-002, 1.72465798e-002, - -1.02411713e-002, 2.20132852e-003, 2.62058396e-002, - 1.40369432e-002, 4.17838842e-002, 2.40029413e-002, - 1.39159217e-001, 8.82183835e-002, 2.94579774e-001, - 5.07280976e-002, 4.85946983e-001, 1.34981841e-001, - 3.48585509e-002, 4.11695248e-004, 5.46953157e-002, - 1.72158014e-002, -4.07174026e-004, 4.58582799e-004, - 3.68206785e-003, 2.39736633e-003, 7.97929242e-003, - 1.12368185e-002, 2.53656916e-002, 2.16882806e-002, - 4.49780151e-002, 1.60622932e-002, 6.53081611e-002, - 3.30015942e-002, 3.43775749e-003, -1.76580274e-003, - 7.05644768e-003, 3.60756530e-003, -1.82968881e-002, - 2.28092237e-003, 2.19480358e-002, 5.26339235e-003, - -2.53076293e-002, -1.31526506e-002, 4.31229733e-002, - 2.61019785e-002, 5.93696628e-003, -1.10500082e-002, - 1.99888218e-002, 2.40944158e-002, 1.36934663e-003, - -4.77164343e-004, 4.24561417e-003, 3.13628605e-003, - -1.65200204e-001, 1.13170119e-002, 1.84047341e-001, - 2.95111444e-002, -1.93463624e-001, -1.07397803e-003, - 2.68933237e-001, 1.06378488e-001, 5.62227331e-002, - 1.01090875e-003, 1.17141485e-001, 9.88355353e-002, - 1.90064758e-002, 4.32223780e-003, 3.16794887e-002, - 1.95609443e-002, -1.60333276e-001, 7.96520617e-003, - 1.75969034e-001, 3.40282321e-002, -1.68447360e-001, - 1.96170956e-001, 2.87853867e-001, 2.48394758e-001, - 8.48664641e-002, 3.02411705e-001, 1.59927517e-001, - 3.52337629e-001, 2.13708710e-002, 4.59003896e-002, - 4.06478085e-002, 5.66133261e-002, -8.38494115e-003, - 4.38263919e-003, 1.37876272e-002, 1.06997080e-002, - 1.39651829e-002, 1.46962553e-001, 5.98059632e-002, - 1.80999950e-001, 8.57435353e-003, 1.38435915e-001, - 4.98143956e-002, 1.93211362e-001, -2.36879499e-003, - 1.10734152e-002, 8.01132154e-003, 2.10893229e-002, - 1.24821032e-004, 6.48642005e-003, 6.48116041e-003, - 1.23806810e-002, -4.11966443e-003, 8.75025764e-002, - 4.01131548e-002, 1.26188949e-001, 1.45872533e-002, - 1.10040061e-001, 4.16060425e-002, 1.48449674e-001, - -6.11961959e-003, 8.66094045e-003, 1.53312441e-002, - 1.32317897e-002, 2.85408795e-002, 4.89524826e-002, - 6.66152909e-002, 5.59064336e-002, -9.55517441e-002, - 2.59016544e-001, 2.57449269e-001, 3.11179996e-001, - 1.08343579e-001, 1.72636822e-001, 3.80554169e-001, - 2.50716329e-001, -1.22324482e-001, 6.22495357e-003, - 2.11616069e-001, 2.89736446e-002, 1.56539772e-002, - 5.60364593e-003, 3.55095677e-002, 1.85840204e-002, - -1.13650128e-001, 1.49750598e-002, 2.02576712e-001, - 9.39987078e-002, 5.51842563e-002, 1.66663416e-002, - 2.95798659e-001, 1.16885163e-001, -1.32956252e-001, - 2.98539642e-003, 2.12818980e-001, 2.00466271e-002, - 4.34994960e-004, 5.21557922e-005, 3.42982495e-003, - 1.66597567e-003, -5.03522344e-003, -2.98739760e-003, - 2.12993510e-002, 1.01075042e-002, -2.48304056e-003, - -2.10201673e-004, 3.04214824e-002, 1.17884809e-002, - -1.67161115e-002, 4.11193323e-004, 2.67517120e-002, - 3.29559413e-003, -8.67887284e-005, 6.83491118e-004, - 3.23015056e-003, 5.61385788e-003, 7.93764601e-004, - 6.47771265e-003, 1.65681448e-002, 4.50002924e-002, - 1.49063219e-003, 5.08792372e-003, 1.64718460e-002, - 4.46539596e-002, 7.59229692e-008, 1.80004950e-004, - 2.60030222e-003, 5.49038965e-003, 9.40784439e-003, - 9.79674794e-003, 2.69971862e-002, 5.69208786e-002, - 2.23405920e-002, 8.78425464e-002, 1.10762596e-001, - 4.90677834e-001, -1.08080655e-002, 9.60031971e-002, - 1.18249096e-001, 4.71778929e-001, -1.26613602e-002, - 1.30781969e-002, 2.70224866e-002, 5.50071746e-002, - 1.29334284e-002, 8.91406927e-003, 2.86143944e-002, - 4.74378988e-002, 1.62735116e-002, 7.78941512e-002, - 1.19027629e-001, 3.72666895e-001, -2.83086300e-002, - 4.19319123e-002, 1.25490859e-001, 3.99730027e-001, - -1.59253720e-002, -6.75024465e-004, 2.97833681e-002, - 5.00456430e-002, 4.56545473e-004, -2.32382189e-003, - 3.81741277e-003, 6.34500897e-003, 1.46218541e-003, - -2.75618993e-002, 2.08140183e-002, 5.62902987e-002, - -2.69174739e-003, -2.06507575e-002, 1.98137555e-002, - 5.39795980e-002, -7.48837367e-004, -3.99786542e-004, - 3.25969420e-003, 6.46836078e-003, 6.27137115e-003, - -3.32042435e-003, 8.39549862e-003, 6.41762931e-003, - 1.59239806e-002, 8.80506355e-003, 2.58925520e-002, - 2.37315111e-002, -2.22683791e-003, 8.19365773e-003, - 1.53973168e-002, 1.67266242e-002, -1.12891488e-003, - 4.30405416e-005, 2.78563937e-003, 2.40906421e-003, - 6.37746602e-002, -3.13538238e-002, 7.43469819e-002, - 4.84850146e-002, 1.98825225e-001, -9.91070792e-002, - 2.50993550e-001, 1.88637033e-001, -4.37479578e-002, - -3.77146825e-002, 1.08437136e-001, 1.12378381e-001, - -2.15687454e-002, -1.68507677e-002, 3.25180553e-002, - 2.96073649e-002, 2.87146755e-002, -1.70945600e-002, - 4.63621803e-002, 3.16513814e-002, 4.25698370e-001, - -1.53129712e-001, 4.60694134e-001, 2.47009754e-001, - -1.75435215e-001, -1.45802289e-001, 2.45831966e-001, - 2.48770267e-001, -2.52736900e-002, -3.99410799e-002, - 4.96812090e-002, 5.58678173e-002, 1.44576887e-003, - 2.73878795e-005, 4.79019433e-003, 4.24682116e-003, - 4.75220755e-002, -4.70626652e-002, 6.30484223e-002, - 6.23796284e-002, -3.15854177e-002, -5.54462187e-002, - 5.80265932e-002, 7.13087991e-002, 7.38039031e-004, - -2.02778121e-003, 6.61313348e-003, 7.05678575e-003, - -2.08143424e-003, -8.27605370e-004, 5.99915581e-003, - 6.86885137e-003, -3.92675102e-002, -1.89665798e-002, - 5.61572462e-002, 4.40132320e-002, 4.89961775e-003, - -2.19647232e-002, 3.04939523e-002, 3.58640961e-002, - 5.63327968e-003, 1.87023325e-004, 1.07844509e-002, - 4.02334379e-003, -2.46436503e-002, 3.99428513e-003, - 4.60460149e-002, 3.54363620e-002, -2.84928262e-001, - 4.54134904e-002, 3.54940802e-001, 3.03789198e-001, - 2.33690031e-002, 3.10072280e-003, 1.87491491e-001, - 1.58535764e-001, 7.26837590e-002, 5.88101940e-003, - 1.01046689e-001, 3.06301303e-002, -3.29809263e-002, - 3.59937269e-003, 5.83046712e-002, 4.24659364e-002, - -2.47799799e-001, -1.19102784e-002, 3.49719405e-001, - 4.16214496e-001, 4.34158221e-002, 3.12209036e-002, - 1.93990663e-001, 1.77567735e-001, 6.42955601e-002, - -2.15344061e-003, 9.82713178e-002, 2.99583152e-002, - -1.68484310e-003, -2.56158854e-003, 6.58672536e-003, - 6.57970738e-003, -3.29718441e-002, 1.36453090e-002, - 5.39514646e-002, 5.42430095e-002, -4.30670567e-003, - 2.68396772e-002, 3.86757404e-002, 4.63876426e-002, - 4.37040534e-003, -3.10397700e-005, 1.01857232e-002, - 4.85892314e-003, -2.28214599e-002, 1.93887600e-003, - 2.97464654e-002, 6.71910821e-003, -1.32578108e-002, - -1.27486726e-002, 3.91910449e-002, 3.07627674e-002, - 1.89906522e-003, -1.21468455e-002, 4.17032391e-002, - 3.02004647e-002, 2.22005975e-002, 1.10714429e-003, - 4.16604877e-002, 5.96430292e-003, -2.15327710e-001, - -2.81288754e-003, 2.72572517e-001, 3.23386379e-002, - -3.58449481e-002, -4.17982489e-002, 2.46193796e-001, - 1.02470778e-001, 2.52390113e-002, -2.01622788e-002, - 2.43984088e-001, 9.45421457e-002, 1.82084307e-001, - 8.87028035e-003, 3.37933779e-001, 3.69837955e-002, - -2.17555344e-001, -9.05580167e-003, 2.70862460e-001, - 3.34528163e-002, -2.07999516e-002, 4.50216327e-003, - 2.29700074e-001, 1.08453736e-001, 7.95385614e-002, - 4.14223075e-002, 2.69605875e-001, 1.11240864e-001, - 1.68293089e-001, 2.17323890e-003, 3.32303047e-001, - 4.23391685e-002, -2.16700882e-002, -3.76634463e-003, - 2.93307081e-002, 7.81653449e-003, -1.01036849e-002, - 8.79059918e-003, 3.64241526e-002, 3.23366076e-002, - 3.14473286e-002, 9.19404998e-003, 5.23079596e-002, - 3.36387306e-002, 1.11030694e-002, -3.13510001e-003, - 3.90099958e-002, 7.34901801e-003, 3.35005205e-003, - -1.44242086e-002, 9.08225589e-003, 2.16540284e-002, - 7.52594089e-004, -1.59733817e-001, 4.38964479e-002, - 2.00025484e-001, -1.94473900e-002, -1.51978597e-001, - 5.68009987e-002, 1.84772432e-001, 2.40888423e-003, - -7.95705151e-003, 9.84948501e-003, 1.64568815e-002, - -1.66888218e-002, -3.51421423e-002, 4.01505791e-002, - 5.23397848e-002, -6.68081827e-003, -2.42433220e-001, - 1.57869652e-001, 3.33118439e-001, 1.51536360e-001, - -1.37717575e-001, 2.26744905e-001, 2.54637778e-001, - 6.65263608e-002, -9.61021241e-003, 8.70029181e-002, - 4.52347174e-002, -1.55396648e-002, 1.88018233e-002, - 3.41394916e-002, 3.86698917e-002, 4.92296144e-002, - 2.29868323e-001, 1.81432351e-001, 2.79409975e-001, - 1.32137492e-001, 1.57684743e-001, 2.40641445e-001, - 2.16503978e-001, 6.64402321e-002, 1.34315398e-002, - 8.48373026e-002, 4.07522693e-002, 1.97490514e-003, - 1.96140003e-003, 5.42812143e-003, 6.52181404e-003, - 7.99873844e-003, 2.99588889e-002, 3.82190123e-002, - 5.81677854e-002, 4.54371981e-003, 3.29344459e-002, - 4.57573645e-002, 5.48286587e-002, 5.69850858e-003, - 1.65850658e-003, 1.02333855e-002, 7.42370309e-003, - 9.66663472e-003, 3.98465339e-003, 1.59423258e-002, - 1.06651718e-002, -2.60092337e-002, 7.80294836e-002, - 7.43217096e-002, 1.05455354e-001, -4.03619818e-002, - 6.73521161e-002, 6.83145598e-002, 1.10458821e-001, - 4.50173020e-003, 1.68426242e-003, 1.03925020e-002, - 1.20077627e-002, 9.75166112e-002, 2.22937632e-002, - 1.45129949e-001, 5.31426705e-002, 3.51136886e-002, - 1.12471767e-001, 2.23020002e-001, 2.08721250e-001, - -1.66315660e-001, 3.29337656e-001, 2.68460482e-001, - 4.03116435e-001, -1.94589570e-002, 5.75234108e-002, - 4.90084216e-002, 7.65251368e-002, 9.08851996e-002, - -7.49821682e-003, 1.31940186e-001, 4.09017615e-002, - 5.29311411e-002, -7.61322826e-002, 1.70482323e-001, - 1.75399408e-001, -3.51554379e-002, -3.91571149e-002, - 1.39186606e-001, 1.61112547e-001, -2.27410011e-002, - 2.81348312e-003, 3.41602005e-002, 3.21452431e-002, - 4.20119707e-003, -8.72459542e-003, 1.20065408e-002, - 1.79318171e-002, 6.78880000e-003, -1.45347312e-001, - 4.10046168e-002, 2.01325864e-001, 3.20593710e-003, - -1.48504421e-001, 3.20748612e-002, 2.01267287e-001, - 5.84245950e-004, -1.64301917e-002, 5.31215686e-003, - 2.33682860e-002, -1.03477295e-003, -8.08060449e-003, - 1.14416070e-002, 1.44516118e-002, -1.16265109e-002, - -1.48728505e-001, 3.80698219e-002, 1.78742751e-001, - -4.17823344e-002, -1.26893565e-001, 7.43493959e-002, - 1.46232352e-001, 1.04536144e-002, -5.47732227e-003, - 1.85780749e-002, 1.26594147e-002, -1.34469241e-001, - -9.63224750e-003, 1.63188517e-001, 5.27468212e-002, - 3.69179919e-002, -1.65717021e-001, 2.46863514e-001, - 3.71550441e-001, -3.85109931e-002, -7.76038840e-002, - 2.38932699e-001, 2.48217881e-001, 1.74084142e-001, - 2.86748335e-002, 2.13713616e-001, 5.74842617e-002, - -1.32424518e-001, -8.97204690e-003, 1.76383257e-001, - 3.52796987e-002, 1.26293469e-002, -1.14066005e-002, - 2.02849284e-001, 1.45012811e-001, 3.67810763e-002, - 6.43545063e-003, 1.75823346e-001, 1.04455955e-001, - 1.84136257e-001, -1.46732517e-002, 2.35375345e-001, - 3.75069976e-002, -1.69954412e-002, -2.59373547e-003, - 2.48981174e-002, 4.72699897e-003, 1.55925297e-003, - -5.48796309e-003, 2.51795445e-002, 2.31935065e-002, - 2.14869380e-002, 1.27053412e-003, 3.61189842e-002, - 2.17252318e-002, 1.70578007e-002, -1.58339075e-003, - 2.50720046e-002, 7.41704134e-003, 7.20828865e-003, - -8.78648309e-004, 1.14194052e-002, 6.30124100e-003, - 4.90153208e-002, 1.53575623e-002, 5.75937741e-002, - 2.90749557e-002, -4.92087472e-003, 5.07648103e-003, - 2.09432784e-002, 1.58325322e-002, -5.91392396e-003, - -1.10903359e-003, 9.05016437e-003, 3.85071500e-003, - 7.02350512e-002, -4.95020626e-003, 8.99137855e-002, - 4.03524823e-002, 3.06842744e-001, 4.45743417e-003, - 3.69855583e-001, 1.25736818e-001, -5.94219640e-002, - -2.35547824e-003, 1.43987000e-001, 8.86593312e-002, - -8.41847286e-002, -2.23859698e-002, 1.29604280e-001, - 4.21727002e-002, 7.96579346e-002, 1.70817617e-002, - 9.87790078e-002, 5.06731197e-002, 2.42436215e-001, - -3.70802656e-002, 3.23549092e-001, 1.95689440e-001, - -9.86783803e-002, -9.17345807e-002, 1.90716654e-001, - 1.69988051e-001, -9.61741805e-002, -2.06407849e-002, - 1.76590607e-001, 3.92339565e-002, 4.73369192e-003, - -9.59016196e-003, 8.49189330e-003, 2.21809801e-002, - 8.25073943e-003, -1.61512226e-001, 3.92331332e-002, - 2.57056922e-001, -4.74566733e-003, -1.61992475e-001, - 3.73556502e-002, 2.46977895e-001, -3.78594780e-003, - -1.13120973e-002, 1.47678824e-002, 1.96886826e-002, - -1.24254962e-003, -5.72413031e-004, 4.81134839e-003, - 4.28083260e-003, 1.65580865e-002, -1.74620412e-002, - 3.71975042e-002, 3.30952704e-002, 1.23861404e-002, - -9.00926813e-003, 4.10833806e-002, 3.73846516e-002, - 1.93217280e-003, 9.23215412e-004, 6.56950381e-003, - 5.52603230e-003, -3.64701338e-002, 2.41369046e-002, - 5.06005846e-002, 4.49962355e-002, 1.06183186e-001, - 5.56003489e-002, 2.46184230e-001, 2.08884075e-001, - 1.55601301e-003, -1.05952494e-001, 2.22581178e-001, - 2.18729034e-001, 4.55288403e-002, -1.75271404e-003, - 5.63349463e-002, 3.74986567e-002, -1.97846200e-002, - 4.57579978e-002, 4.86673117e-002, 5.98435849e-002, - -1.85129732e-001, 2.30785325e-001, 3.14039111e-001, - 3.55149150e-001, 1.38114601e-001, 2.56498903e-001, - 2.76118755e-001, 3.54222000e-001, 3.14700045e-002, - 3.45920995e-002, 4.72597033e-002, 4.70246039e-002, - 1.03462278e-003, 4.69364517e-004, 5.07896161e-003, - 4.66642622e-003, -1.62968766e-002, 4.23371419e-002, - 3.91983129e-002, 5.52831963e-002, 1.86461452e-002, - 4.03288081e-002, 3.59147303e-002, 5.20155467e-002, - -7.76813715e-004, 1.30126276e-003, 3.75249772e-003, - 3.96848423e-003, -8.95436038e-004, 8.57915916e-003, - 9.81993135e-003, 1.68246180e-002, -1.26015088e-002, - 1.78807452e-001, 1.12598501e-001, 2.16117978e-001, - 1.46292849e-002, 1.29700512e-001, 9.54886824e-002, - 1.57382533e-001, 5.66842500e-003, 4.11624648e-003, - 8.51849187e-003, 9.43869632e-003, 2.95033376e-003, - 4.06296849e-002, 2.62950510e-002, 4.68285754e-002, - 4.75936010e-002, 1.12457059e-001, 1.03654526e-001, - 1.84783250e-001, -6.84231669e-002, 1.54155120e-001, - 1.38706714e-001, 2.24251196e-001, -1.06166834e-002, - 2.81758569e-002, 2.67874096e-002, 4.07331102e-002, - -3.73946340e-003, -5.58146322e-003, 1.23636294e-002, - 1.38119888e-002, -5.27931526e-002, -1.42651677e-001, - 1.10127434e-001, 2.16249734e-001, -6.48872033e-002, - -3.88970286e-001, 1.40779465e-001, 4.33127970e-001, - -5.36733214e-003, -4.19739597e-002, 2.83957087e-002, - 5.89544363e-002, -8.86638276e-003, -1.15589015e-002, - 1.03126690e-002, 1.45138409e-002, -5.56251407e-002, - -1.72949955e-001, 8.17847699e-002, 1.92729041e-001, - -1.14088855e-003, -9.08540264e-002, 5.05947918e-002, - 1.26989737e-001, 1.09854685e-002, -5.47971902e-003, - 1.33353854e-002, 1.12777613e-002, 6.59291167e-004, - 1.59349910e-003, 6.28427882e-003, 6.73511717e-003, - 2.32498776e-002, 3.74304876e-002, 4.61532772e-002, - 5.82000911e-002, 7.53040239e-003, 2.92146243e-002, - 3.67151983e-002, 4.31878529e-002, -5.80099504e-003, - -1.04270887e-003, 8.64268281e-003, 6.33917563e-003, - 3.11492402e-002, 1.84581764e-002, 5.01483306e-002, - 5.81489429e-002, 1.07676737e-001, 2.77912132e-002, - 2.43804082e-001, 3.13723564e-001, -1.70640685e-002, - -9.78934020e-003, 2.47890443e-001, 2.47254074e-001, - -1.08357064e-001, -3.07382811e-002, 1.20284811e-001, - 4.86185923e-002, 4.03407142e-002, 8.64624325e-003, - 5.38653694e-002, 4.67623845e-002, -4.96211387e-002, - 9.67717618e-002, 2.51400739e-001, 2.27691695e-001, - -1.18616834e-001, -1.15484998e-001, 4.43067729e-001, - 2.85725802e-001, -9.82302576e-002, -2.63372045e-002, - 1.37942791e-001, 5.43118715e-002, 4.67133056e-003, - -5.37409913e-004, 6.67474000e-003, 5.90794021e-003, - -1.86919607e-002, -2.73863748e-002, 4.56019267e-002, - 5.03652655e-002, -5.91723546e-002, -5.95827885e-002, - 8.98123309e-002, 7.18297362e-002, 1.26509822e-003, - 7.08687119e-004, 1.43976957e-002, 8.87328852e-003, - -1.99844060e-003, -3.06076766e-003, 1.73305385e-002, - 6.70076208e-003, 7.64205381e-002, 3.27122770e-002, - 1.06375873e-001, 5.24907373e-002, -1.81955285e-002, - 1.60929300e-002, 4.19857651e-002, 2.99543850e-002, - -8.68473202e-003, -1.18865550e-003, 1.31611498e-002, - 6.01145765e-003, 6.19457737e-002, 1.36973374e-002, - 1.52371705e-001, 5.31633757e-002, 3.49369764e-001, - 1.44813612e-001, 4.51011240e-001, 2.14785710e-001, - -1.61425680e-001, 1.35681024e-002, 2.37555534e-001, - 1.13709919e-001, -9.60813463e-002, -5.01833390e-003, - 1.19325288e-001, 4.22143526e-002, 1.43970236e-001, - 3.00619230e-002, 1.87482998e-001, 5.51302247e-002, - 8.86099413e-002, -2.33556759e-002, 2.29525626e-001, - 1.41158998e-001, -1.43909335e-001, -5.50887398e-002, - 2.24921376e-001, 1.52187899e-001, -9.38251466e-002, - 3.34124290e-003, 1.20082758e-001, 4.32570130e-002, - 1.22700054e-002, 4.94150852e-004, 1.87496617e-002, - 8.58842116e-003, -5.47111034e-003, -4.90706638e-002, - 4.50686552e-002, 7.04606473e-002, -1.18034491e-002, - -4.71538082e-002, 4.52539101e-002, 7.09344670e-002, - -5.95206954e-003, -8.83581175e-004, 1.24197444e-002, - 8.35446268e-003, -1.62472425e-003, -2.61424086e-003, - 9.25463159e-003, 6.41806237e-003, 6.08516373e-002, - 3.54989022e-002, 7.60517567e-002, 5.51611520e-002, - 7.81275425e-003, 2.53387690e-002, 3.10769659e-002, - 3.72789800e-002, -1.89315388e-003, 8.08635843e-004, - 4.61317133e-003, 4.12559183e-003, 4.81330715e-002, - 4.04382274e-002, 8.38159099e-002, 6.13711029e-002, - 2.79197454e-001, 1.77102044e-001, 3.24458778e-001, - 2.24291489e-001, -2.43166890e-002, 1.76882967e-002, - 1.15483351e-001, 1.08782806e-001, -3.62240486e-002, - -1.07295513e-002, 4.82967086e-002, 3.36252972e-002, - 5.92457354e-002, 2.36764494e-002, 7.06092864e-002, - 5.16814105e-002, 2.72954199e-002, -1.06313303e-001, - 1.59472838e-001, 2.10547701e-001, -1.70536861e-001, - -3.50952774e-001, 2.36370996e-001, 3.96579385e-001, - -4.22462672e-002, -6.03122972e-002, 6.91486597e-002, - 7.89439008e-002, 8.22363363e-004, -1.13858217e-002, - 6.52248133e-003, 1.66172236e-002, -2.77964976e-002, - -1.20045714e-001, 4.74569425e-002, 1.57119021e-001, - -1.56206712e-002, -6.22651055e-002, 4.47975248e-002, - 1.22498393e-001, 1.45513262e-003, -1.09787553e-003, - 6.00438518e-003, 1.22955758e-002, -1.74213815e-002, - 2.25609052e-003, 2.38086469e-002, 5.66131482e-003, - -3.35167907e-002, -1.17008956e-002, 5.79560474e-002, - 2.71552615e-002, 7.86995701e-003, -1.48343137e-002, - 3.63463573e-002, 3.57013233e-002, -5.73390889e-006, - 7.22031400e-004, 4.78915544e-003, 4.18055942e-003, - -1.76527604e-001, -5.17044729e-003, 2.01901168e-001, - 2.77936533e-002, -2.34132662e-001, -3.47851366e-002, - 3.22582364e-001, 1.40710205e-001, 1.39503283e-002, - -9.08391476e-002, 1.48920983e-001, 1.57009497e-001, - 1.86376702e-002, -1.40116224e-002, 3.06301806e-002, - 2.80938596e-002, -1.74103722e-001, -1.41507946e-002, - 1.92344025e-001, 3.07144802e-002, -5.65386228e-002, - 1.33384034e-001, 3.32575977e-001, 2.21464202e-001, - -1.16468586e-001, 2.59879470e-001, 2.62859493e-001, - 3.12559128e-001, 1.79832503e-002, 1.52228493e-002, - 3.66701074e-002, 3.00899595e-002, -1.93158854e-002, - -6.02561922e-005, 2.16832962e-002, 5.52778412e-003, - 4.34536189e-002, 4.70335931e-002, 9.09525529e-002, - 6.34539574e-002, -4.04050425e-002, 5.27097769e-002, - 8.31450447e-002, 7.68677518e-002, -4.88594873e-004, - 2.23085005e-003, 7.30625354e-003, 6.69738092e-003, - -3.25112487e-003, 1.33269688e-003, 7.77188689e-003, - 2.85564642e-003, -5.50278053e-002, -1.03343679e-002, - 6.68534115e-002, 2.25628726e-002, 3.28114908e-003, - -1.04902526e-002, 2.26064641e-002, 2.21030898e-002, - 8.33858387e-004, -3.45329609e-004, 3.82246659e-003, - 2.97581917e-003, -3.05625927e-002, -7.23082514e-004, - 5.59096634e-002, 1.59852579e-002, -4.18322325e-001, - -3.23474593e-002, 4.63808089e-001, 1.10267542e-001, - 3.43031511e-002, -2.34650914e-002, 1.14641368e-001, - 1.04293682e-001, 1.55378375e-002, 1.02294190e-003, - 2.83121709e-002, 2.01449972e-002, -4.27287854e-002, - -6.29606331e-003, 6.20699711e-002, 1.88187659e-002, - -3.18509698e-001, 7.98978806e-002, 3.87731433e-001, - 1.67371765e-001, 6.87665418e-002, 2.19300851e-001, - 1.54360175e-001, 2.53252536e-001, 1.33688273e-002, - 2.89176069e-002, 3.26796249e-002, 3.93739417e-002, - -4.88459226e-003, -5.10366051e-004, 7.86504056e-003, - 3.61655606e-003, -1.36990007e-002, 3.54004279e-002, - 4.98689339e-002, 4.99379374e-002, 1.49004152e-002, - 3.57778035e-002, 4.06149887e-002, 5.94827794e-002, - -2.08988483e-003, 2.08756304e-003, 5.47591178e-003, - 7.06083700e-003, 2.64994334e-003, 2.42869183e-002, - 1.16043119e-002, 3.78509201e-002, -2.77332217e-002, - 1.94373220e-001, 4.49737422e-002, 2.99294949e-001, - 1.26034059e-002, 2.05309466e-001, 2.62415186e-002, - 3.19219381e-001, -4.20307880e-003, 2.76183598e-002, - 1.08086662e-002, 4.47507165e-002, 3.41629833e-002, - -1.36152878e-002, 1.56913444e-001, 5.70916459e-002, - -8.38238299e-002, 6.52475357e-002, 3.82773459e-001, - 1.91979349e-001, 1.92601204e-001, 4.78615612e-002, - 2.34196752e-001, 1.29965529e-001, -6.53986558e-002, - 9.64397192e-003, 1.01678580e-001, 2.80649029e-002, - 8.90700221e-002, 2.65293848e-003, 1.60302550e-001, - 4.60950956e-002, -1.30675256e-001, 1.25082638e-002, - 3.25767517e-001, 1.32798955e-001, 1.44974321e-001, - 8.75109434e-003, 1.92446202e-001, 7.93249905e-002, - -4.28371280e-002, 1.06659327e-002, 5.86416647e-002, - 2.64632851e-002, 4.49337577e-003, -2.77790800e-003, - 6.78816298e-003, 1.40824569e-002, -5.36177214e-003, - -7.63363466e-002, 3.06228288e-002, 1.40581027e-001, - 2.55671572e-002, -6.53660521e-002, 2.98401155e-002, - 1.29212320e-001, 9.73588787e-004, 7.35071488e-004, - 7.28581287e-003, 4.51543368e-003, 1.05983648e-003, - -8.82957771e-004, 4.42293612e-003, 3.19142966e-003, - 3.89666595e-002, 2.17392109e-002, 4.95926440e-002, - 3.42099704e-002, -2.07984932e-002, 2.51339823e-002, - 3.97413336e-002, 3.73882465e-002, -2.45343777e-003, - -7.06466730e-004, 4.90371417e-003, 3.79261072e-003, - 1.96522307e-002, 2.40573473e-003, 3.59884463e-002, - 2.18528472e-002, 3.25126380e-001, -5.03037870e-003, - 3.77621442e-001, 2.04742670e-001, -2.75386482e-001, - -1.35408118e-001, 3.18976343e-001, 2.54470646e-001, - -2.41863169e-002, -9.49549489e-003, 3.65392379e-002, - 2.75376830e-002, 2.67403666e-002, 2.63165202e-005, - 3.77420932e-002, 2.07274575e-002, 1.76023722e-001, - -6.41531423e-002, 2.78439760e-001, 1.77207947e-001, - -2.16138422e-001, -3.40133198e-002, 2.70559162e-001, - 1.79101214e-001, -2.02413481e-002, -1.24008255e-003, - 3.17563117e-002, 2.25694608e-002, 1.93503231e-003, - -5.56566520e-004, 4.27528843e-003, 3.01670516e-003, - 1.46617005e-002, -2.89002471e-002, 3.26571502e-002, - 3.66509706e-002, -1.65911634e-002, -2.73714103e-002, - 3.23431082e-002, 3.59291360e-002, -1.29684119e-003, - -3.45894834e-004, 3.70232086e-003, 3.34104011e-003, - 5.98311750e-003, 1.05492342e-002, 8.94202478e-003, - 2.15263944e-002, -2.24543549e-003, 1.33578286e-001, - 2.72637066e-002, 2.10825384e-001, -2.80982489e-003, - 1.25109613e-001, 3.42728235e-002, 2.15699464e-001, - -1.06604840e-003, 1.05930772e-002, 4.23323456e-003, - 2.65961103e-002, 1.04978681e-001, -2.91036665e-002, - 1.17106736e-001, 4.91518006e-002, 5.44691160e-002, - -2.90812179e-002, 2.71324694e-001, 1.90588176e-001, - 5.97921759e-002, 6.45737797e-002, 2.46676832e-001, - 1.76535428e-001, -1.62088666e-002, 1.90236829e-002, - 3.84315178e-002, 2.83595175e-002, 6.08282946e-002, - -1.51563054e-002, 8.50100815e-002, 3.44708040e-002, - 2.63631016e-001, -9.64099020e-002, 5.37047148e-001, - 1.75775170e-001, 8.00439119e-002, 2.33679842e-002, - 2.19382852e-001, 9.68189538e-002, -1.18050762e-002, - 5.91749791e-003, 3.45138609e-002, 1.39079764e-002, - 2.84454273e-003, 1.59241096e-003, 8.26416072e-003, - 5.78078907e-003, 5.28927818e-002, -2.95505580e-002, - 7.24359155e-002, 6.06346689e-002, 1.24500198e-002, - -3.65224704e-002, 3.15008536e-002, 6.09368794e-002, - -5.69956552e-004, -2.75520468e-003, 3.08373757e-003, - 7.85585307e-003, 1.26846815e-002, -6.91740017e-004, - 1.87041443e-002, 3.55033507e-003, 9.03022662e-003, - 8.90522823e-003, 3.49560007e-002, 1.99282728e-002, - -1.28647862e-002, 3.40154464e-003, 3.87335233e-002, - 2.03660522e-002, -1.32454382e-002, -1.09547889e-003, - 1.56957991e-002, 3.92811000e-003, 1.25010908e-001, - 1.04702578e-003, 1.74962640e-001, 2.46070195e-002, - -3.99378547e-003, 2.09764466e-002, 2.41176739e-001, - 1.07775360e-001, -7.58463368e-002, 1.00631258e-002, - 3.08007687e-001, 1.21695712e-001, -1.17995515e-001, - -7.34300911e-003, 1.41341016e-001, 3.29686962e-002, - 1.53735548e-001, -1.04859825e-002, 2.02723324e-001, - 3.15070674e-002, -1.18820615e-001, -3.41519751e-002, - 3.71897846e-001, 1.52923867e-001, -6.61689341e-002, - -2.20375478e-001, 3.45083982e-001, 2.80703038e-001, - -1.22433752e-001, -1.02961352e-002, 1.64475620e-001, - 3.42212878e-002, 1.66145544e-002, -1.51824940e-003, - 2.63023190e-002, 5.88553958e-003, -4.39064503e-002, - -5.60438856e-002, 8.76970515e-002, 8.75728056e-002, - -2.40339804e-002, -5.69314361e-002, 7.61434361e-002, - 1.10439233e-001, -2.54171551e-003, -1.54053618e-003, - 1.20543297e-002, 8.59299395e-003, -1.41131342e-003, - -9.13567189e-003, 1.35897109e-002, 1.89275723e-002, - -3.89265176e-003, -2.18484595e-001, 4.85950448e-002, - 2.66246140e-001, -2.80276388e-002, -2.40196109e-001, - 5.33464402e-002, 2.89449722e-001, -8.05054884e-003, - -2.33632326e-002, 1.21557582e-002, 2.98089013e-002, - -1.35208592e-001, -4.39819135e-002, 1.61036953e-001, - 6.07778318e-002, -1.90229401e-001, -2.90586680e-001, - 2.44155020e-001, 3.62976432e-001, -2.75845397e-002, - -1.94769472e-001, 1.21536814e-001, 2.81165689e-001, - 6.94625685e-003, -2.52989680e-002, 2.52536628e-002, - 3.79954502e-002, -1.24589831e-001, -2.30955537e-002, - 1.42129973e-001, 3.90058458e-002, -8.74977112e-002, - -1.67187117e-002, 1.59336612e-001, 1.17778756e-001, - -4.26835474e-003, 2.16860026e-002, 7.88923800e-002, - 9.64503735e-002, 4.88287117e-003, 2.46278942e-003, - 1.51494732e-002, 1.59776900e-002, -1.27295591e-002, - -1.53874164e-003, 1.61789618e-002, 5.44271944e-003, - -7.39214383e-003, 1.41087631e-002, 2.46753264e-002, - 2.57309563e-002, 2.65528518e-003, 1.28444936e-002, - 1.73884165e-002, 2.42166556e-002, -1.21407669e-004, - 1.69111066e-003, 2.82203313e-003, 3.71065550e-003, - 1.88758038e-003, 8.45111813e-003, 6.39547175e-003, - 1.72391851e-002, 1.44747943e-002, 1.41498759e-001, - 3.63598540e-002, 2.25383416e-001, 1.19609572e-003, - 1.47837818e-001, 2.36476883e-002, 2.42902711e-001, - 3.55396536e-004, 1.62318666e-002, 4.57418524e-003, - 2.99176294e-002, 5.08022681e-002, 5.44940704e-004, - 7.54169896e-002, 4.26972210e-002, 2.67546207e-001, - 6.34463653e-002, 3.51942629e-001, 2.03692630e-001, - -1.87716726e-002, 6.66949227e-002, 1.03664704e-001, - 1.66914955e-001, -1.31935868e-002, 1.29902940e-002, - 2.86322925e-002, 2.89405733e-002, 5.11522368e-002, - -6.43924903e-003, 7.68340677e-002, 3.97391878e-002, - 2.37451404e-001, -1.73909754e-001, 3.83761883e-001, - 2.68665165e-001, 4.03497666e-002, -9.58756655e-002, - 1.56452358e-001, 1.66524500e-001, -9.81937815e-003, - -3.13206622e-003, 2.80732326e-002, 1.88269410e-002, - 4.08705045e-003, -5.93176926e-004, 8.71066377e-003, - 6.97281165e-003, 2.57596765e-002, -3.39146182e-002, - 6.78618625e-002, 6.51184171e-002, 2.44160239e-002, - -3.76202576e-002, 4.93437387e-002, 6.26700148e-002, - 4.82371659e-004, -3.27464822e-003, 3.93599365e-003, - 6.58074580e-003, 1.10128662e-002, -3.08342604e-003, - 1.66147109e-002, 6.05509616e-003, 1.05698276e-002, - 1.62674598e-002, 5.44309802e-002, 2.81373169e-002, - -1.49958869e-002, 1.75805520e-002, 4.24731560e-002, - 3.46491858e-002, -9.46246833e-003, -9.71004891e-004, - 1.25037292e-002, 5.00692846e-003, 1.13130040e-001, - -1.07134320e-002, 1.48930982e-001, 3.34431864e-002, - 8.93445164e-002, -4.96498570e-002, 4.15395588e-001, - 1.58998951e-001, -6.60490468e-002, -1.29164075e-002, - 2.80113250e-001, 1.43223062e-001, -1.12517990e-001, - -1.27327237e-002, 1.33305445e-001, 3.42390724e-002, - 9.58336890e-002, -8.90097115e-003, 1.30984202e-001, - 4.26444523e-002, 1.80302694e-001, -1.62449554e-001, - 3.47904086e-001, 2.51560181e-001, -6.60199448e-002, - -4.04988602e-002, 3.06649953e-001, 1.76101953e-001, - -1.20991230e-001, -4.29056212e-003, 1.51547372e-001, - 2.97486652e-002, 5.35155041e-003, 2.84516631e-004, - 1.35986870e-002, 7.22637633e-003, 3.15988883e-002, - -4.20694649e-002, 5.96374199e-002, 5.77878058e-002, - 2.98642000e-004, -4.52206470e-002, 6.08334318e-002, - 5.64006977e-002, -9.15018842e-003, -8.41179339e-004, - 1.58458371e-002, 5.63843409e-003, -3.70763894e-003, - 3.21061118e-003, 7.95662031e-003, 6.23942865e-003, - 8.48632772e-003, 5.31310588e-002, 2.49078665e-002, - 7.62265697e-002, 2.31094211e-002, 5.78247197e-002, - 3.72273624e-002, 8.47638100e-002, 3.49799008e-003, - 5.13303466e-003, 6.86264131e-003, 9.25934315e-003, - 2.32218131e-002, 9.83480550e-003, 5.38297147e-002, - 5.60335927e-002, 1.95671156e-001, 1.08206041e-001, - 2.77432650e-001, 5.51889539e-001, 5.61283305e-002, - 2.14217156e-001, 1.58072203e-001, 3.49859685e-001, - -8.09477363e-003, 2.06422880e-002, 2.23646034e-002, - 2.94207223e-002, 3.66437286e-002, 1.28806541e-002, - 5.75631186e-002, 6.58236966e-002, 1.76569074e-001, - 1.71115711e-001, 2.24078968e-001, 2.83594906e-001, - 1.88144930e-002, 2.11703330e-002, 8.66428167e-002, - 1.04101621e-001, -7.67380279e-003, -1.72545156e-003, - 1.54361306e-002, 1.04095004e-002, 4.79483139e-003, - 2.64027878e-003, 8.35080817e-003, 7.36422883e-003, - 1.56317912e-002, -9.00123734e-003, 2.53972020e-002, - 2.73718182e-002, 1.64362218e-003, -1.18365213e-002, - 1.34894894e-002, 2.16449630e-002, -5.95791440e-004, - -6.42523577e-004, 2.48112855e-003, 2.09046155e-003, - 5.13723877e-004, 2.93643272e-004, 1.94743683e-003, - 1.42010523e-003, -1.42255682e-003, 4.51209443e-003, - 1.23385377e-002, 1.12579232e-002, -5.03232069e-002, - 7.39971455e-003, 5.72440811e-002, 2.08255760e-002, - -7.40556652e-003, -1.99095509e-003, 1.85458791e-002, - 5.72558260e-003, 5.48350811e-003, -9.70116176e-004, - 1.35167930e-002, 9.99524910e-003, -5.79456508e-004, - 2.12536915e-003, 6.83251545e-002, 5.89919984e-002, - -3.35776508e-001, 1.14239482e-002, 3.82017851e-001, - 1.00731753e-001, -7.86184222e-002, 9.75667033e-004, - 1.45826727e-001, 3.51343676e-002, 1.01812081e-002, - -2.68782210e-002, 2.03344058e-002, 3.77266333e-002, - 5.32368943e-003, -1.45732820e-001, 8.74532536e-002, - 2.09643826e-001, -3.06798637e-001, -1.32122964e-001, - 3.64205211e-001, 2.29624271e-001, -7.10763559e-002, - 3.82087845e-003, 1.36817515e-001, 4.43529524e-002, - -2.88051990e-004, -2.22879183e-002, 4.27468587e-003, - 3.12904827e-002, 1.25310454e-003, -1.80142775e-001, - 2.61247605e-002, 2.42000416e-001, -1.60471257e-002, - -1.69776127e-001, 4.04993072e-002, 2.23564044e-001, - -2.02506245e-003, -1.05635338e-002, 1.00153657e-002, - 1.57333370e-002, 3.58883408e-004, -1.67186852e-004, - 4.37369850e-003, 4.28260397e-003, -2.73137609e-003, - -1.71613730e-002, 3.16858478e-002, 3.68122831e-002, - 4.90725506e-003, -2.10989751e-002, 3.36624943e-002, - 3.80461030e-002, 5.23035554e-003, 8.84734967e-004, - 7.31526874e-003, 5.39280986e-003, -1.94773450e-002, - -1.17196711e-002, 3.48596573e-002, 3.04324273e-002, - -5.81919355e-003, -1.08188942e-001, 1.65408209e-001, - 1.92925915e-001, 1.71427682e-001, 7.11412057e-002, - 2.35706136e-001, 2.18820125e-001, 6.97030723e-002, - 3.45403440e-002, 7.65585005e-002, 5.04302457e-002, - -2.05171723e-002, 2.48517338e-002, 3.94436531e-002, - 4.04048450e-002, 6.69953451e-002, 2.64179677e-001, - 2.06430376e-001, 3.11080307e-001, 3.10308158e-001, - 2.54111052e-001, 3.56920749e-001, 3.10335547e-001, - 5.31823896e-002, 2.62643155e-002, 6.39579520e-002, - 3.97957936e-002, 2.52756500e-003, 4.68656654e-003, - 6.33759703e-003, 7.32412096e-003, 1.73103362e-002, - 6.17721975e-002, 4.35455292e-002, 7.37462267e-002, - 2.29243916e-002, 5.72882369e-002, 4.19478975e-002, - 6.79040179e-002, 9.29715519e-004, 4.10428300e-004, - 4.61936183e-003, 4.06084443e-003, 6.95818308e-005, - -1.18192786e-003, 5.97311556e-003, 2.90824659e-003, - -1.10366950e-002, 9.55316611e-003, 3.31960581e-002, - 2.55409069e-002, -5.55871008e-003, 1.45146549e-002, - 5.12323454e-002, 2.93190703e-002, -1.95253529e-002, - -6.19365019e-004, 2.86678392e-002, 4.99462290e-003, - 1.67356730e-002, 3.62715684e-003, 4.19208817e-002, - 2.08192896e-002, -7.63984770e-002, 2.82643326e-002, - 1.84789151e-001, 1.21493272e-001, -3.03851403e-002, - 1.73099581e-002, 3.62230748e-001, 1.10172018e-001, - -1.41491011e-001, 2.15373002e-003, 2.09176794e-001, - 3.02386768e-002, 1.68433189e-002, -1.52206849e-002, - 3.87028381e-002, 3.34514529e-002, -4.43859994e-002, - -1.07878566e-001, 1.59776181e-001, 2.06782609e-001, - -6.71390891e-002, -1.11549139e-001, 3.14831167e-001, - 2.44776085e-001, -1.36883616e-001, -2.55417824e-003, - 2.01917797e-001, 3.79958674e-002, -2.05533882e-003, - -2.49289013e-002, 6.65189512e-003, 3.40777822e-002, - -8.32035299e-003, -2.25880802e-001, 3.35402340e-002, - 2.78852016e-001, -2.38425541e-003, -2.12515056e-001, - 4.04483490e-002, 2.72824049e-001, -5.41373389e-003, - -1.51050910e-002, 1.46798296e-002, 2.51965523e-002, - 3.28544353e-004, -1.01296767e-003, 4.73848311e-003, - 4.29364154e-003, 4.27467609e-003, -3.12066488e-002, - 3.43826748e-002, 4.33048382e-002, 3.66432481e-002, - -3.13708968e-002, 5.00328764e-002, 4.84031029e-002, - 2.49213283e-003, 8.69672513e-004, 5.60807902e-003, - 4.73081553e-003, -1.25363786e-002, -6.62288954e-003, - 3.25829722e-002, 2.58605834e-002, -6.81583881e-002, - -7.25039244e-002, 1.63401246e-001, 1.54411554e-001, - 2.74495572e-001, -1.32860854e-001, 3.17939103e-001, - 2.12959677e-001, 5.31102344e-002, -7.74333766e-003, - 6.31474033e-002, 3.38516980e-002, -1.63366441e-002, - 6.06924223e-005, 3.33300382e-002, 2.51825098e-002, - 9.42465942e-003, 7.72646889e-002, 1.71498895e-001, - 1.61176518e-001, 3.39013845e-001, 3.18586260e-001, - 3.70980978e-001, 3.52898479e-001, 4.20461819e-002, - 2.68870667e-002, 5.38445674e-002, 3.77738811e-002, - -1.65939400e-006, 1.63618708e-003, 4.82202135e-003, - 4.67878673e-003, 3.16721238e-002, 4.20777798e-002, - 4.69677597e-002, 5.04483469e-002, 4.93438691e-002, - 2.97953635e-002, 5.69230951e-002, 4.65946533e-002, - -2.32982697e-004, -5.36465028e-004, 3.74315400e-003, - 3.50161269e-003, 1.88231375e-003, -1.11577509e-003, - 5.49448561e-003, 4.10272554e-003, 5.57923643e-003, - 9.99026746e-003, 1.76667701e-002, 2.83040758e-002, - -2.48951581e-003, 9.66558792e-003, 1.76278856e-002, - 2.87030041e-002, -3.89932352e-003, 8.82583990e-005, - 6.80968584e-003, 4.79276851e-003, 4.14978974e-002, - -1.41752148e-002, 6.53098524e-002, 2.98719257e-002, - 3.57008539e-002, -1.92438196e-002, 1.65761128e-001, - 1.04054295e-001, 1.88212248e-003, -6.75615389e-003, - 1.11162327e-001, 9.21090245e-002, -3.45320217e-002, - 3.50292794e-005, 5.61929345e-002, 1.78152397e-002, - 3.21657881e-002, -1.91562548e-002, 6.19173199e-002, - 3.49889174e-002, -1.16199665e-001, -2.79949278e-001, - 3.86816353e-001, 3.36381167e-001, 1.50553003e-001, - -3.60438198e-001, 2.95482695e-001, 3.99347633e-001, - -3.44697051e-002, -3.23702917e-002, 6.07984550e-002, - 4.27243896e-002, 3.80643673e-004, -5.81025984e-003, - 4.62861033e-003, 9.30092111e-003, -1.18243266e-002, - -5.05149588e-002, 3.22521105e-002, 7.36146718e-002, - 6.36878284e-003, -3.58109735e-002, 2.91315615e-002, - 6.17260896e-002, 1.06456115e-004, -5.80688938e-003, - 4.66731144e-003, 9.51723754e-003, 1.97191694e-004, - 9.67261090e-004, 5.60472906e-003, 6.39913417e-003, - 1.77485067e-002, 2.92439163e-002, 3.96610089e-002, - 6.05651252e-002, 1.36183975e-002, 4.75671478e-002, - 3.68796028e-002, 6.98997080e-002, 5.58855209e-006, - 3.87767586e-003, 5.20102400e-003, 7.54049979e-003, - 5.58151901e-002, 2.67330352e-002, 6.96822554e-002, - 4.98208851e-002, 5.65642193e-002, 2.77478635e-001, - 2.94552565e-001, 3.53384405e-001, 4.65109386e-002, - 1.10925227e-001, 2.04188988e-001, 2.13570043e-001, - -1.75752193e-002, 1.41695384e-002, 4.21235338e-002, - 3.26525010e-002, 5.20209931e-002, -2.45910026e-002, - 6.94213659e-002, 5.46869487e-002, 1.43021598e-001, - -2.36789614e-001, 2.81019628e-001, 3.87359440e-001, - 1.02502415e-002, -1.43431658e-002, 1.75873995e-001, - 2.45484591e-001, -2.15339791e-002, -2.67324038e-003, - 4.22308072e-002, 3.15342471e-002, -8.46233510e-004, - 1.53629947e-003, 5.82786975e-003, 8.63396749e-003, - 1.42120160e-002, -2.89945267e-002, 4.01692167e-002, - 8.79405662e-002, 1.69208571e-002, -7.46910945e-002, - 3.84317674e-002, 1.16007477e-001, -1.10925554e-004, - -6.80860784e-003, 5.76472515e-003, 1.22775780e-002, - -2.21425275e-004, 7.44451943e-004, 5.12384297e-003, - 4.85592242e-003, 2.62726448e-003, 3.17397639e-002, - 2.95482110e-002, 4.68709655e-002, -5.57423860e-004, - 3.50576937e-002, 2.53477339e-002, 5.31601198e-002, - 2.97162973e-004, 2.23001605e-003, 3.22378008e-003, - 6.15735026e-003, 3.05648893e-002, 5.87524613e-003, - 4.90624867e-002, 3.39574814e-002, 1.13968350e-001, - 1.72992334e-001, 2.45145142e-001, 2.91240841e-001, - -2.79367696e-002, 1.00443512e-001, 1.83127314e-001, - 3.26978713e-001, -2.51318179e-002, 1.40352407e-002, - 3.50051858e-002, 4.14774977e-002, 4.85881716e-002, - 1.48267136e-003, 6.51879907e-002, 3.43687125e-002, - -7.43400902e-002, 2.53281612e-002, 4.94765818e-001, - 2.97551304e-001, -2.92268060e-002, -1.22492209e-001, - 2.21942127e-001, 2.59482503e-001, -2.02000868e-002, - -1.36411367e-002, 3.43958810e-002, 3.50589007e-002, - 1.59909343e-003, -5.51175675e-004, 6.62288722e-003, - 5.80993388e-003, -8.38255696e-003, -5.17987385e-002, - 5.16177081e-002, 6.76556453e-002, -7.68287294e-003, - -3.27656493e-002, 3.02220322e-002, 5.30003011e-002, - -5.91722201e-005, -1.95023813e-003, 3.89568764e-003, - 5.56715345e-003, 4.66486299e-003, 1.43891270e-003, - 8.34287517e-003, 4.94920975e-003, -1.69729888e-002, - 3.64180133e-002, 3.96390110e-002, 4.55564409e-002, - -5.33069037e-002, 2.83498242e-002, 6.37847334e-002, - 4.47733775e-002, -2.78380699e-004, -1.00494362e-003, - 5.03736082e-003, 4.85244580e-003, 7.13837072e-002, - 1.74643693e-003, 8.37836266e-002, 2.60839239e-002, - -5.63283600e-002, 8.88512358e-002, 2.00957805e-001, - 1.56170994e-001, -4.19699013e-001, 2.04038396e-001, - 4.54217374e-001, 2.64305025e-001, -2.25776285e-002, - 2.25124881e-002, 4.57991585e-002, 3.97994630e-002, - 6.45081848e-002, -6.79824781e-003, 8.09997246e-002, - 2.80361790e-002, -1.84712969e-002, -5.86147942e-002, - 2.33145192e-001, 1.57272384e-001, -1.64518788e-001, - 6.09235652e-002, 2.34422982e-001, 2.38212943e-001, - -5.03773876e-002, 3.49799208e-002, 6.12876080e-002, - 5.64637817e-002, 2.73879711e-003, -1.95857487e-003, - 8.34751129e-003, 6.90189190e-003, -4.59205871e-003, - -5.60285002e-002, 4.49822843e-002, 7.30758980e-002, - -9.96068213e-003, -5.73877655e-002, 3.07754595e-002, - 7.87687823e-002, -3.66957206e-003, -3.36516555e-003, - 6.40444737e-003, 8.50577187e-003, -2.08723103e-003, - -7.64476019e-004, 6.44099619e-003, 3.95299261e-003, - -3.47771123e-002, -2.85140947e-002, 5.70369773e-002, - 4.27256115e-002, -3.64222424e-003, -2.90612485e-002, - 3.12815011e-002, 4.81411070e-002, 1.03924435e-003, - -1.51970505e-003, 4.15520184e-003, 5.48098143e-003, - -5.37472256e-002, -1.72775276e-002, 7.08328784e-002, - 3.73780727e-002, -8.08379501e-002, -1.39284119e-001, - 2.85501629e-001, 2.75230229e-001, 1.17987823e-002, - 4.36873585e-002, 1.71803758e-001, 2.40589380e-001, - 1.40819103e-002, -2.57596665e-004, 3.23393643e-002, - 3.07598412e-002, -6.27659783e-002, 1.25958482e-004, - 7.51355737e-002, 4.25715260e-002, -9.70252901e-002, - -1.75918583e-002, 2.88605899e-001, 3.75122041e-001, - -6.04836969e-003, -2.18808904e-001, 1.72980443e-001, - 4.45677221e-001, 2.14748718e-002, -2.17600092e-002, - 3.98902036e-002, 5.14828041e-002, -2.85050040e-003, - 2.35331594e-003, 5.44968434e-003, 6.62699202e-003, - -2.19829436e-002, 5.81128336e-002, 4.07170653e-002, - 8.93514305e-002, -1.48128020e-002, 6.58066049e-002, - 3.39474827e-002, 8.65821689e-002, 6.15101831e-004, - 4.03344864e-003, 5.73894521e-003, 9.02773254e-003, - -2.96423794e-003, -3.74801806e-004, 4.80135204e-003, - 1.82749215e-003, -4.93010040e-003, -2.56425375e-003, - 1.57650728e-002, 1.19777583e-002, 1.71591230e-002, - -4.22705570e-003, 3.33453268e-002, 1.33876558e-002, - 2.89804265e-002, 2.10388494e-003, 3.22497152e-002, - 4.90438845e-003, -2.41479725e-002, 4.09375690e-003, - 3.71269658e-002, 1.74719170e-002, -3.80633622e-002, - -3.75433057e-003, 1.10820778e-001, 7.66928196e-002, - 1.02951594e-001, 3.93996341e-003, 2.28210643e-001, - 9.14131105e-002, 2.48852029e-001, 1.31586948e-002, - 2.82466859e-001, 3.53262872e-002, -3.22775431e-002, - 1.93732996e-002, 5.21613099e-002, 3.58043313e-002, - -3.16391066e-002, 9.63910893e-002, 1.50816396e-001, - 1.79051965e-001, 1.16279073e-001, 1.15481794e-001, - 2.92898864e-001, 2.06440315e-001, 2.44840413e-001, - -2.96096341e-003, 2.96607435e-001, 4.02708054e-002, - -6.77103002e-004, 1.72345731e-002, 6.85100816e-003, - 2.66855117e-002, 5.75993769e-003, 1.97700217e-001, - 3.76241915e-002, 2.91799873e-001, 1.79196743e-003, - 1.87076792e-001, 5.58962524e-002, 3.06606263e-001, - 1.62473936e-002, 7.11637177e-003, 2.28770077e-002, - 2.43901536e-002, -8.02659197e-004, -5.82251523e-004, - 4.71593346e-003, 4.23265621e-003, -1.27662416e-003, - -2.90690809e-002, 3.28107476e-002, 4.97474559e-002, - 4.25184378e-003, -3.46114747e-002, 3.06960400e-002, - 6.13563731e-002, -6.31362665e-004, -1.80305878e-003, - 6.52923388e-003, 7.76922423e-003, -3.30388546e-002, - -9.07722511e-004, 5.20674512e-002, 2.67417151e-002, - -1.34928882e-001, -9.94756296e-002, 2.97784716e-001, - 3.29619378e-001, 3.67239304e-002, 7.91565608e-003, - 1.53477862e-001, 4.88602251e-001, 3.15186046e-002, - -1.00291241e-003, 4.55329418e-002, 6.38340041e-002, - -3.92641872e-002, 1.87628320e-003, 5.67576960e-002, - 2.14469731e-002, 2.97757555e-002, 1.00835271e-001, - 4.11128700e-001, 2.00953439e-001, 4.24192995e-002, - 1.14984065e-001, 2.00282350e-001, 2.27953270e-001, - 1.83834005e-002, 1.43973473e-002, 4.16165181e-002, - 4.08860557e-002, -3.48834554e-003, 5.47931821e-004, - 6.19303761e-003, 3.40461917e-003, 4.94752661e-004, - 2.49030571e-002, 3.95718291e-002, 3.70527990e-002, - 4.85173427e-003, 1.49124805e-002, 3.27660777e-002, - 3.61025147e-002, -1.41835786e-004, 5.95143763e-004, - 5.18111419e-003, 5.13957907e-003, -1.47947168e-004, - -3.85181955e-003, 5.86132985e-003, 7.96777382e-003, - -9.92553215e-003, -7.77272806e-002, 2.98860390e-002, - 9.19389576e-002, -3.11118062e-003, -7.38328174e-002, - 3.21875252e-002, 9.33854729e-002, -1.64491474e-003, - -5.38385846e-003, 5.24049951e-003, 9.12229065e-003, - -6.86973557e-002, 2.33002403e-003, 7.92483687e-002, - 4.43610176e-002, -1.36922421e-002, -1.01912562e-002, - 2.54621118e-001, 2.51841813e-001, -8.57497826e-002, - -6.79493025e-002, 2.01974154e-001, 2.26923138e-001, - 2.11396571e-002, -1.46172727e-002, 3.21907252e-002, - 3.60895842e-002, -6.38606250e-002, 1.77231953e-002, - 7.86225945e-002, 4.62427512e-002, 3.58692221e-002, - 2.45607704e-001, 2.64881641e-001, 3.32261086e-001, - -2.54311949e-001, 2.01649830e-001, 3.49975526e-001, - 2.80974120e-001, 2.26280093e-002, 1.72002912e-002, - 3.95475626e-002, 3.79420854e-002, 5.11280145e-004, - 4.33513150e-003, 7.28435861e-003, 8.12688842e-003, - -1.95956766e-003, 5.77406399e-002, 3.82833444e-002, - 6.93659633e-002, -3.26914750e-002, 4.67399172e-002, - 5.38718924e-002, 6.58656210e-002, -2.08039326e-003, - 2.40251073e-003, 5.42022614e-003, 6.65185694e-003, - 9.14087333e-003, 1.53226743e-003, 1.35176545e-002, - 8.19332711e-003, -3.89672145e-002, 8.33824873e-002, - 6.28880784e-002, 1.04758836e-001, -3.46402600e-002, - 7.63722658e-002, 7.95815587e-002, 1.35905847e-001, - 2.60733720e-003, -2.38925428e-003, 1.00908801e-002, - 1.30867567e-002, 1.18854754e-001, -3.28307413e-002, - 1.65073037e-001, 5.83434068e-002, 5.26432879e-002, - 3.19198035e-002, 1.67323560e-001, 1.41029194e-001, - -2.36076847e-001, 2.46608078e-001, 3.05232137e-001, - 3.07126492e-001, -5.03024608e-002, 4.83891964e-002, - 1.07771143e-001, 8.32045600e-002, 7.39616752e-002, - -2.55668703e-002, 1.83337554e-001, 5.50030284e-002, - 2.51794875e-001, -1.66076094e-001, 3.44955087e-001, - 2.23814979e-001, -1.19727915e-002, -1.52720623e-002, - 1.26117855e-001, 1.19070522e-001, -6.25133812e-002, - 2.57450864e-002, 8.36250558e-002, 4.53135371e-002, - -2.77447933e-003, 2.24903645e-003, 2.05979813e-002, - 7.38678407e-003, 6.18702359e-002, -3.71369049e-002, - 8.45960304e-002, 5.76383248e-002, 8.42082687e-003, - -2.74863765e-002, 3.29888985e-002, 3.98232453e-002, - -3.62534099e-003, -1.09046046e-003, 7.44684786e-003, - 4.99122543e-003, 3.30174167e-004, 1.75632432e-003, - 3.07390443e-003, 4.76462999e-003, 2.04821141e-003, - 2.33261529e-002, 1.96362827e-002, 4.30928767e-002, - 2.37061860e-004, 1.99527945e-002, 1.83976144e-002, - 4.26252149e-002, 7.65452685e-004, 1.70565175e-003, - 2.89900019e-003, 5.43131866e-003, 2.97831204e-002, - 1.59908868e-002, 3.77649479e-002, 4.14538309e-002, - 1.07545100e-001, 2.42882803e-001, 1.77385554e-001, - 4.01604801e-001, -4.49024998e-002, 2.84000963e-001, - 1.20847501e-001, 4.26839173e-001, -1.48563078e-002, - 3.44624147e-002, 2.56727282e-002, 5.26169725e-002, - 2.80823614e-002, -1.97957829e-002, 3.76503095e-002, - 3.35798599e-002, 1.44872144e-001, -2.25964293e-001, - 2.08335876e-001, 2.81076372e-001, -2.78643239e-003, - -1.86168492e-001, 1.22566983e-001, 2.51025856e-001, - -1.40528465e-002, -1.60724763e-002, 2.47277413e-002, - 3.25649641e-002, 6.29489834e-004, -4.17065225e-004, - 3.54974368e-003, 3.73348990e-003, 1.09654665e-002, - -2.00430918e-002, 2.61087976e-002, 3.66511531e-002, - 8.02257191e-003, -2.50714459e-002, 2.35067606e-002, - 4.00906876e-002, 5.57786785e-004, -2.28350470e-003, - 3.20954178e-003, 4.95643867e-003, 2.12119985e-003, - 7.15561237e-006, 5.86288888e-003, 4.91014635e-003, - -1.10025778e-002, 7.36276060e-003, 3.48969996e-002, - 4.37127575e-002, -2.90894751e-002, -4.68284823e-003, - 4.29497547e-002, 4.54899259e-002, -1.33357279e-003, - -1.93550705e-003, 4.83035669e-003, 4.53680428e-003, - 8.98269657e-003, -1.75060797e-002, 5.53474650e-002, - 4.27659787e-002, -5.40366657e-002, -1.95379883e-001, - 2.51240820e-001, 3.47566217e-001, -2.05801085e-001, - -6.83485940e-002, 2.96994954e-001, 2.35444888e-001, - -6.32117409e-003, -1.77536334e-003, 3.75755504e-002, - 2.71590613e-002, -4.56818612e-004, 6.32111914e-004, - 5.40362820e-002, 4.94065322e-002, -6.55270414e-003, - 4.89841849e-002, 2.18497545e-001, 4.26713616e-001, - -1.40088931e-001, 1.95105597e-002, 2.50015974e-001, - 2.73149133e-001, -9.31747630e-003, 3.08796461e-003, - 3.57319154e-002, 2.91202217e-002, 3.42218671e-004, - -2.53720034e-004, 5.11252647e-003, 6.70111738e-003, - -8.38120840e-003, -2.24237028e-003, 3.31882425e-002, - 6.10440895e-002, -1.69946607e-002, -2.03478872e-003, - 3.30808721e-002, 5.23775741e-002, -8.51096585e-004, - -7.73909851e-005, 4.30699857e-003, 4.47563827e-003, - 4.55483235e-003, -3.89329018e-003, 8.05460569e-003, - 6.76912488e-003, -5.41445101e-003, -3.86715159e-002, - 5.70466258e-002, 6.51440397e-002, -3.62111256e-002, - -3.30192931e-002, 7.50630274e-002, 5.98762669e-002, - 2.89329421e-003, -8.87587608e-004, 1.00208884e-002, - 6.90011540e-003, -4.47321776e-003, -3.84330750e-002, - 3.66221406e-002, 4.91597764e-002, 1.16785094e-002, - -3.65496427e-001, 1.80147856e-001, 4.02411550e-001, - -8.71297345e-003, -1.90325558e-001, 2.53278166e-001, - 2.60298878e-001, 3.76425236e-002, -2.61387154e-002, - 5.40537164e-002, 4.47049141e-002, -1.42049901e-002, - 2.43558325e-002, 3.45904119e-002, 4.47728336e-002, - -7.91274570e-003, 1.26053885e-001, 1.29286438e-001, - 2.89625943e-001, 1.97478030e-002, 4.38251086e-002, - 1.32739946e-001, 2.63029456e-001, 3.25412974e-002, - -5.70038892e-003, 4.18094918e-002, 4.53527942e-002, - 2.99141742e-003, 1.39229856e-002, 6.89103967e-003, - 1.85722243e-002, 2.25810520e-003, 1.55748442e-001, - 3.81871909e-002, 1.78829029e-001, -3.09727415e-002, - 1.51333123e-001, 4.49357480e-002, 1.72039419e-001, - -1.19250349e-003, 1.20285572e-002, 6.55570440e-003, - 1.55077688e-002, 5.43350237e-004, 4.57366789e-003, - 3.89117375e-003, 8.22381023e-003, -5.42272162e-003, - 5.16736619e-002, 2.56724022e-002, 7.00947046e-002, - -8.97827093e-003, 4.10633981e-002, 2.71934643e-002, - 6.40471280e-002, -3.83849372e-004, 2.12616147e-003, - 4.03889967e-003, 6.88570738e-003, 1.84078868e-002, - -8.92488472e-003, 3.20464894e-002, 5.02474084e-002, - 2.94699986e-002, -9.73020270e-002, 1.48453653e-001, - 4.32251394e-001, -5.63038029e-002, 4.41433154e-002, - 1.85732841e-001, 3.92939150e-001, -3.00827678e-002, - 6.76399283e-003, 4.44026329e-002, 5.01308143e-002, - 1.46046178e-002, -1.71333663e-002, 3.08295209e-002, - 4.01750654e-002, 3.11496425e-002, -1.13229819e-001, - 1.61999971e-001, 2.95637935e-001, -8.05965587e-002, - -2.66377360e-001, 2.27708817e-001, 3.72137249e-001, - -2.35633068e-002, -3.73542793e-002, 4.15070541e-002, - 5.09118587e-002, 1.20522709e-004, -1.84217782e-003, - 3.57989501e-003, 5.80979697e-003, -5.60796075e-003, - -2.66489927e-002, 2.42793635e-002, 4.96328585e-002, - -1.29103446e-002, -1.62364803e-002, 2.87972111e-002, - 4.37877141e-002, 4.62657888e-004, -1.39673633e-004, - 3.73359025e-003, 5.03206812e-003, -1.97072374e-003, - 1.38638978e-004, 4.81132884e-003, 5.75274089e-003, - 2.60256784e-004, -2.27960628e-002, 3.12421974e-002, - 4.08319756e-002, 5.59533983e-002, -1.41263269e-002, - 6.59846291e-002, 3.96792293e-002, 9.54545918e-004, - 3.73169174e-003, 6.62680436e-003, 6.33880170e-003, - -2.69088689e-002, 2.26040520e-002, 4.09678295e-002, - 3.81396227e-002, -4.27943654e-002, 1.98146537e-001, - 1.85570210e-001, 3.01988959e-001, 3.22893232e-001, - -1.56873763e-002, 3.91788781e-001, 2.39118457e-001, - 3.34662721e-002, -1.49043109e-002, 6.37920424e-002, - 3.83266583e-002, -1.89706981e-002, 1.14094904e-002, - 3.74381989e-002, 3.24338600e-002, -1.49641186e-001, - 2.03410294e-002, 2.10529059e-001, 2.08128244e-001, - 1.35924503e-001, -3.02735418e-002, 3.29068601e-001, - 2.90853620e-001, 6.38792664e-002, 2.13075848e-003, - 8.37696120e-002, 3.73819321e-002, -1.02580199e-003, - 4.60926531e-004, 5.97379403e-003, 4.88086278e-003, - -1.45497657e-002, 2.74407770e-002, 3.64612006e-002, - 4.65492979e-002, 2.35654600e-002, 4.12867852e-002, - 4.53993455e-002, 5.32473847e-002, 4.73097060e-003, - 2.53317830e-006, 8.06004554e-003, 3.96798365e-003, - 1.35607785e-003, -6.12339703e-003, 5.66907600e-003, - 9.63900797e-003, 2.00614370e-002, -7.53771886e-002, - 4.82102372e-002, 9.08600092e-002, 3.28707099e-002, - -3.86093371e-002, 5.19364141e-002, 6.97669536e-002, - -2.26015248e-003, -3.37343314e-004, 5.69884153e-003, - 6.52516540e-003, -1.30105913e-002, -2.63928026e-002, - 3.07559129e-002, 4.02638614e-002, -3.13743316e-002, - -2.00148463e-001, 1.64439827e-001, 2.67777234e-001, - 2.12639943e-001, -4.37118471e-001, 2.52407759e-001, - 4.79260266e-001, 1.87500622e-002, -8.10827389e-002, - 4.11963165e-002, 8.87224823e-002, -1.81997102e-002, - 1.28496001e-002, 3.00125368e-002, 3.83042023e-002, - -4.04954292e-002, 8.08756351e-002, 1.09016374e-001, - 2.02919886e-001, 2.81703807e-002, 6.93894252e-002, - 9.62149203e-002, 1.86371297e-001, 1.50213754e-002, - -1.58442592e-003, 2.47605741e-002, 3.68225910e-002, - 5.00717375e-004, 6.52053952e-003, 4.71751858e-003, - 9.98587906e-003, 1.97680015e-003, 8.39863643e-002, - 2.96587776e-002, 1.00039355e-001, -3.52372439e-003, - 9.50648934e-002, 3.37301195e-002, 1.11481041e-001, - -2.17978680e-003, 8.79410375e-003, 5.08794421e-003, - 1.17453802e-002, 1.61545060e-003, 4.78364236e-005, - 5.00028953e-003, 3.11536645e-003, 7.71656586e-003, - 1.35009354e-002, 3.53333876e-002, 2.76290923e-002, - -8.21095658e-004, 2.12103017e-002, 5.23241013e-002, - 3.58537212e-002, -2.40820134e-003, -4.64563229e-004, - 6.11215550e-003, 3.98330577e-003, 2.56521124e-002, - 4.69451630e-003, 4.17481847e-002, 2.15203669e-002, - 7.73107186e-002, 6.55902624e-002, 2.57272989e-001, - 1.64885879e-001, -9.30566993e-003, 6.11668751e-002, - 5.25375068e-001, 2.14177057e-001, -2.92603094e-002, - -1.93271041e-003, 4.97442782e-002, 2.75376067e-002, - 2.79242881e-002, -4.60363040e-003, 4.20134440e-002, - 2.38966793e-002, 5.75222671e-002, -7.37482682e-002, - 2.34605283e-001, 2.10531771e-001, -9.87575278e-002, - -2.08648592e-001, 3.86702895e-001, 2.87373304e-001, - -1.99444834e-002, -7.67423352e-003, 3.98892090e-002, - 2.76112407e-002, 1.06045546e-003, -1.04756642e-003, - 4.51228209e-003, 3.70519795e-003, -5.60555025e-004, - -2.56067924e-002, 2.85933260e-002, 3.73951718e-002, - -1.26620540e-002, -1.99783444e-002, 3.21357325e-002, - 3.52144577e-002, 9.11065072e-005, -2.02013878e-004, - 3.76578560e-003, 3.55157023e-003, -3.33454320e-003, - 4.10201639e-004, 9.78872180e-003, 7.78554007e-003, - -2.77551040e-002, -3.20915617e-002, 5.11835888e-002, - 5.77469990e-002, -6.63046166e-003, -3.22476663e-002, - 3.38956639e-002, 4.69299741e-002, 2.03429791e-003, - -1.55915169e-003, 5.58066973e-003, 5.38526569e-003, - -8.62716883e-002, 7.99179450e-003, 1.07687630e-001, - 5.86653240e-002, -1.54251218e-001, -1.15553945e-001, - 2.49367073e-001, 2.86276340e-001, 4.88600768e-002, - 2.34745890e-002, 1.61236614e-001, 2.07980648e-001, - 3.17801498e-002, 1.38038406e-002, 4.50507887e-002, - 3.89117710e-002, -1.04344681e-001, 2.22968459e-002, - 1.25854462e-001, 5.60314842e-002, -1.79265767e-001, - 2.49685779e-001, 2.73829252e-001, 3.79831940e-001, - 1.80363029e-001, 1.71742395e-001, 2.49753565e-001, - 2.75118142e-001, 2.73196995e-002, 3.34055908e-002, - 5.10744676e-002, 5.05552106e-002, -3.26072797e-003, - -6.70396141e-004, 9.77349840e-003, 6.88678585e-003, - -3.20020169e-002, 2.85952594e-002, 5.41312993e-002, - 5.96797690e-002, 1.16633885e-002, 3.18943746e-002, - 4.48976234e-002, 5.66300303e-002, 8.47240386e-004, - 1.21494224e-004, 6.58221822e-003, 6.58132182e-003, - -1.65892616e-002, 4.03536391e-003, 1.94510035e-002, - 8.57209601e-003, -2.38093901e-002, -1.04000624e-002, - 4.46915887e-002, 2.58333664e-002, 8.21203552e-003, - -7.32394541e-003, 2.60365643e-002, 2.20809970e-002, - 5.33624133e-003, 1.90914888e-003, 7.61658605e-003, - 3.80945834e-003, -1.69497058e-001, -1.56501140e-002, - 1.86612859e-001, 5.21386154e-002, -1.24710269e-001, - -1.53161706e-002, 2.82756746e-001, 1.36313528e-001, - 1.36523306e-001, 4.93918844e-002, 1.89053401e-001, - 1.41525015e-001, 9.68733504e-002, 5.20693623e-002, - 1.17283888e-001, 5.86220846e-002, -1.48752511e-001, - 3.35638002e-002, 1.88525572e-001, 7.23898932e-002, - -1.24431290e-001, 2.50432253e-001, 3.40552241e-001, - 3.32232863e-001, 1.62018731e-001, 3.81762162e-002, - 2.54065603e-001, 1.41431436e-001, 1.39672101e-001, - 1.22789694e-002, 1.70240015e-001, 4.75406013e-002, - -2.72067403e-003, 3.92899988e-003, 1.70398038e-002, - 8.49058293e-003, -9.96070877e-002, 6.42258599e-002, - 1.29133686e-001, 9.05876309e-002, 1.63411833e-002, - 2.17016861e-002, 6.03858754e-002, 3.99267077e-002, - 1.29428450e-002, -7.52837950e-005, 1.95167344e-002, - 7.75230443e-003, 2.55775172e-003, 2.51491694e-003, - 6.82042073e-003, 1.00866416e-002, 5.45678008e-003, - 5.15178703e-002, 2.45315060e-002, 7.86454380e-002, - 6.11653784e-003, 4.64550257e-002, 1.63711477e-002, - 7.34289661e-002, -7.81794137e-004, 4.69851028e-003, - 2.82226969e-003, 8.99036229e-003, 7.01598153e-002, - -3.42703611e-002, 8.92712623e-002, 5.36060743e-002, - 7.94733241e-002, 1.33386962e-002, 1.27370372e-001, - 1.12854734e-001, -7.74584478e-003, 1.82406437e-002, - 4.71638776e-002, 6.36180267e-002, -4.58368612e-003, - 3.84159130e-003, 1.24643343e-002, 1.07321478e-002, - 3.22266445e-002, -5.70458248e-002, 8.29402730e-002, - 7.96613097e-002, 3.99361193e-001, -4.10801232e-001, - 4.36187387e-001, 4.39678103e-001, 1.51392976e-002, - -7.46120065e-002, 7.83542246e-002, 1.19253419e-001, - -3.67898704e-003, -4.42544371e-003, 1.14085171e-002, - 1.17721707e-002, -1.81350647e-003, -1.51101639e-003, - 5.82912005e-003, 5.79280965e-003, 4.17498499e-002, - -8.06101486e-002, 5.93314245e-002, 1.05016321e-001, - 5.16103581e-002, -1.30070120e-001, 6.38544187e-002, - 1.50803730e-001, 2.13455711e-003, -8.15332029e-003, - 3.92981013e-003, 1.20285191e-002, -8.67477991e-003, - -9.00379382e-004, 1.37896156e-002, 6.61088200e-003, - 6.23583188e-003, -4.27704342e-002, 5.17358631e-002, - 6.51276261e-002, 1.20016485e-002, -2.88157966e-002, - 4.40721624e-002, 6.37135580e-002, 1.52084453e-004, - -7.29720283e-004, 6.92598196e-003, 8.24486464e-003, - -1.25313029e-001, -2.44369195e-003, 1.55721679e-001, - 3.61184478e-002, -5.11795841e-002, -1.37664989e-001, - 2.63244539e-001, 2.51671702e-001, 1.10412516e-001, - -1.91670403e-001, 2.10115716e-001, 3.57090503e-001, - 3.57334279e-002, -1.62907317e-002, 5.73476963e-002, - 5.55963442e-002, -1.41709924e-001, -9.25085228e-003, - 1.71430677e-001, 3.51634920e-002, -1.10952975e-002, - 3.23220678e-002, 2.70042866e-001, 1.79707661e-001, - 1.86251834e-001, 1.36584729e-001, 2.94079274e-001, - 2.67049193e-001, 3.49304527e-002, 2.69636884e-002, - 7.37457499e-002, 5.24348021e-002, -1.40627921e-002, - -1.18172809e-003, 1.86375659e-002, 5.68898162e-003, - 5.56398323e-003, 2.15645116e-002, 5.00674434e-002, - 3.81175652e-002, 2.88468078e-002, 1.52209383e-002, - 5.17584123e-002, 4.40176949e-002, 1.77867757e-003, - -1.88513484e-003, 9.62228607e-003, 6.75863773e-003, - -7.30971806e-004, 1.96680874e-002, 5.81944222e-003, - 3.41417827e-002, -9.98075848e-005, 1.72535285e-001, - 2.38857120e-002, 2.96292633e-001, -5.39748883e-003, - 1.60892621e-001, 2.35883128e-002, 2.96147078e-001, - -3.27035552e-004, 1.88485142e-002, 4.83066309e-003, - 3.81570831e-002, 5.10751419e-002, 5.47478953e-003, - 7.61002824e-002, 5.18250726e-002, 4.96721417e-002, - 1.79872349e-001, 1.03732884e-001, 2.56640226e-001, - -4.62925844e-002, 2.17724189e-001, 1.02524079e-001, - 2.82083184e-001, -3.29142660e-002, 3.48918587e-002, - 4.34469096e-002, 4.76160422e-002, 6.89600855e-002, - -5.34864441e-002, 1.11038782e-001, 6.90601245e-002, - 1.31470963e-001, -1.50439814e-001, 1.88463077e-001, - 2.19413668e-001, -6.62948890e-003, -6.72333986e-002, - 7.82764629e-002, 1.45098791e-001, -2.24420037e-002, - -3.30112613e-004, 3.05936188e-002, 2.63521466e-002, - 8.83279543e-004, -7.34073669e-003, 1.04943877e-002, - 1.85603388e-002, 3.34959291e-002, -1.71613216e-001, - 5.02593294e-002, 2.36062959e-001, 2.21349727e-002, - -1.65700346e-001, 4.02434207e-002, 2.23978952e-001, - 7.17928400e-004, -1.47089465e-002, 3.97443725e-003, - 2.33997330e-002, -2.21629743e-003, -2.30151275e-003, - 9.76651348e-003, 8.33857805e-003, -1.53388092e-002, - -7.38399029e-002, 5.15144244e-002, 9.69782472e-002, - 1.07455207e-002, -7.34038725e-002, 4.59394418e-002, - 9.54778194e-002, -2.31426908e-004, -2.78426916e-003, - 5.95851848e-003, 9.15692281e-003, -1.18406191e-001, - -1.41399605e-002, 1.45151392e-001, 4.94290255e-002, - -1.28488094e-001, -2.94580221e-001, 2.52426773e-001, - 3.47584546e-001, 2.40091383e-001, -2.20405936e-001, - 2.91038990e-001, 2.73339897e-001, 3.05306632e-002, - -3.20104174e-002, 5.80754206e-002, 4.90452871e-002, - -1.48925588e-001, -1.38374313e-003, 1.80973336e-001, - 4.08986099e-002, -8.82560238e-002, 6.36450797e-002, - 2.14674279e-001, 1.48463383e-001, 1.44541755e-001, - -3.55506688e-002, 2.08877027e-001, 1.38395742e-001, - 3.79211418e-002, -1.69529598e-002, 5.56270555e-002, - 3.50310169e-002, -1.19623514e-002, -1.12859963e-003, - 1.96548365e-002, 6.11991761e-003, -2.54540183e-002, - 1.52359297e-002, 4.67033200e-002, 3.47368829e-002, - 8.70873872e-003, 9.97837633e-003, 3.07421628e-002, - 2.86673233e-002, 4.10103751e-003, -6.10973220e-004, - 7.01292325e-003, 4.71144682e-003, -7.81707652e-003, - 2.58172606e-003, 1.28300535e-002, 7.23296916e-003, - -1.82083882e-002, -1.11090317e-002, 3.42993923e-002, - 2.34477110e-002, 4.02863231e-003, -1.17148748e-002, - 2.04295143e-002, 2.07123477e-002, 9.66751203e-003, - 2.72245216e-003, 1.46165276e-002, 5.22843981e-003, - -8.42837244e-002, -7.02780811e-003, 1.11834005e-001, - 4.75348867e-002, -1.27868310e-001, -2.46014725e-002, - 1.98246226e-001, 1.10542476e-001, 9.29168314e-002, - -1.03035232e-003, 1.56614155e-001, 1.14102431e-001, - 1.53111964e-001, 4.34607714e-002, 1.86193451e-001, - 6.30954802e-002, -8.94326642e-002, -6.44102087e-003, - 1.13285281e-001, 4.18955684e-002, -5.67858629e-002, - 9.71562415e-002, 1.77119270e-001, 1.49813160e-001, - 2.53508925e-001, 3.49664152e-001, 3.19897622e-001, - 3.82466018e-001, 1.54838905e-001, 5.14986552e-002, - 1.95776135e-001, 7.90366158e-002, -5.85956965e-003, - 5.54569473e-004, 9.49125551e-003, 6.28033420e-003, - 3.64574566e-002, 5.88962249e-002, 5.59521765e-002, - 6.81414828e-002, 8.62266049e-002, 9.51982364e-002, - 1.10268161e-001, 1.20778941e-001, -4.24751826e-003, - -5.82489138e-003, 1.34689957e-002, 1.21337809e-002, - -8.34936509e-005, 4.23420314e-003, 4.01255535e-003, - 6.27668109e-003, -3.68115380e-002, 5.74663579e-002, - 5.01602069e-002, 7.26081580e-002, -3.25533785e-002, - 5.67078143e-002, 5.86624071e-002, 8.23160410e-002, - 2.99515622e-003, 3.84343439e-003, 6.89842366e-003, - 9.48753487e-003, 1.04607362e-002, 5.39250858e-003, - 2.02122666e-002, 2.15681624e-002, -2.80284956e-002, - 9.71683487e-002, 1.07155591e-001, 1.57161325e-001, - -1.04721747e-001, 2.93412477e-001, 1.89170986e-001, - 3.42645377e-001, -3.47822793e-002, 3.24315391e-002, - 4.92360927e-002, 6.26657158e-002, 1.05063189e-002, - -6.92323502e-003, 1.98652092e-002, 2.07365062e-002, - -1.45460935e-002, -7.87787959e-002, 1.04093961e-001, - 1.43590584e-001, -2.37645850e-001, -3.82837325e-001, - 2.78824627e-001, 4.28192735e-001, -3.71116214e-002, - -7.17717707e-002, 5.54870069e-002, 8.83301795e-002, - -2.82948109e-004, -4.11467999e-003, 4.16791253e-003, - 6.84443675e-003, -3.92960645e-002, -6.22455105e-002, - 5.36780581e-002, 7.28962943e-002, -4.95195650e-002, - -4.39485237e-002, 6.71724081e-002, 7.60098025e-002, - 1.83184235e-003, 1.00338459e-003, 5.31941000e-003, - 7.02515524e-003, -9.65593383e-004, -2.95139253e-005, - 5.91636356e-003, 3.48725007e-003, -4.78290319e-002, - -4.47953828e-002, 6.49282038e-002, 5.41700572e-002, - 3.54897901e-002, -3.84164825e-002, 5.70075437e-002, - 5.17693609e-002, 1.33770774e-003, 7.86266290e-004, - 6.74651237e-003, 4.80730506e-003, -3.50259505e-002, - -1.45394905e-002, 6.06278814e-002, 2.93314327e-002, - -3.53443295e-001, -1.58047512e-001, 4.15484786e-001, - 2.15315923e-001, 2.59250849e-001, -1.59209922e-001, - 3.16507995e-001, 2.15177760e-001, 3.95505093e-002, - -4.13186401e-002, 6.44060150e-002, 5.26583679e-002, - -5.56888059e-002, -2.22918186e-002, 7.51728714e-002, - 3.56990658e-002, -2.26749241e-001, -5.31787351e-002, - 3.01416129e-001, 1.38055757e-001, 6.55907169e-002, - -6.89667463e-002, 1.45244136e-001, 1.39461905e-001, - 4.53977920e-002, -3.30237634e-002, 5.80175407e-002, - 4.30821180e-002, -7.03862496e-003, -2.23918445e-003, - 9.80588980e-003, 4.71280748e-003, -2.27945819e-002, - 5.09563228e-003, 3.61236110e-002, 2.09535118e-002, - 2.86792312e-003, 5.50441863e-003, 1.97760109e-002, - 1.94085166e-002, 3.28989164e-003, -7.22377212e-004, - 5.28881280e-003, 3.77289765e-003, -1.58255566e-002, - 3.56937479e-003, 1.84999555e-002, 5.33697102e-003, - -4.65641823e-003, -1.13093220e-002, 2.98564192e-002, - 2.74102017e-002, -1.64790812e-003, -1.77564174e-002, - 2.00928822e-002, 3.51977944e-002, -6.24772656e-005, - -3.06288101e-004, 3.11386376e-003, 2.92482739e-003, - -1.57734931e-001, 3.51910777e-002, 1.77037299e-001, - 4.59024943e-002, -1.38368398e-001, 1.50970593e-002, - 2.08250076e-001, 1.13266699e-001, 1.48639074e-002, - -2.03976948e-002, 8.03243220e-002, 9.20794755e-002, - 9.19605326e-003, -3.80107813e-004, 1.76734384e-002, - 1.64489690e-002, -1.09087318e-001, 3.26658003e-002, - 1.37021884e-001, 5.02364151e-002, -3.65577430e-001, - 3.07806462e-001, 4.21183378e-001, 3.55395377e-001, - 3.91955813e-003, 1.43490270e-001, 1.04641259e-001, - 2.14415491e-001, 1.15129557e-002, 1.82705633e-002, - 2.23889053e-002, 3.12754288e-002, -1.15024496e-003, - -1.18980417e-003, 9.17264167e-003, 7.01621175e-003, - -3.81472521e-002, 9.69716012e-002, 6.41557202e-002, - 1.25111774e-001, -1.66879278e-002, 1.30744189e-001, - 4.20526564e-002, 1.55315533e-001, -1.85977947e-003, - 1.33659616e-002, 5.20033669e-003, 1.73628666e-002, - -2.28310542e-004, 2.13460153e-004, 3.57350148e-003, - 3.78237804e-003, 2.48431675e-002, 2.24747397e-002, - 3.65355425e-002, 3.55460234e-002, -3.80017608e-003, - 2.92415470e-002, 3.84101607e-002, 3.69393937e-002, - -2.32585007e-003, 1.14794137e-004, 4.70346585e-003, - 3.41753243e-003, 2.60092430e-002, 2.89402306e-002, - 3.66553925e-002, 3.94680575e-002, 1.92758799e-001, - 2.68922657e-001, 2.40484044e-001, 2.99331337e-001, - -2.36317039e-001, 7.81045780e-002, 3.07749718e-001, - 1.69822037e-001, -2.75430009e-002, -1.66598812e-003, - 3.98922972e-002, 2.31601708e-002, 2.79587545e-002, - -2.14798786e-002, 3.72069664e-002, 3.70181799e-002, - 1.28586143e-001, -2.70108014e-001, 1.99709028e-001, - 3.00852865e-001, -2.22715721e-001, -1.31727085e-001, - 3.00425589e-001, 2.01196730e-001, -2.64981408e-002, - -1.31097739e-003, 3.87561396e-002, 2.40289643e-002, - 5.95855545e-006, -1.06531905e-003, 3.56732286e-003, - 4.06508800e-003, 1.43362302e-002, -2.32495815e-002, - 2.99086366e-002, 3.62043381e-002, -4.35675634e-003, - -2.67176144e-002, 3.51736993e-002, 3.64090241e-002, - -1.71036168e-003, -2.67110765e-004, 4.30406863e-003, - 3.42701236e-003, -1.14987424e-005, -2.12864857e-003, - 5.41772274e-003, 6.00436376e-003, 3.09422985e-003, - -4.40808795e-002, 3.51433307e-002, 6.19166382e-002, - 2.02555694e-002, -3.74743231e-002, 3.53691839e-002, - 5.53699769e-002, 3.63059138e-004, -4.39924916e-004, - 4.07773815e-003, 4.48367884e-003, -1.57914646e-002, - -8.42627510e-003, 4.12846431e-002, 4.14634906e-002, - -9.34060961e-002, 1.88800246e-002, 2.10078523e-001, - 3.35175276e-001, 2.54463196e-001, -4.74326313e-002, - 3.27940822e-001, 3.65533620e-001, 1.85500681e-002, - -1.12754172e-002, 3.89013514e-002, 4.14239541e-002, - -1.60572845e-002, -1.11280354e-002, 3.98239978e-002, - 3.83491032e-002, -8.29314440e-002, -1.35914475e-001, - 1.75489947e-001, 2.74523586e-001, 1.84098557e-001, - -1.44276738e-001, 2.64535964e-001, 2.89355814e-001, - 2.84252428e-002, -1.37501722e-002, 4.74175550e-002, - 4.25344035e-002, -1.27451855e-003, -4.28255997e-004, - 4.83500073e-003, 4.52282559e-003, -1.00242654e-002, - 1.39201134e-002, 2.95566823e-002, 3.17612104e-002, - 2.06563063e-002, 1.22941313e-002, 3.51597145e-002, - 3.42351608e-002, 2.85295956e-003, -1.40194932e-003, - 6.32999698e-003, 5.45328436e-003, 6.21810229e-003, - -3.24859493e-003, 1.22227930e-002, 8.32603406e-003, - -3.57502773e-002, -1.15245365e-001, 7.84774870e-002, - 1.36435598e-001, 2.93669309e-002, -1.13847367e-001, - 6.51264414e-002, 1.34170651e-001, -3.13886628e-003, - -6.57658186e-003, 1.27593400e-002, 1.13828247e-002, - -3.74913588e-002, -2.81267054e-002, 1.06384240e-001, - 4.35996130e-002, -2.09264502e-001, -2.29155675e-001, - 3.16753626e-001, 3.06186259e-001, 1.13774367e-001, - -2.22287357e-001, 2.04746306e-001, 2.93637216e-001, - 1.05529852e-001, 4.68778936e-003, 1.53705195e-001, - 5.85209429e-002, -7.82986507e-002, 1.14345783e-002, - 1.22977085e-001, 4.63806316e-002, -1.45113796e-001, - 2.52825320e-002, 2.06496134e-001, 1.39409050e-001, - 9.86898839e-002, 7.80096650e-003, 1.79870009e-001, - 9.65633690e-002, 1.73165902e-001, 9.87163559e-003, - 2.10688308e-001, 3.22640836e-002, -5.65829268e-003, - -1.60328019e-003, 1.48856463e-002, 7.00380001e-003, - -3.77885513e-002, 2.01688241e-002, 5.52481748e-002, - 3.97455767e-002, 1.26071563e-002, 7.38629978e-003, - 3.33055854e-002, 2.16322392e-002, 1.75981354e-002, - -3.69633688e-003, 2.41020154e-002, 6.85144588e-003, - 9.06318601e-004, 7.81024992e-003, 1.47611378e-002, - 1.44329611e-002, -5.98598383e-002, -5.01252711e-002, - 8.68707523e-002, 7.17533901e-002, 6.45369291e-003, - -2.00197343e-002, 3.46050449e-002, 4.21628207e-002, - 6.93635596e-003, -1.33459107e-003, 1.15727549e-002, - 9.60416347e-003, -8.38796645e-002, -7.05609918e-002, - 1.13557786e-001, 1.04425713e-001, -1.71845496e-001, - -1.61344230e-001, 2.71050185e-001, 2.11795300e-001, - 1.07270107e-001, -7.25258440e-002, 1.92323953e-001, - 1.65091529e-001, 1.00651637e-001, 4.34536785e-002, - 1.26211017e-001, 8.23069289e-002, -4.51985523e-002, - -2.43255794e-002, 6.39352798e-002, 4.02798951e-002, - -5.20008989e-002, -1.28944144e-002, 1.34407744e-001, - 1.14397332e-001, 3.85636866e-001, 1.49000481e-001, - 4.38872963e-001, 2.01866820e-001, 9.58601832e-002, - 5.35207503e-002, 1.67259216e-001, 9.29074660e-002, - -2.78536556e-003, 5.51769277e-004, 6.80372352e-003, - 4.61367751e-003, -2.72678537e-003, 1.27270781e-002, - 2.50405837e-002, 2.37836391e-002, 8.86232853e-002, - 2.23160721e-002, 9.50567275e-002, 4.36796509e-002, - -6.45555207e-004, -5.74268959e-003, 1.71296746e-002, - 1.03530586e-002, 2.20547454e-003, -5.32490574e-003, - 5.94822876e-003, 9.75549407e-003, 1.90389976e-002, - -1.05187714e-001, 5.24189919e-002, 1.71760425e-001, - -2.25121737e-003, -8.49239826e-002, 5.59320487e-002, - 1.46590009e-001, 3.67752649e-003, -1.25810178e-002, - 9.86880809e-003, 3.55103314e-002, -1.01647943e-001, - 1.20674275e-001, 1.32978812e-001, 1.39334306e-001, - -1.46340400e-001, -2.94070728e-002, 2.44774386e-001, - 2.52030045e-001, 7.88169876e-002, -9.27875042e-002, - 1.39433175e-001, 2.27798298e-001, 5.49784414e-002, - 4.39540148e-002, 7.03410059e-002, 9.18798149e-002, - -1.73881665e-001, -5.06140441e-002, 2.09472924e-001, - 8.60636234e-002, -2.44910970e-001, 4.08623144e-002, - 3.10250252e-001, 1.52825475e-001, 2.03699380e-001, - 1.48925573e-001, 2.53663808e-001, 1.95629895e-001, - 1.21416435e-001, 4.21434119e-002, 1.49103120e-001, - 7.30224550e-002, -9.54130944e-003, -4.45372472e-003, - 1.62897781e-002, 8.87369551e-003, -2.53450293e-002, - 1.45159671e-002, 3.72615084e-002, 3.10172569e-002, - 8.13030824e-002, 1.88597627e-002, 8.79620016e-002, - 5.37458919e-002, 5.50467428e-003, -2.83223833e-003, - 1.57510266e-002, 2.08275095e-002, 1.83676530e-004, - 9.03229986e-004, 4.10112692e-003, 4.51469561e-003, - 2.87920479e-002, 2.13119388e-002, 3.95604074e-002, - 3.85019332e-002, 2.15402897e-002, 2.81980261e-002, - 3.57639603e-002, 3.80568840e-002, -5.83644258e-004, - 1.76083855e-003, 3.67404008e-003, 4.03144583e-003, - 3.01363114e-002, 1.32720880e-002, 4.21545096e-002, - 3.74899656e-002, 1.97863325e-001, 2.42865384e-001, - 2.40347743e-001, 2.87764132e-001, -9.91866086e-003, - 9.11137313e-002, 1.27681360e-001, 1.54341951e-001, - -2.31506433e-002, -8.44845083e-003, 3.14572155e-002, - 2.86164619e-002, 2.92256624e-002, -2.32633613e-002, - 4.33342010e-002, 3.70949171e-002, 2.38661826e-001, - -1.51055112e-001, 3.18262219e-001, 2.07999140e-001, - -2.39437595e-001, -3.03338647e-001, 2.72440940e-001, - 3.38459522e-001, -1.73134506e-002, -4.95616719e-002, - 3.79595384e-002, 5.77284768e-002, 1.87190296e-003, - -1.51089043e-004, 4.82055312e-003, 3.95567389e-003, - 1.08667575e-002, -4.15320583e-002, 4.75283638e-002, - 5.16317487e-002, -3.60470451e-002, -2.95012612e-002, - 4.99121509e-002, 4.80109006e-002, 1.75862154e-003, - -8.97697682e-005, 4.61722352e-003, 4.27371589e-003, - -5.28975157e-004, 1.50564173e-002, 4.53517772e-003, - 2.03918628e-002, -5.29018743e-003, 1.36526883e-001, - 2.53539234e-002, 1.69783190e-001, -6.33132702e-004, - 1.34878084e-001, 3.09306104e-002, 1.68604583e-001, - -1.76901126e-003, 1.09000430e-002, 6.75821025e-003, - 1.61595270e-002, 1.50614846e-002, 2.34295949e-002, - 2.82192994e-002, 3.63745466e-002, 9.40661877e-003, - 1.48815423e-001, 9.21299607e-002, 2.18654618e-001, - -1.12741567e-001, 1.24332637e-001, 1.82420403e-001, - 2.39759162e-001, -9.31991190e-002, -1.23043936e-002, - 1.10761069e-001, 5.68285659e-002, 1.15235923e-002, - -2.08995468e-003, 2.25355495e-002, 1.90246832e-002, - -2.26539355e-002, -5.98320253e-002, 1.03463151e-001, - 1.31637946e-001, -3.41406047e-001, -2.93333858e-001, - 3.87073785e-001, 3.43156159e-001, -5.63143864e-002, - -3.65525186e-002, 1.01616234e-001, 6.58347309e-002, - -4.61678719e-004, -3.54605401e-003, 3.81427677e-003, - 6.27603382e-003, -2.36361828e-002, -4.47143503e-002, - 3.86454538e-002, 6.13419712e-002, -6.16142601e-002, - -3.72558162e-002, 8.21236297e-002, 7.49506950e-002, - 6.69433735e-004, 2.17396556e-003, 9.48141329e-003, - 7.30402814e-003, -2.41998537e-003, 6.72886556e-004, - 6.98183151e-003, 3.36222537e-003, -3.65058444e-002, - -1.70214344e-002, 5.22754416e-002, 3.02827992e-002, - 2.38700975e-002, -2.10816227e-002, 4.34360355e-002, - 3.57817747e-002, 4.00589639e-003, 7.96473760e-005, - 8.11100472e-003, 5.40830195e-003, -3.52989882e-002, - -1.35501325e-002, 5.80313876e-002, 2.93182638e-002, - -2.29868516e-001, -6.36366680e-002, 3.04730892e-001, - 1.57731220e-001, 2.59741753e-001, 1.09072655e-001, - 3.08339775e-001, 2.27508888e-001, 3.96154784e-002, - 1.71705838e-002, 5.85515276e-002, 4.30494547e-002, - -3.84891443e-002, -1.89088639e-002, 5.40634058e-002, - 3.86518501e-002, -1.10235013e-001, 9.31981206e-003, - 2.12148711e-001, 1.73672244e-001, 2.78932065e-001, - -4.04671058e-002, 3.28501701e-001, 3.61906588e-001, - 2.02057753e-002, -1.95378345e-002, 4.63716649e-002, - 7.08448142e-002, -3.15711810e-003, 1.60643796e-003, - 6.91681402e-003, 5.64122386e-003, 3.23591242e-003, - 3.84119079e-002, 3.78990732e-002, 5.46258725e-002, - 3.01924758e-002, 5.31493761e-002, 5.03080226e-002, - 7.39711002e-002, -1.13380363e-003, 2.36034673e-003, - 5.69111807e-003, 8.39841645e-003, 4.84363036e-003, - -1.05758011e-003, 8.07187334e-003, 4.37400863e-003, - 1.16271768e-002, 1.02450196e-002, 2.35503614e-002, - 2.55878493e-002, -1.60521967e-003, 1.21377390e-002, - 1.92345642e-002, 2.19516940e-002, -2.95806443e-003, - 5.30926627e-004, 3.82313924e-003, 2.96925381e-003, - 4.07354906e-002, -1.06836809e-002, 6.36227727e-002, - 2.34888606e-002, 1.35646522e-001, -3.33557557e-003, - 2.38392696e-001, 1.30309522e-001, -9.57113877e-003, - 4.07871697e-003, 1.38606071e-001, 9.48471725e-002, - -3.99062224e-002, -8.78191926e-003, 4.51554731e-002, - 1.84774231e-002, 3.35965380e-002, -6.20611757e-003, - 5.93316369e-002, 2.58754194e-002, 2.03014374e-001, - 1.83250979e-002, 5.31269133e-001, 3.55426252e-001, - -2.01026946e-001, -1.88330680e-001, 2.96766669e-001, - 3.08104604e-001, -3.01885195e-002, -2.83924937e-002, - 4.78415117e-002, 3.87350470e-002, 2.76434282e-003, - 6.47513720e-004, 6.58219121e-003, 3.11721629e-003, - -1.69452303e-003, -4.37020212e-002, 6.01945892e-002, - 5.91781288e-002, -1.83670670e-002, -2.74641030e-002, - 4.34098616e-002, 4.95339856e-002, 3.13883007e-004, - 3.62393999e-004, 5.11013623e-003, 3.99845745e-003, - -5.62978955e-003, -7.03558093e-004, 1.12049635e-002, - 4.63882787e-003, 3.71981934e-002, -3.25125344e-002, - 6.06115609e-002, 4.36437763e-002, 2.72057056e-002, - -2.51210649e-002, 4.16152291e-002, 3.93030196e-002, - 2.87217001e-004, -4.77778347e-004, 4.28234739e-003, - 3.43768275e-003, -7.56150633e-002, -3.50143877e-003, - 9.87986773e-002, 2.78912783e-002, 1.92199171e-001, - -9.33976173e-002, 3.97039562e-001, 1.84402570e-001, - 1.19616523e-001, -2.41970986e-001, 2.95733869e-001, - 2.94926286e-001, 4.65764627e-002, -2.21215989e-002, - 6.13531582e-002, 3.28923203e-002, -7.06946403e-002, - -4.87567764e-003, 9.30460319e-002, 2.75175739e-002, - 1.55018866e-001, 4.83342968e-002, 3.67158651e-001, - 1.48348704e-001, 2.55682901e-003, 3.42204841e-003, - 2.91420013e-001, 1.60977200e-001, 6.44893795e-002, - -1.03151174e-002, 7.87693709e-002, 3.07294298e-002, - -4.28526476e-003, -9.87592619e-004, 8.92510917e-003, - 4.59110131e-003, 1.57562904e-002, 1.48301516e-002, - 5.02570048e-002, 3.44702527e-002, 1.17067504e-003, - 1.43528534e-002, 4.08337340e-002, 3.65633443e-002, - 5.17992722e-003, -1.41209702e-003, 8.25782586e-003, - 5.09208255e-003, -8.32149386e-003, 1.02457602e-003, - 1.19968979e-002, 4.50426154e-003, 4.61680721e-003, - -1.85163449e-002, 6.12457506e-002, 3.29499505e-002, - 8.89861316e-004, -2.05016378e-002, 7.18710124e-002, - 3.74812856e-002, 3.52339121e-003, 1.01223693e-003, - 9.97480005e-003, 4.48434241e-003, -7.88560808e-002, - 1.13098463e-002, 1.00852810e-001, 2.69217882e-002, - -7.57560059e-002, -7.30525032e-002, 3.71071130e-001, - 1.68702528e-001, 4.84727286e-002, -1.09198563e-001, - 4.29800719e-001, 1.81332558e-001, 5.22998832e-002, - -3.75273917e-003, 8.53522569e-002, 3.01133916e-002, - -6.13130815e-002, 2.92353216e-003, 8.77674818e-002, - 2.27669701e-002, -2.49688044e-001, 5.27797863e-002, - 3.81646007e-001, 1.41624779e-001, 1.51934460e-001, - 5.51085584e-002, 2.97241509e-001, 1.54401213e-001, - 4.96586375e-002, -2.93173105e-003, 7.83035681e-002, - 3.09378263e-002, -5.17716119e-003, -1.22459466e-003, - 9.95039754e-003, 3.46741639e-003, -3.35953869e-002, - 1.88843906e-002, 5.89477681e-002, 3.13318372e-002, - 1.80176143e-002, 1.57015659e-002, 4.54421043e-002, - 3.19822170e-002, 3.99032375e-003, -9.83043341e-004, - 8.96487013e-003, 4.91761975e-003, 2.15991773e-003, - 4.22784186e-004, 8.08266085e-003, 5.13284467e-003, - 2.24389918e-002, 4.91165631e-002, 4.38130051e-002, - 6.12910502e-002, -1.05454810e-002, 4.34743352e-002, - 3.77665162e-002, 5.34516573e-002, -1.89818558e-003, - 1.47118361e-003, 5.15285181e-003, 5.05927671e-003, - 8.23311731e-002, 1.44106606e-002, 1.03894129e-001, - 3.50735299e-002, 1.17517665e-001, 2.31888443e-001, - 3.31259072e-001, 2.74613529e-001, -2.43794814e-001, - 8.06550235e-002, 2.96272099e-001, 1.71080649e-001, - -2.89492309e-002, 2.13343929e-003, 4.56141829e-002, - 2.54166927e-002, 9.27531272e-002, 9.82943820e-005, - 1.13380343e-001, 3.15459259e-002, 6.25228956e-002, - -1.07970215e-001, 3.46735954e-001, 1.81613386e-001, - -2.65372157e-001, -5.37307374e-002, 3.13411295e-001, - 1.40018612e-001, -2.68470608e-002, -7.83822179e-005, - 4.52930965e-002, 2.30832528e-002, 7.00818188e-003, - 6.29157585e-004, 1.10854460e-002, 4.54794243e-003, - 9.80879460e-003, -2.81101111e-002, 4.73144166e-002, - 4.07397337e-002, -2.38365792e-002, -2.11877655e-002, - 4.07109782e-002, 3.34610268e-002, -2.30932981e-003, - 1.67768376e-004, 5.72293811e-003, 3.73526546e-003, - -1.54131267e-003, -7.22254743e-004, 7.32038403e-003, - 5.09858970e-003, 3.09108254e-002, 2.30049808e-002, - 4.94346395e-002, 4.61623780e-002, 1.60545930e-002, - 4.40101922e-002, 4.16422039e-002, 5.48333414e-002, - -3.86339519e-003, 1.91842113e-003, 7.36322394e-003, - 5.72490646e-003, 3.66873965e-002, 2.37029810e-002, - 6.50935769e-002, 4.20257375e-002, 1.71491593e-001, - 2.75564492e-001, 3.67537558e-001, 3.36738229e-001, - 8.82315710e-002, 8.23247582e-002, 2.55665898e-001, - 1.99136421e-001, -7.18799904e-002, -6.44575630e-004, - 7.86595121e-002, 3.35934795e-002, 7.75107220e-002, - 2.81589832e-002, 9.20865834e-002, 4.90237549e-002, - -1.40321692e-002, 3.87688875e-002, 2.95666128e-001, - 2.87636369e-001, -7.70059451e-002, -8.48799348e-002, - 2.42755622e-001, 2.48881787e-001, -6.42615184e-002, - -1.66146383e-002, 7.58634955e-002, 3.90949249e-002, - 4.70924005e-003, -8.48724390e-004, 8.89133010e-003, - 6.65535033e-003, -6.85316185e-003, -3.76422592e-002, - 3.87330987e-002, 5.93405478e-002, -1.86313484e-002, - -3.31572145e-002, 4.16278802e-002, 5.65866344e-002, - -2.19480926e-003, -2.09323916e-004, 7.20872870e-003, - 5.91328973e-003, -3.25989537e-002, 1.52222859e-003, - 4.02766317e-002, 8.12417828e-003, -4.61099064e-003, - -3.59404087e-002, 5.82243130e-002, 5.08422814e-002, - 1.12706807e-003, -3.73952240e-002, 3.04052159e-002, - 4.94256876e-002, -1.39960990e-004, -3.17896134e-003, - 4.84147109e-003, 5.66236814e-003, -3.07693660e-001, - 9.26868815e-004, 3.63224953e-001, 3.75396758e-002, - -4.42899903e-003, -4.20799702e-002, 3.55723411e-001, - 1.47191554e-001, -1.86457355e-002, -5.93729727e-002, - 1.52452901e-001, 1.56049162e-001, 1.34515129e-002, - -6.39348384e-003, 3.27428877e-002, 2.47365627e-002, - -3.07217717e-001, 4.01203008e-003, 3.51678491e-001, - 3.47446911e-002, -4.66584936e-002, 5.07887006e-002, - 3.20690781e-001, 1.47166163e-001, -3.41927726e-003, - 2.48110685e-002, 1.37284622e-001, 1.29523143e-001, - 1.35859745e-002, 3.63061763e-003, 2.93487106e-002, - 2.10516453e-002, -3.05660646e-002, 3.54303542e-004, - 3.73068936e-002, 7.77133135e-003, -2.09497064e-002, - 4.76303734e-002, 5.87778240e-002, 6.66702017e-002, - -3.83587461e-003, 3.96722667e-002, 2.59761829e-002, - 6.09298646e-002, 7.14655733e-004, 3.28405295e-003, - 4.55714110e-003, 7.65579427e-003, -1.31406193e-003, - -7.27548904e-004, 6.44619297e-003, 4.53365920e-003, - -6.98551582e-003, -2.77062003e-002, 4.29056846e-002, - 4.84577604e-002, -1.32744131e-003, -3.07953916e-002, - 3.70878503e-002, 4.77877185e-002, 2.89395597e-004, - -1.61353254e-003, 5.69275999e-003, 5.37303416e-003, - -5.06274961e-002, -4.63641342e-003, 7.10608810e-002, - 3.32405418e-002, -5.11159487e-002, -2.29415387e-001, - 3.60794216e-001, 3.12274426e-001, 3.66751999e-002, - -1.49465114e-001, 2.22807854e-001, 2.40830928e-001, - 3.08251102e-002, -1.50602162e-002, 4.93398681e-002, - 3.58205140e-002, -4.67853025e-002, 3.75623931e-003, - 7.34357312e-002, 3.00360452e-002, -8.99611712e-002, - 6.42353371e-002, 4.92218763e-001, 2.01206744e-001, - 5.58249578e-002, 2.53910068e-002, 2.42328137e-001, - 1.72378227e-001, 3.29393856e-002, 7.60844967e-004, - 5.28907850e-002, 3.05317733e-002, -3.00034578e-003, - -1.30974210e-003, 8.57172254e-003, 4.81364783e-003, - -1.82340536e-002, 1.67770591e-002, 6.18554056e-002, - 3.90736051e-002, 8.51552747e-003, 1.18038999e-002, - 3.86049077e-002, 3.53164412e-002, 2.18143151e-003, - -2.30550329e-004, 6.35900674e-003, 5.18346531e-003, - 3.46404588e-004, -4.33046371e-003, 4.60857013e-003, - 9.15692281e-003, 4.59169224e-003, -4.99174073e-002, - 2.79453322e-002, 8.55296925e-002, -1.58599857e-002, - -3.75558734e-002, 4.02214676e-002, 7.52290115e-002, - 3.83314298e-004, -3.58277187e-003, 7.62842735e-003, - 8.27426650e-003, -3.17617469e-002, -1.81581061e-002, - 4.44437638e-002, 5.33860140e-002, 1.42594837e-002, - -1.67271391e-001, 1.71081871e-001, 4.13983524e-001, - -4.92057092e-002, -2.81786740e-001, 2.43432567e-001, - 4.04018641e-001, 2.68707145e-002, -3.63139920e-002, - 5.18088154e-002, 4.94607501e-002, -3.28091718e-002, - 6.99435920e-003, 5.12428321e-002, 2.92499345e-002, - -1.18237613e-002, 6.10682368e-002, 1.71376482e-001, - 1.93892956e-001, -2.10398898e-001, -1.87141134e-003, - 3.23407829e-001, 1.88059852e-001, 3.38000692e-002, - -1.05887512e-002, 5.11242710e-002, 3.31155844e-002, - -2.29785428e-003, 3.78044264e-004, 7.13466434e-003, - 5.24482969e-003, -2.18707416e-003, 8.93210713e-003, - 3.82017307e-002, 3.78416181e-002, -3.30203474e-002, - 1.88009869e-002, 5.34507893e-002, 3.78219485e-002, - 2.91874679e-003, 4.15529619e-004, 6.80686813e-003, - 4.83216718e-003, -3.61686433e-003, 7.40143645e-004, - 8.06656852e-003, 2.93873204e-003, -4.10023630e-002, - -1.93818267e-002, 6.45799860e-002, 3.12858894e-002, - -2.14252453e-002, -2.42229104e-002, 4.31840010e-002, - 3.49110849e-002, 2.44862773e-003, -5.30309801e-004, - 5.65203093e-003, 4.19266243e-003, -4.67761420e-002, - -3.04626650e-003, 6.71595186e-002, 1.98466331e-002, - -2.93861121e-001, -1.06121644e-001, 4.14635539e-001, - 1.69083714e-001, -6.68187961e-002, 3.08317970e-002, - 2.44071007e-001, 1.76632509e-001, 3.20093669e-002, - 1.76722798e-002, 4.71422784e-002, 3.60917822e-002, - -5.88266887e-002, -8.44880845e-003, 7.67854825e-002, - 2.23729555e-002, -3.13645035e-001, -4.18056883e-002, - 3.82764518e-001, 1.58449039e-001, 1.85297191e-001, - 3.05158459e-002, 2.86063731e-001, 1.88102320e-001, - 1.57465637e-002, 1.89125631e-002, 4.64565344e-002, - 3.86512317e-002, -7.84882065e-003, -1.98254106e-003, - 1.04301330e-002, 3.70511459e-003, -3.31616737e-002, - 1.33872489e-002, 5.14948815e-002, 2.96012871e-002, - 2.85110343e-002, 1.67666450e-002, 4.50386368e-002, - 3.37841399e-002, 4.75532579e-005, -1.21653068e-003, - 5.78371622e-003, 4.61213151e-003, -2.29212208e-004, - -1.26664608e-003, 4.40054899e-003, 6.25038520e-003, - -1.82187241e-002, -3.31833735e-002, 3.53433043e-002, - 5.41896112e-002, -4.25815815e-003, -3.38595398e-002, - 3.20827328e-002, 5.13938554e-002, -1.71281747e-004, - -1.82594464e-003, 3.93732451e-003, 5.82820829e-003, - -2.62190830e-002, -1.86573211e-002, 3.80350612e-002, - 5.98706938e-002, -1.37944654e-001, -1.01511464e-001, - 2.03793377e-001, 4.15439427e-001, 6.96743950e-002, - -9.67548341e-002, 1.58026099e-001, 2.72438020e-001, - 1.54150594e-002, -1.49314338e-002, 2.69830860e-002, - 4.06774431e-002, -1.97498370e-002, 2.77509019e-002, - 3.09833623e-002, 4.78284024e-002, -9.00867283e-002, - 2.66545385e-001, 1.60112426e-001, 3.55691254e-001, - 1.53649012e-002, 2.91331083e-001, 1.34724617e-001, - 3.64948988e-001, 1.10214856e-002, 3.11973412e-002, - 2.52757706e-002, 4.77040820e-002, 3.02384928e-004, - 2.14467105e-003, 3.50753614e-003, 5.49935829e-003, - -3.33877606e-003, 2.84164697e-002, 2.31992081e-002, - 4.60871533e-002, -2.90524401e-003, 2.79576853e-002, - 2.42474023e-002, 4.66770455e-002, -1.50892907e-003, - 2.70783575e-003, 3.94184375e-003, 6.05526939e-003, - -1.71739177e-003, 9.10960371e-004, 4.19625640e-003, - 1.94047589e-003, 5.00428118e-003, -1.69913145e-003, - 1.94388907e-002, 1.49271134e-002, -6.63863635e-003, - -2.21591047e-003, 5.10425679e-002, 1.52156530e-002, - 3.99949513e-002, 1.01634802e-003, 4.86041084e-002, - 4.02971404e-003, -1.66825168e-002, 5.34384511e-003, - 3.18923481e-002, 1.36441644e-002, 4.64664511e-002, - 6.45104935e-003, 1.41907319e-001, 6.87559769e-002, - -5.07442206e-002, 2.48434022e-002, 3.56890589e-001, - 8.55500922e-002, 2.80872047e-001, 2.26843683e-003, - 3.27858418e-001, 2.40171775e-002, -1.98393501e-002, - 6.83295261e-003, 3.85356545e-002, 1.75124221e-002, - 3.98903117e-002, 4.36933823e-002, 1.74095020e-001, - 1.18959270e-001, 2.38126460e-002, 1.76420540e-001, - 4.19639707e-001, 2.51190692e-001, 2.56992429e-001, - 7.31619028e-003, 3.01294059e-001, 3.17225903e-002, - 3.55697353e-004, 1.06818345e-003, 5.23681240e-003, - 5.39730676e-003, 3.02889422e-002, 2.99790222e-002, - 5.69364317e-002, 5.04035540e-002, 3.04385703e-002, - 8.27111974e-002, 1.46308720e-001, 9.73300040e-002, - 2.16101278e-002, -5.95875608e-004, 3.05383205e-002, - 7.36426329e-003, 1.94882916e-004, 3.55297280e-003, - 4.02533589e-003, 6.18556049e-003, -1.07792243e-002, - 5.25169335e-002, 3.02367546e-002, 6.29578307e-002, - -2.86403187e-002, 4.62795347e-002, 4.68209349e-002, - 6.14315234e-002, -1.87792140e-003, 1.78894016e-003, - 5.53230057e-003, 5.61506860e-003, 1.66053958e-002, - 1.20111052e-002, 2.99917106e-002, 3.15665156e-002, - 6.25048205e-003, 8.19678903e-002, 1.47044674e-001, - 2.19856873e-001, -2.29311481e-001, 1.35692954e-001, - 3.33114415e-001, 2.70861626e-001, -5.91594912e-002, - 1.46653047e-002, 6.94082156e-002, 3.89854126e-002, - 2.13108528e-002, -3.72759928e-003, 3.51684280e-002, - 4.79875877e-002, 3.19603831e-002, 1.66347120e-002, - 1.35271177e-001, 3.97316843e-001, -1.42750934e-001, - 6.01988137e-002, 2.22181201e-001, 4.55333024e-001, - -7.73204416e-002, 2.59201694e-002, 8.40919018e-002, - 6.14897348e-002, -2.98114930e-004, -2.89880112e-003, - 4.89723356e-003, 8.19013081e-003, -2.27209367e-003, - -3.78590301e-002, 2.74952520e-002, 8.16965476e-002, - -6.45009847e-003, -3.69347185e-002, 2.83332355e-002, - 8.10514688e-002, -3.55081842e-003, -2.08312995e-003, - 6.40326226e-003, 8.39988794e-003, 1.55635516e-003, - 3.22418404e-004, 4.95856255e-003, 2.45227991e-003, - 3.40192649e-003, 1.11984350e-002, 2.52747294e-002, - 1.96957383e-002, -2.75562946e-002, 1.13746133e-002, - 5.85814603e-002, 2.46515106e-002, -7.64752366e-003, - -1.84121029e-003, 1.08597772e-002, 4.15686518e-003, - 2.09204927e-002, 1.54479954e-003, 3.66895087e-002, - 1.37324687e-002, 2.58134343e-002, 2.20695455e-002, - 1.48267761e-001, 7.39045590e-002, -2.45220765e-001, - 1.36512788e-002, 4.95540708e-001, 1.03378288e-001, - -5.36383912e-002, -7.55352015e-003, 7.30138943e-002, - 2.07842439e-002, 2.07700096e-002, -5.60142286e-003, - 3.64100561e-002, 1.64932217e-002, 4.05506045e-002, - -4.58947942e-002, 1.75748289e-001, 1.02835618e-001, - -3.06635737e-001, -6.39601052e-002, 5.78143418e-001, - 1.26157030e-001, -3.71527486e-002, -1.29354734e-003, - 6.13058694e-002, 1.99467689e-002, 1.14140031e-003, - -1.08074117e-003, 5.19737415e-003, 3.61978821e-003, - 4.50550672e-003, -2.45287027e-002, 3.59902233e-002, - 3.64113376e-002, -4.24602069e-002, -2.86726020e-002, - 7.84873515e-002, 4.06797677e-002, -2.41185585e-003, - 9.83131933e-004, 6.98380545e-003, 3.85345030e-003, - 4.71611461e-003, -4.83978976e-004, 6.91370619e-003, - 5.56505518e-003, 9.30752663e-004, 1.79366991e-002, - 2.49398015e-002, 3.07160784e-002, -1.11418804e-002, - 1.35458345e-002, 2.43133679e-002, 3.09762303e-002, - -2.35003652e-003, -8.19308043e-004, 6.80588046e-003, - 5.50254248e-003, 7.40206763e-002, -5.13923727e-002, - 9.27531198e-002, 6.55217990e-002, 5.82322739e-002, - -1.19233228e-001, 1.78966507e-001, 1.91455469e-001, - -2.00747978e-002, -3.27459211e-003, 1.55864909e-001, - 1.42017961e-001, -5.32920361e-002, -1.12874769e-002, - 7.09209740e-002, 4.25595418e-002, 5.89560308e-002, - -2.26159915e-002, 1.04467466e-001, 5.04477806e-002, - 2.14278281e-001, -1.08398274e-001, 3.64775121e-001, - 2.57217377e-001, -1.30475536e-001, -3.46996844e-001, - 2.62242168e-001, 4.08912241e-001, -5.58257662e-002, - -5.32311127e-002, 8.09195563e-002, 7.18642324e-002, - 1.96223008e-003, -2.35084235e-003, 1.17784468e-002, - 8.58369656e-003, -2.86529568e-004, -9.28469524e-002, - 6.47330955e-002, 1.12127967e-001, -3.13763544e-002, - -6.57994673e-002, 5.65804392e-002, 9.36488286e-002, - 1.14990794e-003, -1.51371059e-003, 6.45485520e-003, - 8.10413063e-003, -1.56469438e-002, 2.30434677e-003, - 1.82590876e-002, 8.27633869e-003, 1.85845792e-002, - -4.40408625e-002, 4.91485223e-002, 5.90974502e-002, - 2.61749551e-002, -3.02803181e-002, 4.72509451e-002, - 7.94327781e-002, 1.43134280e-003, 4.40916652e-003, - 1.28263365e-002, 9.02407989e-003, -1.56811565e-001, - 7.23659154e-003, 1.90863982e-001, 2.42276508e-002, - 1.73114296e-002, -9.50165465e-003, 2.36683771e-001, - 1.75873846e-001, 2.12027598e-002, -8.43186602e-002, - 3.02137405e-001, 3.21587205e-001, 1.18167214e-001, - -1.69496089e-002, 1.98556751e-001, 4.37344499e-002, - -1.24861032e-001, 5.11789136e-003, 1.84632301e-001, - 2.66463719e-002, 3.07817832e-002, 3.61661166e-002, - 3.76492083e-001, 1.51459485e-001, -1.27898723e-001, - -2.28915010e-002, 2.91694373e-001, 1.25014782e-001, - 1.57256156e-001, -1.00498237e-002, 2.27622777e-001, - 2.88922433e-002, -1.10817188e-002, 6.88462169e-004, - 2.14108322e-002, 4.64624679e-003, -2.17063129e-002, - 2.39228308e-002, 5.58744557e-002, 3.75918336e-002, - -1.39374090e-002, 1.49316890e-002, 3.33753638e-002, - 2.73402501e-002, 2.04027370e-002, 3.92397429e-004, - 2.97033787e-002, 3.22228251e-003, 1.24689366e-003, - 4.83799027e-003, 6.07795920e-003, 6.18716655e-003, - -1.31932925e-002, 4.51060310e-002, 3.27501781e-002, - 5.02277650e-002, -2.97103841e-002, 5.53484447e-002, - 5.20044044e-002, 6.36056066e-002, -4.34716837e-003, - -7.54823777e-005, 7.81835802e-003, 6.32238155e-003, - 1.77749339e-002, 4.85101389e-003, 3.20248529e-002, - 1.46123879e-002, -4.47391234e-002, 5.01364879e-002, - 1.59231380e-001, 1.05769232e-001, -7.36944154e-002, - 1.70142934e-001, 5.10575831e-001, 2.13050663e-001, - -1.06191404e-001, 5.84275136e-003, 1.24908544e-001, - 2.83710826e-002, 1.47405583e-002, -1.18224103e-004, - 2.69890521e-002, 8.98585282e-003, -4.11141180e-002, - -1.10586463e-002, 1.62450686e-001, 6.79127127e-002, - 2.69526131e-002, -1.33046331e-002, 5.86734176e-001, - 1.05020367e-001, -1.35794416e-001, 4.71076835e-003, - 1.57826811e-001, 2.39446294e-002, 1.43291755e-003, - -2.19860885e-006, 3.47075798e-003, 1.71652157e-003, - -8.55224673e-003, -9.85298771e-003, 2.72536110e-002, - 1.69787221e-002, 6.07191538e-003, -1.17333755e-002, - 8.08662102e-002, 2.26165131e-002, -1.79608818e-002, - 1.65247626e-003, 2.14046706e-002, 3.88355274e-003, - 2.19066557e-003, 6.68815104e-004, 8.88740923e-003, - 4.27618949e-003, 2.05420200e-002, 2.86849663e-002, - 4.26763035e-002, 3.92883308e-002, -4.69542816e-002, - 3.30395140e-002, 6.76424429e-002, 4.25013639e-002, - -2.09953524e-002, -2.74086068e-003, 2.66528372e-002, - 7.30434665e-003, 3.73170413e-002, 3.69184767e-003, - 6.75168559e-002, 2.39875689e-002, 1.46921709e-001, - 4.29609902e-002, 2.18470186e-001, 1.00307234e-001, - -2.79013544e-001, 5.46418242e-002, 3.84975791e-001, - 1.11078098e-001, -2.19717160e-001, 4.60073398e-003, - 2.55154490e-001, 3.54533345e-002, 3.69044207e-002, - 1.39276986e-003, 6.22727387e-002, 2.17052028e-002, - 1.32734492e-001, -2.48421691e-002, 2.01251373e-001, - 8.91648084e-002, -2.30999246e-001, -2.80022360e-002, - 3.40363443e-001, 1.03819355e-001, -2.30976418e-001, - 9.69690923e-003, 2.60723352e-001, 3.53434868e-002, - 3.17442603e-003, -1.34911708e-004, 7.13710068e-003, - 3.04258079e-003, 1.96486097e-002, -1.56308357e-002, - 3.71166281e-002, 2.42023319e-002, -3.62726152e-002, - -1.72974337e-002, 5.80446832e-002, 2.87320111e-002, - -2.51475256e-002, 3.29923443e-003, 3.03794127e-002, - 7.22943339e-003, 6.92454923e-004, 1.06170285e-003, - 3.89877986e-003, 4.64659510e-003, 6.13440946e-003, - 3.12994048e-002, 2.85161342e-002, 4.75677177e-002, - -2.69282833e-002, 2.35801730e-002, 4.01450656e-002, - 4.19453084e-002, -1.28012427e-004, -1.58849187e-004, - 3.23708449e-003, 3.37902200e-003, 1.70977768e-002, - -6.26720022e-003, 3.29164825e-002, 3.53398249e-002, - 1.14335775e-001, -1.23710074e-001, 1.93413213e-001, - 3.44226360e-001, -2.87343800e-001, -4.26162407e-002, - 3.34271550e-001, 3.03608626e-001, -8.56557209e-003, - 7.51062343e-003, 2.87973657e-002, 2.72815097e-002, - 1.03967376e-002, -1.83080311e-003, 2.91441958e-002, - 3.08306273e-002, 1.25309572e-001, 2.65241582e-002, - 1.94637969e-001, 2.82497764e-001, -1.13399878e-001, - 8.43790695e-002, 2.11987302e-001, 4.03188527e-001, - -2.29815468e-002, 9.79533326e-003, 3.66402939e-002, - 4.13119458e-002, 3.57528974e-004, -8.50969285e-004, - 3.78345908e-003, 4.14568465e-003, 5.17414557e-003, - -2.30316985e-002, 2.86948290e-002, 4.29576598e-002, - -9.54912696e-003, -2.64788456e-002, 3.01133804e-002, - 4.68082093e-002, -8.01219314e-004, -7.87400466e-004, - 4.04055603e-003, 4.47188877e-003, 6.40040438e-004, - -1.33682985e-003, 4.96554654e-003, 5.41159464e-003, - 4.14180756e-003, -2.04081293e-002, 3.26852761e-002, - 5.05959913e-002, 1.05961757e-002, -9.48182773e-003, - 3.14307548e-002, 4.32595052e-002, -1.62019324e-003, - -6.53710798e-004, 4.91388189e-003, 3.76264588e-003, - -4.32598917e-003, -1.58449467e-002, 5.80548793e-002, - 4.18656841e-002, 1.64360215e-004, -1.22783624e-001, - 3.38172466e-001, 2.82517850e-001, 1.12735689e-001, - -2.19620004e-001, 2.70351946e-001, 3.19340467e-001, - -8.36875197e-003, -2.05825828e-002, 5.72749563e-002, - 3.91617268e-002, -8.94700643e-003, -2.07729675e-002, - 5.27976230e-002, 3.89223881e-002, -5.86418211e-002, - -1.56017140e-001, 2.83294708e-001, 2.72187203e-001, - 1.40099406e-001, -1.02259271e-001, 2.88652688e-001, - 2.61355937e-001, -1.54582187e-004, -1.26115270e-002, - 5.96887693e-002, 3.97265479e-002, -1.23587658e-003, - -1.78395119e-003, 5.42678172e-003, 5.44302259e-003, - -8.02349532e-004, -5.26296953e-003, 3.16153616e-002, - 3.92549187e-002, 1.31373666e-002, -1.50939208e-002, - 3.59441899e-002, 4.50666919e-002, 1.48179103e-003, - -3.00703011e-003, 5.88011416e-003, 6.23734435e-003, - -1.52564673e-002, -7.51489133e-004, 2.38852669e-002, - 1.16055673e-002, -1.76824257e-002, -8.10102001e-002, - 4.66611907e-002, 1.47878677e-001, -2.13244394e-003, - -9.44563523e-002, 3.22866887e-002, 1.60883218e-001, - -1.03913080e-004, -1.01339538e-002, 5.49491448e-003, - 1.95136853e-002, -2.15928167e-001, -2.92103295e-003, - 2.70941436e-001, 4.15475257e-002, -1.27651811e-001, - -1.29334480e-001, 2.42392614e-001, 2.93311685e-001, - 5.39826462e-004, -9.40144360e-002, 1.23859592e-001, - 2.39644840e-001, 1.98750775e-002, -1.46922404e-002, - 3.69985513e-002, 3.59789804e-002, -2.32906386e-001, - 3.28777730e-003, 2.90346414e-001, 3.36431377e-002, - -7.66290277e-002, 1.40115008e-001, 2.48724341e-001, - 2.15012312e-001, 2.32417341e-002, 1.76633418e-001, - 1.48618102e-001, 2.26693302e-001, 1.05154663e-002, - 2.31141988e-002, 3.34584713e-002, 3.46070118e-002, - -2.35917997e-002, -9.01623222e-004, 3.16990279e-002, - 6.98272139e-003, -8.14964157e-003, 3.31896879e-002, - 5.35090826e-002, 5.04345819e-002, 1.75983831e-003, - 2.40155552e-002, 3.19822542e-002, 4.82540540e-002, - 1.01306278e-003, 3.12518422e-003, 5.95681276e-003, - 7.10177189e-003, -8.75588134e-003, -1.13281363e-003, - 1.30461287e-002, 6.14008261e-003, 2.42160801e-002, - -6.41828775e-002, 6.65777922e-002, 8.45852941e-002, - 1.16577409e-002, -5.07468767e-002, 5.49072735e-002, - 8.33673403e-002, -3.85455159e-003, -3.06390622e-003, - 7.77196558e-003, 9.02619120e-003, -9.66656506e-002, - 1.57034099e-002, 1.25196144e-001, 3.16129923e-002, - -1.37549594e-001, -1.02670029e-001, 3.43434662e-001, - 1.97145984e-001, 5.08663878e-002, -3.04473490e-001, - 1.62482977e-001, 3.45012993e-001, 1.66499745e-002, - -3.59971002e-002, 3.69183570e-002, 4.85986955e-002, - -7.99521133e-002, 8.53854325e-003, 1.18213303e-001, - 2.47120280e-002, -2.93016911e-001, 5.90252057e-002, - 4.61616814e-001, 1.34185448e-001, 1.17528765e-003, - 1.13714607e-002, 1.24866709e-001, 1.03871800e-001, - 2.19782330e-002, -3.20411706e-003, 3.49047296e-002, - 2.12210882e-002, -7.61823263e-003, -1.08751131e-003, - 1.42345596e-002, 3.77741153e-003, -4.74640578e-002, - 1.32188406e-002, 7.86157846e-002, 2.68746745e-002, - -3.37184593e-003, 9.42952093e-003, 2.45362911e-002, - 2.18839329e-002, 1.85805233e-003, 2.07765443e-005, - 4.46985243e-003, 3.18174856e-003, 3.96452984e-003, - 1.24290492e-002, 7.41807884e-003, 2.36084498e-002, - -6.54568663e-004, 1.45649254e-001, 2.92988420e-002, - 2.30450705e-001, -1.76023832e-003, 1.42762288e-001, - 2.62466278e-002, 2.34722540e-001, 9.42551182e-004, - 1.59927458e-002, 4.85798251e-003, 2.82373596e-002, - 1.01190962e-001, -4.90590036e-002, 1.15656182e-001, - 7.43094310e-002, 1.47054464e-001, 4.24219575e-003, - 2.16759473e-001, 1.93812504e-001, -9.43294447e-003, - 8.83460417e-002, 6.77234679e-002, 1.44792736e-001, - -1.26302745e-002, 1.67930257e-002, 2.59718765e-002, - 2.67845131e-002, 5.17386757e-002, -2.62266546e-002, - 8.37103501e-002, 4.61855754e-002, 4.55904245e-001, - -1.68314770e-001, 4.91800874e-001, 2.26460800e-001, - 1.59095647e-003, -8.13593343e-003, 6.28370643e-002, - 5.88767305e-002, -9.49641224e-003, -2.30405072e-004, - 1.71244778e-002, 1.00556184e-002, 2.39651930e-003, - 7.31562788e-004, 8.30175541e-003, 4.56552161e-003, - 8.37943628e-002, -3.51427458e-002, 9.05814916e-002, - 5.21511585e-002, 1.29860137e-002, -1.90313309e-002, - 2.27437746e-002, 2.84858979e-002, -3.75628966e-004, - -7.90796417e-004, 1.96324917e-003, 2.45304732e-003, - -1.77521762e-002, 2.09974661e-003, 2.24949811e-002, - 6.75659720e-003, 4.66813184e-002, -1.33072704e-001, - 7.74649531e-002, 1.81468382e-001, -4.71969433e-002, - -1.42653599e-001, 6.32495582e-002, 2.06932589e-001, - -3.31821991e-003, -5.32206753e-003, 5.41589549e-003, - 1.08908163e-002, -2.00564981e-001, 2.82297600e-002, - 2.19814137e-001, 3.98928598e-002, -9.57921892e-002, - -2.73772497e-002, 2.14422002e-001, 2.44247675e-001, - -6.40288927e-003, -4.88287248e-002, 1.00571096e-001, - 2.08862752e-001, 4.25036717e-003, 9.73148854e-004, - 1.27698071e-002, 1.86571088e-002, -1.83594853e-001, - 2.53168829e-002, 1.96652398e-001, 4.07920256e-002, - -2.24218935e-001, 1.69132262e-001, 2.78916836e-001, - 2.45280772e-001, 8.88510514e-003, 1.08495653e-001, - 9.29454491e-002, 2.10110337e-001, 9.52841062e-003, - 2.16062590e-002, 1.63731705e-002, 3.17132287e-002, - -7.74490321e-003, 5.83941862e-003, 1.06999325e-002, - 8.25528894e-003, -3.54793854e-002, 1.71069458e-001, - 4.65564616e-002, 1.80178940e-001, 5.57668740e-004, - 1.90297365e-001, 2.92694885e-002, 2.00037792e-001, - -1.65108463e-003, 2.25899108e-002, 4.79070656e-003, - 2.44598668e-002, 1.80059957e-004, -4.32784529e-003, - 3.50250816e-003, 6.08948292e-003, 1.89119931e-002, - -5.78489751e-002, 2.87469197e-002, 6.39186427e-002, - 4.16415110e-002, -6.92130476e-002, 5.26470654e-002, - 7.92342946e-002, -1.66944228e-003, -5.33506274e-004, - 1.09952474e-002, 6.74429908e-003, -6.73099747e-003, - 7.64961587e-004, 1.64508224e-002, 2.32506990e-002, - 7.14968657e-003, -2.72602811e-002, 8.91361684e-002, - 1.20297737e-001, 1.58493370e-001, -9.61348489e-002, - 1.92882195e-001, 1.94306463e-001, 3.73240672e-002, - -3.99250537e-002, 5.80271780e-002, 5.19052595e-002, - -1.70792434e-002, 9.52241570e-002, 3.89218405e-002, - 1.01110429e-001, -1.69361070e-001, 4.06691521e-001, - 2.23217532e-001, 5.05890846e-001, 4.79469523e-002, - 3.82565334e-002, 1.61373407e-001, 2.01952145e-001, - 3.81840169e-002, 9.54689109e-004, 5.06112911e-002, - 2.95590218e-002, 5.50897792e-003, 3.90926702e-003, - 8.53205100e-003, 1.31700523e-002, -4.76848930e-002, - 1.14776649e-001, 6.66833892e-002, 1.52252570e-001, - -6.29956126e-002, 1.59893453e-001, 8.16197693e-002, - 1.77724108e-001, -3.89179651e-004, 4.87279426e-003, - 8.14234186e-003, 1.13073979e-002, 5.92001561e-005, - 1.52814391e-004, 4.76050703e-003, 4.09348914e-003, - 3.23731601e-002, 4.24687862e-002, 5.59562705e-002, - 5.38084991e-002, -1.38153834e-002, 4.76859808e-002, - 4.32378612e-002, 5.98375164e-002, -4.71370033e-004, - 9.43023770e-004, 5.23750484e-003, 5.49931824e-003, - 2.29331050e-002, 2.61536520e-002, 4.66741547e-002, - 3.92675772e-002, 3.14139485e-001, 2.00985402e-001, - 4.30057973e-001, 2.87919104e-001, -1.92880705e-001, - 8.04885700e-002, 2.96711355e-001, 2.63694048e-001, - -2.92443056e-002, 1.57794729e-002, 5.30563034e-002, - 4.13397551e-002, 4.71234508e-002, 3.50536034e-002, - 6.08605593e-002, 4.98932563e-002, 1.06439441e-001, - 8.09308439e-002, 2.16102839e-001, 1.92791969e-001, - -1.16552509e-001, 1.07613824e-001, 1.89628020e-001, - 2.05502361e-001, -3.03186271e-002, 2.52305660e-002, - 4.83948626e-002, 4.21441570e-002, 3.10105667e-003, - 7.80529750e-004, 5.74282743e-003, 4.70207259e-003, - 8.12051911e-003, -1.39821544e-002, 2.55892221e-002, - 2.82187015e-002, -6.36877771e-003, -1.24370875e-002, - 2.20994949e-002, 2.66908575e-002, -1.90869137e-003, - 1.11202127e-003, 4.56804829e-003, 4.26159007e-003, - -1.00897411e-002, 2.30413466e-003, 2.55171880e-002, - 7.55373854e-003, -5.44544756e-002, -5.18252365e-002, - 8.28978270e-002, 7.72583783e-002, -8.87585711e-003, - -4.85961922e-002, 3.96469422e-002, 6.81347698e-002, - 1.63247518e-004, -4.45987098e-003, 5.28175803e-003, - 8.12995248e-003, -1.97904542e-001, -2.34643966e-002, - 2.84148008e-001, 4.89599966e-002, -2.98363805e-001, - -2.20036402e-001, 3.86182487e-001, 2.66301155e-001, - 4.14095968e-002, -1.00957222e-001, 1.38989523e-001, - 1.67045802e-001, 2.02221293e-002, -9.41098481e-003, - 3.33556682e-002, 2.73382347e-002, -2.45431542e-001, - -3.37865278e-002, 3.15566421e-001, 5.14333621e-002, - -1.04246542e-001, 2.75196470e-002, 2.17154324e-001, - 1.33675814e-001, 5.08723147e-002, 5.62837645e-002, - 1.22063011e-001, 1.18573613e-001, 1.97577477e-002, - 6.19824277e-003, 3.31990346e-002, 2.44811531e-002, - -2.25959700e-002, -3.62529024e-003, 3.08176856e-002, - 7.42721930e-003, -9.73141007e-003, 1.66534744e-002, - 3.30288522e-002, 3.26809138e-002, 7.38299172e-003, - 1.70016512e-002, 2.24371422e-002, 3.23258601e-002, - 1.01254380e-003, 9.61776765e-004, 4.35983902e-003, - 4.68499027e-003, -1.68471911e-003, 3.27906990e-003, - 6.49005687e-003, 1.23669356e-002, 1.96814593e-002, - 8.67909566e-002, 4.00127061e-002, 1.33498728e-001, - 1.70452725e-002, 9.34439674e-002, 3.63927782e-002, - 1.09683208e-001, 2.83468398e-003, 6.97329221e-003, - 4.64478135e-003, 8.82301014e-003, 3.81514989e-002, - -1.18453251e-002, 4.53443937e-002, 8.93317387e-002, - 5.56037910e-002, 6.86805993e-002, 1.46500096e-001, - 2.71810859e-001, -7.72528583e-003, -4.35554236e-003, - 9.37689841e-002, 1.90121591e-001, -1.37347057e-002, - 3.60932946e-003, 2.29736436e-002, 3.85741256e-002, - 8.47029909e-002, -1.31934181e-001, 1.07066773e-001, - 1.49540499e-001, 4.61336225e-001, -1.54443443e-001, - 5.02783895e-001, 2.98660666e-001, -1.29426215e-002, - 5.67510910e-002, 1.20045759e-001, 1.27766624e-001, - -1.53508438e-002, -2.57523934e-004, 2.49130540e-002, - 3.09553798e-002, 5.49294939e-003, 3.47756967e-003, - 1.44799724e-002, 7.98248127e-003, 1.03850953e-001, - -3.92488092e-002, 1.09534048e-001, 5.29849418e-002, - 5.92857599e-004, -1.89922713e-002, 1.89149361e-002, - 2.77445652e-002, 2.56561994e-004, -2.99550797e-004, - 3.63254361e-003, 4.29712236e-003, 3.37589672e-003, - -9.60683729e-003, 6.77052466e-003, 1.37001080e-002, - 2.08351258e-002, -1.07175276e-001, 4.16811146e-002, - 1.30612478e-001, 4.60258685e-003, -9.34066474e-002, - 3.10975295e-002, 1.17136911e-001, -3.41809541e-003, - -8.74252338e-003, 5.92444697e-003, 1.30509175e-002, - -2.52539385e-002, -2.23839488e-002, 4.14384566e-002, - 4.89966236e-002, -1.50320046e-002, -2.44212583e-001, - 1.70816258e-001, 4.41245139e-001, 4.65789661e-002, - -3.25874209e-001, 1.47136703e-001, 5.50833702e-001, - 1.76616460e-002, -4.80836518e-002, 3.39088924e-002, - 7.61392340e-002, -2.73733847e-002, 2.21322756e-003, - 4.04435471e-002, 2.39152666e-002, -3.90051231e-002, - 2.54411772e-002, 1.37929350e-001, 1.29252180e-001, - 3.27230953e-002, 2.46082451e-002, 1.07974939e-001, - 1.30163252e-001, 1.47969285e-002, 4.21899930e-003, - 2.65202690e-002, 2.59270128e-002, -2.06703157e-003, - 5.98859566e-004, 5.21669863e-003, 3.50626884e-003, - -5.40547352e-003, 1.59090273e-002, 2.24859957e-002, - 2.74776798e-002, 3.76517465e-003, 1.51116289e-002, - 2.00846903e-002, 2.61050388e-002, 8.83611909e-004, - 1.08302757e-003, 3.66585399e-003, 3.84748145e-003, - -4.53232927e-003, 2.13210049e-004, 7.66834849e-003, - 2.62418413e-003, -6.52712770e-003, -1.43959932e-002, - 1.75094139e-002, 2.03190092e-002, 6.68413378e-003, - -1.30573260e-002, 1.57881510e-002, 2.22535171e-002, - 3.26823769e-003, 1.53304345e-003, 6.32089330e-003, - 4.57400829e-003, -4.84338962e-002, 5.67208882e-003, - 6.32411987e-002, 1.57376286e-002, -5.90663664e-002, - -3.08754910e-002, 1.24362268e-001, 9.17106420e-002, - 7.27721304e-002, -9.09589902e-002, 2.01324984e-001, - 2.20824167e-001, 5.78638390e-002, 3.13202408e-003, - 6.86503276e-002, 5.12866527e-002, -4.69773859e-002, - 2.19918471e-002, 6.05197176e-002, 2.97580883e-002, - -1.42391056e-001, 1.98401749e-001, 2.45766699e-001, - 2.54409283e-001, 8.69051274e-003, 4.10059886e-003, - 6.02072239e-001, 3.77868950e-001, 3.38777415e-002, - -7.35832192e-003, 5.88214286e-002, 5.91683611e-002, - -5.28327073e-004, 9.93547030e-004, 3.51478998e-003, - 6.11588592e-003, -2.18984839e-002, 3.97582054e-002, - 4.09078896e-002, 6.88193068e-002, -2.47332975e-002, - 4.86144349e-002, 7.29966909e-002, 8.79400447e-002, - 1.77149102e-003, 2.01001950e-003, 8.76454730e-003, - 1.19140949e-002, -3.29753011e-003, -2.06337380e-003, - 5.45515679e-003, 7.34313205e-003, -9.54866689e-003, - -3.16783153e-002, 2.56122705e-002, 4.93084565e-002, - 1.40361404e-002, -2.30222698e-002, 3.11789643e-002, - 4.00814563e-002, 2.44095153e-003, 3.00714491e-005, - 6.30533043e-003, 5.85682224e-003, -3.22275274e-002, - 4.73407917e-002, 5.19629009e-002, 6.33029863e-002, - -1.40353531e-001, 2.13359356e-001, 2.15321526e-001, - 3.13431203e-001, 1.19664505e-001, 5.68541288e-002, - 1.84516340e-001, 1.82624698e-001, 3.85853350e-002, - 1.26558067e-002, 5.41655682e-002, 3.80176827e-002, - -6.24717912e-003, 1.87376402e-002, 5.33515923e-002, - 3.44716422e-002, -3.77855837e-001, 7.34382728e-003, - 4.71207529e-001, 2.32344553e-001, 1.51478574e-001, - 8.24241266e-002, 2.32626200e-001, 1.93647504e-001, - 4.71086614e-002, 8.38151388e-003, 6.53928444e-002, - 3.06898206e-002, 4.00181249e-004, -9.98583855e-004, - 6.61894819e-003, 4.62633418e-003, -3.31680514e-002, - 4.35605980e-002, 6.78036809e-002, 5.62645793e-002, - 1.57556348e-002, 4.51259278e-002, 4.96869981e-002, - 5.65708540e-002, 2.16461392e-003, 1.20938162e-003, - 6.80013234e-003, 5.09044295e-003, -2.25039646e-002, - 2.50254245e-003, 3.20146345e-002, 4.51842416e-003, - -4.58461884e-003, -2.02304320e-004, 4.25392389e-002, - 1.83877833e-002, -5.52035216e-003, -2.88544619e-003, - 3.08764558e-002, 1.93782970e-002, 2.26653013e-002, - 1.15680613e-003, 3.51136588e-002, 3.52979009e-003, - -2.13837966e-001, 9.49613750e-003, 2.51317233e-001, - 3.24760154e-002, 2.07583643e-002, 1.46231177e-004, - 2.36650988e-001, 1.10436797e-001, -5.36509603e-002, - 2.60277893e-002, 1.92949638e-001, 9.68060121e-002, - 1.75000772e-001, 7.39143929e-003, 2.61558861e-001, - 2.63006296e-002, -1.94168434e-001, 1.47105253e-003, - 2.20765904e-001, 3.30405347e-002, 1.57990009e-002, - 2.10336655e-001, 1.94111347e-001, 2.55377263e-001, - -1.08776921e-002, 2.23440111e-001, 2.28952244e-001, - 2.52769053e-001, 1.40596986e-001, 2.03038789e-002, - 2.36850500e-001, 3.99096683e-002, -1.46476915e-002, - 4.54191258e-003, 1.87139306e-002, 8.72020982e-003, - 1.73757300e-002, 1.05825491e-001, 5.94443977e-002, - 1.20233126e-001, -4.49058833e-003, 9.61780399e-002, - 5.64192906e-002, 1.22615673e-001, -7.62603129e-004, - -2.42801290e-003, 1.88168380e-002, 1.06761986e-002, - 5.74130099e-003, 1.36673346e-003, 1.37334224e-002, - 5.42041240e-003, -1.01182740e-002, 6.58582151e-002, - 6.46215528e-002, 7.21444339e-002, -1.89087559e-002, - 4.76420447e-002, 4.16890867e-002, 6.42536506e-002, - -3.25259357e-003, 8.50516779e-004, 6.48437627e-003, - 5.91553748e-003, 1.06076144e-001, -3.99829634e-003, - 1.42084569e-001, 2.56643686e-002, -1.34803861e-001, - -1.04076220e-002, 4.47984099e-001, 1.64244458e-001, - -1.52597800e-001, 4.65116324e-003, 2.51990378e-001, - 1.71532691e-001, -3.79061513e-002, 1.86602166e-003, - 5.34768105e-002, 2.64082924e-002, 1.27649859e-001, - 9.48011177e-004, 1.63946435e-001, 2.26171110e-002, - -2.17801377e-001, -8.88232216e-002, 4.51748788e-001, - 1.71019852e-001, -8.02108571e-002, -8.31919238e-002, - 2.17769697e-001, 1.55570239e-001, -3.71817760e-002, - -7.19217537e-003, 4.89033349e-002, 2.68655755e-002, - 1.28538441e-002, -1.61057385e-003, 1.84912942e-002, - 5.74892946e-003, -3.67784649e-002, -5.05644158e-002, - 5.62765934e-002, 6.71126172e-002, -6.37809001e-003, - -4.13277037e-002, 2.70979162e-002, 6.08220957e-002, - -2.62409984e-003, -2.53780535e-003, 4.76884004e-003, - 5.86870220e-003, 9.31169838e-004, -4.29841893e-004, - 5.49719343e-003, 3.16402456e-003, 1.39500545e-002, - 9.53196455e-003, 4.23918068e-002, 2.82701720e-002, - -1.04921116e-002, 1.16368104e-002, 3.27304378e-002, - 2.76197642e-002, -7.73510837e-004, 2.60999106e-004, - 4.74677468e-003, 3.16379801e-003, 1.56348273e-002, - 4.18037293e-004, 4.79726456e-002, 1.98994912e-002, - 1.24622226e-001, 9.46563762e-003, 3.34592521e-001, - 1.65492445e-001, -3.66607830e-002, 6.23145550e-002, - 2.71118402e-001, 1.81674495e-001, -2.15408187e-002, - 4.64539556e-003, 4.41956148e-002, 2.27121767e-002, - 2.10137535e-002, -1.47938903e-003, 4.47542518e-002, - 1.76033340e-002, -4.54423875e-002, -5.25308251e-002, - 4.90941554e-001, 1.61674306e-001, 1.53047070e-001, - -8.80972520e-002, 4.81700212e-001, 1.80729851e-001, - -2.80383173e-002, -2.99371290e-003, 5.04407994e-002, - 2.13340614e-002, 2.04935973e-003, 3.49082373e-004, - 5.78847853e-003, 2.71230820e-003, -1.06977820e-002, - -1.01394178e-002, 6.27121106e-002, 2.85978261e-002, - 1.77132189e-002, -1.43219111e-002, 6.30712286e-002, - 3.15307006e-002, -1.95124291e-003, -3.11003241e-004, - 5.99165354e-003, 3.08896811e-003, 2.42121122e-003, - 1.06420796e-002, 8.17823038e-003, 1.78888720e-002, - -2.01245028e-004, 1.45069286e-001, 3.82633507e-002, - 1.96204633e-001, -1.63492560e-002, 1.37881026e-001, - 4.17634323e-002, 1.98992550e-001, -1.52708904e-003, - 8.67773592e-003, 9.45415907e-003, 1.87234003e-002, - 4.43958864e-002, -1.25978906e-002, 8.55146274e-002, - 4.71734777e-002, 1.68548316e-001, -7.39118923e-003, - 2.75422961e-001, 1.98889181e-001, -1.65110350e-001, - 5.55756241e-002, 2.49433011e-001, 2.31552616e-001, - -6.37830198e-002, 1.10180397e-002, 1.00861840e-001, - 4.85367924e-002, 3.38043049e-002, -1.43442964e-002, - 8.91780257e-002, 4.37856540e-002, 2.59326071e-001, - -3.50530520e-002, 3.58681142e-001, 1.75620034e-001, - -1.61552086e-001, -1.20382085e-002, 2.56343722e-001, - 1.74750209e-001, -5.76816164e-002, -3.54665564e-003, - 9.43849906e-002, 4.43255194e-002, 1.86320650e-003, - -1.24557980e-003, 9.89352819e-003, 8.42454750e-003, - 4.10072319e-002, -4.88180593e-002, 6.44139275e-002, - 7.26546496e-002, -2.04384066e-002, -3.88097316e-002, - 5.01644760e-002, 6.58384487e-002, -2.53244070e-003, - -2.64367089e-004, 9.26064979e-003, 7.61232525e-003, - 2.44193990e-003, -1.92455409e-004, 5.79185737e-003, - 3.01145087e-003, -2.09538881e-002, 1.79365892e-002, - 6.93018809e-002, 3.01097184e-002, -1.21124340e-002, - 8.56109057e-003, 3.01664378e-002, 2.73285154e-002, - 1.84875520e-004, 4.39875148e-004, 3.29409167e-003, - 3.42154386e-003, 2.97670402e-002, -8.98429542e-004, - 5.02393432e-002, 2.00085435e-002, -4.79674861e-002, - 8.59869942e-002, 5.10316610e-001, 1.65427729e-001, - -2.50242427e-002, 2.84421712e-001, 1.82070196e-001, - 3.14003468e-001, -1.88814122e-002, 2.92366557e-002, - 3.17081995e-002, 3.80588844e-002, 2.91955341e-002, - -3.62924970e-004, 4.81902026e-002, 2.18803324e-002, - 7.95612857e-002, -1.56995326e-001, 3.56884331e-001, - 2.22633451e-001, -2.21029893e-002, -1.60291702e-001, - 1.63175881e-001, 2.50164002e-001, -2.63939146e-002, - -1.85395740e-002, 3.46446671e-002, 3.34456973e-002, - 1.35740556e-003, -3.17673723e-004, 5.01369685e-003, - 3.44949146e-003, 4.44236328e-004, -1.80099141e-002, - 3.94029133e-002, 3.52337174e-002, -3.03288642e-003, - -1.70861781e-002, 2.39271540e-002, 3.62734348e-002, - -3.50351358e-004, -5.14473533e-004, 3.22293607e-003, - 4.06442396e-003, 1.74086087e-003, 2.10487843e-003, - 6.43465342e-003, 4.60413517e-003, 3.33201811e-002, - 3.83582786e-002, 4.45931628e-002, 4.84145135e-002, - -1.26975579e-002, 3.03558912e-002, 9.10795331e-002, - 4.26852815e-002, -2.12124754e-002, -2.25826123e-004, - 2.81452686e-002, 4.79766307e-003, 3.96316685e-002, - 1.93895970e-003, 5.79160117e-002, 3.81590575e-002, - 2.83649981e-001, 1.78542733e-001, 3.04909468e-001, - 2.33015269e-001, -2.20180109e-001, 5.81068248e-002, - 3.94886792e-001, 1.39802098e-001, -1.77894801e-001, - 2.67717596e-002, 2.13060617e-001, 3.84483188e-002, - 5.09302169e-002, 2.82108616e-002, 6.64171875e-002, - 5.66018447e-002, 1.43868938e-001, -8.58105905e-003, - 2.16344699e-001, 2.02602074e-001, -1.19682617e-001, - -6.81871921e-003, 2.31623545e-001, 1.49554595e-001, - -1.32345274e-001, 7.59607032e-002, 1.69976875e-001, - 8.35645199e-002, 2.81291734e-003, -5.60370181e-003, - 9.85210575e-003, 1.32469442e-002, 2.24379860e-002, - -7.62686655e-002, 5.77503964e-002, 1.16357170e-001, - 2.44655646e-002, -4.30439599e-002, 4.92986329e-002, - 6.66027218e-002, -4.45180293e-003, 2.68664188e-003, - 9.46549885e-003, 6.78850431e-003, 4.76267375e-003, - -2.43157591e-003, 6.76602917e-003, 5.50673064e-003, - 3.49725522e-002, -9.45124105e-002, 7.78127462e-002, - 1.07648097e-001, -5.24548143e-002, -1.04286827e-001, - 7.74367452e-002, 1.18334576e-001, -2.52487021e-003, - -8.84128548e-003, 5.73958363e-003, 1.21014826e-002, - -2.47942191e-003, -1.72658991e-002, 2.17104536e-002, - 3.45880650e-002, -8.22033361e-003, -1.79885760e-001, - 1.46344155e-001, 3.11188877e-001, 6.47725537e-003, - -2.82933321e-002, 1.58741400e-001, 2.75050312e-001, - 7.33831711e-003, 7.86926784e-003, 2.37514377e-002, - 3.83198410e-002, -2.01576273e-003, 4.14689118e-003, - 1.82863064e-002, 2.75298115e-002, 1.06794544e-001, - 1.45601645e-001, 1.89364403e-001, 2.63394624e-001, - 1.04108363e-001, 2.63331681e-001, 3.32486629e-001, - 3.91566873e-001, 1.90675557e-002, 7.22771883e-002, - 5.42027168e-002, 9.22736749e-002, 8.40551686e-004, - 2.76328437e-003, 3.81199853e-003, 4.36198106e-003, - 7.62141943e-002, 5.11805303e-002, 8.77551138e-002, - 6.57824948e-002, -3.40026175e-003, 6.28068671e-002, - 1.05400667e-001, 8.19263682e-002, -3.28511451e-005, - 2.36160029e-003, 1.22520011e-002, 9.37700924e-003, - -1.34862692e-003, 3.45295790e-004, 8.10280535e-003, - 5.27992612e-003, -2.93277260e-002, -3.21672000e-002, - 6.55033290e-002, 4.81707044e-002, 2.65089814e-002, - -2.95173340e-002, 4.83318344e-002, 4.75644059e-002, - 8.11143313e-003, 1.14454294e-003, 1.26632284e-002, - 5.71653061e-003, -3.30766365e-002, -1.62088219e-002, - 6.74201027e-002, 3.60259116e-002, -1.46192908e-001, - -6.54312298e-002, 4.28320944e-001, 1.86237127e-001, - 1.85812816e-001, -1.22226169e-002, 2.99338967e-001, - 1.63204491e-001, 9.84954163e-002, 9.05199628e-003, - 1.28436074e-001, 3.38679962e-002, -4.35395613e-002, - -9.85285453e-003, 6.76977858e-002, 3.55215445e-002, - -9.98639911e-002, 7.30782747e-003, 2.94003218e-001, - 1.90815881e-001, 2.33433932e-001, -3.03077493e-002, - 3.60501230e-001, 1.90961033e-001, 9.64143202e-002, - 3.50253657e-003, 1.28442749e-001, 3.86247225e-002, - -3.51797394e-003, -4.28458559e-004, 8.88364110e-003, - 4.88780299e-003, -1.10449903e-002, 1.97714083e-002, - 4.29308526e-002, 3.76972370e-002, 3.14412825e-002, - 2.28237044e-002, 5.99124022e-002, 3.99299078e-002, - 7.69410562e-003, -2.00457592e-003, 1.39758866e-002, - 5.69211785e-003, 4.75884927e-003, -1.13463355e-003, - 7.35423993e-003, 4.24194010e-003, 1.26330303e-002, - 3.56916455e-003, 2.57436559e-002, 1.71126109e-002, - -1.90759788e-003, 4.86451387e-003, 2.76504811e-002, - 1.56348851e-002, -1.94615722e-002, -2.56011263e-003, - 2.27923952e-002, 5.37089584e-003, 5.10844402e-002, - -1.09267943e-002, 6.62183687e-002, 2.34373566e-002, - 1.25229880e-001, -1.67210605e-002, 2.02890143e-001, - 9.93153080e-002, -1.71233173e-002, 2.74183112e-003, - 2.13544518e-001, 9.87389982e-002, -1.96619824e-001, - -2.22825129e-002, 2.42035478e-001, 3.98514718e-002, - 5.12014776e-002, -1.74384415e-002, 6.78889081e-002, - 3.84422801e-002, 9.88085046e-002, -2.42248490e-001, - 2.87722319e-001, 3.08648705e-001, 3.03351339e-002, - -1.55386880e-001, 3.93110901e-001, 2.19698980e-001, - -1.93621665e-001, -9.56698880e-003, 2.48706535e-001, - 3.36209089e-002, 9.86593950e-005, -4.61276062e-003, - 6.55496959e-003, 9.03705042e-003, -4.58396738e-003, - -7.92407319e-002, 6.13561608e-002, 1.02737777e-001, - 4.39756885e-002, -8.24455246e-002, 9.71775949e-002, - 9.80468839e-002, -1.55990878e-002, -1.59507629e-003, - 2.31970344e-002, 8.26739427e-003, -4.32869792e-003, - 3.83659522e-003, 9.87992715e-003, 7.52601307e-003, - -3.14193331e-002, -1.46670034e-002, 4.53598574e-002, - 3.31311151e-002, 3.38886376e-003, -1.71365738e-002, - 2.08889935e-002, 2.78895255e-002, 1.47538679e-003, - -1.08235283e-003, 4.49589221e-003, 3.82469525e-003, - -6.80902824e-002, -2.52992939e-002, 8.64792019e-002, - 5.44143915e-002, -1.71241164e-001, -7.33570084e-002, - 2.30297163e-001, 1.50433317e-001, 3.54716964e-002, - -1.94128081e-002, 9.53393281e-002, 9.65049565e-002, - 1.39784086e-002, -5.47042582e-003, 2.61925329e-002, - 2.02020034e-002, -5.53396232e-002, 4.88188267e-002, - 7.74982646e-002, 7.55191222e-002, -1.96054652e-001, - 4.30493861e-001, 2.66480088e-001, 4.93275493e-001, - -2.82646529e-002, 1.62614211e-001, 1.24890365e-001, - 2.31150240e-001, 1.13564031e-002, 1.06157325e-002, - 2.36350596e-002, 2.82927826e-002, 2.43831519e-003, - 2.96040718e-003, 7.13093253e-003, 1.12135168e-002, - -2.14938223e-002, 8.44228342e-002, 5.20127565e-002, - 1.27543271e-001, -4.00785878e-002, 1.48950934e-001, - 5.65044247e-002, 1.75807118e-001, -4.40494157e-003, - 1.26206456e-002, 7.67016085e-003, 1.54020935e-002, - -1.01818633e-003, 5.10009821e-004, 4.69575590e-003, - 2.06609420e-003, -3.64657827e-002, -1.54589200e-002, - 6.23908937e-002, 2.58709267e-002, 2.76372712e-002, - -9.38500743e-003, 4.78669070e-002, 2.67200563e-002, - 1.57873589e-003, 9.90386354e-004, 5.58040617e-003, - 3.56196403e-003, -1.70223713e-002, -1.73824886e-003, - 3.91931385e-002, 1.47038959e-002, -2.28044003e-001, - -5.95516302e-002, 4.71014172e-001, 1.48030326e-001, - 2.13917196e-001, -1.78244745e-003, 3.02497178e-001, - 1.38412267e-001, 2.09475532e-002, -1.35384779e-003, - 4.44230139e-002, 2.23051310e-002, -3.03374510e-002, - -3.41265905e-003, 4.79463823e-002, 1.66503824e-002, - -7.59960413e-002, 4.71530184e-002, 5.04686654e-001, - 1.51131496e-001, 1.17853910e-001, 5.99650256e-002, - 2.50344962e-001, 1.45309478e-001, 2.35589258e-002, - -1.70191473e-004, 4.39609736e-002, 2.22499929e-002, - -4.81144199e-003, -1.24858099e-003, 7.49635883e-003, - 2.89938110e-003, 8.98780941e-004, 1.59622319e-002, - 6.23695552e-002, 2.88896393e-002, 1.13922525e-002, - 1.30928447e-002, 3.96658964e-002, 2.68502552e-002, - 1.42455194e-003, 7.48928505e-005, 5.54292835e-003, - 3.30723356e-003, -1.99135183e-003, -2.91516930e-002, - 9.35478322e-003, 3.56892161e-002, 2.78464295e-002, - -2.95861542e-001, 4.84714955e-002, 3.35765690e-001, - -2.15529688e-002, -2.71628708e-001, 6.16846569e-002, - 3.34282637e-001, -3.42834229e-003, -1.94667447e-002, - 9.72766336e-003, 3.60523872e-002, -6.40760362e-002, - 1.20691294e-002, 9.50896665e-002, 5.10741286e-002, - -6.16372637e-002, 5.40885469e-003, 1.51007459e-001, - 2.83815771e-001, 2.51552649e-002, -5.87099604e-002, - 1.34575725e-001, 2.59947151e-001, 1.73454117e-002, - -2.94607468e-002, 2.92706247e-002, 6.58893958e-002, - -1.17937267e-001, 4.55250591e-002, 1.32896215e-001, - 9.51755568e-002, -1.15133107e-001, 1.63633153e-001, - 2.01125726e-001, 2.83465773e-001, 2.12552561e-003, - 8.90538022e-002, 1.11582927e-001, 1.60126507e-001, - -3.77685321e-003, 8.85276869e-003, 2.57821325e-002, - 2.53912248e-002, -1.00254072e-002, 4.11357352e-004, - 1.26575455e-002, 1.13239381e-002, -3.16801630e-002, - 2.31894571e-002, 4.06656936e-002, 4.55900133e-002, - -1.06343552e-002, 9.26025864e-003, 1.98788829e-002, - 2.49065291e-002, -2.62894406e-004, 3.44482047e-004, - 2.89183669e-003, 2.45490135e-003, -4.09084460e-004, - -4.07697586e-003, 9.24574491e-003, 1.31581882e-002, - -3.83171141e-002, -1.00541897e-001, 6.41818494e-002, - 1.32579058e-001, -4.53954376e-003, -5.73748574e-002, - 4.48365360e-002, 8.41871798e-002, 1.20778964e-003, - -1.41595933e-003, 5.55447768e-003, 7.71318329e-003, - -7.18145072e-002, 1.21264504e-002, 9.25416797e-002, - 6.54275715e-002, -2.21284628e-001, 6.75177723e-002, - 3.00246030e-001, 3.61931086e-001, 1.09772407e-001, - -1.25457803e-002, 2.07248241e-001, 2.04877034e-001, - 2.60304380e-002, -1.43883880e-002, 4.10668738e-002, - 4.22195494e-002, -6.95980489e-002, 1.05342874e-002, - 8.68378282e-002, 5.14513105e-002, -1.50644317e-001, - 1.61415681e-001, 3.16269010e-001, 3.00638258e-001, - -6.93799853e-002, 1.70005500e-001, 2.08569229e-001, - 2.52459168e-001, 2.26058066e-002, 8.74301791e-003, - 3.67155150e-002, 3.72057855e-002, -3.83469113e-003, - 3.20990017e-004, 8.99770018e-003, 6.58165477e-003, - -1.48384552e-002, 4.22370583e-002, 4.98291738e-002, - 6.09592833e-002, -1.89638864e-002, 3.80522013e-002, - 4.84936275e-002, 5.62159494e-002, 4.99896632e-005, - 2.33597704e-003, 5.49103506e-003, 6.12294907e-003, - -7.71824329e-004, 5.82240405e-004, 6.13551307e-003, - 2.93014618e-003, -1.61223263e-002, -1.37084275e-002, - 7.41625279e-002, 3.64944525e-002, 3.90502089e-003, - -1.14151565e-002, 5.65126166e-002, 4.07396220e-002, - -1.50810624e-003, -5.38130000e-004, 6.20542048e-003, - 4.78202756e-003, -1.43761290e-002, -3.86561849e-003, - 4.99169640e-002, 1.84314623e-002, -1.44817621e-001, - -1.69265717e-002, 5.18385947e-001, 1.75098211e-001, - -7.84544200e-002, -1.30449951e-001, 3.48768413e-001, - 2.32900068e-001, 1.42285246e-002, -1.34077584e-002, - 4.36089262e-002, 3.07046901e-002, -3.13071497e-002, - -1.29738208e-002, 6.19351901e-002, 2.52215546e-002, - -1.20995902e-001, -6.27626181e-002, 3.56413096e-001, - 1.95494592e-001, -6.34026751e-002, 3.64647470e-002, - 2.46092275e-001, 1.84784800e-001, 1.56363416e-002, - 4.71968250e-003, 4.04297672e-002, 2.82372013e-002, - -4.81332559e-003, -1.09081960e-003, 8.63374490e-003, - 4.19476442e-003, -7.21734250e-003, 1.26541238e-002, - 4.22949679e-002, 3.78860906e-002, -9.10237606e-004, - 1.19231520e-002, 3.53859253e-002, 4.09455784e-002, - -1.11077337e-004, -3.27217422e-004, 4.84320149e-003, - 4.75737592e-003, 9.63984523e-004, -5.79284504e-003, - 4.88267792e-003, 8.50282330e-003, 1.55060273e-002, - -7.06099197e-002, 3.73208970e-002, 8.26703757e-002, - 1.63667426e-002, -4.83516902e-002, 3.95947620e-002, - 6.96052611e-002, 2.13222243e-004, -2.35975647e-004, - 5.78866107e-003, 6.10255450e-003, -2.69379821e-002, - 3.11622396e-003, 3.74095067e-002, 4.39261347e-002, - -2.70618871e-003, -4.74660620e-002, 1.52776837e-001, - 2.85112023e-001, 1.60932884e-001, -2.31426045e-001, - 2.59831578e-001, 3.51418406e-001, 5.08670695e-002, - -3.81588228e-002, 6.51163459e-002, 5.63422404e-002, - -1.82956457e-002, 3.82069908e-002, 3.55954915e-002, - 4.86532152e-002, -7.98544586e-002, 3.19400400e-001, - 1.83370441e-001, 3.52430850e-001, -9.67199057e-002, - 1.64156988e-001, 2.48546436e-001, 2.35393465e-001, - 5.11071905e-002, -6.46500941e-003, 6.18662089e-002, - 3.68976481e-002, 1.00248680e-003, 1.97886460e-004, - 5.05011017e-003, 5.36689814e-003, -1.08008357e-002, - 1.67091358e-002, 3.32958773e-002, 4.16252166e-002, - -2.43683532e-002, 3.59370373e-002, 4.37936001e-002, - 4.88570109e-002, 1.72213872e-003, 2.76342337e-003, - 6.76896656e-003, 5.92192821e-003, 9.91710927e-004, - 1.10953534e-003, 4.47873166e-003, 5.38565591e-003, - 5.29420003e-003, 2.62925420e-002, 3.11920512e-002, - 4.11145948e-002, -4.65577748e-003, 2.50468627e-002, - 2.79572122e-002, 3.91852669e-002, -1.62782974e-003, - 4.28021245e-004, 4.65683034e-003, 4.75305784e-003, - 4.11563702e-002, -4.75057820e-003, 5.09294048e-002, - 3.81671079e-002, -7.92466197e-003, 1.16040997e-001, - 2.34972462e-001, 2.32842669e-001, -1.07488990e-001, - -3.70125636e-003, 2.09116906e-001, 2.04548001e-001, - -2.32850872e-002, 5.15305728e-004, 3.73538174e-002, - 3.12812813e-002, 2.44310871e-002, -3.90146002e-002, - 4.19321582e-002, 5.24927340e-002, 2.86414772e-001, - -2.78357565e-001, 3.69032323e-001, 3.75509679e-001, - -1.32747337e-001, 1.02613889e-001, 2.30477691e-001, - 2.92335033e-001, -2.79293805e-002, 6.80394284e-003, - 4.15258557e-002, 3.39747034e-002, -1.23533315e-003, - 1.41144695e-003, 4.25563473e-003, 4.28238558e-003, - 3.82743739e-002, -2.25123987e-002, 5.18439487e-002, - 4.34742048e-002, 8.42247251e-003, -4.71044704e-002, - 4.27491404e-002, 5.74363060e-002, -1.76996342e-003, - -1.70387060e-003, 5.41298650e-003, 4.84407833e-003, - 1.18921197e-003, 8.03085219e-004, 4.92508709e-003, - 4.23768815e-003, -4.44024988e-002, -3.22775468e-002, - 5.71374632e-002, 4.61636372e-002, 3.57143767e-003, - -3.58511247e-002, 4.88371402e-002, 4.83069867e-002, - 3.63853038e-003, 1.60450768e-003, 6.42674137e-003, - 5.11125894e-003, -2.97877192e-002, -3.45042162e-002, - 4.75512855e-002, 4.82439660e-002, -2.62141317e-001, - -1.93007514e-001, 3.35654289e-001, 3.12967867e-001, - 2.75472969e-001, 1.00610740e-001, 3.26298714e-001, - 2.44420946e-001, 3.00210435e-002, 9.73101123e-004, - 4.47108001e-002, 3.59692164e-002, -4.36109379e-002, - -5.82592189e-003, 5.32487966e-002, 4.23397683e-002, - 5.17870896e-002, 1.46337375e-001, 2.18458831e-001, - 2.29019761e-001, 1.70835674e-001, 1.00330405e-001, - 2.31804430e-001, 2.06157833e-001, 2.47918610e-002, - 2.36964202e-003, 3.87800075e-002, 3.15889865e-002, - -1.18779764e-003, 1.48646859e-003, 5.12089254e-003, - 4.98089381e-003, 9.94762592e-003, 3.06941476e-002, - 3.37069109e-002, 4.13827933e-002, 1.07594375e-002, - 2.30879392e-002, 3.14994156e-002, 3.57699879e-002, - 8.12507351e-004, 2.15222128e-004, 4.58039949e-003, - 4.31003701e-003, 5.72152948e-003, -3.29974946e-003, - 1.53530119e-002, 8.63438658e-003, 3.99812534e-002, - 2.41139289e-002, 5.51103912e-002, 4.62612249e-002, - 7.92269688e-003, 1.46881370e-002, 2.35587172e-002, - 2.78917234e-002, -2.71555898e-003, 5.61527733e-004, - 4.85743303e-003, 4.54851007e-003, 1.10344090e-001, - 3.23484875e-002, 1.41834319e-001, 5.94594702e-002, - 1.47700384e-001, 1.15724422e-001, 2.24014074e-001, - 1.79204732e-001, -2.57454440e-002, 7.51721859e-003, - 1.15406327e-001, 1.08644918e-001, -3.91388647e-002, - -2.24339329e-002, 5.18556722e-002, 3.74825373e-002, - 8.57920721e-002, -1.20337829e-002, 1.12677738e-001, - 6.32452369e-002, 1.23117588e-001, -1.99011356e-001, - 2.19603628e-001, 2.61282206e-001, -2.96416163e-001, - -2.80424953e-001, 3.74209166e-001, 3.37881148e-001, - -2.19310056e-002, -7.00626820e-002, 7.00021833e-002, - 8.72031301e-002, 2.83091771e-003, -1.01395918e-003, - 1.11695016e-002, 7.81765208e-003, 2.50462927e-002, - -5.58367595e-002, 7.12842047e-002, 8.67249668e-002, - -5.45785800e-002, -5.88398352e-002, 8.04548115e-002, - 8.50546360e-002, 2.39484711e-003, 4.82954812e-004, - 8.81364290e-003, 9.62932687e-003, -9.11710318e-004, - -1.21381355e-003, 5.08051366e-003, 5.73022803e-003, - 1.79700088e-002, -3.62003446e-002, 3.98952924e-002, - 5.12947887e-002, 3.97735983e-002, -2.05916557e-002, - 5.88893183e-002, 4.93196473e-002, 1.25685323e-003, - 2.55843694e-003, 5.78517281e-003, 6.44517830e-003, - -1.64405368e-002, 6.95594959e-003, 3.45546044e-002, - 3.23686376e-002, 2.03613024e-002, 1.04416303e-001, - 1.86022863e-001, 2.42648438e-001, 1.93231434e-001, - -1.56614482e-001, 3.50618213e-001, 2.98841089e-001, - 4.31124121e-002, -3.34894396e-002, 5.95759004e-002, - 5.51513322e-002, -1.20637584e-002, 2.67147762e-003, - 3.34946252e-002, 4.81774397e-002, -6.49641035e-003, - -4.13092348e-004, 1.62827820e-001, 3.66396755e-001, - 1.22596279e-001, 1.70844302e-001, 2.61772364e-001, - 3.84056419e-001, 4.63911816e-002, 2.26969663e-002, - 5.93108572e-002, 6.07941225e-002, 1.32592744e-003, - 3.69202951e-003, 5.33902505e-003, 7.53941154e-003, - 1.31486226e-002, 4.99192551e-002, 3.71339731e-002, - 6.85912967e-002, 2.37686355e-002, 3.91728878e-002, - 4.02738601e-002, 6.20657429e-002, 9.85423336e-004, - 1.14950945e-003, 4.44103964e-003, 5.54118492e-003, - 1.27186693e-004, -8.72454711e-006, 2.28019501e-003, - 1.77230663e-003, -5.16927335e-004, 3.23122717e-003, - 1.38080874e-002, 1.22169862e-002, -1.21239042e-002, - 5.62007725e-003, 2.46085823e-002, 1.72696058e-002, - -1.25031630e-002, -2.76528462e-003, 1.62749011e-002, - 5.38343471e-003, 5.67435240e-003, 4.09376080e-004, - 1.63128171e-002, 1.43620232e-002, 9.92179033e-004, - 1.31636802e-002, 7.81255886e-002, 7.80217871e-002, - -1.24732934e-001, -2.77080983e-002, 1.88626230e-001, - 1.14496633e-001, -1.34904489e-001, -4.56465781e-002, - 1.60025746e-001, 5.95668778e-002, 6.17742771e-003, - -2.13569086e-002, 2.02966575e-002, 3.22119780e-002, - 2.18098168e-003, -1.56634286e-001, 1.11254148e-001, - 2.15527371e-001, -3.65352184e-001, -2.88371146e-001, - 4.25460249e-001, 3.46150100e-001, -1.17214248e-001, - -4.06603515e-002, 1.54158682e-001, 6.69434667e-002, - -2.77499482e-003, -1.64732635e-002, 5.72401052e-003, - 2.23144740e-002, -1.71263255e-002, -1.62101641e-001, - 4.33162488e-002, 1.93076953e-001, -3.38115282e-002, - -1.40637308e-001, 6.02002516e-002, 1.69924513e-001, - -2.45325849e-003, -3.41204088e-003, 9.77481436e-003, - 1.03651704e-002, -7.26740528e-003, -3.58593045e-003, - 1.18726557e-002, 7.23145530e-003, 2.41286624e-002, - -7.48852417e-002, 5.56551144e-002, 9.42301899e-002, - 1.08347111e-003, -9.51273963e-002, 5.91545030e-002, - 1.15508899e-001, 6.77875651e-004, -4.28714138e-003, - 9.48405638e-003, 8.73037428e-003, -9.63879228e-002, - -6.59124786e-003, 1.17428191e-001, 3.37394774e-002, - 1.29955605e-001, -2.12800931e-002, 3.17641914e-001, - 2.91659325e-001, 2.24857833e-002, 2.97256336e-002, - 3.44558090e-001, 2.99134761e-001, 4.08593863e-002, - -1.22044999e-002, 6.53255656e-002, 4.93306071e-002, - -9.68516842e-002, -8.34284257e-003, 1.19033717e-001, - 2.76494548e-002, 1.38038889e-001, -5.97001947e-002, - 3.02343339e-001, 2.40932107e-001, 1.10745236e-001, - 2.59553902e-002, 2.45675191e-001, 2.31060520e-001, - 2.32428815e-002, 4.86940262e-004, 4.61277775e-002, - 4.46506180e-002, -8.24036635e-003, 5.70588745e-004, - 1.36376088e-002, 4.15120693e-003, 2.01220885e-002, - 2.61301808e-002, 4.87105362e-002, 4.35289256e-002, - 2.52523422e-002, 2.91649234e-002, 4.80079353e-002, - 5.43023497e-002, -4.31194319e-004, 3.09137511e-003, - 6.26415526e-003, 8.02386459e-003, 4.91960626e-003, - -2.12092209e-003, 1.13886958e-002, 7.44185410e-003, - 6.41784966e-002, 2.26504356e-002, 7.69353658e-002, - 4.27838862e-002, 5.54048223e-004, 1.22083137e-002, - 2.36831307e-002, 2.22725999e-002, -1.04391074e-003, - 5.90021722e-004, 3.37421009e-003, 2.88324454e-003, - 8.88686851e-002, 1.72510482e-002, 1.11976147e-001, - 5.10826856e-002, 3.12906176e-001, 1.11723758e-001, - 4.03347999e-001, 1.83425307e-001, -1.61819290e-002, - -8.00883677e-003, 1.02687269e-001, 8.15642476e-002, - -1.28538059e-002, 3.19579709e-003, 2.23942213e-002, - 1.42960204e-002, 1.05109259e-001, -9.98404063e-003, - 1.19465239e-001, 6.21911921e-002, 2.16711104e-001, - -3.29144150e-001, 3.19124788e-001, 3.95830512e-001, - 4.66456152e-002, -5.35510555e-002, 1.37946129e-001, - 1.21883325e-001, -9.01449006e-003, -1.56820740e-003, - 1.93936899e-002, 1.49162253e-002, 5.49409364e-004, - -1.93613500e-003, 7.78739294e-003, 7.49731064e-003, - 5.93920201e-002, -5.89559823e-002, 7.82636553e-002, - 8.07761699e-002, 4.94143702e-002, -5.17975800e-002, - 6.13793395e-002, 6.39493912e-002, 3.06129659e-004, - -1.90572673e-003, 3.34855379e-003, 4.25321748e-003, - 4.14586905e-003, -2.15830325e-004, 5.96309919e-003, - 5.15014306e-003, -1.62897687e-002, 2.69058123e-002, - 3.48768160e-002, 3.97610962e-002, -2.51480862e-002, - 1.80179998e-002, 4.32830229e-002, 5.05530201e-002, - -6.11143885e-004, -1.74157831e-005, 4.53185290e-003, - 5.25088143e-003, 4.76863012e-002, -6.06824970e-003, - 6.77232891e-002, 3.34341750e-002, -1.94513369e-002, - 1.76196955e-002, 1.97374344e-001, 1.64042071e-001, - -1.96629077e-001, 4.05161716e-002, 3.01894277e-001, - 4.58897144e-001, -2.54150778e-002, 9.71975457e-003, - 4.37671654e-002, 4.78334539e-002, 3.04383244e-002, - -1.76682454e-002, 6.14769682e-002, 3.81665044e-002, - 7.81330094e-002, -2.11151928e-001, 2.35876933e-001, - 3.18331689e-001, -3.26546207e-002, 5.74125126e-002, - 2.32143015e-001, 3.58242154e-001, -4.60571274e-002, - 1.45525392e-002, 5.74037433e-002, 4.69065234e-002, - -1.39381923e-003, 1.17463336e-004, 5.72303543e-003, - 5.11422288e-003, 1.27401538e-002, -2.18839720e-002, - 3.52866128e-002, 4.85431403e-002, 1.18084615e-002, - -3.40429880e-002, 3.70427258e-002, 5.51990718e-002, - -1.52682688e-003, -1.53877761e-003, 4.64258576e-003, - 6.59513194e-003, 3.14834039e-003, 8.14557262e-003, - 7.27135269e-003, 1.20233791e-002, 9.00821574e-003, - 1.17878959e-001, 3.01428605e-002, 1.61247239e-001, - 1.32296036e-003, 1.12153023e-001, 2.64062211e-002, - 1.65703416e-001, 1.62248034e-004, 9.08811297e-003, - 5.02414349e-003, 1.90774836e-002, 5.72738908e-002, - -7.39885028e-003, 7.62105659e-002, 4.52032499e-002, - 1.46631941e-001, -1.30366340e-001, 2.40663394e-001, - 3.87438327e-001, 2.21429206e-002, 4.51709284e-003, - 1.35835201e-001, 2.48528406e-001, -1.73460487e-002, - 1.67886056e-002, 2.67657097e-002, 3.77208032e-002, - 4.91403565e-002, -7.00293668e-003, 6.56439960e-002, - 3.43977846e-002, 1.97104141e-001, 3.58753689e-002, - 2.85298645e-001, 3.36663157e-001, 1.82820801e-002, - -1.19011097e-001, 1.45363629e-001, 3.30358952e-001, - -7.31761707e-003, -1.81157161e-002, 2.53885835e-002, - 3.77679989e-002, 2.83774734e-003, -5.51424455e-004, - 8.25546589e-003, 5.98403625e-003, -6.24255091e-003, - -5.10095730e-002, 5.78164086e-002, 7.37923160e-002, - 1.47843175e-003, -6.00679964e-002, 4.16112095e-002, - 8.83620754e-002, 4.44008317e-003, -2.87137320e-003, - 6.61125267e-003, 8.64280108e-003, -1.17297715e-003, - -1.45118660e-003, 6.20078109e-003, 3.91866267e-003, - 9.40639675e-002, 4.20831554e-002, 1.02949075e-001, - 5.49624301e-002, 7.69771775e-003, 2.48063505e-002, - 3.20868939e-002, 3.44174504e-002, -8.42369569e-004, - 3.13420052e-004, 3.66113055e-003, 3.24203772e-003, - 3.79581153e-002, 2.00885199e-002, 6.77982569e-002, - 3.84937637e-002, 5.21571279e-001, 2.38172203e-001, - 5.48439860e-001, 2.66868472e-001, -4.57748659e-002, - 2.86270883e-002, 9.52256396e-002, 7.34859407e-002, - -1.62113868e-002, 5.54383406e-003, 2.67833397e-002, - 1.58567242e-002, 1.13128088e-001, 4.71736267e-002, - 1.23338588e-001, 6.03235066e-002, 1.72369912e-001, - 1.07287709e-002, 2.26895466e-001, 1.51522651e-001, - -2.88985521e-002, -3.10444590e-002, 7.90714100e-002, - 6.92945793e-002, -1.31597398e-002, -9.09362105e-004, - 2.41378229e-002, 1.40088433e-002, 8.55990220e-003, - 3.03837401e-003, 1.06725758e-002, 6.73867576e-003, - 1.23549532e-002, -1.66065842e-002, 2.52263062e-002, - 3.04246284e-002, 1.26531813e-003, -1.67009942e-002, - 1.80753656e-002, 2.46483125e-002, -7.43108802e-004, - -1.14959292e-003, 3.40870325e-003, 2.78511131e-003, - -1.20196017e-002, 7.09106505e-004, 1.55769689e-002, - 3.61757400e-003, -2.02922337e-002, -1.75283290e-002, - 5.56593947e-002, 2.75833197e-002, 5.55415452e-002, - -2.23492272e-002, 7.68521801e-002, 4.16082516e-002, - -3.75773432e-003, -1.33777596e-003, 8.45014304e-003, - 6.47046557e-003, -1.16903171e-001, 1.83656544e-003, - 1.39058560e-001, 2.46354584e-002, -2.19363511e-001, - -5.09362333e-002, 3.15806031e-001, 1.19500808e-001, - 1.52521774e-001, -2.46123865e-001, 2.44895488e-001, - 2.93502003e-001, 1.06246825e-002, -4.09191884e-002, - 4.06643450e-002, 5.83126694e-002, -1.22074686e-001, - -7.05565279e-003, 1.43628597e-001, 2.36293469e-002, - -1.87875211e-001, 4.37108390e-002, 2.98975080e-001, - 1.28931478e-001, 1.21572815e-001, 2.52035767e-001, - 2.05595836e-001, 2.99814969e-001, 1.52703160e-002, - 3.44310477e-002, 3.86621840e-002, 5.03433906e-002, - -1.36506017e-002, -1.48443028e-003, 1.77174639e-002, - 4.03770199e-003, -9.73554153e-004, 2.13259123e-002, - 5.56404144e-002, 3.25966366e-002, 4.23436351e-002, - 3.34243253e-002, 6.77175745e-002, 5.27229011e-002, - -2.77487841e-003, 2.19498016e-003, 7.15140114e-003, - 6.56306837e-003, 1.34410671e-004, 1.64499655e-002, - 4.19090781e-003, 2.52091475e-002, -5.82545623e-003, - 1.28788054e-001, 2.63748039e-002, 2.11293176e-001, - -8.56187136e-004, 1.04743332e-001, 2.61282455e-002, - 2.04690963e-001, -5.17555862e-004, 8.49393476e-003, - 4.25663078e-003, 2.52183937e-002, 2.34050043e-002, - 5.48164593e-003, 3.74192148e-002, 3.44791822e-002, - 1.71896555e-002, 8.92477557e-002, 9.66668278e-002, - 1.53380707e-001, -4.73476723e-002, 1.16194233e-001, - 9.77584794e-002, 1.91202804e-001, -2.57597659e-002, - 1.70368161e-002, 3.84038165e-002, 4.86507602e-002, - 8.47215764e-003, -5.93791790e-002, 5.41112721e-002, - 7.15952814e-002, 1.85095578e-001, -2.33301654e-001, - 2.48316050e-001, 2.94120222e-001, -2.76739508e-001, - -2.60231614e-001, 3.18681389e-001, 3.42605919e-001, - -1.95328463e-002, -7.79805556e-002, 5.33857271e-002, - 1.02474548e-001, -3.94486636e-003, -7.54225708e-004, - 9.31040011e-003, 7.80457119e-003, 4.56442423e-002, - -5.54100312e-002, 6.90153688e-002, 7.96524212e-002, - -3.61261331e-002, -2.68852711e-002, 6.55465126e-002, - 6.89273924e-002, -1.84021576e-003, 6.40186336e-005, - 6.35614293e-003, 6.61389204e-003, -1.30143133e-003, - 2.54510925e-003, 6.53148303e-003, 1.62102953e-002, - 1.64551176e-002, 6.81603253e-002, 4.49332222e-002, - 1.27745166e-001, 2.91505773e-002, 1.18380323e-001, - 4.21140492e-002, 1.66006714e-001, 7.55410176e-004, - 1.69656649e-002, 4.71303798e-003, 2.35054623e-002, - 3.44817787e-002, 6.22400343e-002, 4.57683802e-002, - 8.40884447e-002, 8.72064531e-002, 3.85684788e-001, - 1.57220483e-001, 4.60705459e-001, 3.80550846e-002, - 1.66860238e-001, 1.03713565e-001, 2.78680146e-001, - -1.05876802e-002, 1.28242616e-002, 2.04849448e-002, - 3.32116745e-002, 3.26590501e-002, -2.29069516e-002, - 4.59408388e-002, 5.41775562e-002, 4.77909446e-002, - -1.14343747e-001, 1.54609799e-001, 2.40499184e-001, - -7.60955503e-003, -8.20948184e-002, 1.03122599e-001, - 2.01560125e-001, -7.65755353e-003, -1.21942777e-002, - 1.85018014e-002, 3.42913121e-002, 9.78266122e-004, - -8.29388760e-003, 5.47792856e-003, 1.61848478e-002, - -1.08153541e-002, -1.37865961e-001, 5.35918102e-002, - 1.76562533e-001, 1.49060460e-002, -1.39977723e-001, - 4.95108403e-002, 1.75210208e-001, 1.46125501e-003, - -1.11821545e-002, 5.82258264e-003, 1.73453838e-002, - -2.33155722e-003, -7.78986374e-004, 7.19777588e-003, - 3.72230634e-003, 2.64774878e-002, -1.47577785e-002, - 6.42494932e-002, 3.57873403e-002, -3.30119557e-003, - -2.15085186e-002, 6.29343390e-002, 4.13894802e-002, - 2.06761621e-003, 6.28487498e-004, 4.93334560e-003, - 2.63890321e-003, -2.79782899e-002, -5.59677184e-003, - 5.25603183e-002, 2.30937190e-002, 1.75126433e-001, - -1.05714209e-001, 4.13554192e-001, 1.87306449e-001, - -3.33481580e-002, -9.25442725e-002, 5.77470183e-001, - 2.03202561e-001, 2.42739096e-002, -1.21376850e-002, - 4.35453132e-002, 2.55699810e-002, -1.48941763e-002, - 7.21396739e-003, 4.03475389e-002, 2.43883934e-002, - -7.56554585e-003, 1.04525834e-001, 1.97373107e-001, - 1.99026510e-001, 6.57298416e-002, 5.98370470e-002, - 2.36653239e-001, 2.04023927e-001, 2.12874152e-002, - -1.38284573e-002, 3.73149440e-002, 3.43601257e-002, - -9.68146720e-004, 3.98598699e-004, 4.80315601e-003, - 4.13468899e-003, 2.84541748e-003, 1.78378355e-002, - 3.30709368e-002, 3.85954268e-002, 4.02964652e-004, - 1.97904669e-002, 2.90558562e-002, 3.93125601e-002, - 7.26587023e-004, 1.23271043e-003, 4.01500659e-003, - 4.48359828e-003, 7.50464329e-004, 2.24117818e-003, - 3.87913687e-003, 6.39902242e-003, 2.38473574e-003, - 3.04043088e-002, 2.36730929e-002, 5.89518324e-002, - -4.64486470e-003, 2.54923571e-002, 2.46210955e-002, - 5.40269502e-002, -2.62174784e-004, 1.67913688e-003, - 3.16990702e-003, 5.50161954e-003, 2.25601140e-002, - -7.32300291e-003, 3.86476144e-002, 5.30682504e-002, - 2.27644369e-002, -3.54614519e-002, 1.82337567e-001, - 4.81197089e-001, -5.21164425e-002, 1.79409590e-002, - 1.60479322e-001, 3.88937771e-001, -1.62275583e-002, - 1.58993481e-003, 3.03340964e-002, 3.95686254e-002, - 1.19002173e-002, -1.92012824e-002, 3.60896103e-002, - 4.26079556e-002, 2.07371935e-001, -5.89284264e-002, - 2.75929600e-001, 3.52559924e-001, -1.16519578e-001, - 8.41485150e-003, 2.00968325e-001, 2.77339220e-001, - -1.48386983e-002, -7.79278111e-003, 3.02750077e-002, - 3.21614482e-002, -6.76233380e-004, 6.08983333e-004, - 3.98165826e-003, 4.51160502e-003, 1.81819089e-002, - -2.05755215e-002, 3.54565457e-002, 4.71466146e-002, - -1.50235859e-003, -2.91556753e-002, 2.99692899e-002, - 5.09882905e-002, -6.54059229e-004, -7.10124965e-004, - 3.81427421e-003, 4.20979504e-003, -4.91841184e-003, - -1.87745795e-003, 8.27672426e-003, 7.84526300e-003, - 2.23014341e-003, -7.83179849e-002, 3.77381630e-002, - 1.03750519e-001, -1.83309789e-003, -1.14446744e-001, - 2.83743180e-002, 1.41243830e-001, 2.69964570e-004, - -8.98812152e-003, 5.96565334e-003, 1.34852314e-002, - -7.79604316e-002, 1.87837631e-002, 9.16943848e-002, - 5.01100346e-002, -7.72255138e-002, 1.50209069e-001, - 1.94900200e-001, 3.31805259e-001, -3.41008157e-002, - 2.25346610e-001, 1.51692361e-001, 3.97963077e-001, - 2.09391322e-002, 1.67266261e-002, 4.18518521e-002, - 4.83844876e-002, -6.61831051e-002, 2.22105216e-002, - 8.76504555e-002, 5.37437312e-002, -6.06683418e-002, - 1.29410252e-001, 2.62842596e-001, 3.02639097e-001, - 2.01667808e-002, 9.97784808e-002, 2.20158055e-001, - 2.81862915e-001, 6.11494249e-003, 2.53867898e-002, - 3.72144915e-002, 4.68049608e-002, -1.97293819e-003, - -2.17387523e-003, 5.72506851e-003, 6.72116596e-003, - -2.01470889e-002, 3.30827311e-002, 5.26809730e-002, - 5.74348308e-002, -6.07565918e-004, 2.56680865e-002, - 3.06153167e-002, 4.94007207e-002, 1.41718413e-003, - 3.36669036e-003, 5.08494396e-003, 7.16210948e-003, - -3.64865898e-003, 1.79135372e-004, 7.84783158e-003, - 5.36978524e-003, -3.67412083e-002, -2.00653989e-002, - 4.99652289e-002, 4.16210368e-002, 1.75459404e-002, - -2.02116575e-002, 3.98996621e-002, 4.56640162e-002, - 6.28005993e-003, 5.12273109e-004, 9.98723228e-003, - 5.74387377e-003, -3.62507477e-002, -1.37023702e-002, - 5.84010892e-002, 3.94610427e-002, -2.61781603e-001, - -2.38020148e-004, 3.24246317e-001, 2.21755341e-001, - 1.77355602e-001, 6.44726604e-002, 2.43660152e-001, - 2.24946827e-001, 6.16523325e-002, 1.15570314e-004, - 8.70910063e-002, 3.64226140e-002, -3.59684043e-002, - 8.02152557e-004, 5.27877919e-002, 4.63989452e-002, - -1.21221818e-001, 1.47993371e-001, 2.36466378e-001, - 3.30398828e-001, 4.60396372e-002, 2.93641891e-002, - 1.89813390e-001, 2.62610137e-001, 4.81880046e-002, - -1.72771886e-002, 6.93210512e-002, 4.67685722e-002, - 1.33569085e-003, 8.60678870e-003, 8.26859847e-003, - 1.33798495e-002, 3.68200964e-003, 1.50160953e-001, - 5.63060939e-002, 1.79446533e-001, -5.15271612e-002, - 1.30464643e-001, 7.34591261e-002, 1.51276082e-001, - 2.13181064e-003, 7.70314783e-003, 8.92657321e-003, - 1.22100404e-002, 1.18732045e-003, 7.65733246e-004, - 5.85186575e-003, 4.65716328e-003, -4.18909453e-003, - 3.67063135e-002, 4.87794429e-002, 4.79075797e-002, - -2.78437417e-002, 2.07162760e-002, 4.26824614e-002, - 3.70518267e-002, -1.86808596e-004, -4.26368992e-004, - 3.89638194e-003, 3.45254852e-003, 3.16888541e-002, - 3.88002372e-003, 4.97809798e-002, 2.99168807e-002, - 6.21309578e-002, 6.12473078e-002, 3.64365995e-001, - 2.51158267e-001, -2.89238751e-001, 1.89972445e-001, - 3.59742641e-001, 2.71179944e-001, -2.26549767e-002, - 1.28677357e-002, 3.78450304e-002, 2.69357041e-002, - 2.92257704e-002, -7.51869893e-003, 4.39788997e-002, - 2.85392031e-002, 8.92219767e-002, -1.80165276e-001, - 2.21313193e-001, 2.42788374e-001, -1.51268423e-001, - -9.76980180e-002, 2.76334614e-001, 2.26032734e-001, - -3.51525359e-002, 4.20892262e-004, 4.59612794e-002, - 2.77766977e-002, 8.50461714e-004, -8.99970008e-004, - 4.57809819e-003, 4.03703889e-003, 5.96846221e-003, - -2.32962091e-002, 2.90357694e-002, 3.66356224e-002, - -8.82886350e-003, -2.57492978e-002, 3.20549682e-002, - 3.83790992e-002, -2.06946558e-003, -3.50945891e-004, - 4.83447500e-003, 4.07188106e-003, 3.94025585e-003, - -3.74669413e-004, 6.04484323e-003, 6.38121460e-003, - -3.97757962e-002, -3.15726735e-002, 5.85243627e-002, - 5.75922355e-002, -1.65693127e-002, -5.29180095e-002, - 5.38002588e-002, 6.34381101e-002, 3.68952076e-003, - -1.88516779e-003, 6.81232801e-003, 5.75521355e-003, - -1.69188827e-002, -6.85228184e-002, 3.94022875e-002, - 7.85503462e-002, -1.61301389e-001, -4.36454833e-001, - 2.34471262e-001, 4.94691163e-001, 1.57601133e-001, - -1.22095808e-001, 2.57962555e-001, 2.11394370e-001, - 4.86678891e-002, -6.46237191e-003, 6.08368926e-002, - 3.39575633e-002, -1.65934246e-002, 4.04428411e-003, - 2.81268917e-002, 2.89993789e-002, -2.33427039e-003, - 9.31551084e-002, 1.18815623e-001, 1.48872882e-001, - 1.98359951e-001, 7.65042827e-002, 2.33333409e-001, - 1.48453608e-001, 4.26839031e-002, 2.83619459e-003, - 5.74660040e-002, 3.17276604e-002, 1.33595109e-004, - 1.39951368e-003, 3.65513354e-003, 4.18334967e-003, - -2.88504711e-003, 1.77955404e-002, 2.54990105e-002, - 3.01294066e-002, 2.55902577e-002, 1.27715040e-002, - 3.81816663e-002, 2.90862806e-002, 3.26051842e-003, - -2.99101113e-004, 6.59214705e-003, 4.84864274e-003, - 1.41978753e-003, 1.97510730e-004, 4.44359658e-003, - 3.48245515e-003, 1.55904572e-002, 2.15105973e-002, - 3.70825194e-002, 3.63282040e-002, -4.31499770e-003, - 2.32386570e-002, 3.31078395e-002, 4.26009260e-002, - -1.44442078e-003, 7.10593245e-004, 5.19512454e-003, - 5.03425254e-003, 1.88857149e-002, -1.77745533e-003, - 3.88019271e-002, 2.40922496e-002, 1.79174826e-001, - 4.48936187e-002, 2.81453371e-001, 1.89224228e-001, - -8.21173489e-002, 1.29935099e-002, 2.46366337e-001, - 2.51994729e-001, -2.54593212e-002, -5.62938675e-003, - 4.60904539e-002, 3.55283841e-002, 1.70826670e-002, - -4.90109576e-003, 3.77143659e-002, 2.06562188e-002, - 2.49546841e-001, -4.54383716e-002, 3.47839683e-001, - 1.78325504e-001, -1.85107350e-001, -1.88971404e-002, - 4.53343660e-001, 2.99562395e-001, -1.49822915e-002, - -9.49839782e-003, 4.39223163e-002, 3.48730013e-002, - 1.30940462e-003, 2.52760598e-004, 4.74944664e-003, - 3.13538429e-003, 2.39964500e-002, -2.13064197e-002, - 4.46394049e-002, 3.59850451e-002, -1.87703148e-002, - -2.45611519e-002, 5.61842397e-002, 4.43073995e-002, - -5.17950393e-004, 2.83795147e-004, 5.32535138e-003, - 4.46322514e-003, -3.67312157e-003, -7.60574403e-005, - 7.17477407e-003, 2.49817967e-003, 1.89000014e-002, - -1.81849138e-003, 6.04680479e-002, 2.47969721e-002, - -1.17674908e-002, -7.63860065e-004, 4.27823700e-002, - 2.29421351e-002, 7.79252878e-005, 9.31390514e-006, - 5.09184971e-003, 3.04434216e-003, -3.25278305e-002, - 2.90132104e-003, 5.71906567e-002, 1.63739044e-002, - 1.51719898e-001, -1.06997211e-002, 5.15663266e-001, - 1.30116165e-001, -9.20621008e-002, -9.89184808e-003, - 3.25444251e-001, 1.18067190e-001, 4.17985301e-003, - 1.25314202e-003, 4.07654457e-002, 1.89517234e-002, - -2.13459712e-002, 6.67384919e-003, 5.60940206e-002, - 2.03114655e-002, 3.69206183e-002, 6.13168515e-002, - 5.12996614e-001, 1.73896343e-001, -3.68402340e-002, - -2.72160955e-003, 2.73212016e-001, 1.37997478e-001, - 3.97117017e-003, 3.62511753e-004, 3.90600562e-002, - 1.96656603e-002, -2.16359505e-004, -8.19059569e-005, - 6.32023206e-003, 3.45024653e-003, -8.06626212e-003, - 3.88182956e-003, 5.39551564e-002, 3.31015699e-002, - -3.74492910e-003, 2.81699654e-003, 3.50402333e-002, - 2.86348239e-002, 1.73209948e-004, -6.52550341e-007, - 4.55450267e-003, 3.24259163e-003, 2.49434891e-003, - -5.39243629e-004, 4.23545344e-003, 3.20127443e-003, - 1.06027396e-002, 6.10917108e-003, 3.65208648e-002, - 3.21512520e-002, -6.96552079e-003, 1.00239227e-002, - 3.09807695e-002, 3.35780084e-002, -2.89249525e-004, - 2.62062851e-004, 3.34707927e-003, 3.35824327e-003, - 2.17627976e-002, -1.04032857e-002, 3.14080007e-002, - 2.45893579e-002, 1.29577801e-001, -4.64301147e-002, - 2.78756529e-001, 1.88164815e-001, -9.95825827e-002, - -5.29473908e-002, 2.07312852e-001, 2.47182950e-001, - -8.55040736e-003, -9.24579613e-003, 3.05026844e-002, - 3.61233652e-002, 1.18430480e-002, 2.08588038e-003, - 2.89704334e-002, 2.14896705e-002, 2.54777074e-001, - 1.28250523e-002, 3.35876048e-001, 2.30023563e-001, - -7.69679919e-002, 8.83805379e-002, 1.95021868e-001, - 5.71902990e-001, -1.74674895e-002, 1.64946746e-002, - 3.53997797e-002, 6.62132427e-002, 6.89282140e-004, - 5.18717337e-004, 3.89178982e-003, 3.28795495e-003, - 2.01269519e-002, -1.59732122e-002, 4.34812978e-002, - 4.05005999e-002, -9.25200339e-003, -1.49755124e-002, - 3.53490300e-002, 4.61958535e-002, -6.88211119e-004, - -7.20071897e-004, 4.84027481e-003, 4.48046206e-003, - -1.11179112e-003, 2.45237653e-003, 6.88879332e-003, - 6.75582839e-003, -2.67655924e-002, 5.45321740e-002, - 6.38809204e-002, 7.02608451e-002, 2.41633430e-002, - 5.64922281e-002, 5.89427911e-002, 6.89941049e-002, - -7.35645602e-003, 7.70294864e-004, 1.25134587e-002, - 6.38121367e-003, 3.29120047e-002, 1.04398141e-002, - 5.09554744e-002, 3.95521410e-002, -2.79386081e-002, - 1.89436436e-001, 2.24758282e-001, 2.44640231e-001, - -3.86997312e-002, 1.57701761e-001, 2.84486920e-001, - 2.52663702e-001, -1.16993845e-001, -2.48841457e-002, - 1.32301673e-001, 4.57080752e-002, 3.11600398e-002, - 5.97739452e-003, 4.48898710e-002, 2.65854970e-002, - 5.42008057e-002, -7.63810880e-004, 1.55541927e-001, - 1.14749521e-001, -3.64028752e-001, -1.51221111e-001, - 4.33298796e-001, 2.25674912e-001, -7.93955922e-002, - -2.47079674e-002, 1.04524061e-001, 4.35902737e-002, - 2.00248626e-003, -6.58654782e-004, 4.58886940e-003, - 3.80632561e-003, 1.10130385e-003, -1.83117576e-002, - 3.06155737e-002, 2.95897163e-002, -7.72265419e-002, - -3.21330689e-002, 8.81182477e-002, 5.05396649e-002, - -3.13322945e-003, 1.83617545e-003, 9.61852726e-003, - 5.56910783e-003, 9.13706725e-004, -6.40166458e-003, - 4.71822545e-003, 1.06743798e-002, 3.00959242e-003, - -9.22912955e-002, 3.13251354e-002, 1.17893785e-001, - 2.45489795e-002, -8.13205242e-002, 4.90741022e-002, - 1.07957527e-001, 2.80404952e-003, 6.75891526e-004, - 7.58469757e-003, 6.39112433e-003, -1.83694866e-002, - -6.35738252e-003, 2.98497677e-002, 2.25333404e-002, - -3.00698448e-002, -2.60253474e-002, 1.05011530e-001, - 1.53355971e-001, 3.43222588e-001, -4.66869324e-002, - 4.82977659e-001, 1.45535275e-001, 3.84837091e-002, - 5.39036002e-003, 7.14373514e-002, 1.84410457e-002, - -1.79088041e-002, 4.93185828e-004, 2.91469041e-002, - 1.24418149e-002, -3.48930359e-002, -6.44662371e-003, - 1.02807812e-001, 7.66315609e-002, 3.58466148e-001, - 2.38946988e-003, 5.19783258e-001, 8.11385512e-002, - 3.37305889e-002, -1.59230793e-003, 6.95184544e-002, - 1.44266486e-002, -2.24622153e-003, 1.23444624e-004, - 4.21982678e-003, 2.32033944e-003, -4.87080729e-003, - 7.30465213e-003, 1.70273967e-002, 1.65178198e-002, - 5.18320389e-002, 8.97702016e-003, 7.34046474e-002, - 1.87111273e-002, 3.51888919e-003, -9.92342480e-004, - 9.59439576e-003, 2.89425650e-003, -5.63216442e-003, - 2.04323488e-003, 9.32397693e-003, 4.98143397e-003, - -3.05779241e-002, -2.91098356e-002, 4.93045710e-002, - 5.42449914e-002, 8.13977234e-003, -3.77751999e-002, - 3.24760340e-002, 6.03877604e-002, 7.92237988e-004, - -2.19364627e-003, 5.38194785e-003, 6.65593473e-003, - -7.27171972e-002, -5.08275721e-003, 8.79726186e-002, - 2.92562488e-002, -2.93569624e-001, 6.67999834e-002, - 3.51181269e-001, 3.56117606e-001, 1.27660111e-001, - 1.32147044e-001, 1.85326770e-001, 4.03047025e-001, - 2.81682238e-002, 1.22856619e-002, 4.32753786e-002, - 4.63096760e-002, -7.33460560e-002, -3.65217961e-003, - 8.45019445e-002, 2.86105387e-002, -1.62914157e-001, - 6.85278550e-002, 2.41208047e-001, 2.03275785e-001, - 8.66145715e-002, 5.74209951e-002, 1.64388686e-001, - 2.12089241e-001, 2.65413038e-002, 1.04090488e-002, - 4.13337126e-002, 3.72841358e-002, -5.85025130e-003, - 7.38210510e-004, 8.45078845e-003, 4.81624017e-003, - -1.24461334e-002, 4.29833792e-002, 3.72547396e-002, - 5.43817766e-002, 8.11573956e-003, 4.80955392e-002, - 3.25077809e-002, 6.03934526e-002, 3.76726639e-005, - 3.31738894e-003, 4.57146065e-003, 6.40926883e-003, - -5.60983364e-003, 2.00925744e-003, 1.35249272e-002, - 5.06134098e-003, -5.12224287e-002, -2.84946933e-002, - 1.00729778e-001, 5.91160841e-002, -1.98118910e-002, - -2.47577317e-002, 4.10197340e-002, 3.96770723e-002, - 5.21428185e-003, -3.28109745e-004, 1.05997864e-002, - 4.92375204e-003, -1.12461805e-001, -1.92105956e-002, - 1.33365899e-001, 4.06322591e-002, -2.15012789e-001, - -2.80148387e-001, 3.36258054e-001, 3.30601305e-001, - 2.15863530e-003, -5.62064014e-002, 1.46962285e-001, - 1.36582762e-001, 7.10860044e-002, 4.82389983e-003, - 9.35010836e-002, 3.07120122e-002, -1.26802862e-001, - -4.09821374e-003, 1.40749678e-001, 3.92769501e-002, - -4.81321178e-002, 2.03805014e-001, 2.16493070e-001, - 2.68000394e-001, 1.49956914e-002, 2.36668155e-001, - 1.63454309e-001, 2.78078109e-001, 6.71037436e-002, - 1.47500047e-002, 9.39728916e-002, 3.98815796e-002, - -8.43151659e-003, 2.97998544e-003, 1.35957813e-002, - 7.24974321e-003, 2.37959940e-002, 6.24877624e-002, - 6.64726719e-002, 7.91979656e-002, -1.77796260e-002, - 6.59509301e-002, 5.32273464e-002, 8.55309516e-002, - 1.52676855e-003, 3.86949279e-003, 8.77636671e-003, - 8.96560680e-003, 9.87497717e-003, -1.36469386e-003, - 1.78284440e-002, 5.57726854e-003, 2.71405987e-002, - 1.20574143e-002, 4.30051833e-002, 2.39298549e-002, - -1.45808095e-002, 2.03608088e-002, 3.38823199e-002, - 3.25157009e-002, 3.81857069e-004, 3.75626027e-004, - 8.93296208e-003, 5.19145094e-003, 1.04800865e-001, - -1.29784560e-002, 1.46145731e-001, 5.19228689e-002, - 1.78097934e-001, -1.14730664e-001, 2.69070506e-001, - 2.40138188e-001, -1.86336376e-002, -6.75824210e-002, - 1.41526356e-001, 2.31261462e-001, -2.01206524e-002, - 8.09950009e-003, 5.81396893e-002, 4.05617096e-002, - 7.84139410e-002, -3.67731787e-003, 1.22782163e-001, - 7.99466521e-002, 1.90023661e-001, -7.82767013e-002, - 3.57923836e-001, 3.52104306e-001, 7.87331760e-002, - -2.03682184e-002, 1.73083290e-001, 2.59228766e-001, - -1.70512255e-002, -4.67852876e-003, 4.01559807e-002, - 3.52006629e-002, 2.56402767e-003, -1.96489948e-003, - 9.32824239e-003, 1.64788552e-002, 1.43030146e-002, - -1.33963764e-001, 5.71478233e-002, 1.74329102e-001, - 1.85824335e-002, -1.48412690e-001, 4.14357968e-002, - 1.89350545e-001, 3.94192338e-003, -1.30676208e-002, - 7.32711377e-003, 1.93268806e-002, 2.76556442e-004, - -3.61341168e-003, 5.24652703e-003, 6.49969419e-003, - 1.18461074e-002, -3.94580252e-002, 3.36980447e-002, - 5.43810390e-002, 8.84901918e-003, -2.37374082e-002, - 2.82761827e-002, 4.23306562e-002, -5.24826115e-004, - -6.02129847e-004, 3.98259750e-003, 4.50738100e-003, - -4.08308059e-002, -1.56698108e-003, 5.31217717e-002, - 4.55582067e-002, 2.26500835e-002, -2.09255084e-001, - 2.17852175e-001, 3.39945525e-001, 1.63975760e-001, - -3.13885599e-001, 2.44544938e-001, 3.73071432e-001, - 2.59307008e-002, -3.12532261e-002, 4.18095700e-002, - 4.53325398e-002, -3.09141409e-002, 2.16293503e-002, - 4.92426157e-002, 4.16162051e-002, -1.92524523e-001, - 1.42888919e-001, 2.74732023e-001, 2.45920479e-001, - 7.74121657e-002, -1.49978325e-003, 1.94003105e-001, - 2.36758336e-001, 3.47569324e-002, -1.61381569e-002, - 4.58805449e-002, 4.14186157e-002, -5.65634517e-004, - -9.89682274e-004, 5.38604939e-003, 5.07680094e-003, - -2.39894222e-002, 2.22063847e-002, 4.29083928e-002, - 4.26381528e-002, -2.47296854e-003, 2.86274236e-002, - 3.36477049e-002, 4.29444388e-002, 1.35519681e-003, - 1.11392571e-003, 5.12818201e-003, 5.19749383e-003, - 1.64629088e-003, -9.38480534e-003, 6.96147699e-003, - 2.11874284e-002, -4.82031930e-004, -1.48007974e-001, - 4.18348014e-002, 2.33757541e-001, 1.54557563e-002, - -1.54307097e-001, 4.91860807e-002, 2.37028360e-001, - 3.00411484e-003, -7.03976629e-003, 8.91109463e-003, - 1.86351296e-002, -2.59815510e-002, -1.51742585e-002, - 4.92141619e-002, 4.51194569e-002, -1.68787569e-001, - -8.86592120e-002, 2.40848869e-001, 2.42227659e-001, - 2.75793850e-001, -9.69375819e-002, 3.37410390e-001, - 2.51982093e-001, 8.01013410e-002, -1.85150187e-002, - 1.01309888e-001, 5.40461242e-002, -2.15440392e-002, - 5.59841683e-005, 4.26494926e-002, 3.44100222e-002, - -1.16521433e-001, 6.35871142e-002, 2.04155624e-001, - 1.74970314e-001, 1.77401111e-001, 5.63835949e-002, - 2.47169197e-001, 1.68072507e-001, 6.85527176e-002, - -1.80316027e-002, 8.76215100e-002, 4.87841591e-002, - -1.28958863e-003, 2.77076266e-003, 6.09808601e-003, - 7.20193004e-003, -1.01684229e-002, 3.64678279e-002, - 2.97533572e-002, 5.36860526e-002, 1.52088031e-002, - 3.38656232e-002, 3.80792990e-002, 5.33976071e-002, - 4.86477651e-003, 1.26327225e-003, 8.92824307e-003, - 8.30965489e-003, -2.67459516e-004, 3.04392586e-003, - 5.54976519e-003, 1.16706574e-002, 2.18802486e-002, - 7.77656436e-002, 3.99984829e-002, 1.25773087e-001, - 1.35464827e-002, 9.29378942e-002, 3.31023671e-002, - 1.43704772e-001, -3.15261190e-004, 7.19192950e-003, - 5.14673255e-003, 1.48228770e-002, 3.55780311e-002, - 1.71085652e-002, 6.70908689e-002, 3.47563289e-002, - 2.19991535e-001, 1.25479624e-001, 2.81764030e-001, - 2.29247048e-001, 1.95646286e-003, -8.09937157e-003, - 1.67915002e-001, 1.91572815e-001, -2.74912938e-002, - -4.96994983e-003, 4.36998717e-002, 3.19761783e-002, - 5.40900119e-002, 2.42775725e-003, 7.08587170e-002, - 4.06177901e-002, 4.77029532e-002, -3.74409109e-002, - 2.66276121e-001, 1.83872461e-001, -1.33353308e-001, - -2.29954824e-001, 4.60932285e-001, 2.94707596e-001, - -8.06838926e-003, -3.59890573e-002, 6.01086877e-002, - 5.17259464e-002, 3.37483734e-003, -1.71671354e-003, - 7.14890799e-003, 7.34532764e-003, -1.87521824e-003, - -5.62387332e-002, 4.43892404e-002, 7.66281486e-002, - -2.75735259e-002, -3.80121581e-002, 5.95967695e-002, - 6.58756718e-002, 2.68907868e-003, -1.88308093e-003, - 7.27972854e-003, 8.73624720e-003, -1.55560247e-005, - -6.02673274e-004, 3.80799104e-003, 2.80174450e-003, - 3.84754501e-003, -1.46354707e-002, 2.40768790e-002, - 2.42457390e-002, 4.61907722e-002, -1.94696859e-002, - 5.71537055e-002, 3.22498567e-002, 3.36638046e-003, - 1.91552180e-003, 5.84996492e-003, 4.09778347e-003, - -6.10712776e-003, -1.51165237e-003, 2.67117061e-002, - 2.22498812e-002, -3.78498025e-002, -2.32646298e-002, - 1.34806335e-001, 1.19225785e-001, 3.92681926e-001, - -2.83958986e-002, 4.59770590e-001, 1.74532324e-001, - 2.43820418e-002, -7.16004847e-003, 3.49517949e-002, - 2.99156085e-002, -4.05543949e-003, 7.76756927e-003, - 2.54307352e-002, 3.15017216e-002, -2.40201429e-002, - 9.42004323e-002, 1.29108056e-001, 2.23287836e-001, - 2.06024483e-001, 6.71485290e-002, 2.74864703e-001, - 4.62534368e-001, 2.97666751e-002, -2.53698826e-002, - 4.17665951e-002, 1.06264114e-001, 1.22228160e-003, - 1.47006882e-003, 4.31830576e-003, 4.29997360e-003, - 8.15567002e-003, 2.40041167e-002, 3.59472185e-002, - 3.69494669e-002, 4.24004681e-002, 2.75447443e-002, - 5.46981245e-002, 4.51332591e-002, 3.68535315e-004, - 2.48218770e-003, 3.75940907e-003, 5.19724842e-003, - -1.97575577e-002, 4.71365114e-004, 2.22432055e-002, - 6.20893249e-003, -8.69370531e-003, -3.87955569e-002, - 3.93117964e-002, 6.34621084e-002, 1.08491637e-004, - -3.11224945e-002, 2.05930006e-002, 5.95620647e-002, - -4.11981127e-005, -1.13327336e-003, 4.51683020e-003, - 6.99322624e-003, -1.89599156e-001, 2.35819421e-003, - 2.07561940e-001, 3.01356670e-002, -1.07692182e-001, - -1.50575101e-001, 2.73875773e-001, 2.29183361e-001, - 4.97470647e-002, -2.04314813e-001, 1.03261992e-001, - 2.70723462e-001, 8.38981010e-003, -3.21825705e-002, - 2.36299131e-002, 4.18924987e-002, -1.57712758e-001, - 3.82768293e-003, 1.78719774e-001, 2.80579906e-002, - -3.31345111e-001, -1.59385744e-002, 4.10287559e-001, - 1.90761074e-001, 1.26150576e-002, -1.49381578e-001, - 1.17368244e-001, 2.62421340e-001, 1.60489213e-002, - -1.78551488e-002, 2.18375381e-002, 3.52173224e-002, - -1.32445535e-002, -2.00858735e-003, 1.85183007e-002, - 6.88977540e-003, -4.86274250e-002, 3.28524262e-002, - 5.95686212e-002, 4.92536463e-002, -8.81417841e-003, - 3.83048356e-002, 2.29568407e-002, 4.90171760e-002, - 1.53296266e-003, 2.35276157e-003, 3.24593973e-003, - 4.97597177e-003, 1.21036638e-003, 1.32715970e-003, - 4.37564822e-003, 4.47577750e-003, -1.29883019e-002, - 2.37159133e-002, 2.98142284e-002, 4.52913754e-002, - -4.14641760e-002, 2.05905363e-002, 5.73123433e-002, - 5.85190132e-002, -9.52254329e-003, -1.33363798e-003, - 1.88626964e-002, 7.46837817e-003, 2.31908411e-002, - -2.92773475e-004, 3.34734656e-002, 2.76542921e-002, - -2.87888590e-002, 5.30468561e-002, 1.19824603e-001, - 1.60027117e-001, -2.47763127e-001, 1.54644668e-001, - 2.95068771e-001, 3.13712656e-001, -1.15557894e-001, - 2.53871959e-002, 1.60822809e-001, 5.22234216e-002, - 4.52227481e-002, -3.59008498e-002, 5.84801100e-002, - 5.20862266e-002, 1.13174058e-002, -1.52560472e-001, - 1.37810737e-001, 2.40272909e-001, -8.31650421e-002, - -7.53733814e-002, 1.91386670e-001, 2.43082926e-001, - -1.40539691e-001, 6.20485051e-003, 1.77751958e-001, - 5.82804941e-002, 2.66808667e-004, -1.82325840e-002, - 6.39393739e-003, 2.47308221e-002, -5.54268598e-004, - -2.06186265e-001, 3.85860428e-002, 2.57171154e-001, - 4.45586909e-003, -2.09759891e-001, 3.26697119e-002, - 2.48302609e-001, -5.86076407e-003, -1.62559114e-002, - 1.14833778e-002, 2.10228972e-002, -1.85006112e-003, - -3.49195930e-003, 9.83188394e-003, 1.60573721e-002, - 4.12996598e-002, -1.54115647e-001, 5.94082996e-002, - 2.33852386e-001, 1.45626208e-002, -1.13559894e-001, - 5.44555709e-002, 2.41132677e-001, 6.53220690e-004, - 3.86031158e-003, 1.18156439e-002, 8.33884533e-003, - -5.97242415e-002, 3.80253233e-003, 7.48976320e-002, - 2.60607898e-002, -1.05924033e-001, 9.74281132e-002, - 2.44428024e-001, 2.57793903e-001, 1.16617512e-002, - -1.19952232e-001, 2.32935220e-001, 4.12375778e-001, - 1.73777148e-001, -1.72849875e-002, 2.35744998e-001, - 4.61671613e-002, -5.61849549e-002, 1.48297288e-003, - 6.28127605e-002, 2.17173286e-002, -1.05700754e-001, - 5.86438179e-002, 1.75349057e-001, 1.17919289e-001, - -7.46212304e-002, 4.46269326e-002, 2.14300558e-001, - 9.76358503e-002, 1.82804942e-001, 1.76521093e-002, - 2.68599838e-001, 2.95187682e-002, -9.25229304e-003, - 2.18150765e-003, 1.23895733e-002, 6.61695283e-003, - -5.59147028e-003, 1.16646867e-002, 1.49396006e-002, - 3.21556330e-002, 2.30985315e-004, 1.75419115e-002, - 4.50544581e-002, 3.08282133e-002, 2.26812568e-002, - 3.22245969e-003, 3.61762904e-002, 5.48109319e-003, - -1.22680306e-003, -8.05731979e-004, 6.13426417e-003, - 4.54399083e-003, 7.14737875e-003, -1.71991829e-002, - 3.84208784e-002, 3.59234139e-002, 3.21548583e-007, - -2.19737105e-002, 4.61683311e-002, 4.22518440e-002, - 3.67381936e-003, -7.29486463e-004, 8.52717180e-003, - 5.59642771e-003, -3.13352235e-002, -4.04901523e-003, - 4.71002124e-002, 3.09353191e-002, 1.11786854e-002, - -1.21590078e-001, 1.87465727e-001, 2.00737998e-001, - -1.23808058e-002, -1.39255315e-001, 2.78137624e-001, - 2.33854160e-001, 7.55087584e-002, 1.59720201e-002, - 8.83130357e-002, 4.48287949e-002, -3.13055702e-002, - 4.50677332e-003, 4.74375226e-002, 2.99801398e-002, - -3.40944789e-002, 6.25776574e-002, 1.86852247e-001, - 1.83158159e-001, 2.82909274e-001, 3.36237103e-001, - 3.73888105e-001, 3.90415609e-001, 5.32277040e-002, - 4.06903923e-002, 7.19588622e-002, 5.48201092e-002, - -1.61132799e-003, 1.14827522e-003, 5.92047302e-003, - 4.80761239e-003, 2.19225511e-002, 4.20638695e-002, - 4.64040264e-002, 5.33538982e-002, 4.81040142e-002, - 3.04667577e-002, 6.05837144e-002, 5.03945388e-002, - -6.97566429e-004, -1.60690350e-003, 5.54053206e-003, - 4.79159784e-003, -4.14587063e-004, -4.98476380e-004, - 4.31435928e-003, 3.00756446e-003, -2.12289020e-003, - -7.61172175e-003, 1.89601071e-002, 2.09380109e-002, - 2.31580194e-002, -1.01184165e-002, 4.40785140e-002, - 2.56014802e-002, 2.05420833e-002, 2.81646475e-003, - 2.86088511e-002, 7.27974018e-003, -1.16830161e-002, - 1.16944488e-003, 2.94711757e-002, 2.42323931e-002, - -2.45547593e-002, -3.13934498e-003, 1.20942473e-001, - 1.16529688e-001, 1.56813741e-001, -8.29500891e-003, - 2.74374872e-001, 1.33286133e-001, 1.86954394e-001, - -1.06799081e-002, 2.23466843e-001, 4.10143360e-002, - -1.88702792e-002, 6.25096783e-002, 5.53989410e-002, - 7.71982893e-002, -1.57670125e-001, 3.32175255e-001, - 2.36318529e-001, 4.41060901e-001, 1.10645212e-001, - 6.85563013e-002, 2.57616401e-001, 1.94070101e-001, - 1.41578823e-001, -2.60049161e-002, 1.72226518e-001, - 4.23270464e-002, 4.93208924e-003, 1.80520152e-003, - 1.04170237e-002, 1.34608196e-002, -4.00916114e-002, - 7.78833181e-002, 9.10698622e-002, 1.41085654e-001, - -4.07957025e-002, 7.10447580e-002, 7.65799433e-002, - 1.01033308e-001, 1.12377163e-002, -1.52755156e-003, - 1.80319902e-002, 6.41471287e-003, -2.61260360e-003, - -2.73568067e-003, 4.38343221e-003, 4.42126254e-003, - -2.07072706e-003, -3.85009758e-002, 2.97011565e-002, - 5.03676794e-002, 1.09645901e-002, -2.87856963e-002, - 3.62139679e-002, 5.62905557e-002, 1.76754256e-003, - -6.48950180e-003, 3.51893948e-003, 1.30040050e-002, - -3.97187881e-002, 1.53097427e-002, 4.34479825e-002, - 2.96350904e-002, 1.41670285e-002, -2.83488929e-002, - 1.29340455e-001, 1.23240523e-001, -1.91467404e-002, - -7.29033202e-002, 7.71474689e-002, 1.46291777e-001, - 4.12590010e-003, -2.11242232e-002, 1.57635584e-002, - 2.71109231e-002, -7.23597035e-002, 5.43392859e-002, - 8.11565146e-002, 7.31130615e-002, -3.93732600e-002, - 2.20686793e-001, 2.28788331e-001, 3.39271039e-001, - -6.36478662e-002, 1.62812099e-001, 1.33742154e-001, - 2.62644619e-001, -1.15736504e-003, 1.18553713e-002, - 1.39079243e-002, 2.31874604e-002, 2.47825775e-003, - 2.31213626e-002, 1.33404927e-002, 3.49339433e-002, - -2.34416258e-002, 3.25424910e-001, 7.40770772e-002, - 3.59021991e-001, -3.78945284e-002, 3.14933628e-001, - 6.43301755e-002, 3.38412106e-001, -1.41039295e-002, - 2.31596380e-002, 1.42404186e-002, 2.55701076e-002, - 1.85776502e-003, -4.90245270e-003, 5.08431438e-003, - 1.06273023e-002, 7.27141649e-003, -6.09149002e-002, - 3.11368685e-002, 9.28095430e-002, -4.30432474e-003, - -7.03934431e-002, 3.61965522e-002, 1.00825183e-001, - 5.92045020e-003, -2.41314573e-003, 9.20187589e-003, - 9.17347055e-003, -6.83627417e-003, -3.17858830e-002, - 2.30071303e-002, 4.06759121e-002, -2.19295211e-002, - -2.48425707e-001, 1.02617204e-001, 2.80588210e-001, - 1.79319739e-001, -1.38932392e-001, 2.49961853e-001, - 2.42518097e-001, 9.82038751e-002, 2.18479168e-002, - 1.15200460e-001, 4.75657322e-002, -8.48654192e-003, - -2.54593394e-003, 1.87503621e-002, 2.13948097e-002, - 1.67926382e-002, 1.80545282e-002, 9.75752473e-002, - 1.32544339e-001, 4.05628026e-001, 1.40651226e-001, - 4.34829682e-001, 2.08779573e-001, 8.15311000e-002, - 2.10091826e-002, 1.06021576e-001, 4.25153784e-002, - 6.70394569e-004, 5.17478213e-003, 3.70954792e-003, - 8.11660569e-003, 1.73965041e-002, 6.09829836e-002, - 3.30628343e-002, 8.06211457e-002, 5.43179475e-002, - 5.65731041e-002, 7.17372522e-002, 8.33689868e-002, - 3.93370539e-003, -1.68131478e-003, 8.98726285e-003, - 6.75608171e-003, -1.55918460e-004, -1.06471414e-002, - 3.73842148e-003, 1.74788386e-002, 4.94505465e-003, - -9.88337025e-002, 2.23641898e-002, 1.41826600e-001, - -4.69428068e-003, -9.70657766e-002, 2.91280970e-002, - 1.41187534e-001, 2.19296757e-003, -8.02977383e-003, - 6.32687565e-003, 1.51379257e-002, -1.70481633e-002, - -2.43295589e-003, 2.81641372e-002, 2.74696965e-002, - -5.25707612e-003, -6.31552264e-002, 8.91146734e-002, - 1.58184677e-001, 9.84647274e-002, -1.07897194e-002, - 1.57481790e-001, 1.75205961e-001, 4.59649339e-002, - 4.58684601e-002, 6.28862083e-002, 7.38186613e-002, - -1.32223982e-002, 2.31330078e-002, 2.92539131e-002, - 4.34949063e-002, -9.91055928e-003, 2.23511681e-001, - 1.11768857e-001, 2.93547601e-001, 3.48678499e-001, - 3.02428812e-001, 3.96567762e-001, 3.57936263e-001, - 5.24925925e-002, 5.52886277e-002, 8.52566287e-002, - 7.27374703e-002, 3.63473519e-004, 1.81082787e-003, - 4.68523521e-003, 9.59894247e-003, 1.82636688e-003, - 1.67077389e-002, 2.87277326e-002, 7.01795444e-002, - 4.00258601e-002, 1.91664919e-002, 5.81940152e-002, - 7.67548159e-002, 1.88615895e-003, -5.00176474e-003, - 9.14293434e-003, 9.28911287e-003, 1.64793839e-003, - -6.83686789e-003, 4.43674065e-003, 1.30447205e-002, - 5.94475539e-003, -8.94137397e-002, 4.06418815e-002, - 1.27449036e-001, -1.47921452e-002, -7.19128698e-002, - 4.19099256e-002, 1.03668198e-001, 5.16306097e-003, - -3.04284133e-003, 9.14845709e-003, 8.18577688e-003, - -1.23305004e-002, -1.83213353e-002, 2.26889085e-002, - 2.97473930e-002, 3.88922007e-003, -1.24401510e-001, - 9.16897282e-002, 1.59540147e-001, 8.64675641e-002, - -6.29156455e-002, 1.57033324e-001, 1.82902828e-001, - 5.32115884e-002, 1.20660001e-002, 7.89698735e-002, - 6.28747940e-002, -9.44260694e-003, 4.20896569e-003, - 2.11651009e-002, 1.98920611e-002, 5.18904161e-003, - 9.91752651e-003, 9.31693986e-002, 7.87807181e-002, - 4.90468174e-001, 2.17577964e-001, 5.45350850e-001, - 2.75885016e-001, 8.84943735e-003, 9.10193026e-002, - 8.90576690e-002, 1.07712269e-001, -1.03838416e-003, - 1.51333888e-003, 4.70098061e-003, 6.29985193e-003, - 1.96184643e-004, 1.81059074e-002, 2.67090704e-002, - 3.25354189e-002, 9.63269547e-002, 1.45191457e-002, - 1.06395759e-001, 5.31108640e-002, -4.39680211e-004, - -5.71597787e-003, 1.04749408e-002, 9.61002428e-003, - -4.53245034e-003, -2.76415114e-004, 7.25037651e-003, - 3.36920843e-003, -4.75484692e-003, -4.11361046e-002, - 5.36602847e-002, 4.87151146e-002, 5.49023487e-002, - -2.95732245e-002, 6.59300610e-002, 4.69772518e-002, - -2.52083666e-003, 4.86107368e-004, 5.45300916e-003, - 4.37150383e-003, -4.36708033e-002, 2.90680397e-003, - 5.83577342e-002, 2.05718484e-002, -2.30826154e-001, - -4.68047708e-002, 3.19910914e-001, 1.36913270e-001, - 2.85634011e-001, -3.31178188e-001, 3.28024715e-001, - 3.57540637e-001, 1.72746796e-002, -5.60589209e-002, - 4.27742191e-002, 6.37066811e-002, -3.85528356e-002, - -3.84222338e-004, 5.48451468e-002, 1.86159890e-002, - -2.85029203e-001, 4.27347496e-002, 3.26245695e-001, - 1.09884106e-001, 4.06613052e-002, 1.23494538e-002, - 1.25545472e-001, 1.13271035e-001, 3.31956111e-002, - -1.73727199e-002, 4.19846773e-002, 3.25110853e-002, - -4.23404342e-003, -9.38369078e-004, 7.21762842e-003, - 2.76287855e-003, -3.58625576e-002, 8.96021165e-003, - 4.81635742e-002, 2.01505441e-002, 9.23817628e-004, - 1.09186154e-002, 2.24567726e-002, 2.07947567e-002, - 1.81765889e-003, 3.11570548e-005, 4.35752003e-003, - 3.22273909e-003, 5.81747619e-003, -5.53563237e-003, - 1.88940112e-002, 1.55906091e-002, 2.61265617e-002, - 8.47341865e-002, 7.57700503e-002, 1.24947555e-001, - -4.25030999e-002, 1.29227936e-001, 7.18067884e-002, - 1.69766426e-001, 6.19246066e-003, -1.05162691e-002, - 2.07324214e-002, 1.74350943e-002, 1.52545020e-001, - 5.43566458e-002, 2.27144822e-001, 7.53707215e-002, - 1.21577464e-001, 1.21937953e-001, 1.88997954e-001, - 2.14897662e-001, -1.28845423e-001, 9.09518600e-002, - 2.33302131e-001, 2.07678407e-001, -1.43306747e-001, - 7.93517083e-002, 1.98554590e-001, 1.03344396e-001, - 1.59512475e-001, -2.02734433e-002, 2.35052437e-001, - 6.20498769e-002, 6.37435839e-002, -3.80065143e-002, - 1.71268031e-001, 1.73839688e-001, -3.96836065e-002, - -1.43778790e-002, 1.73222780e-001, 1.77476823e-001, - -1.17345296e-001, -4.31922339e-002, 1.68449432e-001, - 9.60156545e-002, 8.29045102e-003, -9.40925442e-004, - 1.78689528e-002, 2.05856822e-002, -3.74606834e-003, - -1.47416770e-001, 9.65892151e-002, 1.75010920e-001, - -1.69417616e-002, -1.51340827e-001, 8.46059248e-002, - 1.97709963e-001, 7.01084547e-003, 1.09726274e-002, - 2.06279699e-002, 1.66942384e-002, -8.09909892e-004, - -4.13636037e-004, 3.08730826e-003, 2.92872405e-003, - -3.48492875e-003, -1.10118166e-002, 1.90993361e-002, - 2.19671186e-002, 3.37822805e-003, -1.18426206e-002, - 2.99333297e-002, 2.29363907e-002, 4.99552349e-003, - 2.13136082e-004, 8.11321195e-003, 3.69334058e-003, - -1.26943002e-002, -8.47622752e-004, 2.23078225e-002, - 2.05670204e-002, -2.16618869e-002, -3.16213584e-003, - 1.06712900e-001, 1.13275304e-001, 1.12441061e-002, - -1.44501710e-002, 2.32958853e-001, 1.21269137e-001, - 5.17598875e-002, 5.61430492e-003, 6.72229379e-002, - 2.89292596e-002, -1.21139707e-002, 4.05479334e-002, - 2.50230599e-002, 5.14201559e-002, 5.54307888e-004, - 3.38965803e-001, 1.14934072e-001, 3.94614369e-001, - 6.58179820e-002, 4.35957968e-001, 2.16978967e-001, - 4.74527657e-001, 3.54448482e-002, 4.00975980e-002, - 5.70700429e-002, 5.37699759e-002, 2.15455820e-003, - 5.88562712e-003, 4.26468253e-003, 8.22618697e-003, - 7.66275125e-003, 4.89755794e-002, 2.19315104e-002, - 6.10697307e-002, 3.83311138e-003, 3.81830037e-002, - 2.27178708e-002, 5.28702177e-002, -2.92234239e-003, - 2.32034642e-003, 5.21214120e-003, 5.66072948e-003, - -2.10081879e-003, 9.52562876e-003, 6.42348826e-003, - 1.26076909e-002, -1.10063432e-002, 1.04100026e-001, - 4.32166047e-002, 1.16329998e-001, 2.12082323e-002, - 7.00489059e-002, 6.86474442e-002, 8.45467746e-002, - -6.98681595e-003, 2.33312696e-003, 1.15801599e-002, - 7.26387138e-003, 1.71104800e-002, 1.31501835e-002, - 3.21898758e-002, 2.87185777e-002, -2.48556733e-002, - 1.40013054e-001, 1.18989691e-001, 2.14553535e-001, - -1.74905092e-001, 1.01975724e-001, 3.06733131e-001, - 1.81361273e-001, -9.55056325e-002, -3.35094752e-003, - 1.22204207e-001, 3.03580668e-002, 5.06291632e-003, - -3.81192081e-002, 3.58180180e-002, 5.19198515e-002, - -3.68979829e-003, -3.38967472e-001, 2.12744847e-001, - 3.72689992e-001, -6.89838827e-002, -1.28922343e-001, - 3.69126022e-001, 1.76719517e-001, -1.00249469e-001, - 3.35551472e-003, 1.32480949e-001, 2.46820208e-002, - -5.34613850e-003, -2.67402292e-003, 9.45194624e-003, - 8.05305410e-003, 8.62057973e-003, -4.46014106e-002, - 6.46252409e-002, 7.93935359e-002, 3.41464654e-002, - -5.18113114e-002, 8.16631988e-002, 6.71057850e-002, - -1.00116320e-002, -1.60061521e-004, 1.40995458e-002, - 5.89588843e-003, -1.22028571e-002, 1.66258903e-003, - 1.55804632e-002, 3.65617243e-003, -3.36562023e-002, - -1.08805383e-002, 4.48960960e-002, 2.22829916e-002, - -7.29304156e-004, -1.22606177e-002, 1.53470067e-002, - 2.27847882e-002, 6.91336099e-005, -5.32791833e-004, - 2.24458799e-003, 2.55364925e-003, -9.76068005e-002, - 5.80297364e-003, 1.18709251e-001, 2.15333309e-002, - -2.76746064e-001, 2.91627739e-003, 3.11177105e-001, - 9.04835910e-002, 6.34432212e-003, -3.23233218e-003, - 7.68961310e-002, 8.06895941e-002, 6.13378501e-003, - 1.10184366e-003, 1.54637108e-002, 1.38862506e-002, - -8.63348842e-002, 5.77811850e-003, 1.06660858e-001, - 2.83078700e-002, -2.52873927e-001, 3.03821951e-001, - 2.96730191e-001, 3.53919029e-001, 4.20081802e-003, - 3.37979525e-001, 8.78435299e-002, 3.82222205e-001, - 8.48846603e-003, 4.50656265e-002, 1.97842065e-002, - 5.31141944e-002, -4.84244898e-003, -2.67968193e-004, - 8.35486688e-003, 6.54239440e-003, -5.95733896e-003, - 1.61615890e-002, 2.88567431e-002, 9.21257883e-002, - 2.03969874e-004, 2.23711580e-002, 2.05021016e-002, - 1.05263531e-001, -7.34490575e-004, 3.80427623e-003, - 3.73281143e-003, 1.44311665e-002, 4.39427281e-003, - -1.34923747e-002, 1.12893675e-002, 1.84994601e-002, - 3.74269381e-004, -2.15129554e-001, 5.85843623e-002, - 2.24945515e-001, 2.62635071e-002, -1.85676545e-001, - 4.98662665e-002, 1.93976685e-001, 6.28474692e-004, - -7.71223987e-003, 8.08763225e-003, 1.07709877e-002, - -5.76881282e-002, -5.20279147e-002, 8.27928409e-002, - 7.09721744e-002, -3.85704413e-002, -1.61802858e-001, - 2.32809335e-001, 3.06498975e-001, 2.62223840e-001, - -2.76443839e-001, 3.03370744e-001, 3.65231246e-001, - 6.00255169e-002, -9.03257951e-002, 8.42350572e-002, - 1.02681682e-001, -2.22484954e-002, -1.03433570e-002, - 4.01387662e-002, 3.71562168e-002, -7.40546081e-003, - -2.94038579e-002, 1.18899643e-001, 1.43523961e-001, - 1.05747975e-001, -2.50554625e-002, 1.55688986e-001, - 1.40099391e-001, 3.23507227e-002, -1.24276076e-002, - 4.69393432e-002, 3.37979011e-002, -3.15851276e-003, - -2.52488871e-006, 5.93248289e-003, 3.59337195e-003, - -3.10008088e-003, 3.41321342e-003, 1.58813111e-002, - 2.14652307e-002, 1.31223043e-002, 1.19486346e-003, - 1.99467428e-002, 2.07926407e-002, 2.41305353e-003, - -1.15330284e-003, 4.92620608e-003, 4.20467323e-003, - 7.00262748e-003, -1.51262700e-003, 1.35379005e-002, - 5.33547997e-003, -1.50159234e-002, 3.48147824e-002, - 7.20562860e-002, 4.93696965e-002, -6.42433688e-002, - 5.84984273e-002, 1.00281917e-001, 8.29437971e-002, - 1.25214411e-003, 1.64666027e-003, 8.76513030e-003, - 1.02677401e-002, 6.36182278e-002, -5.43290982e-003, - 1.13197178e-001, 2.81273834e-002, 1.65960714e-001, - 3.45886499e-002, 3.13121498e-001, 1.44054636e-001, - -1.87220812e-001, 3.04067403e-001, 3.28451484e-001, - 3.57821316e-001, -1.03000268e-001, 2.93903705e-002, - 1.39741942e-001, 6.83136284e-002, 5.99155128e-002, - 1.73235184e-003, 1.12490259e-001, 2.39729676e-002, - 2.31913865e-001, -3.12884636e-002, 2.98036277e-001, - 1.00917928e-001, -3.88592966e-002, -1.87512599e-002, - 1.80931583e-001, 1.02243274e-001, -1.26258403e-001, - 2.11516190e-002, 1.46120608e-001, 4.33994569e-002, - 6.18442148e-003, 1.17891002e-003, 1.39128957e-002, - 4.11897432e-003, 3.37341689e-002, -6.54919492e-003, - 4.42831665e-002, 1.99233945e-002, -7.09044142e-003, - -8.59060045e-003, 2.65660454e-002, 1.93172898e-002, - -9.16751940e-003, 2.01052870e-003, 1.23599274e-002, - 4.63829190e-003, 5.06103924e-003, 4.57719807e-003, - 1.38534093e-002, 9.92608350e-003, -8.95958673e-003, - 8.66820067e-002, 5.25001660e-002, 1.16698973e-001, - 1.30443536e-002, 9.09856707e-002, 4.44005728e-002, - 1.16035327e-001, -4.75651678e-003, 5.02193859e-003, - 1.23336865e-002, 1.04276426e-002, 9.92574617e-002, - 1.93956625e-002, 1.45672739e-001, 4.43809740e-002, - 9.98246484e-003, 1.77656710e-001, 2.89932221e-001, - 2.87646383e-001, -1.76726580e-002, 1.21804662e-001, - 2.66783506e-001, 2.77214527e-001, -1.07206844e-001, - 5.55674313e-003, 1.46244705e-001, 4.25599068e-002, - 9.11556855e-002, 7.31728133e-003, 1.33413255e-001, - 4.55310903e-002, -4.97774631e-002, -1.08147055e-001, - 2.62937963e-001, 2.32274830e-001, -3.01729292e-002, - -9.41922590e-002, 2.40458742e-001, 2.11945474e-001, - -1.05220526e-001, -1.06087066e-002, 1.44157082e-001, - 3.93645875e-002, 2.64797593e-003, -1.21190806e-003, - 1.15150074e-002, 9.08006914e-003, -6.37178123e-003, - -6.82668909e-002, 5.03222160e-002, 1.00352563e-001, - -3.88272339e-003, -6.78803176e-002, 4.21344936e-002, - 9.90557373e-002, -6.19287509e-003, -1.85709656e-003, - 1.24629997e-002, 9.60523635e-003, -1.36622333e-003, - -1.23033498e-003, 4.14337637e-003, 5.68396412e-003, - 2.00600307e-002, 2.57541556e-002, 3.86269279e-002, - 5.72149195e-002, 2.15829629e-002, 5.45605123e-002, - 3.94870490e-002, 6.60258383e-002, -1.83183409e-003, - 2.82449904e-003, 5.07107191e-003, 6.03607995e-003, - 2.79293768e-002, 4.59653847e-002, 4.23458479e-002, - 6.17416054e-002, 1.70571685e-001, 2.49539748e-001, - 2.38043770e-001, 4.10917491e-001, -8.01144540e-002, - -6.99708099e-003, 1.85695902e-001, 2.56539404e-001, - -3.75351682e-002, -1.44372117e-002, 4.55080979e-002, - 3.85646038e-002, 2.62856372e-002, -7.13040540e-003, - 3.63787264e-002, 3.59216817e-002, -4.19188626e-002, - -1.70188531e-001, 1.67571664e-001, 2.40926892e-001, - -1.92219526e-001, -2.79223084e-001, 2.41965979e-001, - 3.30489159e-001, -2.69453526e-002, -3.10549941e-002, - 3.88574786e-002, 4.40163538e-002, -6.96206334e-005, - -4.24308563e-003, 4.14147787e-003, 6.85347570e-003, - -1.74545329e-002, -4.46877703e-002, 3.27633396e-002, - 5.82632236e-002, -1.63063388e-002, -2.34762225e-002, - 2.97389925e-002, 4.29826677e-002, 5.58075553e-004, - -5.69442091e-005, 3.47106624e-003, 4.02146019e-003, - 2.24379729e-003, 1.47196725e-002, 8.71003419e-003, - 2.72806343e-002, 7.22607225e-003, 1.65550575e-001, - 2.79460885e-002, 2.91683853e-001, -7.62722408e-003, - 1.67753443e-001, 2.32925490e-002, 3.07089299e-001, - -2.52659429e-005, 1.68864708e-002, 9.01035964e-003, - 3.35740037e-002, 6.18946664e-002, 1.37281511e-002, - 9.30509493e-002, 4.42898199e-002, 8.46037641e-003, - 7.64548481e-002, 1.28456652e-001, 1.62858590e-001, - -1.30335987e-002, 3.87448817e-002, 1.04606345e-001, - 1.56527668e-001, -4.19250391e-002, 3.82222841e-003, - 6.71359822e-002, 3.89254317e-002, 4.82605994e-002, - -2.93998071e-003, 9.56867784e-002, 4.12237421e-002, - -1.20963890e-003, -4.79025207e-002, 1.56138688e-001, - 1.50027990e-001, -1.78641364e-001, -2.09245786e-001, - 2.25507528e-001, 2.87724674e-001, -7.11345673e-002, - -8.46889168e-002, 1.11328617e-001, 1.11888051e-001, - 1.11969573e-004, -1.93208531e-002, 8.75106361e-003, - 2.46620532e-002, -1.53327137e-002, -1.96167096e-001, - 5.03820069e-002, 2.43347570e-001, -3.27558517e-002, - -1.61860749e-001, 6.26685545e-002, 2.44140789e-001, - 3.73927737e-003, 4.59208124e-004, 1.10650817e-002, - 1.86626110e-002, 7.61220232e-004, -1.44610060e-002, - 5.28764725e-003, 3.57624255e-002, 2.22971570e-002, - -1.99268490e-001, 5.64659610e-002, 3.24017853e-001, - -3.72787900e-002, -2.99042046e-001, 7.26571754e-002, - 4.02101487e-001, -9.10983142e-003, -2.10894644e-002, - 1.03285825e-002, 2.84378584e-002, -6.45861356e-003, - -2.55130380e-002, 1.20718917e-002, 4.83404100e-002, - -3.64058465e-002, -1.46747097e-001, 9.02608335e-002, - 2.69847840e-001, -3.99865210e-003, -7.21030757e-002, - 9.92402285e-002, 1.64861590e-001, 2.14197971e-002, - 2.24410314e-002, 4.23695631e-002, 4.10634689e-002, - 1.79228475e-004, -3.86670610e-004, 9.54726338e-003, - 2.90323794e-002, -3.57874669e-002, 7.71570131e-002, - 9.90983844e-002, 2.02203795e-001, 1.78622582e-003, - 9.85516831e-002, 1.30019590e-001, 2.55097985e-001, - 1.42334672e-002, -1.74580831e-002, 2.48222891e-002, - 4.34826314e-002, 2.22473661e-003, 1.48785012e-002, - 4.86173807e-003, 1.84554793e-002, 5.56745492e-002, - 1.65849879e-001, 8.18048120e-002, 1.90983340e-001, - -5.06180935e-002, 1.92048505e-001, 8.92649144e-002, - 2.40593344e-001, -2.81847315e-004, 1.34121152e-002, - 5.38507802e-003, 1.94257684e-002, -2.53511779e-003, - -1.87167991e-003, 9.39314812e-003, 1.76298805e-002, - 2.44198050e-002, 9.92514268e-002, 5.53391874e-002, - 1.77844942e-001, 2.77391430e-002, 1.68157786e-001, - 5.21966927e-002, 2.06580490e-001, 1.87820673e-003, - 1.61271375e-002, 5.59474761e-003, 2.13157088e-002, - 4.79842164e-002, 8.16401169e-002, 6.93023354e-002, - 9.59987789e-002, 1.39966920e-001, 2.92439789e-001, - 1.95783034e-001, 3.53520006e-001, -4.31462675e-002, - 5.92719652e-002, 1.18294060e-001, 1.75542757e-001, - -2.46926099e-002, -4.51147510e-003, 3.48235890e-002, - 3.90887856e-002, 1.79128349e-002, -2.24077012e-002, - 3.18942703e-002, 5.29178455e-002, 8.16246786e-004, - -2.40099996e-001, 1.15737192e-001, 2.77979225e-001, - -8.47764686e-002, -2.71941960e-001, 1.43167451e-001, - 3.31070900e-001, -2.81248298e-002, -3.64504643e-002, - 4.57100868e-002, 6.20351546e-002, -7.41330325e-004, - -1.15322424e-002, 6.11557905e-003, 1.64024942e-002, - -4.90107853e-003, -1.00676194e-001, 4.05861177e-002, - 1.28760725e-001, -9.80801135e-003, -8.14794749e-002, - 3.51655595e-002, 1.15923129e-001, 2.46347394e-003, - -7.77256442e-003, 7.05783768e-003, 1.27796223e-002, - -5.54262754e-003, -1.75778440e-003, 1.33497911e-002, - 7.03146588e-003, -4.52580908e-003, -4.45129946e-002, - 4.78074998e-002, 8.25360119e-002, 1.64643824e-002, - -4.17351983e-002, 4.41454537e-002, 8.82919729e-002, - 4.07131901e-003, 1.41470949e-003, 1.39201134e-002, - 8.84434674e-003, -9.38056484e-002, -2.08039116e-002, - 1.13339886e-001, 3.79471295e-002, -1.00779831e-001, - -2.43223503e-001, 2.13953793e-001, 3.11732709e-001, - 4.21374477e-002, -2.97459841e-001, 2.39999473e-001, - 3.66988122e-001, 1.77595526e-001, -2.03074012e-002, - 2.22555608e-001, 4.65260185e-002, -1.00033656e-001, - -7.25942338e-003, 1.19283274e-001, 2.11886168e-002, - -8.06131363e-002, 5.27100544e-003, 1.73036337e-001, - 1.02851622e-001, -6.93270378e-003, 1.68878622e-002, - 2.07953885e-001, 1.25182346e-001, 1.84842780e-001, - -1.72524229e-002, 2.38714412e-001, 3.05736866e-002, - -1.14301126e-002, -5.31551312e-004, 1.54930428e-002, - 4.15565819e-003, -4.35662130e-003, 1.64635666e-002, - 2.92106476e-002, 3.15201804e-002, -1.95261289e-003, - 2.02018358e-002, 3.12557593e-002, 3.25492620e-002, - 1.91445593e-002, -6.15759753e-004, 2.60124523e-002, - 4.02618339e-003, -3.62793775e-003, -1.88346763e-004, - 5.62443025e-003, 2.85091484e-003, 5.04172547e-003, - -1.19298184e-002, 2.27659550e-002, 2.52695512e-002, - 5.94801176e-003, -1.96608510e-002, 3.02870348e-002, - 3.00440006e-002, 1.79764070e-002, 1.39723241e-003, - 2.86098123e-002, 5.31167304e-003, -4.87314239e-002, - 8.60863831e-003, 5.74382320e-002, 2.91539803e-002, - 7.61206262e-003, -4.90169972e-003, 1.16425365e-001, - 1.02615558e-001, 2.69128624e-002, -1.35601265e-002, - 1.46090373e-001, 9.72044691e-002, 1.70148700e-001, - 6.20021205e-003, 2.20734060e-001, 2.98856292e-002, - -6.36804029e-002, 8.37154463e-002, 6.97877407e-002, - 9.11362693e-002, -1.02061845e-001, 3.88053477e-001, - 1.95926920e-001, 4.48968709e-001, 4.54390934e-003, - 1.76725402e-001, 1.71595857e-001, 2.39962280e-001, - 1.73737630e-001, 8.99113435e-003, 2.16489568e-001, - 4.47811522e-002, -8.64268921e-004, 3.10077542e-003, - 5.82239730e-003, 1.15659116e-002, -1.61019936e-002, - 1.14252508e-001, 4.13555205e-002, 1.52059078e-001, - -3.46456654e-002, 1.69237897e-001, 5.52174896e-002, - 1.89092413e-001, 4.90377704e-003, 7.44469557e-003, - 1.53493956e-002, 1.09524289e-002, 4.33953898e-003, - 1.55449277e-004, 9.81401093e-003, 4.80439747e-003, - 2.63554207e-003, 2.64467858e-002, 4.17594723e-002, - 4.24640253e-002, -1.36710871e-002, 3.58879231e-002, - 5.14536947e-002, 5.74514046e-002, -4.22218582e-003, - 2.21319191e-004, 8.69288761e-003, 5.69426315e-003, - 6.02068342e-002, 1.34274526e-003, 9.30348188e-002, - 2.49307361e-002, 6.32244870e-002, 3.03695165e-002, - 2.25322291e-001, 1.32796481e-001, -1.35363236e-001, - -1.09324791e-001, 3.64196837e-001, 3.08465511e-001, - -5.04478924e-002, -1.20183271e-004, 7.30055124e-002, - 4.67708781e-002, 6.63449988e-002, 5.03359130e-003, - 8.80245566e-002, 2.10517682e-002, 3.58726494e-002, - -7.37824803e-003, 2.04302803e-001, 1.37039423e-001, - -2.54635066e-001, 5.31075336e-002, 4.89409238e-001, - 2.95535803e-001, -2.64205001e-002, -1.14346240e-002, - 5.57546616e-002, 4.10876386e-002, 4.96127596e-003, - 5.12153201e-004, 8.74224212e-003, 4.02371679e-003, - -5.90661584e-005, -2.33890545e-002, 3.45673822e-002, - 3.60449590e-002, -2.69707907e-002, -2.54809596e-002, - 6.22320883e-002, 5.35255261e-002, -1.49507867e-003, - 3.20149557e-004, 6.66130381e-003, 7.52661610e-003, - 9.75552131e-004, -8.90539028e-003, 5.89061016e-003, - 1.18177505e-002, 2.90643238e-002, -9.91650596e-002, - 4.72457036e-002, 1.15205370e-001, 2.22075451e-002, - -5.91444820e-002, 4.60259430e-002, 9.10050198e-002, - -2.24469788e-003, -2.09692353e-003, 5.86894620e-003, - 8.75913724e-003, -2.76828818e-002, 1.32472506e-002, - 3.98835801e-002, 4.16413508e-002, -2.42399704e-002, - -9.49432775e-002, 1.62148342e-001, 2.36022845e-001, - 1.67443708e-001, -3.63246471e-001, 2.19231576e-001, - 4.12130594e-001, 2.47723311e-002, -5.49264662e-002, - 4.33420986e-002, 6.99300244e-002, -2.41134167e-002, - 2.32923459e-002, 4.26836833e-002, 4.59465943e-002, - -2.07575634e-001, 1.32055596e-001, 2.48290241e-001, - 2.16157719e-001, 1.41033307e-001, 1.70660362e-001, - 1.97638676e-001, 2.44241953e-001, 2.29847357e-002, - 2.64914073e-002, 4.05835584e-002, 4.79005575e-002, - -5.71614946e-004, 1.68837467e-003, 5.51099516e-003, - 7.01800920e-003, -1.79012436e-002, 4.83867526e-002, - 4.31310199e-002, 6.43281490e-002, 1.85527634e-002, - 4.63168100e-002, 4.50736210e-002, 6.59679398e-002, - -3.28322669e-004, 2.37414963e-003, 5.51500265e-003, - 7.48978881e-003, -1.13122608e-003, -1.59911544e-003, - 5.15985256e-003, 5.90146193e-003, -9.74682625e-003, - -3.46526764e-002, 3.23192589e-002, 5.33674248e-002, - -3.70967551e-003, -3.25897373e-002, 2.84731314e-002, - 5.36606200e-002, 5.06607001e-004, -2.74912897e-003, - 4.88145556e-003, 7.21981050e-003, -2.50673443e-002, - 1.10549098e-002, 4.48444337e-002, 3.87453139e-002, - -9.50505659e-002, 3.64706293e-002, 2.09245935e-001, - 2.59839475e-001, -3.15295742e-003, 2.93734241e-002, - 1.56220660e-001, 2.33845100e-001, 2.14202441e-002, - 5.75616583e-003, 4.09482904e-002, 3.77559774e-002, - -2.27497313e-002, 1.47756673e-002, 4.85600829e-002, - 3.53253335e-002, -1.87664092e-001, -1.15620256e-004, - 3.47034156e-001, 3.20692241e-001, 1.19390339e-001, - 9.77379605e-002, 2.68479854e-001, 4.91407037e-001, - 1.72696672e-002, 2.93582659e-002, 4.28602137e-002, - 5.83193526e-002, -1.13582693e-003, 5.60694549e-004, - 6.25597034e-003, 4.81882691e-003, -7.68804550e-003, - 4.71744277e-002, 4.85571697e-002, 6.24863915e-002, - 1.80463940e-002, 3.36503424e-002, 4.09602113e-002, - 6.01952896e-002, -1.37766474e-003, 3.07371374e-004, - 5.57053834e-003, 5.95340226e-003, -3.23188072e-003, - -4.60453797e-003, 9.42326058e-003, 1.06439041e-002, - 6.16172515e-003, -9.28222314e-002, 4.73512746e-002, - 1.27958328e-001, 3.07338405e-002, -6.23625852e-002, - 4.97863777e-002, 1.13385387e-001, -5.96807280e-004, - 1.41286419e-003, 7.00194202e-003, 1.03857536e-002, - -9.32527781e-002, -1.54472174e-004, 1.11272775e-001, - 4.40242477e-002, -8.00707191e-002, -8.30981284e-002, - 1.99194193e-001, 2.51533985e-001, 3.06384206e-001, - -2.77822554e-001, 3.43120307e-001, 3.57510000e-001, - 3.16575803e-002, -6.11487553e-002, 5.71254790e-002, - 7.57751688e-002, -9.10836607e-002, 1.36194378e-002, - 1.13430284e-001, 3.66913266e-002, -1.07445017e-001, - 1.90828979e-001, 1.99616417e-001, 2.33710185e-001, - 4.33604009e-002, 1.22935690e-001, 1.36940032e-001, - 1.96233600e-001, 3.50361802e-002, -7.48341950e-003, - 4.62701395e-002, 3.75838317e-002, -6.48028543e-003, - 5.88972645e-004, 1.20590851e-002, 5.60918218e-003, - -1.27907628e-002, 2.71686818e-002, 3.51582244e-002, - 4.22004014e-002, -1.89794227e-003, 3.30020860e-002, - 2.33328491e-002, 4.32423204e-002, 1.47878518e-003, - 3.39246728e-003, 4.69856011e-003, 5.94115118e-003, - 9.55132581e-003, 2.15499708e-003, 1.49380341e-002, - 7.03370944e-003, -3.16139162e-002, 5.31317443e-002, - 6.51054829e-002, 7.41591603e-002, -1.83096752e-002, - 4.18510325e-002, 4.03063260e-002, 8.19547847e-002, - 2.75286217e-003, 3.78870079e-003, 5.92775783e-003, - 1.02996733e-002, 1.44980550e-001, -5.44255367e-003, - 1.72327906e-001, 3.74251604e-002, 1.13354847e-002, - 2.03917816e-001, 2.64879614e-001, 2.64799118e-001, - -5.75669855e-002, 3.98982853e-001, 1.51757866e-001, - 4.33211207e-001, -1.79364346e-002, 5.26980460e-002, - 3.78777087e-002, 6.18029125e-002, 1.51882887e-001, - -5.33180870e-003, 1.82432368e-001, 3.20830904e-002, - 1.10796846e-001, -6.76282123e-002, 2.50506938e-001, - 1.43943563e-001, -2.57883891e-002, -8.06501657e-002, - 1.18651308e-001, 1.52939022e-001, -1.82865579e-002, - -2.96240323e-003, 2.99782939e-002, 2.48595700e-002, - 1.56129431e-002, 1.06136920e-003, 2.14185007e-002, - 5.01225749e-003, 9.19520669e-003, -1.99501496e-002, - 4.90558110e-002, 3.44220363e-002, 1.40875287e-003, - -2.09451839e-002, 2.46716887e-002, 3.27798091e-002, - -8.95869569e-004, -1.65809214e-003, 4.01698193e-003, - 4.13006777e-003, -1.01093133e-003, 2.75056879e-003, - 3.80560663e-003, 5.68798371e-003, 1.02286576e-003, - 2.42391564e-002, 2.43934002e-002, 4.08867113e-002, - 2.52700225e-002, 2.95370743e-002, 3.89812626e-002, - 4.32503857e-002, -7.34390167e-004, 2.62236292e-003, - 5.18507138e-003, 5.45468600e-003, 2.49237753e-002, - 3.59755009e-002, 3.57055366e-002, 4.80251238e-002, - -9.28272586e-003, 3.73590291e-001, 1.52778789e-001, - 3.95874709e-001, 5.60876578e-002, 2.41749346e-001, - 1.79572180e-001, 2.80102879e-001, -3.42387855e-002, - 1.19087165e-002, 4.52542379e-002, 3.33844349e-002, - 2.72192582e-002, -4.73960936e-002, 3.80094461e-002, - 5.58599532e-002, 9.14752334e-002, -3.30771327e-001, - 1.70150340e-001, 3.62137914e-001, 2.46107369e-003, - -1.33768618e-001, 1.63554952e-001, 1.94718644e-001, - -3.82096432e-002, -1.05312290e-002, 4.95080389e-002, - 2.77470127e-002, -7.09535554e-004, -4.57331305e-004, - 3.75698856e-003, 5.12724183e-003, 1.76548380e-002, - -2.42766943e-002, 3.08282375e-002, 4.51764241e-002, - 2.33527198e-002, -3.71615663e-002, 4.17157039e-002, - 4.92761694e-002, -2.30138307e-003, -2.26810621e-003, - 5.71692083e-003, 5.31189749e-003, 2.67166062e-003, - -3.73991061e-004, 3.75068234e-003, 2.93837790e-003, - 3.64309773e-002, -2.74607986e-002, 4.46797200e-002, - 3.41875367e-002, 1.08133569e-001, -8.13693553e-002, - 1.16576463e-001, 9.11385864e-002, 3.33198230e-004, - -1.08414644e-003, 1.14685437e-002, 6.63078111e-003, - 6.17290940e-003, 7.96602014e-003, 1.89287458e-002, - 1.55329155e-002, 6.77400678e-002, 1.74569786e-002, - 1.23158120e-001, 1.09403059e-001, 1.81371406e-001, - -2.65786201e-001, 3.29789102e-001, 3.01108032e-001, - 2.10208803e-001, -3.27741131e-002, 2.34483868e-001, - 4.69385460e-002, 9.92077496e-003, 2.31616627e-002, - 1.96031667e-002, 2.53477786e-002, 2.83630528e-002, - 1.67934045e-001, 1.23776816e-001, 1.86014876e-001, - -1.07217468e-001, 4.78840508e-002, 3.01611781e-001, - 1.10303268e-001, 2.78605163e-001, -5.62937697e-003, - 2.91855454e-001, 2.76518017e-002, 4.02141502e-003, - -4.32653585e-004, 4.96540451e-003, 8.63949955e-003, - 2.09528394e-002, 4.57991995e-002, 3.84368896e-002, - 8.32659304e-002, -2.29912791e-002, 1.16028056e-001, - 7.08428472e-002, 1.46314681e-001, 2.76465919e-002, - 4.18593688e-003, 3.03247031e-002, 1.05717015e-002, - 4.10556931e-005, 5.47782065e-006, 3.95056186e-003, - 4.04823059e-003, 2.48663709e-003, -1.10447546e-003, - 2.28779204e-002, 3.75634134e-002, 8.55020527e-003, - 5.35290572e-004, 2.30089277e-002, 4.16131169e-002, - 1.51798292e-003, 1.40665704e-003, 4.17345529e-003, - 5.93227707e-003, 1.25975460e-002, 2.09615082e-002, - 3.68420705e-002, 4.22667563e-002, -1.37527718e-003, - 2.35657588e-001, 1.55803815e-001, 3.57747465e-001, - 1.34922080e-002, 1.36216670e-001, 1.85031071e-001, - 3.30672264e-001, 9.84616298e-003, 1.38099836e-002, - 4.47650515e-002, 4.60116789e-002, 1.10337585e-002, - -2.76449379e-002, 3.56586464e-002, 4.48397137e-002, - 7.04698712e-002, -2.11448580e-001, 2.04768091e-001, - 3.42265189e-001, 1.70449346e-001, 1.27650738e-001, - 2.87436396e-001, 3.21916699e-001, 2.67925818e-004, - 2.74900999e-002, 4.16759774e-002, 4.19275425e-002, - 3.73615156e-004, 2.42786948e-003, 4.27396083e-003, - 5.30246366e-003, 2.51244120e-002, 2.84993127e-002, - 4.11799513e-002, 5.78130744e-002, 2.83711068e-002, - -2.42636236e-003, 4.47621085e-002, 5.29692881e-002, - 2.65599636e-004, -1.80040416e-003, 3.82724754e-003, - 4.17712703e-003, 2.34807003e-003, 2.77095212e-004, - 4.62996820e-003, 5.12624998e-003, -7.19377119e-003, - 1.87041815e-002, 3.97229008e-002, 5.26629277e-002, - -2.02921834e-002, 8.60368425e-004, 4.04450782e-002, - 5.12271263e-002, 1.35356234e-003, -4.30489366e-004, - 4.87988582e-003, 5.14057418e-003, 8.22671968e-003, - -1.35106025e-002, 4.54730168e-002, 3.81248146e-002, - 9.81493071e-002, -1.79034114e-001, 2.66553134e-001, - 3.09897155e-001, -1.42210439e-001, 1.31674901e-001, - 2.73030788e-001, 2.80651361e-001, 6.77522318e-003, - 1.20072579e-002, 4.40188348e-002, 4.16769423e-002, - -6.40941411e-003, 4.61748755e-003, 4.04526778e-002, - 3.11206914e-002, 2.52262622e-001, 1.15549415e-001, - 3.84186387e-001, 2.34998673e-001, -2.13781055e-002, - 1.14923038e-001, 2.41579622e-001, 2.27980331e-001, - -1.16300052e-002, 1.63994469e-002, 4.59515490e-002, - 3.72152030e-002, 1.52303849e-003, 1.45126821e-003, - 4.63301130e-003, 4.15345561e-003, 2.44043134e-002, - 8.68704449e-003, 4.41613607e-002, 3.91413718e-002, - 3.54443304e-003, 8.01682705e-004, 3.27797346e-002, - 3.50313410e-002, -1.84986612e-003, 1.71697733e-003, - 4.99306992e-003, 4.68960544e-003, 5.10395411e-003, - 1.12266594e-003, 7.95055367e-003, 5.27536031e-003, - -7.57039478e-003, 7.03711286e-002, 5.17709889e-002, - 8.50789919e-002, -1.31171839e-002, 9.27046090e-002, - 2.70829275e-002, 1.16086178e-001, -1.10728643e-003, - 6.78000087e-003, 4.10181563e-003, 1.25275850e-002, - 3.92752513e-002, -1.00238752e-002, 4.91716564e-002, - 3.16047184e-002, 2.03195602e-001, -1.82169795e-001, - 2.97130466e-001, 3.77565503e-001, -6.67669177e-002, - -1.93542019e-001, 1.79359004e-001, 4.75757062e-001, - -2.66502462e-002, -1.14176208e-002, 4.43411395e-002, - 6.14481196e-002, 3.81181203e-002, -3.26797381e-005, - 4.80438136e-002, 2.36879606e-002, 1.11288942e-001, - 3.48286494e-003, 2.27431878e-001, 1.90528676e-001, - -1.25602216e-001, -6.69063702e-002, 1.85061336e-001, - 1.95893630e-001, -7.42678856e-003, -1.60704926e-002, - 3.37194391e-002, 2.70600822e-002, 4.18965518e-003, - 1.48338091e-004, 5.02062310e-003, 3.64479865e-003, - 8.28680862e-003, -2.68084295e-002, 2.90694311e-002, - 3.60291637e-002, -1.97898000e-002, -2.73845606e-002, - 3.01895179e-002, 3.74379307e-002, 1.65482739e-003, - -1.21066475e-003, 5.50704496e-003, 4.84648440e-003, - -4.33636684e-004, -7.44459277e-004, 3.94829642e-003, - 3.67998611e-003, -3.16428253e-003, -1.23588275e-002, - 1.90968644e-002, 2.38851346e-002, 1.92771647e-002, - -1.09582916e-002, 3.41539122e-002, 2.25507524e-002, - 4.60080989e-003, 7.52920401e-004, 7.39393430e-003, - 2.97898776e-003, -1.51508469e-002, -1.17048062e-003, - 3.19115780e-002, 2.38144509e-002, -2.15194542e-002, - -2.44621597e-002, 1.19461842e-001, 1.27884537e-001, - 1.78868875e-001, -7.44976755e-003, 2.60074824e-001, - 1.28004327e-001, 3.83862257e-002, 6.32318482e-003, - 5.79544380e-002, 2.40111127e-002, -1.79503746e-002, - 2.28224285e-002, 4.06474508e-002, 6.12009056e-002, - -5.06392270e-002, 1.53149456e-001, 1.54557079e-001, - 5.09295106e-001, 2.45041743e-001, 1.43610314e-001, - 3.16570759e-001, 4.40626770e-001, 2.78763995e-002, - 5.32171829e-003, 4.93583493e-002, 4.13649194e-002, - 1.57954777e-003, 1.07760029e-003, 4.96343384e-003, - 7.55449291e-003, 4.80425690e-004, 2.32400596e-002, - 3.19367796e-002, 5.81250563e-002, 9.73290019e-003, - 2.85761934e-002, 3.31349038e-002, 5.40119149e-002, - 1.33447276e-004, 8.12836806e-004, 3.99384694e-003, - 4.21616202e-003, -1.47391688e-002, 1.72297133e-003, - 3.12173609e-002, 7.07013858e-003, -5.82329109e-002, - -2.15702318e-002, 9.08551663e-002, 4.00014073e-002, - 4.33203857e-003, -1.08790891e-002, 2.37658843e-002, - 2.57260334e-002, 7.98967609e-004, -1.14245142e-003, - 3.94765334e-003, 3.69218644e-003, -1.98778823e-001, - -4.41241488e-002, 2.98409015e-001, 6.40694946e-002, - -1.89635694e-001, -6.78242370e-002, 3.78329486e-001, - 1.87878832e-001, 5.97293489e-003, -2.32063439e-002, - 1.27965108e-001, 1.47664696e-001, 1.17157875e-002, - -6.07482763e-003, 2.62415819e-002, 2.16520187e-002, - -1.71669662e-001, -4.47521992e-002, 2.20215708e-001, - 7.38954842e-002, -3.48993428e-002, 1.42397076e-001, - 1.92921251e-001, 3.21413517e-001, -6.03389181e-003, - 1.38844386e-001, 1.21871471e-001, 2.69907624e-001, - 6.37554144e-003, 1.15966899e-002, 2.02802774e-002, - 3.54737565e-002, -6.04110071e-003, 9.51711647e-003, - 1.43136196e-002, 1.62586197e-002, 4.49610502e-003, - 1.11716680e-001, 3.22493948e-002, 1.58570990e-001, - -9.68908984e-003, 1.13486364e-001, 2.82335114e-002, - 1.54994935e-001, -3.18851415e-003, 1.28238723e-002, - 5.30577404e-003, 1.79843754e-002, 7.11071771e-003, - -3.52058606e-003, 2.03536265e-002, 7.72427395e-003, - 2.15592887e-002, 1.68594569e-002, 4.18753251e-002, - 2.86639072e-002, -3.02520711e-002, 1.98839288e-002, - 4.53059636e-002, 4.42835055e-002, -9.13450401e-003, - 4.76457935e-004, 1.69408992e-002, 9.97602846e-003, - 1.41764104e-001, 5.15141478e-003, 1.94425419e-001, - 6.22507446e-002, 1.15205258e-001, 3.59149948e-002, - 2.08755672e-001, 1.02138795e-001, -1.71665028e-001, - -8.46340973e-003, 2.51106799e-001, 1.65522709e-001, - -9.96977165e-002, -5.35712503e-002, 1.15049332e-001, - 9.14267823e-002, 1.39870718e-001, 2.86286697e-002, - 1.72552884e-001, 4.75914739e-002, 5.77459335e-002, - 5.26575372e-003, 1.35833159e-001, 7.42807910e-002, - -4.46265727e-001, -8.77772942e-002, 4.99511510e-001, - 1.59517944e-001, -5.88605963e-002, -1.48461219e-002, - 8.89199302e-002, 3.88230830e-002, 1.14193568e-002, - 1.38791231e-003, 1.51903238e-002, 4.59819380e-003, - 7.25835888e-003, -6.32820046e-003, 2.52129119e-002, - 1.46629997e-002, -8.27691182e-002, -1.75622460e-002, - 9.11385641e-002, 2.96891686e-002, -2.45597749e-003, - 1.00927777e-003, 8.76131468e-003, 4.57453355e-003, - -4.93178749e-003, -7.31408290e-005, 9.66112595e-003, - 4.68234764e-003, 1.61515512e-002, -5.03954897e-003, - 3.99988331e-002, 3.58376093e-002, -6.63255900e-003, - 4.89252619e-003, 3.74410823e-002, 2.93498393e-002, - 8.28131195e-003, 1.51007471e-003, 1.21374186e-002, - 4.97961044e-003, -6.65398017e-002, 1.59550458e-002, - 1.13623343e-001, 3.46256085e-002, 2.14014709e-001, - 1.61933750e-001, 3.55306000e-001, 2.51409173e-001, - -8.11822191e-002, 7.68863708e-002, 3.21733654e-001, - 1.67033285e-001, 4.53073718e-002, 5.10452082e-003, - 1.00489639e-001, 2.74773519e-002, -4.37942632e-002, - -3.40804062e-003, 8.89402777e-002, 3.37117650e-002, - 4.47437763e-002, -2.81216726e-002, 2.58164406e-001, - 3.49774599e-001, -6.39286637e-002, -1.23526208e-001, - 2.74275333e-001, 2.62451440e-001, 4.95370030e-002, - -5.71349263e-003, 9.66437012e-002, 3.21820118e-002, - 9.23754415e-004, 1.82924920e-003, 6.48164749e-003, - 6.67320564e-003, -6.10130373e-004, 3.79292890e-002, - 2.63262782e-002, 9.11339521e-002, -1.61599293e-002, - 4.68499735e-002, 4.48870510e-002, 9.57465619e-002, - 1.15937192e-003, -8.37466447e-004, 8.09020270e-003, - 7.40146637e-003, -2.62043846e-004, 1.00936498e-002, - 5.11721009e-003, 1.35020781e-002, -2.92811450e-002, - 1.01758987e-001, 3.77682410e-002, 1.11194298e-001, - -1.13735469e-002, 6.41069934e-002, 2.58408673e-002, - 7.99148679e-002, 7.27974519e-004, 2.39935541e-003, - 3.63809220e-003, 7.04846019e-003, 2.07270309e-002, - -1.25295352e-002, 2.95236260e-002, 4.57613282e-002, - -2.07316922e-003, -2.93783378e-002, 1.31984964e-001, - 3.91419083e-001, -9.77345705e-002, 1.66298375e-001, - 1.79805458e-001, 5.54704130e-001, -3.15360092e-002, - 3.90634015e-002, 3.94621342e-002, 6.86925277e-002, - 1.09174149e-002, -2.15613022e-002, 2.34835073e-002, - 3.38322632e-002, 3.81164961e-002, -1.94510162e-001, - 1.09637350e-001, 2.57138491e-001, -1.36892227e-002, - -2.16829911e-001, 1.17310353e-001, 2.88594693e-001, - -2.49721631e-002, -2.77375318e-002, 3.44741754e-002, - 4.24770452e-002, -5.48975717e-004, -3.81111004e-003, - 3.38943605e-003, 5.85174467e-003, 2.41730642e-003, - -3.17363441e-002, 2.04946380e-002, 4.54392880e-002, - -4.35311580e-003, -3.56048420e-002, 2.22886987e-002, - 4.47486006e-002, -7.32227229e-004, -4.32862714e-003, - 3.51722399e-003, 6.16371445e-003, 2.97816121e-003, - 1.49872969e-003, 7.14136194e-003, 4.74884920e-003, - -2.45376732e-002, 2.87135486e-002, 4.19487022e-002, - 3.96280251e-002, -1.65858455e-002, 1.65805407e-002, - 3.48681137e-002, 3.43850926e-002, -2.08284915e-003, - 2.34739578e-004, 6.07172726e-003, 4.10529925e-003, - 5.35812639e-002, -7.81466160e-003, 6.65266737e-002, - 3.10774390e-002, -1.11255817e-001, 1.07682750e-001, - 2.56251693e-001, 1.86541095e-001, -1.38894022e-001, - 2.09005207e-001, 2.19032422e-001, 2.56047845e-001, - -4.34675775e-002, 1.31105436e-002, 5.83447777e-002, - 3.14093567e-002, 3.78959365e-002, -3.46550904e-002, - 5.54147437e-002, 4.74134497e-002, 1.34141728e-001, - -3.22357714e-001, 2.24988431e-001, 3.87486458e-001, - -1.34002790e-001, -1.53068766e-001, 2.38351449e-001, - 3.32072198e-001, -5.05038798e-002, -9.94181726e-003, - 6.60036951e-002, 3.84027623e-002, -8.47181189e-004, - 3.59772122e-004, 4.80589224e-003, 5.27808676e-003, - 8.12687539e-003, -2.05225106e-002, 3.02825719e-002, - 4.68006879e-002, 1.68419885e-003, -3.36409286e-002, - 3.16737518e-002, 5.48659228e-002, -1.54406461e-003, - -8.36964638e-004, 5.65440999e-003, 5.47827827e-003, - 3.00389202e-003, -3.06106318e-004, 5.14835073e-003, - 3.02027981e-003, 1.08462451e-002, 7.43671134e-003, - 2.71571334e-002, 1.74016990e-002, -2.43979711e-002, - 8.50206241e-003, 7.44743273e-002, 1.83573831e-002, - -8.00927542e-003, -6.14359917e-004, 1.11945905e-002, - 2.86742463e-003, 3.28906700e-002, -1.61029063e-002, - 4.35687043e-002, 2.74938829e-002, 9.10242498e-002, - -1.10601801e-002, 1.68122098e-001, 9.89660993e-002, - -1.29666388e-001, 2.39968225e-002, 4.92402226e-001, - 1.00435413e-001, -8.03612247e-002, 1.31913612e-003, - 1.00387573e-001, 2.01334953e-002, 2.37573069e-002, - -3.17599438e-002, 4.23502102e-002, 3.98889296e-002, - 2.23776594e-001, -2.20729858e-001, 2.73362547e-001, - 2.54373699e-001, -5.18934689e-002, -6.52114153e-002, - 4.68709916e-001, 1.45166174e-001, -9.58235189e-002, - 7.99281523e-003, 1.11666873e-001, 2.11845301e-002, - -1.39860599e-003, -2.96385551e-005, 4.89919307e-003, - 4.07125708e-003, 3.74374166e-002, -3.08716018e-002, - 4.93756905e-002, 4.39082533e-002, 1.43590383e-002, - -4.02882919e-002, 6.35192096e-002, 4.96096760e-002, - -1.03798257e-002, 6.58471254e-004, 1.26773585e-002, - 4.19083657e-003, 1.97935943e-003, -3.44666303e-003, - 6.54494623e-003, 7.27041019e-003, 1.13139413e-002, - -8.11877325e-002, 4.89027761e-002, 9.53832939e-002, - 5.05181216e-002, -7.91750625e-002, 6.72292486e-002, - 9.49235186e-002, 3.99956596e-004, 6.22697757e-004, - 5.42188901e-003, 5.40932221e-003, -1.96601469e-002, - -1.16167329e-002, 3.91390398e-002, 2.99727656e-002, - -5.87646589e-002, -9.81272236e-002, 1.56825334e-001, - 1.80357799e-001, 4.74902958e-001, -1.99814215e-001, - 4.99063253e-001, 2.82205552e-001, 3.64755429e-002, - -3.81739102e-002, 6.49431571e-002, 5.22781722e-002, - -2.28802413e-002, -7.20346812e-004, 3.82376574e-002, - 2.37834360e-002, -3.97987962e-002, 9.55879129e-003, - 1.24405347e-001, 1.10679835e-001, 1.28395125e-001, - -1.15691483e-001, 2.02092052e-001, 2.04338461e-001, - 6.84544817e-002, -5.39530963e-002, 8.23058784e-002, - 6.97960779e-002, -1.53873605e-003, -2.94656144e-004, - 4.20436403e-003, 3.45851947e-003, -5.08013275e-003, - 1.07644657e-002, 2.08901092e-002, 2.44327486e-002, - 7.64348172e-003, 1.45210959e-002, 2.41600592e-002, - 2.71458272e-002, 5.41709270e-003, -6.15599449e-004, - 7.94671569e-003, 5.98494662e-003, 4.65579651e-004, - -4.41344164e-004, 4.85925190e-003, 4.49044490e-003, - -1.43764904e-002, -3.29540707e-002, 3.48185636e-002, - 4.77364026e-002, 1.36153838e-002, -3.15263122e-002, - 3.32035907e-002, 4.66542169e-002, 2.46289768e-004, - -3.09562049e-004, 4.26112721e-003, 4.29023243e-003, - -3.63339745e-002, -3.41698453e-002, 5.31568117e-002, - 4.65337932e-002, -1.70916304e-001, -2.85818875e-001, - 2.51899332e-001, 3.40039730e-001, 1.82642981e-001, - -2.67032534e-001, 2.41203398e-001, 3.23687077e-001, - 3.51611078e-002, -3.36484201e-002, 4.85713854e-002, - 4.57657948e-002, -4.70421165e-002, -2.58738827e-003, - 5.88250794e-002, 3.73075008e-002, 2.67620571e-002, - 1.86962336e-001, 1.94747463e-001, 2.49060169e-001, - 2.20354274e-002, 2.06460759e-001, 1.73167154e-001, - 2.60169595e-001, 4.17118333e-002, 3.83001473e-003, - 5.19390628e-002, 3.56087275e-002, -1.66220951e-003, - 1.55541569e-003, 6.27521239e-003, 5.39341057e-003, - 1.44354226e-002, 2.59734448e-002, 3.86290587e-002, - 4.35895063e-002, -5.58670470e-003, 2.35421956e-002, - 3.47469486e-002, 4.16458435e-002, 1.27607642e-003, - 1.25204143e-003, 5.58253936e-003, 5.11964597e-003, - -8.79896805e-003, 1.32707029e-003, 1.58960950e-002, - 6.95422990e-003, -8.09610821e-003, -1.52166253e-002, - 4.37026769e-002, 6.16802536e-002, 1.29686494e-003, - -1.02687422e-002, 4.49863002e-002, 6.10742122e-002, - -7.77885201e-004, 2.18779128e-003, 5.62580070e-003, - 7.27037154e-003, -1.16848961e-001, -3.62931471e-003, - 1.82427138e-001, 4.29307297e-002, -2.06548311e-002, - 5.08054718e-002, 2.59953439e-001, 4.73318636e-001, - 5.84108531e-002, -5.12373745e-002, 2.48354018e-001, - 2.62310624e-001, 1.96785182e-002, -2.14768834e-002, - 4.71662357e-002, 4.73994240e-002, -1.12921819e-001, - -7.33608287e-003, 1.82605147e-001, 4.41734903e-002, - 6.26856983e-002, -2.98760533e-002, 2.77407527e-001, - 3.34598958e-001, -4.76339906e-002, 4.63109314e-002, - 2.02058733e-001, 2.07075343e-001, 9.82822292e-003, - 6.93875831e-003, 3.57035361e-002, 3.84088606e-002, - -5.53745404e-003, 2.68868520e-003, 1.64885707e-002, - 9.69096273e-003, 1.54967129e-003, 5.56757748e-002, - 4.89524864e-002, 7.89220929e-002, 1.04932196e-003, - 5.74533790e-002, 3.26015465e-002, 8.21767896e-002, - 1.67489704e-003, 7.95653462e-003, 4.17469302e-003, - 1.08131645e-002, -2.78737396e-003, 1.87240040e-003, - 6.72812341e-003, 3.79101816e-003, -2.39625107e-002, - -9.98353958e-003, 4.42876220e-002, 2.60762703e-002, - 4.79949219e-003, -1.28846345e-002, 2.97820233e-002, - 2.79311668e-002, 3.31939384e-003, 5.44925046e-004, - 6.80438196e-003, 4.41580685e-003, -2.87333485e-002, - 2.51034624e-003, 5.40246814e-002, 2.17476021e-002, - -2.03958690e-001, 1.50280371e-002, 3.31114501e-001, - 1.56416982e-001, 6.33608848e-002, 4.85296808e-002, - 2.15028211e-001, 1.53501630e-001, 4.10871096e-002, - 2.13674530e-002, 6.18381985e-002, 3.58793773e-002, - -3.77763584e-002, -8.23731709e-004, 5.85008599e-002, - 2.22142860e-002, -6.24908246e-002, 3.08758672e-002, - 3.90569985e-001, 1.64647862e-001, 9.42505449e-002, - 1.39041662e-001, 5.43623686e-001, 2.21617579e-001, - 3.05598676e-002, 2.31016688e-002, 6.78352788e-002, - 3.71151343e-002, -4.70380578e-003, -6.42093364e-004, - 7.52448570e-003, 3.37966997e-003, -1.29945902e-003, - 1.84150226e-002, 5.70950843e-002, 3.54518704e-002, - 2.25953553e-002, 1.83126777e-002, 7.86346644e-002, - 3.78185399e-002, 1.10629352e-003, -1.16096344e-003, - 7.71018956e-003, 4.49743588e-003, -8.45809642e-004, - -4.56593325e-003, 6.13682158e-003, 9.68991034e-003, - -3.31893377e-003, -5.80651648e-002, 3.85785662e-002, - 8.72055590e-002, -3.07695544e-003, -6.47175014e-002, - 3.73481028e-002, 9.16496739e-002, 1.93981477e-003, - -4.58307983e-003, 8.82959273e-003, 9.92925558e-003, - -3.08368262e-002, -2.25585233e-002, 4.86216135e-002, - 4.17394117e-002, -1.15440533e-001, -2.36366421e-001, - 2.02344060e-001, 2.92098999e-001, 4.87179607e-002, - -2.28496403e-001, 1.85947210e-001, 2.93665767e-001, - 6.05125651e-002, -1.30459424e-002, 8.14412534e-002, - 4.30663303e-002, -3.56248729e-002, 2.13223509e-002, - 5.39118722e-002, 5.02406061e-002, -1.71931773e-001, - 1.28153414e-001, 2.40247846e-001, 3.11559170e-001, - 7.53823817e-002, 5.04223369e-002, 2.24586472e-001, - 2.67523140e-001, 6.48993030e-002, 1.22191280e-003, - 8.47725943e-002, 4.28443365e-002, 2.42244045e-004, - 6.35466911e-003, 6.81659766e-003, 1.19800055e-002, - -1.48605043e-002, 1.03433132e-001, 4.57069650e-002, - 1.38330221e-001, -1.17139947e-002, 1.18388183e-001, - 4.55854647e-002, 1.46206930e-001, 2.53734039e-003, - 7.75874546e-003, 9.19829775e-003, 1.30278040e-002, - -4.60278883e-004, 1.80898991e-004, 4.59211180e-003, - 3.18889972e-003, -2.51087565e-002, -2.82430407e-002, - 4.62506078e-002, 4.46346812e-002, 2.67560012e-003, - -3.89389060e-002, 3.45505066e-002, 5.71106039e-002, - 5.85017515e-005, -1.72228087e-003, 5.07401209e-003, - 6.05732249e-003, -2.02398822e-002, -6.66680094e-003, - 4.46861386e-002, 2.40154602e-002, -2.76327342e-001, - -1.28294885e-001, 3.82719606e-001, 2.57636011e-001, - 1.24548286e-001, 3.85902897e-002, 2.17263803e-001, - 3.23281407e-001, 1.62646864e-002, -8.28004035e-004, - 3.73357981e-002, 4.15418074e-002, -2.80726869e-002, - -1.35913130e-003, 5.04260696e-002, 2.30060630e-002, - -2.22478181e-001, 1.40157342e-002, 3.78087491e-001, - 1.80817455e-001, 1.00551195e-001, -1.10080399e-001, - 2.00790122e-001, 2.49718189e-001, 1.75035521e-002, - -1.10985646e-002, 3.73217836e-002, 3.72580178e-002, - -3.62777687e-003, -1.46768708e-003, 7.27092242e-003, - 3.68944323e-003, -2.66007371e-002, 1.41701773e-002, - 4.92532589e-002, 3.30297463e-002, 4.54383111e-003, - 1.69439558e-002, 2.94590667e-002, 3.35752517e-002, - 1.24395418e-003, -1.09734072e-004, 4.71779518e-003, - 4.46122373e-003, -3.63622396e-003, -7.52761168e-003, - 1.32953888e-002, 1.62517913e-002, -1.77829847e-004, - -1.03208624e-001, 5.05455844e-002, 1.55822262e-001, - -2.33560093e-002, -8.16735104e-002, 3.86324599e-002, - 1.33025229e-001, 1.96353602e-003, -7.72255100e-003, - 5.17343637e-003, 1.46187674e-002, -1.23140708e-001, - 5.71334325e-002, 1.73660502e-001, 1.00092813e-001, - -3.02082151e-002, -1.17621869e-001, 1.72237575e-001, - 2.59130329e-001, -4.09268215e-002, -1.38341516e-001, - 1.43492833e-001, 2.44333208e-001, 1.83457993e-002, - -1.26208737e-002, 3.36469449e-002, 3.47530544e-002, - -1.63730621e-001, -2.72463076e-002, 2.09712967e-001, - 1.08281694e-001, -9.21715349e-002, -4.68866229e-002, - 2.51610160e-001, 3.55649918e-001, 1.08303331e-001, - 9.22282934e-002, 2.11930439e-001, 2.23428234e-001, - 2.09839568e-002, 3.68121713e-002, 3.69850770e-002, - 4.60800603e-002, -9.07868263e-004, 4.14665509e-003, - 1.68643482e-002, 2.57156193e-002, -6.55339211e-002, - 1.42212629e-001, 1.11357175e-001, 1.93707287e-001, - 1.46038085e-002, 4.46341895e-002, 4.82161902e-002, - 7.85841569e-002, 3.05223628e-004, 7.60014169e-004, - 5.78378653e-003, 8.15208256e-003, 6.32282638e-004, - -3.44030734e-004, 9.84863006e-003, 1.87262408e-002, - -2.75156777e-002, -1.26734376e-001, 4.86639589e-002, - 2.79387534e-001, 7.24973343e-003, -2.03455016e-001, - 4.54863906e-002, 3.56008738e-001, -1.53053214e-003, - -2.75175553e-002, 1.18604740e-002, 3.73181142e-002, - -3.94964330e-002, -8.31912160e-002, 7.03688562e-002, - 9.80356187e-002, -1.74284831e-001, -1.71088547e-001, - 2.55501658e-001, 3.21338028e-001, 8.52759257e-002, - -3.30499373e-002, 1.42558530e-001, 1.63774282e-001, - 5.24554700e-002, -9.10147559e-004, 5.95341288e-002, - 3.71854715e-002, -3.75895202e-002, 6.56894967e-002, - 6.55314103e-002, 8.60054046e-002, -1.65891096e-001, - 1.77704766e-001, 2.29466915e-001, 2.80774266e-001, - 4.49911058e-002, 4.60568666e-002, 1.15966320e-001, - 1.50826842e-001, 4.19541188e-002, -3.75478342e-003, - 4.75504361e-002, 2.83611864e-002, -3.25990841e-003, - 3.73824936e-004, 1.09981820e-002, 1.00738900e-002, - -3.31190787e-002, 5.39920293e-002, 5.08198254e-002, - 8.26826915e-002, -1.38692455e-002, 5.84070422e-002, - 3.48113067e-002, 7.19625130e-002, 1.70690566e-003, - 2.95558549e-003, 5.47475135e-003, 7.00620236e-003, - -9.51632333e-004, 3.05814971e-003, 5.85853728e-003, - 5.11475746e-003, -5.50816162e-003, -8.52752104e-003, - 1.59340706e-002, 1.71644893e-002, 1.12753420e-004, - -3.23723978e-003, 8.75148084e-003, 1.10054966e-002, - 1.75363198e-003, 1.20790594e-003, 2.39717588e-003, - 2.14242726e-003, -1.43323511e-001, 1.19436577e-001, - 1.59776643e-001, 1.30729213e-001, -4.92475443e-002, - 4.53563593e-002, 1.57589376e-001, 1.47728160e-001, - -1.91188534e-003, -5.71616401e-004, 9.34194252e-002, - 6.31112084e-002, 3.25649343e-002, 1.60832461e-002, - 3.69622968e-002, 2.19526701e-002, -1.61799163e-001, - -4.02335599e-002, 2.26066187e-001, 2.18820453e-001, - -1.72192425e-001, 2.04100296e-001, 3.30163896e-001, - 3.93756688e-001, 3.21903005e-002, 7.30957761e-002, - 1.82238325e-001, 1.34330928e-001, 3.82908694e-002, - 9.32848919e-003, 4.91716638e-002, 2.21791100e-002, - 4.29221475e-003, -4.56765527e-003, 2.28333622e-002, - 2.67047789e-002, -4.95903008e-002, 1.68924138e-001, - 1.72732159e-001, 2.93685883e-001, -6.38587922e-002, - 7.84180388e-002, 8.69291052e-002, 8.73902738e-002, - 6.70213427e-004, 3.07535799e-003, 6.63654599e-003, - 6.47347420e-003, -9.48659703e-003, 9.88898100e-004, - 1.32084386e-002, 3.91233806e-003, -1.40818479e-002, - -2.14675106e-002, 5.78392819e-002, 3.53172645e-002, - 1.07272081e-002, -2.82468945e-002, 4.32438776e-002, - 4.67266887e-002, -1.50360318e-003, -1.69740862e-003, - 4.84234188e-003, 5.32143703e-003, -6.73240125e-002, - 6.91981940e-003, 9.06102061e-002, 2.34094430e-002, - -2.98551291e-001, -2.12404225e-002, 3.80563617e-001, - 1.45018995e-001, 3.96468900e-002, -1.59373194e-001, - 1.47702768e-001, 2.05682978e-001, 1.31122768e-002, - -1.63738541e-002, 3.09394542e-002, 3.01608834e-002, - -4.98071164e-002, -1.83456088e-003, 7.41054788e-002, - 2.53728852e-002, -3.73858899e-001, 9.49815661e-002, - 4.13251460e-001, 1.80096403e-001, 2.50923224e-002, - 1.29744306e-001, 1.29008472e-001, 1.99848905e-001, - 1.78568680e-002, 1.29578104e-002, 3.15309241e-002, - 3.12272720e-002, -3.26213473e-003, 1.08027412e-003, - 7.54996808e-003, 6.60314271e-003, -1.61480177e-002, - 7.69173801e-002, 5.69744408e-002, 1.18018620e-001, - 1.23269472e-003, 1.07515253e-001, 4.60283570e-002, - 1.68176785e-001, -1.58447679e-003, 1.06169870e-002, - 5.39008435e-003, 1.80412848e-002, -1.06958745e-004, - -4.11127367e-005, 4.06554854e-003, 1.82961824e-003, - 8.81348923e-003, -4.89858771e-003, 2.28288323e-002, - 1.52036641e-002, 2.55309846e-002, -9.27345920e-003, - 4.85627577e-002, 2.43004002e-002, 1.61810834e-002, - 4.42358991e-003, 1.97329596e-002, 7.65402196e-003, - -4.18204902e-004, -4.22479026e-003, 2.10555270e-002, - 1.82035323e-002, 9.65647176e-002, 1.89343709e-002, - 1.82346329e-001, 1.11893706e-001, 1.84631243e-001, - 6.99327663e-002, 3.05250973e-001, 1.49323389e-001, - 1.56915814e-001, 1.31559940e-002, 1.98027343e-001, - 3.95078622e-002, -6.95450325e-003, 9.53957718e-003, - 2.42782980e-002, 2.48330068e-002, 1.90998331e-001, - 1.06283598e-001, 2.35000759e-001, 1.87965244e-001, - 1.26191929e-001, 2.97340062e-002, 4.18037474e-001, - 2.05303028e-001, 1.63620293e-001, 1.70715712e-003, - 2.29321048e-001, 4.06452529e-002, 1.76643569e-003, - 1.78027451e-002, 4.84835310e-003, 2.88087036e-002, - 1.69785470e-002, 1.34138286e-001, 4.27183062e-002, - 2.11746648e-001, -9.80927516e-003, 1.30767912e-001, - 5.76723814e-002, 2.09538862e-001, 1.36687253e-002, - 2.11192737e-003, 2.09472682e-002, 1.79477092e-002, - 1.16040872e-003, 1.33494462e-003, 3.40848137e-003, - 5.87707665e-003, 1.56783048e-004, 3.25802751e-002, - 2.33185012e-002, 5.16500138e-002, -6.36090199e-003, - 4.40624692e-002, 2.45456100e-002, 5.94937578e-002, - -1.95751223e-003, 3.00365197e-003, 5.17215207e-003, - 7.09456950e-003, 2.69283298e-002, 8.73602228e-004, - 3.44321206e-002, 3.50231789e-002, 5.07614650e-002, - -1.81544945e-002, 1.47568047e-001, 2.80271441e-001, - -1.42789811e-001, -1.95928171e-001, 2.12737724e-001, - 4.36290294e-001, -4.45560515e-002, -3.83493379e-002, - 5.28454743e-002, 6.23363219e-002, 1.65820550e-002, - -3.30091082e-002, 3.59518602e-002, 4.25840542e-002, - 4.33693640e-002, -2.42866516e-001, 1.69373989e-001, - 3.13166112e-001, -2.42014423e-001, -1.36343166e-001, - 2.88455635e-001, 2.84032106e-001, -2.90495828e-002, - -1.52056571e-002, 4.09855284e-002, 3.99911366e-002, - -1.56023225e-003, -2.32894463e-003, 4.48975572e-003, - 6.01907400e-003, 9.52217029e-004, -4.06646319e-002, - 2.70428304e-002, 5.42452075e-002, -1.28469290e-002, - -4.41030674e-002, 2.49584615e-002, 5.30830398e-002, - -3.95661802e-004, -1.05626381e-003, 3.63892363e-003, - 4.24063392e-003, 2.75456434e-004, 3.86284199e-003, - 4.10470366e-003, 6.67211926e-003, -9.24688578e-003, - 4.05570604e-002, 2.79692803e-002, 5.46062849e-002, - -6.54421654e-003, 2.77421921e-002, 2.60822419e-002, - 4.71791066e-002, 7.45561614e-004, 1.25583669e-003, - 3.56624555e-003, 5.48089854e-003, 3.37802581e-002, - 4.16765781e-003, 4.13915142e-002, 3.93010825e-002, - 2.17163060e-002, 2.04369068e-001, 1.45332158e-001, - 2.61830032e-001, -1.17930442e-001, 2.90553868e-001, - 1.68974444e-001, 3.18677038e-001, -2.00734455e-002, - 3.46109308e-002, 3.17750350e-002, 4.54578027e-002, - 2.72881258e-002, -5.08222543e-002, 4.13771085e-002, - 5.98933809e-002, 2.42593899e-001, -3.66635174e-001, - 2.73789495e-001, 3.90594572e-001, -7.15945894e-003, - -1.10689305e-001, 1.46518320e-001, 1.88646600e-001, - -2.23192014e-002, 1.47561997e-003, 3.07221301e-002, - 2.90843453e-002, -1.05089345e-003, 9.17182188e-004, - 3.88170639e-003, 4.30825539e-003, 2.90645473e-002, - -2.05615740e-002, 4.14606556e-002, 4.12905551e-002, - 2.58888584e-002, -4.18852568e-002, 4.05224375e-002, - 5.06710149e-002, -2.28926598e-004, -2.99873250e-003, - 3.97398276e-003, 5.16920770e-003, -2.04847296e-004, - -2.66932114e-003, 3.87112726e-003, 6.25491701e-003, - -2.76621291e-003, -3.54945995e-002, 2.97561195e-002, - 5.48025593e-002, -1.07928633e-003, -4.07627076e-002, - 2.51836181e-002, 6.01492897e-002, 1.38693152e-003, - -1.85922929e-003, 4.80087195e-003, 5.71877509e-003, - -1.59829780e-002, -4.58126655e-004, 3.46194059e-002, - 3.39114964e-002, -2.65541635e-002, 2.26086956e-002, - 1.70555204e-001, 2.29228571e-001, 8.93885717e-002, - 1.99362725e-001, 1.75448924e-001, 3.54962736e-001, - 2.09707916e-002, 3.17102820e-002, 4.00461033e-002, - 5.75318821e-002, -1.97488442e-002, 1.90699585e-002, - 4.20336463e-002, 5.27260341e-002, -6.35360777e-002, - 4.43950407e-002, 2.10707441e-001, 4.52969730e-001, - 1.76394910e-001, -1.44012138e-001, 2.54477084e-001, - 3.82407904e-001, 2.05584206e-002, -1.20654069e-002, - 4.26462516e-002, 4.69137914e-002, -4.01910074e-004, - -9.86050218e-005, 4.51852940e-003, 6.91884430e-003, - -1.43256122e-002, 2.37194020e-002, 3.34734395e-002, - 5.86244650e-002, -9.00373212e-004, 3.16223614e-002, - 3.23653519e-002, 5.76433130e-002, 2.21734215e-003, - 1.22592074e-003, 5.35870716e-003, 5.83042251e-003, - -4.24872991e-003, 5.70317090e-004, 7.07844272e-003, - 4.30849101e-003, 2.74533909e-002, -2.79171765e-002, - 6.61220625e-002, 3.73843834e-002, 2.06158403e-002, - -2.14061905e-002, 4.67597395e-002, 3.42280865e-002, - -6.52693037e-004, -6.55997312e-004, 4.60550468e-003, - 3.93938133e-003, -4.97170016e-002, 9.26639419e-003, - 6.36371076e-002, 2.87748408e-002, 8.48205090e-002, - -7.67726079e-002, 4.56829935e-001, 1.85688138e-001, - 9.50200036e-002, -2.20760435e-001, 2.75151849e-001, - 2.80119240e-001, 2.45736111e-002, -2.13910826e-002, - 3.96631472e-002, 3.66083160e-002, -2.75792684e-002, - 1.12015940e-002, 4.88307737e-002, 2.92126294e-002, - -2.15318501e-001, 1.40586361e-001, 3.73289734e-001, - 2.20551118e-001, 1.22988999e-001, -4.44618464e-002, - 2.18036503e-001, 1.81989387e-001, 2.96242628e-002, - -8.22033547e-003, 4.09173518e-002, 3.17489132e-002, - -3.82822298e-004, -8.47593124e-004, 5.05193509e-003, - 3.50557314e-003, -3.61695364e-002, 1.91900209e-002, - 5.30442968e-002, 3.41191106e-002, 4.03171685e-003, - 1.94641501e-002, 3.74366827e-002, 3.30065340e-002, - 2.28554662e-003, -7.84028307e-005, 5.19632269e-003, - 4.47154604e-003, 1.46820012e-003, -1.59915781e-003, - 6.48016855e-003, 5.93817700e-003, 2.59448085e-002, - -3.83874029e-002, 5.86754754e-002, 5.94361387e-002, - 6.41462440e-003, -6.83029965e-002, 4.67450358e-002, - 7.83665255e-002, 1.94308360e-003, -1.65849912e-003, - 5.17800963e-003, 5.37444139e-003, -1.94522180e-002, - -7.78504508e-003, 4.29268293e-002, 3.77309732e-002, - 5.46585657e-002, -2.56222606e-001, 2.75912046e-001, - 3.13981175e-001, 1.76513165e-001, -1.50953904e-001, - 3.24262947e-001, 2.27317512e-001, 4.29966077e-002, - -1.86384842e-002, 5.92762828e-002, 3.58936451e-002, - -1.97716132e-002, 1.08652152e-002, 4.50229049e-002, - 3.55333202e-002, 4.25924314e-003, 8.82187635e-002, - 2.74907351e-001, 1.89079121e-001, 2.63736755e-001, - 1.42668441e-001, 3.17199260e-001, 2.47643560e-001, - 3.48071977e-002, 1.24665508e-002, 5.46741001e-002, - 3.91902700e-002, 2.00515162e-004, -1.65050988e-005, - 6.19086344e-003, 4.78535797e-003, 5.68040647e-003, - 2.27136165e-002, 4.80661169e-002, 4.08665389e-002, - 4.17510942e-002, 1.86616536e-002, 5.43286987e-002, - 4.55168299e-002, 1.39400433e-003, -1.36151619e-004, - 5.92752779e-003, 6.04055636e-003, 3.95962968e-004, - 7.51584477e-004, 3.93527932e-003, 5.30162267e-003, - -2.98725395e-003, 1.32810129e-002, 2.70998608e-002, - 5.53422756e-002, -7.21727684e-003, 1.30236102e-002, - 2.74868831e-002, 5.39796352e-002, -4.23419027e-004, - 2.10318700e-004, 4.23532166e-003, 5.23283612e-003, - 4.69921436e-003, -2.96816137e-003, 3.59262861e-002, - 3.56009007e-002, 8.17939406e-004, -5.16731925e-002, - 1.72580257e-001, 3.36938232e-001, -6.30593076e-002, - -9.36082304e-002, 1.81982428e-001, 5.17933965e-001, - -8.49689357e-003, -7.64974300e-003, 3.51192914e-002, - 5.29414229e-002, 5.78917470e-003, 1.12878270e-002, - 3.80113721e-002, 3.09340116e-002, 4.46310416e-002, - 1.70171499e-001, 2.03360379e-001, 2.77898997e-001, - -1.67313397e-001, 1.75547093e-001, 2.36085281e-001, - 3.13985020e-001, -4.91442764e-003, 5.16349589e-003, - 3.24448012e-002, 3.32316868e-002, 6.30123541e-004, - 4.90393395e-005, 4.38194862e-003, 3.91706685e-003, - 5.83796715e-003, -9.49508045e-003, 2.83928420e-002, - 3.89802046e-002, -2.02545617e-002, -6.37643086e-003, - 3.75449955e-002, 4.33449708e-002, -1.27945025e-003, - 1.35534687e-003, 4.34910739e-003, 4.56487993e-003, - 3.72425467e-003, -4.43414273e-003, 7.77760334e-003, - 1.07558127e-002, -1.82005931e-002, -6.13081194e-002, - 3.94846126e-002, 8.79138112e-002, -2.08626762e-002, - -6.45509437e-002, 5.21939807e-002, 8.24112222e-002, - 8.10296088e-003, -4.81933035e-004, 1.89025626e-002, - 7.75385462e-003, -7.67646683e-003, -4.85253483e-002, - 2.96577998e-002, 5.68284728e-002, -7.13000298e-002, - -3.11135083e-001, 1.34485409e-001, 3.73482376e-001, - 3.81336175e-002, -2.04295799e-001, 2.05763236e-001, - 2.66556442e-001, 1.59922034e-001, 3.66240530e-003, - 2.31272280e-001, 4.55969088e-002, -9.49852820e-003, - 1.19118951e-002, 2.40164045e-002, 3.16817872e-002, - -5.41711925e-003, 1.08325019e-001, 9.09401178e-002, - 1.98508725e-001, 1.36691242e-001, 1.83469325e-001, - 2.49760211e-001, 2.40791962e-001, 1.20359629e-001, - -4.00019437e-003, 1.95433423e-001, 4.42303084e-002, - 3.90562724e-004, 1.09927654e-002, 6.21494930e-003, - 1.33439349e-002, 5.27119264e-003, 9.07220021e-002, - 4.08466831e-002, 1.07175283e-001, 4.92540095e-003, - 6.36320412e-002, 5.17148711e-002, 8.50694478e-002, - 3.17349378e-003, -1.89534866e-003, 1.66676659e-002, - 8.16792902e-003, 1.03956796e-002, -1.35210517e-003, - 2.09612623e-002, 7.23763136e-003, 3.38469632e-002, - 1.56964045e-002, 5.03984243e-002, 2.91587450e-002, - -1.22667123e-002, 1.47512099e-002, 2.78307274e-002, - 3.14304978e-002, -1.59350522e-002, -2.68975203e-003, - 2.05153208e-002, 8.40161089e-003, 1.38985097e-001, - -3.03798951e-002, 1.82761014e-001, 6.30058572e-002, - 2.65795857e-001, -8.44465010e-003, 3.33757192e-001, - 1.05665118e-001, -1.20891549e-001, -5.41507499e-003, - 2.09117219e-001, 9.76893380e-002, -1.74074695e-001, - -2.95424853e-002, 2.01780483e-001, 5.94180450e-002, - 1.53584644e-001, 3.18393894e-002, 1.93329602e-001, - 5.73856421e-002, 2.40615651e-001, 1.17450003e-002, - 3.19325447e-001, 1.11526959e-001, -2.18351483e-001, - -3.37283909e-002, 3.17335993e-001, 1.06643900e-001, - -1.47603452e-001, -4.70431615e-003, 1.97119623e-001, - 4.27883230e-002, 1.67372692e-002, 3.81291588e-003, - 2.22299714e-002, 8.45205877e-003, 2.33051665e-002, - -5.77816973e-003, 4.65625226e-002, 2.28337385e-002, - -4.55655046e-002, -1.52117638e-002, 6.62005544e-002, - 2.89952420e-002, -7.22252904e-003, 5.27536729e-003, - 1.93973426e-002, 7.76726613e-003, -5.78009337e-003, - 2.01173898e-004, 7.99467135e-003, 3.86811537e-003, - -1.36355858e-003, -1.64525565e-002, 3.59169059e-002, - 3.22358645e-002, 1.88792087e-002, -1.30560389e-002, - 3.61784101e-002, 3.32219824e-002, 7.51598086e-003, - 7.53957953e-004, 1.00500016e-002, 4.58367495e-003, - -9.04834494e-002, 1.19813522e-002, 1.02172814e-001, - 3.19397449e-002, 8.92588049e-002, 2.98850201e-002, - 2.38249913e-001, 1.61262110e-001, 7.17349946e-002, - 5.21193519e-002, 3.15499365e-001, 1.83947906e-001, - 8.01235586e-002, 2.29765922e-002, 1.00068919e-001, - 3.87772545e-002, -1.10929698e-001, 6.90261554e-003, - 1.26438722e-001, 2.68867239e-002, 1.73499852e-001, - 1.19525110e-002, 3.52442265e-001, 1.50942683e-001, - 1.27283096e-001, 1.12200290e-001, 5.10628939e-001, - 2.26510704e-001, 6.03162423e-002, 1.54473502e-002, - 9.15090889e-002, 3.00240312e-002, -8.90333764e-003, - -4.89351223e-004, 1.31063517e-002, 5.74123021e-003, - 1.73923522e-002, 2.85008829e-002, 5.85607402e-002, - 4.89346087e-002, 4.25645821e-002, 3.60783786e-002, - 7.88349807e-002, 5.39999679e-002, 1.31129415e-003, - -2.05039838e-003, 8.49770103e-003, 5.08160191e-003, - 1.68967396e-002, -1.86649314e-003, 2.51586866e-002, - 5.12996502e-003, 4.26695272e-002, 7.53701199e-003, - 5.29758669e-002, 1.70898326e-002, 2.13146466e-003, - 2.43817829e-003, 1.52253043e-002, 1.01721995e-002, - -3.20324954e-003, -3.57783487e-004, 5.03244856e-003, - 2.40695663e-003, 1.69839576e-001, -7.95013562e-004, - 2.18068823e-001, 2.53918488e-002, 2.41887301e-001, - 4.04369598e-003, 3.16819757e-001, 8.58440325e-002, - -1.79993967e-003, -2.51091365e-002, 1.29746065e-001, - 8.31235498e-002, -3.81218903e-002, -1.40201217e-002, - 5.11188209e-002, 2.51677204e-002, 1.64095685e-001, - 1.57723036e-002, 2.07330078e-001, 4.07269336e-002, - 1.81588039e-001, -5.41595295e-002, 3.55763316e-001, - 1.38410226e-001, -1.07141204e-001, -2.79901326e-001, - 3.44485909e-001, 3.17845017e-001, -3.51869985e-002, - -3.34844887e-002, 6.06423318e-002, 4.68460582e-002, - 1.61979739e-002, 2.99819658e-004, 2.21219566e-002, - 7.43346382e-003, -1.14767384e-002, -3.66641581e-002, - 7.54754767e-002, 5.30073568e-002, -2.96219345e-002, - -3.74110937e-002, 1.10603034e-001, 7.44454339e-002, - -1.29279186e-004, -2.14673649e-003, 7.89303333e-003, - 8.00702162e-003, -3.55816708e-004, -1.50433439e-003, - 4.59379423e-003, 5.23783499e-003, -2.33323826e-003, - -3.27579677e-002, 3.06847580e-002, 4.67499457e-002, - 5.33228973e-003, -3.54385898e-002, 2.90634800e-002, - 5.18598855e-002, 8.63337365e-004, -1.70802569e-003, - 4.40308126e-003, 6.62777852e-003, -2.27029156e-002, - -5.08074416e-003, 3.62944938e-002, 3.26981880e-002, - -4.36918363e-002, -4.22718301e-002, 1.41438663e-001, - 1.77678466e-001, 6.29486367e-002, -1.12537127e-002, - 1.38767585e-001, 1.90983772e-001, 3.17224599e-002, - 2.28672405e-003, 4.05708551e-002, 3.84939462e-002, - -2.91046239e-002, 2.24299207e-002, 4.36065793e-002, - 3.98995355e-002, 1.18336238e-001, 2.41921604e-001, - 2.73072749e-001, 2.95843273e-001, 9.26279128e-002, - 4.51798916e-001, 1.98908940e-001, 4.80067849e-001, - 2.61726547e-002, 5.50267398e-002, 4.07138467e-002, - 6.33226782e-002, 3.50724353e-004, 3.58919124e-003, - 6.19273540e-003, 6.34760922e-003, 3.42590399e-002, - 4.78516221e-002, 5.61500676e-002, 5.90546578e-002, - 1.17663024e-002, 2.06441898e-002, 2.99468134e-002, - 3.94999124e-002, -1.55315665e-003, 6.88949309e-004, - 3.93471401e-003, 4.64997813e-003, 1.63442467e-003, - 2.95321170e-005, 6.29084883e-003, 3.40910489e-003, - -5.54669369e-003, 1.87315997e-002, 6.59035891e-002, - 3.43432948e-002, -9.63128451e-003, 8.10372457e-003, - 4.81005348e-002, 3.40096280e-002, -1.26962186e-005, - 3.40588391e-004, 5.89704653e-003, 3.25475330e-003, - 1.30542722e-002, -5.74512733e-003, 4.47737053e-002, - 2.15008724e-002, 9.82614756e-002, 3.99350040e-002, - 4.76026267e-001, 1.80224180e-001, -7.09339753e-002, - 2.27731615e-001, 3.15481544e-001, 2.87112623e-001, - -4.55164770e-003, 2.24314667e-002, 5.43553233e-002, - 4.02581692e-002, 1.60799157e-002, 5.35508245e-003, - 4.33185212e-002, 2.18553450e-002, 2.01845080e-001, - -3.38387340e-002, 3.35197806e-001, 1.38259128e-001, - -8.52973387e-002, -1.15432523e-001, 3.26655835e-001, - 2.27457777e-001, 2.19760004e-005, -2.09443271e-003, - 5.60991839e-002, 3.98828313e-002, 1.33511249e-003, - 1.60573551e-003, 5.02931420e-003, 4.22474789e-003, - 1.51154287e-002, -1.82561893e-002, 3.63222770e-002, - 2.97271889e-002, -1.09784286e-002, -5.50341979e-003, - 4.59549427e-002, 3.57262753e-002, 1.35616574e-003, - 1.80393326e-005, 6.85231434e-003, 4.29489464e-003, - -3.87540698e-004, -1.21334707e-003, 3.56191816e-003, - 4.04055510e-003, -6.94740005e-003, -1.33861471e-002, - 2.18328107e-002, 2.47714855e-002, 5.88611932e-003, - -1.71522051e-002, 2.78736912e-002, 2.90805176e-002, - 1.07136380e-004, -6.36112643e-004, 5.72867785e-003, - 4.87936987e-003, -2.05542725e-002, 4.85821441e-003, - 3.24027464e-002, 2.47700382e-002, -4.43100706e-002, - -2.35706754e-002, 1.21578172e-001, 1.33094594e-001, - -1.56875211e-003, -1.83015224e-002, 1.43429279e-001, - 1.42815530e-001, 2.61236038e-002, 6.18480891e-003, - 4.20159139e-002, 3.25707905e-002, -1.96352396e-002, - 2.93479096e-002, 3.91125008e-002, 5.11396080e-002, - -4.19350490e-002, 2.80603319e-001, 1.76231831e-001, - 3.54079664e-001, 6.90405890e-002, 3.80391985e-001, - 2.66267151e-001, 4.48893487e-001, 4.19376865e-002, - 6.58913404e-002, 7.14671984e-002, 8.02744478e-002, - 7.14503322e-003, 1.44220646e-002, 1.09569039e-002, - 1.86987333e-002, 1.19617330e-002, 1.69201970e-001, - 5.19076325e-002, 1.88433617e-001, -1.20836608e-002, - 1.15993723e-001, 7.76311830e-002, 1.48149401e-001, - 4.60873616e-006, 7.80100469e-003, 1.08162640e-002, - 1.35300197e-002, -1.65956952e-002, -1.05176208e-004, - 2.37145033e-002, 1.06512429e-002, 6.42464822e-003, - -1.09732293e-001, 6.18760176e-002, 1.36166126e-001, - 1.60135124e-002, -1.15996115e-001, 5.19592650e-002, - 1.47797063e-001, -2.21228879e-003, -8.40728730e-003, - 7.64017273e-003, 1.57120451e-002, -2.08527610e-001, - 1.02868769e-003, 2.57042944e-001, 3.63462567e-002, - -1.47033274e-001, -9.35699120e-002, 3.18281353e-001, - 1.99234828e-001, 1.66236445e-001, -1.41909987e-001, - 2.32330620e-001, 2.45344937e-001, 2.01718528e-002, - -1.82803795e-002, 4.53983620e-002, 4.28916886e-002, - -1.96952820e-001, -4.51093633e-003, 2.43210554e-001, - 3.12291924e-002, -1.82069749e-001, 3.60700116e-002, - 2.99091697e-001, 1.33812740e-001, 1.25085369e-001, - 3.07240733e-003, 1.94483534e-001, 1.30060270e-001, - 2.47059409e-002, -6.26065861e-003, 4.07871008e-002, - 2.76664756e-002, -2.16882396e-002, -1.12653791e-003, - 2.76190583e-002, 5.61413821e-003, -2.69233901e-002, - 2.07597148e-002, 4.90357503e-002, 3.55397351e-002, - 9.21619777e-003, 1.61829293e-002, 2.86486205e-002, - 3.26148681e-002, 2.12422176e-003, 2.99327658e-004, - 5.10174176e-003, 4.58301185e-003, -1.21163540e-002, - 1.33775186e-003, 1.90636329e-002, 9.47875530e-003, - 1.19037256e-002, -1.11554854e-001, 6.74166679e-002, - 1.61656603e-001, -1.58893708e-002, -1.45345420e-001, - 2.55185310e-002, 1.84868887e-001, -1.87297573e-003, - -1.49160735e-002, 4.37914394e-003, 2.04330329e-002, - -1.49251938e-001, -2.41759187e-003, 1.85905248e-001, - 2.36241166e-002, -1.57711819e-001, 6.78215921e-002, - 2.96772271e-001, 2.21132755e-001, -7.96178728e-002, - 2.60447524e-002, 1.60538003e-001, 1.96851432e-001, - 5.75255556e-003, -4.81809489e-003, 1.58622488e-002, - 2.48918477e-002, -1.55509591e-001, -3.12824431e-003, - 1.89418837e-001, 2.23425534e-002, -5.51562831e-002, - 1.96764506e-002, 3.97690088e-001, 2.21783236e-001, - -2.13397771e-001, -1.61662400e-002, 2.81198800e-001, - 1.39237493e-001, 2.37127906e-003, -5.62586309e-003, - 1.77115314e-002, 1.65733397e-002, -1.79207493e-002, - -2.10354148e-004, 2.17294190e-002, 6.76144427e-003, - -1.47840362e-002, 3.64527255e-002, 5.39730266e-002, - 8.92421007e-002, -2.46494580e-002, 4.56240401e-002, - 4.06830870e-002, 8.87427926e-002, -1.11297111e-003, - 5.02921594e-003, 4.13622102e-003, 7.69458339e-003, - 6.03095919e-004, -1.64646807e-003, 5.50510548e-003, - 5.77050261e-003, -2.37975991e-003, -2.25906521e-002, - 3.99322845e-002, 4.37904671e-002, -1.11798802e-002, - -2.70714797e-002, 3.85185927e-002, 4.25030962e-002, - 2.36566062e-003, -1.29049714e-003, 5.65338461e-003, - 5.56803821e-003, -2.41542011e-002, -2.13644654e-003, - 4.40126546e-002, 4.14218046e-002, 3.57227633e-003, - -1.63788661e-001, 2.03056350e-001, 2.45629057e-001, - -1.52587462e-002, -7.81229064e-002, 1.83228180e-001, - 1.83430910e-001, 3.77829373e-002, 4.84122476e-003, - 4.78067808e-002, 3.46608013e-002, -2.55100932e-002, - 4.25828546e-002, 5.26129119e-002, 5.81378974e-002, - -1.06171280e-001, 2.03854904e-001, 3.36379170e-001, - 3.21810961e-001, 1.98300734e-001, 2.96181023e-001, - 2.80671179e-001, 3.65335971e-001, 3.01200524e-002, - 4.74735387e-002, 4.73317206e-002, 5.81393503e-002, - 4.97959147e-004, 9.25677246e-004, 6.12848951e-003, - 5.52322203e-003, -6.98977010e-003, 5.05447388e-002, - 5.19849211e-002, 6.31082058e-002, 2.44418308e-002, - 3.74043286e-002, 4.41478118e-002, 5.20016588e-002, - -9.15296841e-004, 3.32925963e-004, 4.63333167e-003, - 4.71677538e-003, 5.03763848e-004, -1.98037736e-003, - 3.89940687e-003, 4.55256272e-003, -4.74891439e-003, - -3.37945446e-002, 2.23623011e-002, 4.41325083e-002, - -1.02991343e-003, -3.29208039e-002, 2.03422830e-002, - 4.48409244e-002, -5.42168214e-004, -2.88935774e-003, - 2.96523725e-003, 5.25953015e-003, -2.25743614e-002, - -2.00079326e-002, 3.75576131e-002, 3.59028988e-002, - -9.04465988e-002, -2.42162660e-001, 1.78084910e-001, - 3.04124355e-001, 3.02551836e-002, -2.46823534e-001, - 1.30629212e-001, 3.04035693e-001, 9.65639018e-003, - -3.23390178e-002, 2.18496658e-002, 4.57231142e-002, - -2.91546639e-002, 8.89243092e-003, 4.73579057e-002, - 4.03394438e-002, -1.55873299e-001, 3.40573164e-003, - 2.83408970e-001, 3.65057826e-001, 8.14642608e-002, - 6.87353611e-002, 1.58431977e-001, 4.33598638e-001, - 1.31028593e-002, 1.53033426e-002, 2.70468947e-002, - 5.51502816e-002, -1.72201777e-003, 9.69781773e-004, - 5.64512191e-003, 5.11924876e-003, 1.50232029e-003, - 4.48125750e-002, 4.31459099e-002, 5.96158206e-002, - 1.10494606e-002, 4.08019386e-002, 3.12549621e-002, - 5.84650859e-002, -8.80992156e-004, 3.41142761e-003, - 3.92990513e-003, 6.76693860e-003, -1.77282825e-004, - 2.11524288e-003, 5.02387993e-003, 4.27929033e-003, - 1.21628735e-002, 4.76827957e-002, 3.08492519e-002, - 5.84773906e-002, 1.09726505e-003, 4.36249934e-002, - 3.13689150e-002, 5.67705780e-002, -1.40541885e-003, - 1.83197716e-003, 5.84754301e-003, 5.19265467e-003, - 2.82555595e-002, 1.82185192e-002, 5.05466759e-002, - 2.70346794e-002, 2.21898168e-001, 1.89916298e-001, - 2.88308471e-001, 2.60601372e-001, -1.10854115e-002, - 2.88052410e-001, 3.06724578e-001, 3.36208403e-001, - -7.00653866e-002, 1.68290436e-002, 8.52186680e-002, - 3.73817757e-002, 3.85530554e-002, 7.85385072e-003, - 5.89552782e-002, 2.03490499e-002, 1.62852913e-001, - -1.38437254e-002, 2.40799472e-001, 1.20453589e-001, - 7.16571659e-002, -3.60217653e-002, 3.90250564e-001, - 1.39951289e-001, -8.85554403e-002, -3.47383873e-004, - 1.06367908e-001, 2.59297565e-002, 4.34431061e-003, - 9.67808417e-004, 7.29547394e-003, 3.41833103e-003, - 1.71017591e-002, -5.56934625e-003, 3.18434015e-002, - 2.17110403e-002, 2.61576683e-003, -1.68814231e-002, - 5.22397645e-002, 2.86835730e-002, -8.42118077e-003, - 5.20810660e-004, 1.21328514e-002, 3.78960138e-003, - 1.71909895e-004, 3.86715183e-005, 3.93724116e-003, - 2.61972775e-003, 3.39045934e-002, 2.03350149e-002, - 4.36919928e-002, 2.94427928e-002, 1.26175079e-002, - 3.28411683e-002, 5.44092506e-002, 3.84182893e-002, - -4.37767524e-003, 2.12742554e-004, 7.31271366e-003, - 3.37915961e-003, 1.78026576e-002, 1.50541468e-002, - 3.37259807e-002, 2.48233993e-002, 3.17163497e-001, - 1.95933238e-001, 3.65726113e-001, 2.33875200e-001, - -4.01799493e-002, 6.19501770e-002, 3.72328758e-001, - 1.47367761e-001, -4.44300584e-002, -9.96230752e-004, - 6.02653846e-002, 2.18826942e-002, 3.97152603e-002, - 2.25214195e-002, 4.93190698e-002, 3.50312665e-002, - 2.05640063e-001, 1.37335777e-001, 2.66468793e-001, - 2.28158310e-001, -2.07307637e-001, -5.19851744e-002, - 3.11397880e-001, 1.43373057e-001, -3.31479870e-002, - -1.03028084e-003, 5.23997843e-002, 2.36013234e-002, - 4.38164128e-003, 9.46603192e-004, 6.41561113e-003, - 4.46594507e-003, 8.69522151e-003, -2.30209772e-002, - 3.15758474e-002, 3.55651937e-002, -2.76942756e-002, - -2.30062995e-002, 4.22632955e-002, 3.45785022e-002, - -1.67984248e-003, 1.02275889e-003, 5.86266210e-003, - 3.83741548e-003, 1.06833398e-003, 8.31702142e-004, - 4.46159812e-003, 5.47010731e-003, 5.84147265e-003, - 2.32155938e-002, 2.79954877e-002, 5.29279970e-002, - -7.92615116e-003, 2.13255994e-002, 2.81974301e-002, - 4.80505899e-002, -6.78965880e-004, -1.71891457e-004, - 3.70869739e-003, 4.53552464e-003, 1.74840093e-002, - 1.48181280e-003, 3.73642482e-002, 4.35668826e-002, - 1.10922463e-001, -5.16277067e-002, 2.11941466e-001, - 3.69832605e-001, -8.03550109e-002, 8.04162025e-002, - 2.35196128e-001, 2.54111171e-001, -1.99878439e-002, - 1.01381959e-002, 4.04158384e-002, 3.01622953e-002, - 1.68773178e-002, 4.53998102e-003, 3.82013060e-002, - 5.40724397e-002, 6.11022338e-002, 3.93857658e-002, - 1.99431419e-001, 4.96222377e-001, -3.54067632e-003, - -4.67355512e-002, 3.25032413e-001, 3.08213621e-001, - -2.72595100e-002, -5.85700013e-003, 4.61108647e-002, - 3.43926884e-002, 6.01105276e-004, -1.05728942e-003, - 4.60903952e-003, 6.36796979e-003, 3.05198715e-003, - -2.53695697e-002, 3.06176562e-002, 6.04950376e-002, - 3.16481735e-003, -2.21901201e-002, 3.95245142e-002, - 5.49951717e-002, -9.73760267e-004, -4.29980253e-004, - 4.83027287e-003, 5.27476426e-003, 5.04804682e-003, - 6.47991954e-004, 1.07677486e-002, 4.26651724e-003, - -7.55437277e-003, 1.62067972e-002, 2.97986399e-002, - 2.23787092e-002, -1.61217190e-002, 1.06618404e-002, - 3.94266807e-002, 1.82856806e-002, -6.76109083e-003, - -3.69132613e-004, 8.87269620e-003, 2.48449296e-003, - 8.18506628e-002, -1.73311532e-002, 1.05233200e-001, - 3.76114473e-002, -1.22961245e-001, 7.18732104e-002, - 2.98008978e-001, 1.58466205e-001, -1.45222247e-001, - -3.37675889e-003, 2.55448133e-001, 1.03757843e-001, - -5.30952103e-002, -3.58974445e-003, 6.56032115e-002, - 1.77445952e-002, 5.06028868e-002, -1.59144606e-002, - 8.43386054e-002, 3.63386869e-002, -2.65045511e-003, - -2.86469907e-002, 5.60987830e-001, 2.87762076e-001, - -2.21051499e-001, -1.10654160e-002, 3.03568840e-001, - 1.22553244e-001, -4.68913652e-002, -2.01055710e-003, - 6.24820217e-002, 1.68039557e-002, -9.47138178e-004, - 1.63554843e-003, 9.31480713e-003, 4.58995253e-003, - 4.04534228e-002, -3.71799693e-002, 8.47432986e-002, - 5.47914840e-002, -4.47790213e-002, -8.22508708e-003, - 6.29075766e-002, 3.35442983e-002, -4.23039263e-003, - 5.45016192e-005, 7.50059122e-003, 3.43044568e-003, - 7.25447608e-004, 8.74210309e-005, 3.77529557e-003, - 3.87979066e-003, 3.71844098e-002, 2.55364291e-002, - 4.76887785e-002, 4.29058783e-002, 2.09468380e-002, - 3.02380361e-002, 3.67543139e-002, 4.18252982e-002, - 1.60014592e-004, 1.41307514e-003, 3.57161369e-003, - 4.07247525e-003, 2.12622937e-002, 1.95101406e-002, - 3.80740166e-002, 3.53576466e-002, 3.38091195e-001, - 1.32450700e-001, 3.74272048e-001, 2.87900686e-001, - 3.99416313e-002, 6.15144670e-002, 1.55863822e-001, - 1.70051992e-001, -1.36197377e-002, 5.69877727e-003, - 2.42585130e-002, 2.35735998e-002, 4.33196947e-002, - 1.83566697e-002, 5.20903841e-002, 6.29108325e-002, - 1.36462674e-001, 3.05237118e-002, 2.09854364e-001, - 4.79015440e-001, -2.34015957e-002, -1.15609109e-001, - 1.29263312e-001, 2.78856277e-001, -1.09239360e-002, - -1.39875803e-002, 2.47610994e-002, 3.40635553e-002, - 1.39705651e-003, -4.14768001e-003, 4.44820290e-003, - 8.05130880e-003, 8.42157938e-003, -5.25054634e-002, - 2.69808453e-002, 7.81298131e-002, 1.00707803e-002, - -4.98191491e-002, 2.59159803e-002, 7.51152560e-002, - 1.21403753e-003, -4.37847758e-003, 3.48692713e-003, - 8.14371835e-003, -7.45446980e-003, 7.53172091e-004, - 1.18006170e-002, 8.19007587e-003, -1.77534427e-002, - -7.69834369e-002, 4.90998589e-002, 1.36281639e-001, - 7.77797401e-003, -8.84587541e-002, 4.09714356e-002, - 1.63971245e-001, 1.31307112e-003, -5.07162558e-003, - 8.65323003e-003, 1.59333348e-002, -1.10161684e-001, - -1.61198480e-003, 1.25741154e-001, 2.98139434e-002, - -2.73430794e-001, -2.39487900e-003, 3.60573500e-001, - 2.69833118e-001, 3.79244015e-002, -1.67110432e-002, - 2.30266839e-001, 3.36761743e-001, 4.32565659e-002, - -4.95251827e-003, 7.51781911e-002, 4.67584208e-002, - -1.22001179e-001, -8.53351410e-003, 1.36428341e-001, - 2.39765216e-002, -1.80863574e-001, -4.57492564e-003, - 2.90991604e-001, 1.27592847e-001, 3.28647159e-002, - 3.23180817e-002, 2.84825146e-001, 1.32859722e-001, - 3.13459411e-002, 6.57503167e-003, 6.93409666e-002, - 2.90808715e-002, -1.56216063e-002, -1.90001994e-003, - 1.85412411e-002, 4.06023208e-003, -2.13752631e-002, - 5.39143942e-003, 4.14301828e-002, 2.55589038e-002, - 1.10799680e-002, 8.94335005e-003, 4.04287949e-002, - 2.81401016e-002, 2.23116414e-003, 2.98713094e-005, - 8.90087802e-003, 4.23161499e-003, 1.19911958e-004, - -1.41971430e-003, 4.19651624e-003, 4.80509549e-003, - 1.81745645e-003, -1.32776275e-002, 3.03254724e-002, - 5.08002676e-002, -5.40358620e-003, -1.63513105e-002, - 2.57856399e-002, 5.61693460e-002, -8.77005572e-004, - -2.21490324e-003, 3.97921726e-003, 5.51851699e-003, - -3.47679034e-002, -1.91733632e-002, 5.38248941e-002, - 5.49081750e-002, 1.07857876e-001, -2.09192529e-001, - 2.96756804e-001, 5.43811262e-001, -2.06370000e-002, - -1.48320481e-001, 1.75880060e-001, 3.45002979e-001, - 1.27882073e-002, -1.93475112e-002, 3.53497006e-002, - 3.96275632e-002, -2.39074137e-002, 4.35530581e-003, - 4.47298475e-002, 3.97503935e-002, 2.58627045e-003, - 8.13347548e-002, 2.01185912e-001, 2.56234080e-001, - 3.29468981e-003, -5.47402073e-003, 1.76366404e-001, - 2.68243164e-001, 1.66999660e-002, 5.98109793e-003, - 3.66247967e-002, 3.96916717e-002, -1.31595100e-003, - 2.03858232e-004, 4.66672145e-003, 4.47571604e-003, - 1.39705918e-003, 1.01884278e-002, 3.23548652e-002, - 3.76112275e-002, 2.37986399e-003, 1.39465192e-002, - 2.96727233e-002, 3.70467156e-002, 6.93258655e-004, - -6.71735761e-005, 3.84703744e-003, 5.20185195e-003, - 4.61869733e-003, -6.95251161e-004, 1.07208714e-002, - 5.85935498e-003, 3.84886935e-002, 1.70633234e-002, - 4.92920578e-002, 3.34134325e-002, 3.20927211e-004, - 1.13022663e-002, 1.81721486e-002, 2.01777611e-002, - -9.45114938e-004, 9.54437273e-005, 3.65193584e-003, - 2.93838815e-003, 5.91344833e-002, 2.21813247e-002, - 9.01662260e-002, 4.60916683e-002, 1.76128671e-001, - 7.54697770e-002, 2.34983593e-001, 1.54930055e-001, - -2.37480868e-002, 4.89273574e-003, 8.33520293e-002, - 8.48859921e-002, -1.66363306e-002, -3.28867027e-004, - 3.11390627e-002, 1.66322887e-002, 6.09279722e-002, - -2.72116736e-002, 8.13502297e-002, 7.55993277e-002, - 7.93766379e-002, -3.39807868e-001, 1.55834064e-001, - 4.42745358e-001, -4.67118574e-003, -2.91789830e-001, - 9.86690968e-002, 3.82649601e-001, -2.04385575e-002, - -3.64860743e-002, 3.62087414e-002, 5.38093261e-002, - 1.24119909e-003, -6.23045536e-003, 5.45891374e-003, - 2.23511606e-002, 4.61798813e-003, -7.58453906e-002, - 2.50383951e-002, 2.03459457e-001, 5.22784889e-003, - -9.50815901e-002, 2.34812573e-002, 2.15370387e-001, - 7.41192896e-004, -1.29826888e-002, 4.83357906e-003, - 2.80836020e-002, 6.44448213e-004, -1.76497304e-003, - 7.68008409e-003, 6.84937509e-003, -2.46213432e-002, - -7.37072527e-002, 6.05081730e-002, 8.60706121e-002, - 6.87361956e-002, -8.94910321e-002, 8.09561014e-002, - 1.06553979e-001, -2.86013680e-003, -4.04404430e-003, - 1.04707703e-002, 9.17548407e-003, -2.71323696e-002, - -5.18851429e-002, 5.74124977e-002, 6.39104769e-002, - -1.46437660e-001, -1.79545283e-001, 2.65271634e-001, - 2.53487021e-001, 1.58597514e-001, -2.51928270e-001, - 2.83516318e-001, 3.49722326e-001, 4.55268286e-002, - -9.33844820e-002, 7.29614943e-002, 1.08234249e-001, - -1.82391386e-002, 1.27363503e-002, 4.30315025e-002, - 5.11444882e-002, -8.09251219e-002, 5.44424318e-002, - 1.93828300e-001, 2.12206200e-001, 3.56442779e-002, - 1.13769427e-001, 1.87795296e-001, 3.37368309e-001, - 1.66967753e-002, 1.94460656e-002, 4.22576591e-002, - 6.56719506e-002, -1.23184186e-003, 3.62553913e-003, - 7.92597141e-003, 7.67818606e-003, -1.31269181e-002, - 4.74211127e-002, 6.14628829e-002, 7.34005868e-002, - 4.81148846e-002, 6.46985918e-002, 7.94393867e-002, - 9.02144760e-002, -3.80965136e-003, 6.40054699e-003, - 8.04995280e-003, 1.20394947e-002 ] diff --git a/samples/cpp/facerec_at_t.txt b/samples/cpp/facerec_at_t.txt deleted file mode 100644 index c0b8d2330..000000000 --- a/samples/cpp/facerec_at_t.txt +++ /dev/null @@ -1,400 +0,0 @@ -/path/to/at/s13/2.pgm;12 -/path/to/at/s13/7.pgm;12 -/path/to/at/s13/6.pgm;12 -/path/to/at/s13/9.pgm;12 -/path/to/at/s13/5.pgm;12 -/path/to/at/s13/3.pgm;12 -/path/to/at/s13/4.pgm;12 -/path/to/at/s13/10.pgm;12 -/path/to/at/s13/8.pgm;12 -/path/to/at/s13/1.pgm;12 -/path/to/at/s17/2.pgm;16 -/path/to/at/s17/7.pgm;16 -/path/to/at/s17/6.pgm;16 -/path/to/at/s17/9.pgm;16 -/path/to/at/s17/5.pgm;16 -/path/to/at/s17/3.pgm;16 -/path/to/at/s17/4.pgm;16 -/path/to/at/s17/10.pgm;16 -/path/to/at/s17/8.pgm;16 -/path/to/at/s17/1.pgm;16 -/path/to/at/s32/2.pgm;31 -/path/to/at/s32/7.pgm;31 -/path/to/at/s32/6.pgm;31 -/path/to/at/s32/9.pgm;31 -/path/to/at/s32/5.pgm;31 -/path/to/at/s32/3.pgm;31 -/path/to/at/s32/4.pgm;31 -/path/to/at/s32/10.pgm;31 -/path/to/at/s32/8.pgm;31 -/path/to/at/s32/1.pgm;31 -/path/to/at/s10/2.pgm;9 -/path/to/at/s10/7.pgm;9 -/path/to/at/s10/6.pgm;9 -/path/to/at/s10/9.pgm;9 -/path/to/at/s10/5.pgm;9 -/path/to/at/s10/3.pgm;9 -/path/to/at/s10/4.pgm;9 -/path/to/at/s10/10.pgm;9 -/path/to/at/s10/8.pgm;9 -/path/to/at/s10/1.pgm;9 -/path/to/at/s27/2.pgm;26 -/path/to/at/s27/7.pgm;26 -/path/to/at/s27/6.pgm;26 -/path/to/at/s27/9.pgm;26 -/path/to/at/s27/5.pgm;26 -/path/to/at/s27/3.pgm;26 -/path/to/at/s27/4.pgm;26 -/path/to/at/s27/10.pgm;26 -/path/to/at/s27/8.pgm;26 -/path/to/at/s27/1.pgm;26 -/path/to/at/s5/2.pgm;4 -/path/to/at/s5/7.pgm;4 -/path/to/at/s5/6.pgm;4 -/path/to/at/s5/9.pgm;4 -/path/to/at/s5/5.pgm;4 -/path/to/at/s5/3.pgm;4 -/path/to/at/s5/4.pgm;4 -/path/to/at/s5/10.pgm;4 -/path/to/at/s5/8.pgm;4 -/path/to/at/s5/1.pgm;4 -/path/to/at/s20/2.pgm;19 -/path/to/at/s20/7.pgm;19 -/path/to/at/s20/6.pgm;19 -/path/to/at/s20/9.pgm;19 -/path/to/at/s20/5.pgm;19 -/path/to/at/s20/3.pgm;19 -/path/to/at/s20/4.pgm;19 -/path/to/at/s20/10.pgm;19 -/path/to/at/s20/8.pgm;19 -/path/to/at/s20/1.pgm;19 -/path/to/at/s30/2.pgm;29 -/path/to/at/s30/7.pgm;29 -/path/to/at/s30/6.pgm;29 -/path/to/at/s30/9.pgm;29 -/path/to/at/s30/5.pgm;29 -/path/to/at/s30/3.pgm;29 -/path/to/at/s30/4.pgm;29 -/path/to/at/s30/10.pgm;29 -/path/to/at/s30/8.pgm;29 -/path/to/at/s30/1.pgm;29 -/path/to/at/s39/2.pgm;38 -/path/to/at/s39/7.pgm;38 -/path/to/at/s39/6.pgm;38 -/path/to/at/s39/9.pgm;38 -/path/to/at/s39/5.pgm;38 -/path/to/at/s39/3.pgm;38 -/path/to/at/s39/4.pgm;38 -/path/to/at/s39/10.pgm;38 -/path/to/at/s39/8.pgm;38 -/path/to/at/s39/1.pgm;38 -/path/to/at/s35/2.pgm;34 -/path/to/at/s35/7.pgm;34 -/path/to/at/s35/6.pgm;34 -/path/to/at/s35/9.pgm;34 -/path/to/at/s35/5.pgm;34 -/path/to/at/s35/3.pgm;34 -/path/to/at/s35/4.pgm;34 -/path/to/at/s35/10.pgm;34 -/path/to/at/s35/8.pgm;34 -/path/to/at/s35/1.pgm;34 -/path/to/at/s23/2.pgm;22 -/path/to/at/s23/7.pgm;22 -/path/to/at/s23/6.pgm;22 -/path/to/at/s23/9.pgm;22 -/path/to/at/s23/5.pgm;22 -/path/to/at/s23/3.pgm;22 -/path/to/at/s23/4.pgm;22 -/path/to/at/s23/10.pgm;22 -/path/to/at/s23/8.pgm;22 -/path/to/at/s23/1.pgm;22 -/path/to/at/s4/2.pgm;3 -/path/to/at/s4/7.pgm;3 -/path/to/at/s4/6.pgm;3 -/path/to/at/s4/9.pgm;3 -/path/to/at/s4/5.pgm;3 -/path/to/at/s4/3.pgm;3 -/path/to/at/s4/4.pgm;3 -/path/to/at/s4/10.pgm;3 -/path/to/at/s4/8.pgm;3 -/path/to/at/s4/1.pgm;3 -/path/to/at/s9/2.pgm;8 -/path/to/at/s9/7.pgm;8 -/path/to/at/s9/6.pgm;8 -/path/to/at/s9/9.pgm;8 -/path/to/at/s9/5.pgm;8 -/path/to/at/s9/3.pgm;8 -/path/to/at/s9/4.pgm;8 -/path/to/at/s9/10.pgm;8 -/path/to/at/s9/8.pgm;8 -/path/to/at/s9/1.pgm;8 -/path/to/at/s37/2.pgm;36 -/path/to/at/s37/7.pgm;36 -/path/to/at/s37/6.pgm;36 -/path/to/at/s37/9.pgm;36 -/path/to/at/s37/5.pgm;36 -/path/to/at/s37/3.pgm;36 -/path/to/at/s37/4.pgm;36 -/path/to/at/s37/10.pgm;36 -/path/to/at/s37/8.pgm;36 -/path/to/at/s37/1.pgm;36 -/path/to/at/s24/2.pgm;23 -/path/to/at/s24/7.pgm;23 -/path/to/at/s24/6.pgm;23 -/path/to/at/s24/9.pgm;23 -/path/to/at/s24/5.pgm;23 -/path/to/at/s24/3.pgm;23 -/path/to/at/s24/4.pgm;23 -/path/to/at/s24/10.pgm;23 -/path/to/at/s24/8.pgm;23 -/path/to/at/s24/1.pgm;23 -/path/to/at/s19/2.pgm;18 -/path/to/at/s19/7.pgm;18 -/path/to/at/s19/6.pgm;18 -/path/to/at/s19/9.pgm;18 -/path/to/at/s19/5.pgm;18 -/path/to/at/s19/3.pgm;18 -/path/to/at/s19/4.pgm;18 -/path/to/at/s19/10.pgm;18 -/path/to/at/s19/8.pgm;18 -/path/to/at/s19/1.pgm;18 -/path/to/at/s8/2.pgm;7 -/path/to/at/s8/7.pgm;7 -/path/to/at/s8/6.pgm;7 -/path/to/at/s8/9.pgm;7 -/path/to/at/s8/5.pgm;7 -/path/to/at/s8/3.pgm;7 -/path/to/at/s8/4.pgm;7 -/path/to/at/s8/10.pgm;7 -/path/to/at/s8/8.pgm;7 -/path/to/at/s8/1.pgm;7 -/path/to/at/s21/2.pgm;20 -/path/to/at/s21/7.pgm;20 -/path/to/at/s21/6.pgm;20 -/path/to/at/s21/9.pgm;20 -/path/to/at/s21/5.pgm;20 -/path/to/at/s21/3.pgm;20 -/path/to/at/s21/4.pgm;20 -/path/to/at/s21/10.pgm;20 -/path/to/at/s21/8.pgm;20 -/path/to/at/s21/1.pgm;20 -/path/to/at/s1/2.pgm;0 -/path/to/at/s1/7.pgm;0 -/path/to/at/s1/6.pgm;0 -/path/to/at/s1/9.pgm;0 -/path/to/at/s1/5.pgm;0 -/path/to/at/s1/3.pgm;0 -/path/to/at/s1/4.pgm;0 -/path/to/at/s1/10.pgm;0 -/path/to/at/s1/8.pgm;0 -/path/to/at/s1/1.pgm;0 -/path/to/at/s7/2.pgm;6 -/path/to/at/s7/7.pgm;6 -/path/to/at/s7/6.pgm;6 -/path/to/at/s7/9.pgm;6 -/path/to/at/s7/5.pgm;6 -/path/to/at/s7/3.pgm;6 -/path/to/at/s7/4.pgm;6 -/path/to/at/s7/10.pgm;6 -/path/to/at/s7/8.pgm;6 -/path/to/at/s7/1.pgm;6 -/path/to/at/s16/2.pgm;15 -/path/to/at/s16/7.pgm;15 -/path/to/at/s16/6.pgm;15 -/path/to/at/s16/9.pgm;15 -/path/to/at/s16/5.pgm;15 -/path/to/at/s16/3.pgm;15 -/path/to/at/s16/4.pgm;15 -/path/to/at/s16/10.pgm;15 -/path/to/at/s16/8.pgm;15 -/path/to/at/s16/1.pgm;15 -/path/to/at/s36/2.pgm;35 -/path/to/at/s36/7.pgm;35 -/path/to/at/s36/6.pgm;35 -/path/to/at/s36/9.pgm;35 -/path/to/at/s36/5.pgm;35 -/path/to/at/s36/3.pgm;35 -/path/to/at/s36/4.pgm;35 -/path/to/at/s36/10.pgm;35 -/path/to/at/s36/8.pgm;35 -/path/to/at/s36/1.pgm;35 -/path/to/at/s25/2.pgm;24 -/path/to/at/s25/7.pgm;24 -/path/to/at/s25/6.pgm;24 -/path/to/at/s25/9.pgm;24 -/path/to/at/s25/5.pgm;24 -/path/to/at/s25/3.pgm;24 -/path/to/at/s25/4.pgm;24 -/path/to/at/s25/10.pgm;24 -/path/to/at/s25/8.pgm;24 -/path/to/at/s25/1.pgm;24 -/path/to/at/s14/2.pgm;13 -/path/to/at/s14/7.pgm;13 -/path/to/at/s14/6.pgm;13 -/path/to/at/s14/9.pgm;13 -/path/to/at/s14/5.pgm;13 -/path/to/at/s14/3.pgm;13 -/path/to/at/s14/4.pgm;13 -/path/to/at/s14/10.pgm;13 -/path/to/at/s14/8.pgm;13 -/path/to/at/s14/1.pgm;13 -/path/to/at/s34/2.pgm;33 -/path/to/at/s34/7.pgm;33 -/path/to/at/s34/6.pgm;33 -/path/to/at/s34/9.pgm;33 -/path/to/at/s34/5.pgm;33 -/path/to/at/s34/3.pgm;33 -/path/to/at/s34/4.pgm;33 -/path/to/at/s34/10.pgm;33 -/path/to/at/s34/8.pgm;33 -/path/to/at/s34/1.pgm;33 -/path/to/at/s11/2.pgm;10 -/path/to/at/s11/7.pgm;10 -/path/to/at/s11/6.pgm;10 -/path/to/at/s11/9.pgm;10 -/path/to/at/s11/5.pgm;10 -/path/to/at/s11/3.pgm;10 -/path/to/at/s11/4.pgm;10 -/path/to/at/s11/10.pgm;10 -/path/to/at/s11/8.pgm;10 -/path/to/at/s11/1.pgm;10 -/path/to/at/s26/2.pgm;25 -/path/to/at/s26/7.pgm;25 -/path/to/at/s26/6.pgm;25 -/path/to/at/s26/9.pgm;25 -/path/to/at/s26/5.pgm;25 -/path/to/at/s26/3.pgm;25 -/path/to/at/s26/4.pgm;25 -/path/to/at/s26/10.pgm;25 -/path/to/at/s26/8.pgm;25 -/path/to/at/s26/1.pgm;25 -/path/to/at/s18/2.pgm;17 -/path/to/at/s18/7.pgm;17 -/path/to/at/s18/6.pgm;17 -/path/to/at/s18/9.pgm;17 -/path/to/at/s18/5.pgm;17 -/path/to/at/s18/3.pgm;17 -/path/to/at/s18/4.pgm;17 -/path/to/at/s18/10.pgm;17 -/path/to/at/s18/8.pgm;17 -/path/to/at/s18/1.pgm;17 -/path/to/at/s29/2.pgm;28 -/path/to/at/s29/7.pgm;28 -/path/to/at/s29/6.pgm;28 -/path/to/at/s29/9.pgm;28 -/path/to/at/s29/5.pgm;28 -/path/to/at/s29/3.pgm;28 -/path/to/at/s29/4.pgm;28 -/path/to/at/s29/10.pgm;28 -/path/to/at/s29/8.pgm;28 -/path/to/at/s29/1.pgm;28 -/path/to/at/s33/2.pgm;32 -/path/to/at/s33/7.pgm;32 -/path/to/at/s33/6.pgm;32 -/path/to/at/s33/9.pgm;32 -/path/to/at/s33/5.pgm;32 -/path/to/at/s33/3.pgm;32 -/path/to/at/s33/4.pgm;32 -/path/to/at/s33/10.pgm;32 -/path/to/at/s33/8.pgm;32 -/path/to/at/s33/1.pgm;32 -/path/to/at/s12/2.pgm;11 -/path/to/at/s12/7.pgm;11 -/path/to/at/s12/6.pgm;11 -/path/to/at/s12/9.pgm;11 -/path/to/at/s12/5.pgm;11 -/path/to/at/s12/3.pgm;11 -/path/to/at/s12/4.pgm;11 -/path/to/at/s12/10.pgm;11 -/path/to/at/s12/8.pgm;11 -/path/to/at/s12/1.pgm;11 -/path/to/at/s6/2.pgm;5 -/path/to/at/s6/7.pgm;5 -/path/to/at/s6/6.pgm;5 -/path/to/at/s6/9.pgm;5 -/path/to/at/s6/5.pgm;5 -/path/to/at/s6/3.pgm;5 -/path/to/at/s6/4.pgm;5 -/path/to/at/s6/10.pgm;5 -/path/to/at/s6/8.pgm;5 -/path/to/at/s6/1.pgm;5 -/path/to/at/s22/2.pgm;21 -/path/to/at/s22/7.pgm;21 -/path/to/at/s22/6.pgm;21 -/path/to/at/s22/9.pgm;21 -/path/to/at/s22/5.pgm;21 -/path/to/at/s22/3.pgm;21 -/path/to/at/s22/4.pgm;21 -/path/to/at/s22/10.pgm;21 -/path/to/at/s22/8.pgm;21 -/path/to/at/s22/1.pgm;21 -/path/to/at/s15/2.pgm;14 -/path/to/at/s15/7.pgm;14 -/path/to/at/s15/6.pgm;14 -/path/to/at/s15/9.pgm;14 -/path/to/at/s15/5.pgm;14 -/path/to/at/s15/3.pgm;14 -/path/to/at/s15/4.pgm;14 -/path/to/at/s15/10.pgm;14 -/path/to/at/s15/8.pgm;14 -/path/to/at/s15/1.pgm;14 -/path/to/at/s2/2.pgm;1 -/path/to/at/s2/7.pgm;1 -/path/to/at/s2/6.pgm;1 -/path/to/at/s2/9.pgm;1 -/path/to/at/s2/5.pgm;1 -/path/to/at/s2/3.pgm;1 -/path/to/at/s2/4.pgm;1 -/path/to/at/s2/10.pgm;1 -/path/to/at/s2/8.pgm;1 -/path/to/at/s2/1.pgm;1 -/path/to/at/s31/2.pgm;30 -/path/to/at/s31/7.pgm;30 -/path/to/at/s31/6.pgm;30 -/path/to/at/s31/9.pgm;30 -/path/to/at/s31/5.pgm;30 -/path/to/at/s31/3.pgm;30 -/path/to/at/s31/4.pgm;30 -/path/to/at/s31/10.pgm;30 -/path/to/at/s31/8.pgm;30 -/path/to/at/s31/1.pgm;30 -/path/to/at/s28/2.pgm;27 -/path/to/at/s28/7.pgm;27 -/path/to/at/s28/6.pgm;27 -/path/to/at/s28/9.pgm;27 -/path/to/at/s28/5.pgm;27 -/path/to/at/s28/3.pgm;27 -/path/to/at/s28/4.pgm;27 -/path/to/at/s28/10.pgm;27 -/path/to/at/s28/8.pgm;27 -/path/to/at/s28/1.pgm;27 -/path/to/at/s40/2.pgm;39 -/path/to/at/s40/7.pgm;39 -/path/to/at/s40/6.pgm;39 -/path/to/at/s40/9.pgm;39 -/path/to/at/s40/5.pgm;39 -/path/to/at/s40/3.pgm;39 -/path/to/at/s40/4.pgm;39 -/path/to/at/s40/10.pgm;39 -/path/to/at/s40/8.pgm;39 -/path/to/at/s40/1.pgm;39 -/path/to/at/s3/2.pgm;2 -/path/to/at/s3/7.pgm;2 -/path/to/at/s3/6.pgm;2 -/path/to/at/s3/9.pgm;2 -/path/to/at/s3/5.pgm;2 -/path/to/at/s3/3.pgm;2 -/path/to/at/s3/4.pgm;2 -/path/to/at/s3/10.pgm;2 -/path/to/at/s3/8.pgm;2 -/path/to/at/s3/1.pgm;2 -/path/to/at/s38/2.pgm;37 -/path/to/at/s38/7.pgm;37 -/path/to/at/s38/6.pgm;37 -/path/to/at/s38/9.pgm;37 -/path/to/at/s38/5.pgm;37 -/path/to/at/s38/3.pgm;37 -/path/to/at/s38/4.pgm;37 -/path/to/at/s38/10.pgm;37 -/path/to/at/s38/8.pgm;37 -/path/to/at/s38/1.pgm;37 diff --git a/samples/cpp/fern_params.xml b/samples/cpp/fern_params.xml deleted file mode 100644 index d083534e8..000000000 --- a/samples/cpp/fern_params.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - 0 - 31 - INT_MAX - 50 - 9 - 1000 - 0 - diff --git a/samples/cpp/filestorage.cpp b/samples/cpp/filestorage.cpp deleted file mode 100644 index 519fd2b68..000000000 --- a/samples/cpp/filestorage.cpp +++ /dev/null @@ -1,186 +0,0 @@ -/* - * filestorage_sample demonstrate the usage of the opencv serialization functionality - */ - -#include "opencv2/core/core.hpp" -#include -#include - -using std::string; -using std::cout; -using std::endl; -using std::cerr; -using std::ostream; -using namespace cv; - -static void help(char** av) -{ - cout << "\nfilestorage_sample demonstrate the usage of the opencv serialization functionality.\n" - << "usage:\n" - << av[0] << " outputfile.yml.gz\n" - << "\n outputfile above can have many different extenstions, see below." - << "\nThis program demonstrates the use of FileStorage for serialization, that is use << and >> in OpenCV\n" - << "For example, how to create a class and have it serialize, but also how to use it to read and write matrices.\n" - << "FileStorage allows you to serialize to various formats specified by the file end type." - << "\nYou should try using different file extensions.(e.g. yaml yml xml xml.gz yaml.gz etc...)\n" << endl; -} - -struct MyData -{ - MyData() : - A(0), X(0), id() - { - } - explicit MyData(int) : - A(97), X(CV_PI), id("mydata1234") - { - } - int A; - double X; - string id; - void write(FileStorage& fs) const //Write serialization for this class - { - fs << "{" << "A" << A << "X" << X << "id" << id << "}"; - } - void read(const FileNode& node) //Read serialization for this class - { - - A = (int)node["A"]; - X = (double)node["X"]; - id = (string)node["id"]; - } -}; - -//These write and read functions must exist as per the inline functions in operations.hpp -static void write(FileStorage& fs, const std::string&, const MyData& x){ - x.write(fs); -} -static void read(const FileNode& node, MyData& x, const MyData& default_value = MyData()){ - if(node.empty()) - x = default_value; - else - x.read(node); -} - -static ostream& operator<<(ostream& out, const MyData& m){ - out << "{ id = " << m.id << ", "; - out << "X = " << m.X << ", "; - out << "A = " << m.A << "}"; - return out; -} -int main(int ac, char** av) -{ - if (ac != 2) - { - help(av); - return 1; - } - - string filename = av[1]; - - //write - { - FileStorage fs(filename, FileStorage::WRITE); - - cout << "writing images\n"; - fs << "images" << "["; - - fs << "image1.jpg" << "myfi.png" << "baboon.jpg"; - cout << "image1.jpg" << " myfi.png" << " baboon.jpg" << endl; - - fs << "]"; - - cout << "writing mats\n"; - Mat R =Mat_::eye(3, 3),T = Mat_::zeros(3, 1); - cout << "R = " << R << "\n"; - cout << "T = " << T << "\n"; - fs << "R" << R; - fs << "T" << T; - - cout << "writing MyData struct\n"; - MyData m(1); - fs << "mdata" << m; - cout << m << endl; - } - - //read - { - FileStorage fs(filename, FileStorage::READ); - - if (!fs.isOpened()) - { - cerr << "failed to open " << filename << endl; - help(av); - return 1; - } - - FileNode n = fs["images"]; - if (n.type() != FileNode::SEQ) - { - cerr << "images is not a sequence! FAIL" << endl; - return 1; - } - - cout << "reading images\n"; - FileNodeIterator it = n.begin(), it_end = n.end(); - for (; it != it_end; ++it) - { - cout << (string)*it << "\n"; - } - - Mat R, T; - cout << "reading R and T" << endl; - - fs["R"] >> R; - fs["T"] >> T; - - cout << "R = " << R << "\n"; - cout << "T = " << T << endl; - - MyData m; - fs["mdata"] >> m; - - cout << "read mdata\n"; - cout << m << endl; - - cout << "attempting to read mdata_b\n"; //Show default behavior for empty matrix - fs["mdata_b"] >> m; - cout << "read mdata_b\n"; - cout << m << endl; - - } - - cout << "Try opening " << filename << " to see the serialized data." << endl << endl; - - //read from string - { - cout << "Read data from string\n"; - string dataString = - "%YAML:1.0\n" - "mdata:\n" - " A: 97\n" - " X: 3.1415926535897931e+00\n" - " id: mydata1234\n"; - MyData m; - FileStorage fs(dataString, FileStorage::READ | FileStorage::MEMORY); - cout << "attempting to read mdata_b from string\n"; //Show default behavior for empty matrix - fs["mdata"] >> m; - cout << "read mdata\n"; - cout << m << endl; - } - - //write to string - { - cout << "Write data to string\n"; - FileStorage fs(filename, FileStorage::WRITE | FileStorage::MEMORY | FileStorage::FORMAT_YAML); - - cout << "writing MyData struct\n"; - MyData m(1); - fs << "mdata" << m; - cout << m << endl; - string createdString = fs.releaseAndGetString(); - cout << "Created string:\n" << createdString << "\n"; - } - - return 0; -} diff --git a/samples/cpp/fruits.jpg b/samples/cpp/fruits.jpg deleted file mode 100644 index a89b84a58..000000000 Binary files a/samples/cpp/fruits.jpg and /dev/null differ diff --git a/samples/cpp/gencolors.cpp b/samples/cpp/gencolors.cpp deleted file mode 100644 index e95d2a955..000000000 --- a/samples/cpp/gencolors.cpp +++ /dev/null @@ -1,36 +0,0 @@ -#include "opencv2/imgproc/imgproc.hpp" -#include "opencv2/contrib/contrib.hpp" -#include "opencv2/highgui/highgui.hpp" - -#include -#include -#include - -using namespace cv; -using namespace std; - -int main(int argc, char** argv) -{ - if( argc != 2 ) - { - cout << "Colors count should be passed." << endl; - return -1; - } - - int colorsCount = atoi(argv[1]); - vector colors; - theRNG() = (uint64)time(0); - generateColors( colors, colorsCount ); - - int stripWidth = 20; - Mat strips(300, colorsCount*stripWidth, CV_8UC3); - for( int i = 0; i < colorsCount; i++ ) - { - strips.colRange(i*stripWidth, (i+1)*stripWidth) = colors[i]; - } - - imshow( "strips", strips ); - waitKey(); - - return 0; -} diff --git a/samples/cpp/imagelist_creator.cpp b/samples/cpp/imagelist_creator.cpp deleted file mode 100644 index 96114a9c4..000000000 --- a/samples/cpp/imagelist_creator.cpp +++ /dev/null @@ -1,47 +0,0 @@ -/*this creates a yaml or xml list of files from the command line args - */ - -#include "opencv2/core/core.hpp" -#include "opencv2/highgui/highgui.hpp" -#include -#include - -using std::string; -using std::cout; -using std::endl; - -using namespace cv; - -static void help(char** av) -{ - cout << "\nThis creates a yaml or xml list of files from the command line args\n" - "usage:\n./" << av[0] << " imagelist.yaml *.png\n" - << "Try using different extensions.(e.g. yaml yml xml xml.gz etc...)\n" - << "This will serialize this list of images or whatever with opencv's FileStorage framework" << endl; -} - -int main(int ac, char** av) -{ - if (ac < 3) - { - help(av); - return 1; - } - - string outputname = av[1]; - - Mat m = imread(outputname); //check if the output is an image - prevent overwrites! - if(!m.empty()){ - std::cerr << "fail! Please specify an output file, don't want to overwrite you images!" << endl; - help(av); - return 1; - } - - FileStorage fs(outputname, FileStorage::WRITE); - fs << "images" << "["; - for(int i = 2; i < ac; i++){ - fs << string(av[i]); - } - fs << "]"; - return 0; -} diff --git a/samples/cpp/left01.jpg b/samples/cpp/left01.jpg deleted file mode 100644 index 6ade32006..000000000 Binary files a/samples/cpp/left01.jpg and /dev/null differ diff --git a/samples/cpp/left02.jpg b/samples/cpp/left02.jpg deleted file mode 100644 index 457820e90..000000000 Binary files a/samples/cpp/left02.jpg and /dev/null differ diff --git a/samples/cpp/left03.jpg b/samples/cpp/left03.jpg deleted file mode 100644 index 7f3990f4e..000000000 Binary files a/samples/cpp/left03.jpg and /dev/null differ diff --git a/samples/cpp/left04.jpg b/samples/cpp/left04.jpg deleted file mode 100644 index 3144a18f5..000000000 Binary files a/samples/cpp/left04.jpg and /dev/null differ diff --git a/samples/cpp/left05.jpg b/samples/cpp/left05.jpg deleted file mode 100644 index 7b5713180..000000000 Binary files a/samples/cpp/left05.jpg and /dev/null differ diff --git a/samples/cpp/left06.jpg b/samples/cpp/left06.jpg deleted file mode 100644 index 1c6a217cf..000000000 Binary files a/samples/cpp/left06.jpg and /dev/null differ diff --git a/samples/cpp/left07.jpg b/samples/cpp/left07.jpg deleted file mode 100644 index 46acbb9eb..000000000 Binary files a/samples/cpp/left07.jpg and /dev/null differ diff --git a/samples/cpp/left08.jpg b/samples/cpp/left08.jpg deleted file mode 100644 index 0fe764603..000000000 Binary files a/samples/cpp/left08.jpg and /dev/null differ diff --git a/samples/cpp/left09.jpg b/samples/cpp/left09.jpg deleted file mode 100644 index 5d17e9572..000000000 Binary files a/samples/cpp/left09.jpg and /dev/null differ diff --git a/samples/cpp/left11.jpg b/samples/cpp/left11.jpg deleted file mode 100644 index 7ca2a1476..000000000 Binary files a/samples/cpp/left11.jpg and /dev/null differ diff --git a/samples/cpp/left12.jpg b/samples/cpp/left12.jpg deleted file mode 100644 index 897955d77..000000000 Binary files a/samples/cpp/left12.jpg and /dev/null differ diff --git a/samples/cpp/left13.jpg b/samples/cpp/left13.jpg deleted file mode 100644 index e2f060f2f..000000000 Binary files a/samples/cpp/left13.jpg and /dev/null differ diff --git a/samples/cpp/left14.jpg b/samples/cpp/left14.jpg deleted file mode 100644 index 1dec7c682..000000000 Binary files a/samples/cpp/left14.jpg and /dev/null differ diff --git a/samples/cpp/lena.jpg b/samples/cpp/lena.jpg deleted file mode 100644 index f06aa74a5..000000000 Binary files a/samples/cpp/lena.jpg and /dev/null differ diff --git a/samples/cpp/letter-recognition.data b/samples/cpp/letter-recognition.data deleted file mode 100644 index 4dfa6f01a..000000000 --- a/samples/cpp/letter-recognition.data +++ /dev/null @@ -1,20000 +0,0 @@ -T,2,8,3,5,1,8,13,0,6,6,10,8,0,8,0,8 -I,5,12,3,7,2,10,5,5,4,13,3,9,2,8,4,10 -D,4,11,6,8,6,10,6,2,6,10,3,7,3,7,3,9 -N,7,11,6,6,3,5,9,4,6,4,4,10,6,10,2,8 -G,2,1,3,1,1,8,6,6,6,6,5,9,1,7,5,10 -S,4,11,5,8,3,8,8,6,9,5,6,6,0,8,9,7 -B,4,2,5,4,4,8,7,6,6,7,6,6,2,8,7,10 -A,1,1,3,2,1,8,2,2,2,8,2,8,1,6,2,7 -J,2,2,4,4,2,10,6,2,6,12,4,8,1,6,1,7 -M,11,15,13,9,7,13,2,6,2,12,1,9,8,1,1,8 -X,3,9,5,7,4,8,7,3,8,5,6,8,2,8,6,7 -O,6,13,4,7,4,6,7,6,3,10,7,9,5,9,5,8 -G,4,9,6,7,6,7,8,6,2,6,5,11,4,8,7,8 -M,6,9,8,6,9,7,8,6,5,7,5,8,8,9,8,6 -R,5,9,5,7,6,6,11,7,3,7,3,9,2,7,5,11 -F,6,9,5,4,3,10,6,3,5,10,5,7,3,9,6,9 -O,3,4,4,3,2,8,7,7,5,7,6,8,2,8,3,8 -C,7,10,5,5,2,6,8,6,8,11,7,11,2,8,5,9 -T,6,11,6,8,5,6,11,5,6,11,9,4,3,12,2,4 -J,2,2,3,3,1,10,6,3,6,12,4,9,0,7,1,7 -J,1,3,2,2,1,8,8,2,5,14,5,8,0,7,0,7 -H,4,5,5,4,4,7,7,6,6,7,6,8,3,8,3,8 -S,3,2,3,3,2,8,8,7,5,7,5,7,2,8,9,8 -O,6,11,7,8,5,7,6,9,6,7,5,9,4,8,5,5 -J,3,6,4,4,2,6,6,4,4,14,8,12,1,6,1,6 -C,6,11,7,8,3,7,8,7,11,4,7,14,1,7,4,8 -M,7,11,11,8,9,3,8,4,5,10,11,10,10,9,5,7 -W,12,14,12,8,5,9,10,4,3,5,10,7,10,12,2,6 -H,6,9,8,7,6,8,6,6,7,7,7,9,6,8,4,8 -G,3,6,4,4,2,6,6,5,5,6,6,9,2,8,4,8 -L,2,3,3,4,1,0,1,5,6,0,0,6,0,8,0,8 -L,1,3,3,1,1,6,4,1,7,8,3,10,0,7,2,9 -X,8,12,8,6,4,3,10,4,7,12,11,9,3,7,3,4 -B,5,9,7,7,10,9,8,4,4,6,8,6,6,11,8,7 -M,6,9,9,7,6,5,6,3,5,10,9,9,8,5,2,7 -G,4,7,6,5,3,6,6,6,8,6,5,9,3,10,4,8 -O,4,7,5,5,3,7,7,8,6,7,6,8,3,8,3,8 -P,3,6,4,4,2,4,14,8,1,11,6,3,0,10,4,8 -G,4,9,5,6,6,8,5,4,3,7,5,11,6,8,5,11 -E,3,4,3,6,2,3,8,6,10,7,6,15,0,8,7,8 -X,5,11,8,8,4,8,8,1,8,10,5,7,3,8,4,8 -E,3,7,4,5,4,7,7,5,8,8,8,9,3,9,6,9 -X,4,6,7,4,3,9,7,2,8,11,3,7,3,8,4,9 -G,4,5,5,8,3,7,6,8,8,6,6,10,1,8,6,11 -V,7,9,6,5,2,8,10,4,5,8,10,5,4,12,3,8 -X,4,10,5,7,5,8,7,3,8,5,6,6,3,8,6,8 -W,5,9,6,7,8,7,9,5,3,7,9,8,6,8,3,8 -G,1,3,2,1,1,7,7,5,6,7,5,10,1,9,3,9 -R,8,10,8,6,6,7,7,3,5,8,4,8,6,6,7,7 -S,3,9,4,7,2,7,5,6,10,5,6,10,0,9,9,8 -Y,7,11,9,8,8,9,5,6,4,7,8,8,3,9,8,3 -L,3,6,3,4,1,1,0,6,6,0,1,5,0,8,0,8 -Y,2,4,4,3,2,6,10,1,7,8,11,8,1,11,2,7 -J,4,5,6,6,5,8,10,4,4,7,7,9,3,7,7,5 -S,4,9,5,6,4,7,8,7,7,8,4,7,2,7,9,8 -Q,6,9,7,11,7,8,5,7,5,9,6,9,3,8,6,8 -Q,3,5,5,4,4,9,3,4,3,8,4,9,3,6,4,8 -D,2,6,3,4,2,6,7,10,8,6,6,6,3,8,3,8 -C,6,10,4,5,2,6,9,6,6,11,7,7,2,9,5,9 -L,5,10,6,8,5,9,3,2,6,9,2,9,2,5,3,9 -N,3,3,3,5,2,7,7,13,2,5,6,8,5,8,0,8 -C,2,3,3,1,1,5,9,4,6,11,9,11,1,9,2,8 -E,6,9,4,4,2,7,7,4,7,10,6,10,1,9,7,9 -X,4,9,5,6,5,7,6,3,5,6,6,9,2,8,8,8 -H,3,3,4,1,2,8,7,5,6,7,6,8,5,8,3,7 -L,2,3,2,4,1,0,1,5,6,0,0,6,0,8,0,8 -H,3,5,5,4,3,7,8,3,6,10,6,8,3,8,3,8 -E,2,3,3,2,2,7,7,5,7,7,6,8,2,8,5,10 -Y,5,10,6,7,6,9,6,6,4,7,8,7,6,9,8,3 -H,8,12,8,6,4,9,8,4,5,8,4,5,6,9,5,9 -Q,5,10,5,5,4,9,6,5,6,10,6,7,4,8,9,9 -Q,3,8,5,7,3,8,7,9,6,6,6,9,3,8,5,9 -Q,4,6,6,4,5,8,5,6,4,6,7,10,4,7,5,9 -J,2,8,3,6,1,13,3,8,4,13,3,11,1,6,0,8 -J,4,7,5,5,2,8,9,1,7,14,5,6,0,8,1,8 -D,4,5,5,4,3,7,7,7,7,7,6,5,2,8,3,7 -R,2,6,4,4,3,6,7,5,5,6,5,7,3,7,5,8 -M,4,5,7,4,4,6,6,3,4,9,9,10,7,5,2,8 -A,3,7,5,5,3,12,2,3,2,10,2,9,2,6,3,8 -N,3,5,4,4,2,7,8,5,4,7,7,7,6,9,2,5 -M,6,10,9,7,8,3,7,4,5,10,11,10,7,9,3,7 -P,8,14,7,8,4,5,10,6,3,12,5,4,4,10,4,8 -C,6,12,5,7,4,8,5,4,3,9,9,11,4,9,8,10 -P,6,10,8,8,7,8,5,7,5,7,6,6,3,9,8,9 -N,2,3,3,1,1,5,9,3,3,10,8,8,4,8,0,8 -W,3,4,4,3,2,9,10,3,2,5,9,7,6,11,0,8 -V,3,8,5,6,6,8,7,4,1,8,7,8,5,10,4,7 -V,6,9,9,8,10,8,7,5,5,7,6,8,8,9,9,3 -M,6,7,9,5,7,4,7,3,5,10,10,11,8,6,3,7 -E,4,8,5,6,4,7,7,4,8,11,8,9,2,9,5,7 -N,6,11,8,8,9,5,8,3,4,8,8,9,7,9,5,4 -Y,8,10,8,7,4,3,10,3,7,11,12,6,1,11,3,5 -W,4,8,5,6,3,6,8,4,1,7,8,8,8,9,0,8 -O,6,7,8,6,6,6,6,5,6,8,5,8,3,6,5,6 -N,4,4,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -H,4,8,5,6,5,7,10,8,5,8,5,6,3,6,7,11 -O,4,7,5,5,3,8,7,8,5,10,6,8,3,8,3,8 -N,4,8,5,6,4,7,7,9,4,6,4,6,3,7,3,8 -H,4,9,5,6,2,7,6,15,1,7,7,8,3,8,0,8 -U,7,11,8,9,4,3,9,6,7,11,11,10,3,9,2,6 -Y,2,7,3,5,1,6,10,0,3,7,11,8,1,11,0,8 -S,6,8,7,6,4,6,9,4,8,11,7,6,2,8,5,5 -S,5,9,6,7,5,7,7,7,5,7,6,7,2,8,9,8 -T,2,3,2,2,1,7,11,2,6,7,10,8,1,11,1,7 -C,2,3,3,2,1,4,7,4,6,10,9,13,1,9,2,7 -V,4,10,7,7,2,9,8,5,3,5,14,8,3,9,0,8 -T,5,8,5,6,3,6,12,4,7,12,9,4,2,12,2,4 -K,7,12,6,6,3,7,8,2,7,9,7,8,5,8,3,7 -D,3,8,4,6,4,7,8,7,6,7,7,5,3,8,3,7 -W,2,1,3,1,1,7,8,4,0,7,8,8,6,10,0,8 -I,2,9,3,7,2,8,7,0,7,13,6,9,0,8,1,8 -E,3,8,3,6,2,3,7,6,10,7,6,14,0,8,7,8 -F,6,9,8,7,4,6,12,6,6,13,7,3,2,9,2,5 -I,3,9,4,7,3,7,7,0,7,13,6,8,0,8,1,8 -H,5,10,7,8,8,7,7,6,6,7,6,9,3,8,4,8 -U,4,7,4,5,2,7,5,13,5,7,14,7,3,9,0,8 -C,2,3,3,2,1,6,8,7,7,9,7,12,1,10,3,9 -F,5,9,6,7,7,7,6,6,4,7,7,8,5,10,9,12 -A,3,8,5,6,3,9,2,2,3,8,2,8,2,6,3,7 -Z,3,7,5,5,3,7,8,2,9,11,7,7,1,8,6,7 -X,3,7,5,5,2,10,5,2,8,10,1,7,3,7,3,10 -N,3,3,5,2,2,5,10,3,4,10,8,7,5,8,1,8 -R,6,9,5,4,3,10,6,5,5,10,2,8,6,6,4,9 -B,3,3,3,4,3,7,7,5,5,7,6,6,5,8,5,10 -B,5,9,7,7,7,8,8,3,6,10,5,6,3,7,6,8 -U,5,6,5,4,2,5,8,6,8,9,8,8,3,9,2,5 -J,4,4,6,5,4,8,9,4,5,7,6,9,3,7,8,8 -F,3,7,4,5,2,1,11,4,4,11,11,8,0,8,2,7 -M,6,8,9,6,6,11,6,2,5,9,3,6,9,7,2,9 -H,1,1,2,1,1,7,7,12,1,7,6,8,3,8,0,8 -A,2,1,4,2,1,8,1,2,2,7,2,8,2,5,2,7 -O,5,10,4,5,3,6,6,6,2,9,6,9,5,9,4,8 -E,1,0,1,1,1,4,7,5,8,7,6,13,0,8,6,10 -U,3,3,3,1,1,5,8,5,7,10,9,8,3,10,2,6 -A,3,7,5,5,3,10,4,1,2,8,3,9,2,4,2,7 -X,4,8,5,6,3,5,8,1,8,10,9,9,2,9,3,6 -S,5,8,7,6,4,8,8,4,9,11,3,8,2,6,4,9 -J,1,3,2,2,1,10,7,1,5,11,4,8,0,7,0,7 -K,5,11,8,8,5,6,7,2,7,10,7,10,4,8,4,8 -I,2,6,2,4,1,9,5,0,6,13,5,9,0,8,1,8 -P,7,11,10,8,6,6,11,3,6,13,6,3,0,10,3,8 -T,2,1,2,1,0,8,15,1,4,6,10,8,0,8,0,8 -C,1,1,2,2,1,6,8,6,6,9,7,12,1,9,3,10 -H,4,9,4,7,4,7,8,13,1,7,5,8,3,8,0,8 -A,2,4,4,3,2,10,2,2,2,9,2,9,2,7,3,9 -L,6,11,9,8,11,7,7,3,6,6,7,11,6,11,9,7 -T,3,6,4,4,3,7,12,4,6,7,11,8,2,12,1,7 -A,2,8,4,6,2,12,2,4,3,11,2,10,3,6,3,9 -V,3,9,5,7,3,8,9,4,1,6,12,8,2,10,0,8 -U,5,7,6,5,5,8,8,8,5,6,7,9,4,8,4,5 -I,2,9,2,6,3,7,7,0,7,7,6,8,0,8,2,8 -Z,8,14,8,8,5,8,5,2,9,12,6,9,3,7,6,7 -V,4,7,6,5,6,8,8,4,2,8,7,8,7,11,5,8 -M,5,9,7,6,7,9,7,5,5,6,7,6,10,7,4,6 -L,4,8,6,6,4,6,5,2,8,7,2,8,1,6,3,7 -O,3,3,5,5,2,9,6,9,7,7,5,10,3,8,4,8 -B,4,2,5,4,4,7,7,5,6,7,6,6,2,8,7,10 -A,8,15,7,8,4,8,2,3,2,8,5,12,5,4,5,5 -K,6,9,9,6,7,9,6,1,7,10,3,8,3,7,3,9 -H,3,7,4,5,4,7,7,5,6,7,6,8,3,8,3,8 -T,7,9,7,7,5,6,10,1,8,11,9,5,2,9,3,4 -W,6,5,7,4,4,4,11,2,2,9,9,8,7,11,1,7 -F,3,8,3,5,1,1,12,4,5,12,11,8,0,8,2,6 -A,3,3,5,4,1,7,6,3,0,7,0,8,2,7,1,8 -E,3,8,3,6,3,3,6,5,9,5,4,13,0,8,6,9 -M,4,9,5,7,4,7,7,12,1,7,9,8,8,6,0,8 -B,4,9,5,7,6,7,8,9,6,7,6,6,2,8,8,10 -M,3,7,5,5,6,7,8,6,4,6,6,8,5,8,7,9 -Y,6,9,6,7,4,5,8,0,8,8,9,5,2,11,4,4 -V,4,9,6,7,3,6,12,3,4,7,12,9,3,10,1,8 -S,2,8,3,6,3,8,8,7,6,7,4,6,2,7,8,8 -C,2,1,2,2,1,6,8,7,7,8,7,12,1,9,4,10 -H,4,9,6,6,8,7,7,6,3,7,6,7,8,7,9,9 -U,5,8,5,6,4,8,6,11,4,8,13,7,3,9,0,8 -P,6,10,6,6,4,7,10,5,2,11,5,4,4,11,5,7 -Z,3,8,4,6,2,7,7,4,13,10,6,8,0,8,8,8 -E,3,4,5,2,2,7,7,2,8,11,7,9,2,8,4,8 -N,5,9,7,6,4,4,10,3,4,9,10,9,5,8,1,8 -P,6,10,5,6,3,5,9,6,3,10,5,6,5,9,4,7 -H,4,5,5,4,4,7,7,6,6,7,6,7,3,8,3,6 -T,6,11,6,8,5,6,11,3,7,11,9,5,2,12,2,4 -B,5,5,5,8,4,7,9,10,8,7,5,7,2,8,9,10 -U,5,10,6,7,2,7,4,14,6,7,15,8,3,9,0,8 -S,3,4,4,6,2,8,8,6,9,5,5,5,0,8,9,7 -F,5,6,5,8,2,1,14,5,3,12,9,5,0,8,3,6 -J,3,9,4,7,4,9,6,1,6,11,4,7,0,6,1,6 -R,3,6,4,4,4,6,7,5,5,7,6,7,3,7,4,9 -E,3,2,3,4,3,7,8,5,7,7,5,9,2,8,5,10 -P,6,9,6,4,4,8,9,5,3,10,5,5,5,10,5,6 -I,2,2,1,4,1,7,7,1,7,7,6,8,0,8,3,8 -K,7,10,9,8,9,7,7,5,5,7,6,7,7,6,9,13 -D,4,10,6,7,4,8,6,8,7,4,5,3,3,8,4,8 -B,4,7,6,5,7,9,6,4,4,6,6,7,7,8,6,7 -H,5,10,7,8,6,7,9,8,5,8,5,6,3,7,7,10 -M,7,10,10,7,7,9,6,2,5,9,5,7,8,6,2,8 -P,6,11,7,8,3,4,13,9,2,10,6,4,1,10,4,8 -O,4,8,6,6,4,8,5,8,4,7,5,8,3,8,3,8 -S,2,8,3,6,3,8,7,7,5,7,6,7,2,9,8,8 -K,4,7,6,5,4,3,8,3,7,11,11,12,3,8,3,5 -V,7,10,7,8,3,3,11,4,4,10,12,8,3,10,1,8 -F,7,11,10,8,5,6,11,2,7,14,7,4,1,10,2,7 -Y,3,4,5,6,1,6,10,3,2,9,13,8,1,11,0,8 -D,4,6,6,4,3,11,6,3,8,11,3,6,3,8,3,9 -Z,1,0,1,1,0,7,7,2,10,8,6,8,0,8,6,8 -Q,3,5,3,6,3,7,8,6,3,8,8,9,3,8,5,7 -S,8,14,8,8,4,9,4,4,4,13,5,8,3,10,3,8 -B,5,7,7,5,6,8,6,5,6,9,6,7,3,9,6,10 -K,8,13,9,7,5,6,7,3,6,10,8,10,6,10,4,7 -V,3,10,5,7,2,5,8,5,3,9,14,8,3,10,0,8 -B,4,7,4,5,3,6,7,9,7,7,6,7,2,8,9,10 -Y,2,2,4,4,2,6,10,1,7,7,11,9,1,11,1,8 -O,3,4,4,3,2,7,7,7,5,7,6,8,2,8,3,8 -Z,6,10,8,7,5,8,6,3,10,12,4,9,1,7,6,9 -L,2,3,3,2,1,6,4,1,8,7,2,10,0,7,2,8 -J,1,3,2,2,1,10,6,2,6,12,4,9,0,7,1,7 -Z,1,3,3,2,1,7,8,1,9,11,7,7,1,8,5,7 -A,3,5,5,7,2,7,7,3,1,6,0,8,3,7,1,8 -L,3,5,4,5,3,8,7,4,5,7,6,8,3,8,7,10 -J,2,5,3,3,1,10,7,1,7,12,3,7,0,7,1,7 -Q,5,6,6,8,5,8,7,6,3,7,7,12,3,8,6,8 -N,1,3,2,1,1,7,8,5,3,7,7,7,4,8,1,6 -Z,2,6,3,4,1,7,7,3,13,9,6,8,0,8,8,8 -E,4,9,5,7,3,3,7,6,11,7,6,15,0,8,7,7 -J,4,7,3,10,3,9,7,3,3,11,4,5,3,8,6,9 -D,4,8,5,6,3,5,7,10,10,6,5,6,3,8,4,8 -O,5,10,6,8,5,7,8,9,6,8,8,6,4,8,5,10 -L,3,6,4,4,2,5,4,3,8,3,2,6,1,6,2,5 -V,4,5,5,4,2,4,12,4,4,11,11,6,2,10,1,8 -X,6,10,9,8,6,7,7,0,8,9,6,8,3,8,4,7 -J,5,8,6,6,3,6,6,4,5,14,8,12,1,6,1,7 -N,7,10,10,8,5,7,8,3,5,10,6,7,7,8,1,8 -H,3,5,5,7,4,10,11,3,2,7,8,8,3,10,7,9 -A,2,7,4,5,3,13,3,3,2,10,1,8,2,6,2,8 -P,4,6,5,9,9,8,7,5,0,7,6,7,6,10,6,9 -A,4,9,6,6,2,10,5,3,1,8,1,9,2,7,2,8 -F,4,8,5,6,3,5,10,4,6,11,10,5,2,10,3,5 -X,3,4,6,3,2,7,7,1,9,10,6,8,2,8,3,7 -D,5,11,6,9,4,5,8,11,9,8,7,5,3,8,4,8 -V,3,7,5,5,3,9,11,2,2,4,10,8,2,12,1,8 -P,7,10,6,5,4,10,7,4,4,12,4,5,4,11,5,9 -F,5,9,6,7,6,6,9,4,6,9,9,6,5,9,3,6 -P,6,11,9,8,5,8,10,7,5,10,4,3,3,10,4,8 -Y,4,10,6,8,2,9,11,0,4,6,11,8,0,10,0,8 -W,3,3,4,4,2,5,8,4,1,7,9,8,7,10,0,8 -P,6,9,8,7,5,6,11,7,3,11,5,3,2,10,4,8 -J,5,6,7,7,6,7,8,4,5,7,7,8,4,6,8,6 -E,4,2,4,4,3,8,7,6,10,6,5,9,2,8,6,8 -S,4,8,5,6,3,7,5,6,9,5,6,10,0,9,9,8 -E,3,7,3,5,2,3,8,6,11,7,5,14,0,8,7,8 -B,5,9,7,7,6,7,9,5,6,10,6,6,3,8,7,8 -I,1,9,1,7,1,7,7,0,9,7,6,8,0,8,3,8 -S,6,8,7,6,4,9,6,4,6,10,3,8,2,8,5,10 -S,3,8,4,6,3,8,6,8,6,7,8,9,2,10,9,8 -C,3,7,4,5,2,5,8,6,7,6,8,13,1,8,4,10 -M,8,10,11,8,9,9,6,2,5,9,4,7,11,9,3,8 -P,9,10,7,5,3,6,11,6,2,11,5,5,4,10,4,8 -R,2,4,4,3,3,7,8,4,4,9,5,8,2,6,3,10 -U,3,8,5,6,6,8,7,4,4,6,7,8,7,9,5,6 -U,6,6,6,4,3,4,8,5,8,11,11,9,3,9,2,6 -D,3,8,4,6,2,5,7,10,8,7,7,5,3,8,4,8 -U,2,1,3,1,1,7,5,11,5,7,14,8,3,10,0,8 -J,2,5,3,4,2,10,7,2,6,11,3,7,1,6,2,7 -Z,7,13,7,7,5,6,7,2,9,11,6,8,4,5,8,6 -F,5,11,7,8,6,7,9,3,6,12,7,6,3,9,2,7 -V,1,0,2,1,0,8,9,4,2,7,12,8,2,10,0,8 -M,6,5,8,4,7,6,9,5,3,6,4,8,13,8,5,7 -U,3,6,4,4,1,7,5,13,5,7,13,8,3,9,0,8 -B,3,7,4,5,5,7,7,4,6,6,6,6,2,8,5,10 -L,4,8,6,6,4,6,5,1,9,7,2,10,0,6,3,8 -T,4,10,5,8,3,8,13,0,5,7,10,8,0,8,0,8 -D,8,12,8,6,4,9,4,4,6,12,3,8,5,6,5,10 -T,6,11,6,8,4,6,10,1,10,11,9,5,2,8,4,4 -O,5,8,7,6,4,7,5,8,4,6,4,7,3,9,4,9 -T,1,0,2,1,0,7,14,1,4,7,10,8,0,8,0,8 -U,4,3,5,2,2,5,8,5,7,10,10,9,3,9,2,6 -D,2,4,4,2,2,9,6,4,6,11,4,6,2,8,3,8 -R,4,8,5,5,3,5,11,8,3,7,4,8,3,7,6,11 -G,7,10,7,7,5,5,7,7,6,9,8,10,2,9,5,9 -D,2,1,2,2,1,6,7,8,7,6,6,6,2,8,3,8 -S,3,8,4,6,4,7,7,7,5,7,6,8,2,8,8,8 -S,7,10,9,8,10,9,5,5,4,9,6,9,6,9,12,11 -M,6,10,9,8,8,7,7,2,4,9,7,8,8,6,2,8 -M,4,8,6,6,8,9,6,2,2,8,4,8,7,7,2,5 -D,6,7,8,6,6,5,7,6,7,7,4,7,3,6,5,6 -Z,4,9,6,7,4,8,6,2,9,12,5,9,3,6,8,8 -W,4,9,7,7,5,9,8,4,1,6,9,8,7,11,0,8 -C,2,1,3,2,1,6,8,6,7,7,8,12,1,9,4,10 -K,3,6,4,4,4,6,7,3,7,6,6,9,3,8,6,10 -J,6,9,9,7,5,8,5,7,7,8,6,7,2,6,4,6 -A,6,9,8,8,8,8,7,3,5,7,8,8,6,8,4,5 -D,5,12,5,6,4,8,7,3,6,10,5,7,5,8,7,6 -C,4,8,6,6,4,8,8,8,6,7,6,8,4,7,4,8 -V,3,4,4,3,1,4,12,3,3,10,11,7,2,11,1,8 -S,4,7,4,5,2,9,10,6,9,5,6,6,0,7,8,9 -F,4,9,6,6,4,9,8,1,6,13,5,5,1,10,2,9 -A,5,10,7,8,5,8,3,3,1,7,1,8,5,9,5,8 -B,3,2,4,3,3,8,7,5,6,7,6,6,2,8,6,9 -N,2,3,3,2,2,7,9,5,4,7,6,7,5,9,2,7 -U,6,10,5,6,3,6,6,4,4,6,7,8,5,5,2,8 -S,4,10,5,8,5,7,7,5,8,5,6,8,0,8,9,8 -Q,2,5,3,6,3,8,8,7,2,5,7,10,3,9,5,9 -F,4,8,4,5,1,1,13,5,5,12,11,7,0,8,2,6 -F,4,9,6,6,5,5,10,4,6,10,10,6,2,10,3,6 -X,5,10,8,8,4,8,7,4,10,6,6,8,4,6,8,9 -A,3,7,5,5,3,11,3,2,2,8,2,9,3,4,2,8 -B,4,9,4,6,3,6,7,9,7,7,6,7,2,8,9,10 -O,5,9,6,7,5,7,7,8,7,7,6,7,2,8,3,8 -J,2,6,3,4,1,14,1,6,5,14,2,11,0,7,0,8 -H,4,8,5,5,2,7,5,15,1,7,9,8,3,8,0,8 -M,6,9,7,4,3,6,9,5,5,4,4,10,8,7,2,8 -I,3,7,4,5,2,7,7,0,7,13,6,8,0,8,1,7 -W,6,10,6,8,6,2,10,2,3,10,9,8,7,11,2,6 -N,3,6,4,4,3,6,7,8,5,7,5,7,3,7,3,8 -A,1,3,2,2,1,10,3,2,1,9,2,9,1,6,1,8 -S,2,3,4,1,1,7,8,2,6,10,5,7,1,8,4,8 -P,1,0,1,0,0,5,10,6,1,9,6,5,0,9,2,8 -D,6,9,8,8,8,7,6,5,7,7,5,9,6,5,9,4 -M,7,9,10,7,6,5,6,4,5,11,10,11,11,5,4,8 -T,4,8,5,6,5,8,11,3,6,6,11,8,3,12,1,7 -L,3,6,4,4,2,5,5,1,9,6,2,11,0,8,3,7 -X,3,6,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -G,2,4,3,6,2,7,7,8,6,5,7,9,2,7,5,11 -D,6,10,8,8,5,10,5,4,8,11,3,7,4,6,4,9 -E,3,4,4,6,2,3,8,6,10,7,6,14,0,8,7,7 -N,2,3,2,1,1,6,9,6,3,8,7,8,4,9,1,7 -G,2,4,3,3,2,6,6,6,5,6,6,9,2,8,4,8 -V,7,10,6,8,3,2,11,5,5,12,12,8,2,10,1,8 -A,2,7,4,4,2,7,3,3,2,7,2,8,3,7,2,8 -E,5,9,4,4,2,8,7,4,4,10,5,10,3,8,7,10 -K,4,5,5,8,2,3,6,7,3,7,8,12,3,8,3,10 -M,6,9,9,6,6,5,7,3,5,10,10,9,8,6,3,8 -L,5,11,5,6,3,7,5,3,5,12,7,11,3,8,6,9 -T,5,6,5,4,2,5,12,3,8,12,9,4,1,11,2,4 -G,2,4,4,3,2,7,6,6,6,6,6,10,2,9,4,9 -J,2,4,4,3,1,8,8,2,7,15,5,8,0,7,1,8 -F,5,10,5,7,2,1,14,5,4,12,10,6,0,8,2,5 -W,7,8,7,6,6,6,11,5,2,9,6,6,8,13,4,4 -A,3,6,5,4,3,12,3,2,2,9,2,9,2,6,2,8 -K,6,11,8,8,5,9,5,1,7,10,3,9,5,9,5,11 -P,1,1,2,2,1,5,10,4,4,10,8,4,1,9,3,7 -M,7,6,9,5,9,7,7,5,4,6,5,8,10,8,5,5 -O,2,6,3,4,2,8,7,7,5,7,6,9,2,8,3,8 -S,4,11,5,8,3,6,6,6,9,4,6,9,0,9,9,8 -C,4,6,6,5,5,4,7,3,6,6,6,10,4,10,7,7 -O,1,0,2,1,0,8,7,6,4,7,6,8,2,8,3,8 -Z,2,1,3,2,1,7,7,5,9,6,6,9,1,8,7,8 -X,4,9,6,7,6,9,7,3,6,7,4,5,6,6,9,8 -W,4,4,5,3,3,6,11,5,2,8,7,6,6,11,2,6 -B,4,9,4,6,5,6,6,8,6,6,6,7,2,8,7,9 -C,6,11,6,8,4,4,8,5,6,12,10,11,2,10,3,7 -F,2,4,3,3,2,5,10,3,5,10,9,5,1,10,3,6 -I,1,4,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -B,1,3,2,2,1,8,7,3,5,10,5,7,2,8,3,9 -P,3,4,5,2,2,8,9,3,5,13,4,3,1,10,3,8 -K,11,14,10,8,4,6,8,3,7,9,8,10,6,8,4,6 -U,4,5,5,4,2,5,8,5,8,10,8,8,3,9,3,5 -N,3,8,4,6,2,7,7,14,2,5,6,8,5,8,0,8 -Y,4,11,6,8,1,7,11,2,3,8,12,8,1,11,0,8 -I,3,5,5,6,4,8,8,4,4,7,6,8,3,7,8,8 -Q,8,15,7,8,4,8,5,4,9,11,4,10,3,6,9,9 -Q,4,5,4,7,4,9,7,6,2,8,6,11,3,9,6,8 -Z,1,0,1,0,0,8,7,2,9,8,6,8,0,8,5,8 -F,4,5,5,6,5,7,9,5,4,8,6,7,4,9,8,7 -M,8,10,11,8,8,9,6,2,5,9,6,7,8,6,2,8 -D,4,7,5,5,2,5,7,10,9,7,6,5,3,8,4,8 -N,2,3,3,1,1,8,9,3,4,10,4,6,4,9,1,7 -W,5,10,8,8,5,3,10,3,3,9,10,9,8,11,1,8 -U,4,9,4,6,4,7,5,13,5,7,10,8,3,9,0,8 -G,6,11,8,9,6,6,6,7,5,5,6,12,5,7,5,6 -G,7,11,9,8,11,8,5,4,3,6,5,10,8,7,9,13 -O,5,10,4,5,3,7,7,5,4,7,4,7,5,8,5,8 -U,2,6,3,4,1,8,6,13,5,7,13,8,3,9,0,8 -K,6,10,8,8,8,6,7,5,3,7,5,8,5,7,10,8 -W,4,8,6,6,3,4,8,5,1,7,9,8,8,10,0,8 -K,5,7,7,5,5,5,7,2,6,10,8,11,3,8,3,8 -E,5,11,4,6,2,9,6,4,6,10,5,9,1,10,7,9 -V,3,6,5,4,1,9,8,4,2,5,14,8,3,10,0,8 -R,8,12,8,7,6,9,6,3,5,9,4,8,6,8,6,8 -Z,4,11,5,8,5,9,6,6,10,7,5,6,2,7,8,8 -S,4,10,6,7,4,7,8,3,7,10,5,7,2,6,5,8 -N,3,6,5,4,5,7,8,3,3,8,7,8,5,9,5,4 -X,5,11,8,8,4,5,8,2,8,10,11,9,3,9,4,6 -I,3,6,4,4,2,5,7,3,7,7,6,12,0,8,4,9 -Q,1,2,2,3,1,8,7,4,1,7,8,10,2,9,3,9 -N,10,15,9,8,4,7,9,4,5,3,5,10,6,10,2,7 -C,5,7,5,5,3,6,7,6,8,12,8,12,2,10,4,7 -Q,6,9,5,4,3,10,4,4,7,11,3,10,3,7,7,11 -N,7,10,9,8,7,7,7,8,6,7,5,6,4,8,4,8 -K,6,9,8,8,8,7,7,2,4,7,3,9,7,4,9,10 -S,8,12,8,7,4,5,10,4,5,14,8,6,2,9,3,7 -E,2,3,3,2,1,6,8,2,8,11,8,8,1,8,4,7 -D,4,8,6,6,8,9,7,5,6,7,5,6,5,6,8,7 -X,4,4,5,5,1,7,7,4,4,7,6,8,3,8,4,8 -C,1,0,2,1,0,7,7,6,7,7,6,13,0,8,4,10 -J,5,9,7,7,3,9,5,4,6,15,4,10,1,6,0,7 -B,5,7,7,5,5,7,6,6,7,8,7,6,3,9,8,7 -D,5,9,5,7,5,5,7,9,7,6,5,5,2,8,3,8 -R,7,10,7,5,5,7,6,3,5,8,4,9,6,8,6,7 -Z,2,1,2,1,1,7,7,3,11,8,6,8,0,8,6,8 -T,2,3,4,4,1,8,14,1,6,6,11,8,0,8,0,8 -K,5,9,5,7,2,4,7,9,2,7,6,12,3,8,3,11 -G,5,11,7,8,5,7,6,7,8,7,4,12,2,9,6,8 -B,11,15,10,8,9,9,8,3,6,10,4,6,8,3,9,7 -X,8,11,11,9,7,6,8,1,8,10,8,9,3,8,4,6 -D,6,9,8,7,6,10,6,3,7,11,4,7,4,7,4,9 -V,2,5,4,4,1,6,11,3,4,8,11,8,2,10,1,8 -I,2,11,0,8,1,7,7,5,3,7,6,8,0,8,0,8 -Z,2,5,4,4,2,7,8,2,10,11,6,8,1,8,6,7 -G,2,3,3,2,1,7,6,5,4,6,6,9,2,9,4,9 -J,3,5,4,8,1,13,2,9,5,14,3,12,0,6,0,8 -V,2,5,4,4,2,7,12,2,3,7,11,8,2,10,1,8 -V,8,15,8,8,5,5,8,5,4,8,7,6,6,12,3,8 -J,6,12,5,9,4,10,7,2,4,12,4,6,2,9,7,9 -C,3,6,4,4,1,6,7,6,10,7,6,13,1,8,4,9 -U,2,3,3,1,1,4,8,5,6,11,10,8,3,10,1,6 -A,2,6,4,4,2,12,2,4,3,12,2,10,2,6,3,9 -Y,3,10,5,7,1,10,10,3,2,5,13,8,2,11,0,8 -T,3,7,5,5,3,7,11,1,8,7,11,8,1,10,1,8 -M,5,8,7,6,6,8,7,2,4,9,5,7,7,6,2,8 -V,5,8,5,6,3,4,11,2,3,8,10,7,3,12,1,7 -S,4,8,5,6,3,6,8,4,6,10,9,8,2,9,5,4 -M,5,6,6,8,4,7,7,12,2,7,9,8,9,6,0,8 -Y,3,8,6,5,1,10,10,3,2,5,13,8,2,11,0,8 -Z,9,9,6,12,6,6,9,4,2,12,7,7,3,8,13,6 -M,3,8,4,6,3,8,6,12,1,5,9,8,7,6,0,8 -M,3,7,4,5,4,7,5,10,0,7,8,8,6,5,0,8 -J,3,8,3,6,2,13,3,5,4,13,2,10,0,7,0,8 -K,7,13,7,7,4,8,7,2,6,10,7,9,6,11,4,8 -B,3,3,4,4,3,7,7,6,5,7,6,6,2,8,6,10 -K,4,10,6,8,7,7,7,5,4,7,5,7,4,6,9,14 -Z,5,8,7,6,4,5,10,3,10,11,9,6,1,9,6,5 -F,4,8,4,6,3,1,13,4,4,12,10,6,0,8,1,6 -N,1,1,2,1,1,7,8,5,3,7,7,7,4,8,1,6 -P,7,10,10,8,5,7,14,5,3,13,4,0,0,10,4,7 -C,4,3,5,5,2,6,7,6,10,7,6,13,1,8,4,9 -Z,4,8,6,6,3,9,5,3,10,11,4,9,1,7,6,9 -S,2,3,4,2,1,8,7,2,6,10,6,8,1,9,5,8 -W,4,6,7,4,4,9,11,2,3,5,9,8,7,11,1,8 -P,2,3,4,2,2,7,9,4,4,11,4,4,1,9,3,8 -L,4,8,4,6,1,0,0,6,6,0,1,4,0,8,0,8 -U,3,4,4,6,2,8,5,14,5,7,13,8,3,9,0,8 -J,3,10,4,7,1,13,2,9,4,14,4,12,1,6,0,8 -J,2,4,3,6,1,12,2,9,4,13,6,13,1,6,0,8 -Z,3,5,3,3,2,8,7,5,10,6,6,7,2,8,7,8 -M,4,2,5,4,4,8,6,6,4,7,7,8,8,6,3,6 -U,7,13,6,7,4,8,4,5,5,7,9,8,4,8,3,8 -J,1,3,2,2,1,9,7,2,6,14,5,8,0,7,0,8 -B,5,9,5,7,7,6,7,8,5,7,6,7,2,8,7,9 -B,7,11,9,8,7,10,6,4,7,10,3,7,2,8,6,12 -Q,8,14,8,8,4,9,4,4,7,11,4,10,3,7,8,11 -N,3,4,5,3,2,7,9,2,5,10,6,6,5,9,1,7 -D,3,7,4,5,3,9,7,5,7,10,4,5,3,8,3,8 -B,1,0,1,0,0,7,7,6,4,7,6,7,1,8,5,9 -E,4,6,6,4,4,7,8,2,7,11,7,9,3,8,4,9 -E,3,3,5,2,2,6,8,3,8,11,8,9,2,9,4,7 -N,6,11,8,8,5,7,9,2,5,9,6,7,5,9,1,8 -T,2,4,4,6,1,7,14,0,6,8,11,8,0,8,0,8 -Y,3,3,5,4,1,9,9,3,1,5,13,8,2,10,0,8 -Q,7,9,7,10,8,8,8,6,2,7,7,11,4,10,8,6 -U,9,15,8,8,5,5,5,4,4,7,8,10,7,5,3,9 -H,3,3,4,4,2,7,10,14,2,7,3,8,3,8,0,8 -J,2,10,3,8,1,14,3,7,5,14,1,10,0,7,0,8 -D,1,4,3,3,2,10,6,3,5,10,3,6,2,8,2,9 -G,2,4,2,2,1,6,7,5,5,9,7,10,2,8,4,9 -V,5,9,7,8,9,7,7,5,4,7,6,8,7,9,7,8 -U,2,2,3,3,2,7,9,5,7,7,9,9,3,9,1,8 -U,7,11,9,8,7,5,9,5,7,6,9,10,3,9,1,8 -Z,3,3,4,4,2,7,7,3,14,9,6,8,0,8,8,8 -G,2,3,3,1,1,7,7,5,5,9,6,10,2,9,4,10 -L,4,11,5,8,4,7,4,1,7,8,2,10,1,6,3,8 -D,4,6,5,4,4,9,7,3,6,10,4,6,3,8,2,8 -J,3,10,5,7,5,9,8,3,3,8,4,6,4,8,6,5 -K,3,6,5,4,5,7,6,3,4,6,6,8,7,7,6,9 -A,3,9,5,7,3,12,3,4,3,11,1,9,2,6,3,9 -L,3,4,4,7,1,0,1,6,6,0,0,6,0,8,0,8 -X,4,9,6,7,5,8,5,3,5,6,7,8,3,9,9,9 -Q,5,9,5,5,3,11,5,3,6,9,4,7,3,9,6,11 -F,3,8,3,6,2,2,12,4,3,12,10,6,0,8,2,7 -W,2,3,4,2,2,7,10,2,2,6,9,8,5,11,0,7 -K,6,9,9,6,6,5,7,1,7,10,8,10,3,8,4,7 -P,4,9,4,6,4,4,12,7,1,10,6,4,1,10,3,8 -V,6,9,5,5,2,8,11,4,5,7,10,5,4,10,2,6 -L,7,15,6,8,3,10,2,3,5,13,4,12,2,8,5,10 -A,3,8,5,5,1,6,6,3,1,6,0,8,2,6,1,7 -B,3,3,3,4,3,6,7,9,6,7,6,7,2,8,8,10 -S,6,9,5,5,2,8,4,4,5,9,2,8,3,6,5,8 -I,6,11,4,6,2,10,6,5,5,12,3,6,3,8,5,10 -B,1,0,1,0,1,7,8,6,4,7,6,7,1,8,6,9 -F,4,8,6,6,5,4,10,1,2,10,8,7,5,10,2,4 -I,3,4,4,5,3,7,8,4,5,7,8,7,2,9,8,9 -M,5,8,7,6,7,7,6,5,5,7,7,10,11,6,2,8 -K,2,1,3,2,2,5,7,4,7,7,6,11,3,8,4,9 -C,2,3,2,2,1,6,8,6,7,8,7,12,1,9,3,10 -H,4,7,6,5,4,9,8,3,7,10,4,7,3,8,3,9 -S,3,2,4,4,3,8,7,7,5,7,6,7,2,8,9,8 -B,4,5,5,7,4,7,7,10,7,7,6,8,2,8,9,9 -O,2,3,2,1,1,8,7,6,4,9,6,8,2,8,3,8 -M,9,11,12,8,8,4,6,4,5,10,11,11,11,6,4,8 -I,1,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -W,7,9,10,8,11,6,6,6,5,5,5,8,11,11,9,12 -U,4,6,4,4,1,8,5,12,5,7,15,8,3,9,0,8 -Y,4,5,5,4,2,4,11,2,7,11,10,6,1,11,2,5 -A,3,9,6,7,3,11,2,3,3,10,2,9,2,6,3,8 -P,2,3,4,2,2,7,10,3,4,12,4,3,1,10,2,8 -B,4,7,6,5,5,7,8,5,5,9,6,6,3,7,6,7 -O,4,7,5,5,3,8,6,8,5,10,6,9,3,8,3,8 -Y,5,7,5,5,2,3,10,3,7,11,12,7,2,11,3,5 -I,4,5,6,5,4,8,9,4,5,7,6,9,3,8,8,7 -R,3,9,4,6,3,5,10,9,3,7,4,8,3,7,6,11 -N,6,8,9,6,5,10,8,3,6,10,2,4,5,9,1,7 -B,3,7,3,5,4,6,7,7,5,7,6,7,2,8,7,10 -Q,9,15,8,8,4,9,3,4,7,11,4,10,3,8,8,11 -H,6,11,8,8,6,9,7,6,7,7,6,8,6,8,4,7 -J,2,4,3,3,1,11,6,2,7,11,3,7,0,7,1,8 -W,4,4,5,6,3,7,8,4,1,7,8,8,8,10,0,8 -Y,5,11,6,8,2,3,11,3,8,13,11,5,0,10,2,4 -F,4,9,5,7,3,4,11,3,7,11,10,6,1,10,3,5 -A,4,9,6,6,2,7,4,3,2,7,1,8,3,7,3,8 -X,1,0,2,0,0,7,7,4,4,7,6,8,2,8,3,8 -Z,5,10,7,8,5,7,8,2,9,12,7,8,1,9,6,7 -H,3,7,4,4,2,7,9,14,2,7,3,8,3,8,0,8 -K,6,11,9,8,8,7,6,1,6,10,5,9,7,7,6,9 -J,4,7,5,8,5,8,8,4,5,7,6,8,3,8,9,8 -N,2,4,4,3,2,6,9,2,4,10,7,7,5,8,1,8 -W,5,9,7,7,7,7,5,6,2,7,7,8,7,7,6,12 -U,4,6,5,4,2,6,8,7,9,9,10,8,3,9,1,8 -Y,2,6,4,4,1,9,10,3,2,5,13,8,2,11,0,8 -Q,4,7,4,9,4,7,7,6,3,8,9,10,3,8,6,8 -V,3,3,4,2,1,4,12,4,3,11,11,6,2,11,1,8 -D,6,13,6,7,5,11,5,4,6,10,4,7,5,9,6,10 -V,3,8,4,6,2,7,9,4,2,8,12,8,2,10,0,8 -R,4,8,5,6,3,5,12,8,4,8,3,9,3,7,6,11 -L,1,0,1,1,0,2,2,5,5,1,1,6,0,8,0,8 -V,4,10,7,8,3,8,12,3,4,5,11,8,3,10,1,8 -F,5,10,7,8,5,6,10,2,6,13,7,5,1,10,2,7 -B,5,8,7,7,8,7,8,5,5,8,6,8,7,8,9,6 -R,3,4,4,5,2,6,10,9,4,7,4,8,3,7,5,10 -J,3,6,4,4,3,9,6,6,5,8,6,7,2,8,4,6 -V,3,7,5,5,1,7,8,4,2,7,14,8,3,10,0,8 -Y,9,9,8,13,5,9,10,2,4,5,11,5,4,10,7,8 -M,8,9,11,7,8,10,6,2,5,9,4,7,8,7,2,8 -X,3,2,4,3,2,7,7,3,9,6,6,8,2,8,6,8 -S,3,9,4,7,2,7,7,6,8,5,6,7,0,8,9,7 -K,2,3,4,2,2,8,7,1,6,10,5,8,3,8,2,8 -T,3,7,5,5,3,6,11,1,7,8,11,9,1,11,1,8 -H,3,4,6,3,3,7,8,3,6,10,6,8,3,8,3,7 -L,4,9,4,7,2,0,2,4,6,1,0,8,0,8,0,8 -J,3,8,4,6,2,10,6,2,8,12,3,7,0,6,2,6 -D,2,1,2,1,1,5,7,8,7,6,6,6,2,8,3,8 -B,2,1,3,2,2,8,7,5,5,7,6,6,2,8,5,9 -N,6,9,9,7,5,10,8,3,6,10,2,4,5,9,1,7 -R,6,10,9,8,11,6,7,4,4,6,6,9,8,9,9,7 -M,13,15,13,8,7,3,8,6,6,4,2,13,9,11,2,8 -Z,3,6,4,4,2,7,7,4,14,9,6,8,0,8,8,8 -R,6,9,8,7,9,6,7,4,5,7,6,8,6,9,7,5 -K,5,11,6,8,2,3,7,8,2,7,6,11,4,8,2,11 -W,5,9,8,7,7,7,12,2,2,6,8,8,7,12,1,8 -P,3,6,4,4,2,7,10,4,4,12,5,3,1,10,3,8 -E,3,8,4,6,4,6,7,5,8,7,5,10,3,8,5,9 -E,7,12,5,6,4,8,7,4,4,11,5,9,3,9,8,11 -Y,3,3,4,4,1,10,13,3,3,3,11,9,0,10,0,8 -J,3,10,4,7,3,11,5,2,6,11,2,7,0,7,1,7 -L,3,7,4,5,2,4,5,2,10,3,1,8,0,7,2,5 -I,2,5,1,3,1,7,7,1,7,7,6,8,0,8,3,8 -I,1,4,2,3,1,7,7,0,7,13,6,8,0,8,1,8 -M,6,10,7,6,4,13,2,4,3,12,1,9,5,5,1,9 -V,2,5,4,3,2,7,12,2,2,7,11,9,2,10,1,8 -P,7,10,9,8,6,7,10,4,4,12,5,3,1,10,3,8 -H,5,10,7,8,7,7,7,6,7,7,6,8,6,8,4,8 -R,9,13,7,8,5,8,6,5,5,9,5,9,6,6,7,11 -X,4,9,6,7,5,8,7,3,5,6,7,6,4,11,10,8 -P,2,5,3,7,6,8,7,4,1,7,6,7,5,8,4,8 -V,4,10,5,7,3,7,9,4,2,7,13,8,2,10,0,8 -N,3,6,3,4,3,8,7,11,1,6,6,8,5,9,0,6 -O,3,1,4,3,2,8,7,7,5,7,6,8,2,8,3,8 -G,6,11,7,8,5,5,7,6,6,9,8,10,2,8,5,9 -T,4,5,5,4,2,5,12,3,7,11,10,4,1,11,1,5 -R,8,12,7,6,6,6,7,3,5,7,5,9,6,9,6,6 -W,4,3,5,5,3,8,8,4,1,6,8,8,8,9,0,8 -U,6,9,6,5,3,7,5,5,5,7,8,8,5,7,2,8 -L,6,12,6,6,4,8,3,3,4,12,8,12,3,10,5,11 -S,7,12,7,6,3,10,4,5,4,13,5,8,2,9,2,7 -Q,4,9,5,11,7,9,8,8,2,5,7,10,3,8,6,10 -M,3,1,4,3,3,7,6,6,4,6,7,7,8,6,2,7 -F,2,2,3,3,2,5,10,4,5,10,9,5,1,10,3,6 -V,5,8,5,6,2,2,11,5,4,12,12,8,2,10,1,8 -V,5,7,5,5,2,3,11,4,3,10,12,8,2,10,1,8 -F,4,8,4,6,3,1,13,4,3,12,10,7,0,8,1,6 -M,4,11,6,8,6,6,6,6,5,7,7,10,8,5,2,9 -I,3,8,4,6,2,7,7,0,6,13,6,8,0,8,1,8 -P,3,7,3,4,2,4,12,8,2,10,6,4,1,10,4,8 -U,4,2,5,3,2,6,8,5,8,7,10,9,3,9,1,8 -B,3,4,3,3,3,7,7,5,5,7,6,6,2,8,6,9 -Q,4,10,6,9,6,8,7,8,5,6,4,8,3,8,4,7 -H,5,8,5,6,4,7,8,13,1,7,5,8,3,8,0,8 -X,3,8,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -M,4,7,6,5,6,9,7,5,5,6,7,5,8,6,2,6 -J,3,7,4,5,1,7,7,3,7,15,6,10,0,7,1,7 -V,6,12,5,7,3,7,10,6,4,9,9,5,5,12,3,8 -B,2,3,2,2,2,7,7,5,5,6,6,5,2,8,6,8 -T,5,8,5,6,3,4,13,4,6,12,10,4,1,11,1,5 -U,8,10,9,8,5,4,7,6,8,10,10,9,3,9,2,5 -D,4,7,6,5,4,7,8,5,6,10,6,4,3,8,4,8 -Y,4,9,6,7,2,7,12,1,3,7,11,8,0,10,0,8 -O,2,1,2,2,1,8,7,7,4,7,6,8,2,8,3,8 -O,2,0,2,1,1,7,6,7,5,7,6,8,2,8,3,8 -K,4,4,4,6,2,4,7,8,1,7,6,11,3,8,2,11 -W,8,11,8,6,5,9,8,4,5,6,9,6,11,8,3,6 -A,5,11,7,8,4,8,3,2,3,7,1,8,2,7,3,7 -O,8,12,6,6,4,5,9,6,4,9,8,9,5,10,5,8 -S,5,9,6,8,7,9,7,5,6,7,6,7,6,8,10,12 -T,5,7,5,5,3,6,11,3,7,11,9,5,2,12,3,4 -S,2,7,3,5,3,8,8,7,5,7,5,6,2,8,8,8 -X,3,4,5,3,2,7,7,1,8,10,6,8,2,8,3,7 -T,2,9,4,6,1,5,14,1,6,9,11,7,0,8,0,8 -U,5,9,6,7,5,6,6,8,5,7,6,10,5,8,7,3 -Y,5,6,5,4,3,5,9,1,7,9,10,6,2,11,3,5 -V,3,3,4,2,1,4,12,3,3,10,11,7,2,11,1,7 -D,2,4,4,3,2,9,7,4,6,10,4,6,2,8,3,8 -H,5,10,8,8,7,7,8,7,7,7,5,9,3,8,3,8 -B,4,8,6,6,8,9,7,4,4,6,7,7,7,10,7,6 -S,5,11,6,8,3,7,8,4,8,11,7,7,2,8,5,6 -O,2,2,3,3,2,8,7,7,4,7,6,8,2,8,3,8 -O,6,11,7,9,3,7,8,9,8,7,7,6,3,8,4,8 -J,2,6,2,4,1,12,2,9,3,13,5,13,1,6,0,8 -P,3,4,4,6,6,8,9,4,0,8,7,7,5,9,5,7 -O,3,7,5,5,5,8,6,5,1,7,6,8,7,8,3,8 -I,3,7,4,5,2,7,7,0,7,13,6,8,0,8,1,7 -Z,4,9,6,6,6,7,7,3,8,8,6,9,1,8,11,7 -W,3,6,5,4,7,9,7,4,2,7,6,8,8,11,1,6 -F,2,4,3,5,1,1,13,4,4,12,11,7,0,8,2,6 -H,5,7,8,5,6,8,7,3,6,10,6,8,3,8,3,8 -D,2,4,3,3,2,9,6,3,5,10,4,6,2,8,2,8 -B,2,1,2,2,1,7,7,8,5,6,6,7,2,8,7,10 -K,0,0,1,0,0,4,7,5,3,7,6,10,3,8,2,11 -T,4,10,6,8,3,5,11,1,9,9,12,8,0,10,1,7 -N,3,8,3,6,2,7,7,13,2,5,6,8,5,8,0,8 -F,2,6,2,4,1,1,11,3,6,11,11,9,0,8,1,6 -A,3,8,5,5,2,7,4,3,1,7,1,8,3,7,2,8 -V,8,11,7,8,5,4,11,1,3,8,10,8,5,12,1,7 -F,9,13,7,7,3,4,13,3,5,13,7,3,2,7,5,4 -Y,2,1,3,1,0,7,10,3,1,7,13,8,1,11,0,8 -R,4,7,6,5,4,9,8,3,6,10,3,6,3,6,4,10 -Q,5,9,5,11,7,8,7,6,2,8,7,10,3,8,5,8 -M,6,9,9,7,6,10,5,3,5,9,3,6,8,6,2,9 -P,3,5,3,3,2,4,10,3,5,10,8,4,0,10,3,7 -K,3,7,4,5,3,6,7,4,7,6,6,9,3,8,5,9 -Y,6,6,8,9,8,10,12,6,4,6,7,6,5,10,7,4 -D,4,6,6,6,5,6,7,4,7,6,4,7,3,7,5,6 -R,4,3,5,5,3,6,9,10,5,7,5,8,2,8,5,10 -B,4,7,6,5,5,10,7,3,6,10,4,6,2,8,4,10 -T,4,8,6,6,4,6,7,7,7,8,9,8,3,10,5,9 -W,6,10,8,8,4,7,7,4,2,7,8,8,9,9,0,8 -K,5,9,7,7,8,7,9,5,5,8,5,7,7,6,8,12 -G,10,15,9,8,5,8,4,5,4,9,4,5,4,7,5,8 -P,3,7,3,5,2,4,12,8,2,10,6,4,1,10,3,8 -C,1,0,1,1,0,6,7,6,8,7,6,14,0,8,4,10 -S,5,11,7,8,4,10,6,4,8,11,3,8,2,8,5,11 -J,5,9,6,7,4,7,4,5,4,14,8,14,1,6,1,6 -P,5,11,8,8,6,7,11,7,3,10,5,3,3,11,4,8 -X,3,2,4,4,2,7,7,3,9,6,6,8,2,8,6,8 -L,8,13,8,8,5,9,3,3,3,11,6,11,4,8,7,9 -B,4,5,4,8,4,6,8,10,7,7,5,7,2,8,9,10 -E,3,5,6,4,3,8,7,2,8,11,5,8,2,8,5,10 -H,3,4,4,6,2,7,9,15,2,7,4,8,3,8,0,8 -T,3,4,4,3,2,6,11,3,7,11,9,4,2,11,3,4 -P,2,1,2,1,1,5,11,8,2,9,6,4,1,9,3,8 -S,2,3,4,2,2,6,8,2,6,10,8,8,1,8,5,6 -N,1,0,2,1,1,7,7,11,1,5,6,8,4,8,0,8 -P,5,4,5,6,3,4,12,9,3,10,6,4,1,10,4,8 -D,3,5,5,4,3,9,7,5,7,9,4,5,3,8,3,8 -T,2,7,3,4,1,6,14,0,6,8,11,8,0,8,0,8 -B,2,4,4,2,2,9,7,3,5,11,5,7,2,7,4,9 -Y,3,7,5,5,2,7,10,2,2,7,12,8,1,11,0,8 -J,3,11,4,8,2,15,3,4,5,13,0,8,0,7,0,8 -A,3,9,6,7,4,11,3,2,2,9,2,9,3,4,3,8 -J,3,7,5,5,2,11,6,2,7,14,3,8,0,8,0,8 -S,2,3,3,4,1,9,10,5,9,5,6,5,0,7,8,7 -E,4,8,4,6,2,3,7,6,11,7,6,15,0,8,7,7 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -H,5,9,7,6,7,8,8,6,7,7,6,9,6,8,4,7 -G,4,5,5,8,2,7,6,8,8,6,5,10,2,8,6,11 -Z,2,2,3,3,2,7,8,5,9,6,6,9,1,9,7,8 -Y,4,6,6,4,3,9,10,1,7,3,11,8,1,11,1,9 -H,3,7,4,5,5,7,5,4,4,6,5,8,4,8,5,7 -B,4,8,6,6,7,8,8,7,6,7,5,6,2,7,7,10 -A,4,9,6,7,4,10,3,2,2,8,2,10,4,4,3,8 -B,6,10,6,6,5,10,6,3,5,9,5,8,6,8,7,9 -M,6,10,8,8,7,9,6,6,5,6,7,6,8,6,2,6 -P,4,9,4,6,2,5,10,9,4,9,6,5,2,10,4,8 -W,5,11,8,8,6,4,11,2,3,8,9,9,9,11,2,7 -S,2,4,4,2,1,6,8,2,7,11,7,8,1,8,4,6 -J,3,10,4,8,1,13,2,9,4,14,5,13,1,6,0,8 -N,8,14,9,8,5,7,7,2,4,12,4,8,6,8,0,7 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -P,5,8,7,11,11,8,9,4,1,8,7,6,8,10,6,8 -G,2,3,3,2,1,6,7,5,5,9,7,10,2,8,4,10 -E,6,8,8,6,5,4,9,4,9,11,10,9,2,9,4,5 -Q,6,8,7,10,6,8,7,7,4,8,7,10,3,8,6,8 -R,3,8,4,6,2,5,11,8,4,7,4,9,3,7,6,11 -K,2,3,2,2,2,5,7,4,7,6,6,10,3,8,4,10 -Y,4,5,6,6,6,9,9,6,4,7,7,7,5,11,6,4 -P,4,5,6,6,6,6,9,4,2,8,7,6,6,10,4,6 -G,6,9,6,4,3,7,3,5,2,6,5,4,4,8,5,7 -G,4,7,6,5,6,7,7,6,2,7,6,11,4,9,7,9 -P,7,9,8,7,7,6,7,5,5,7,6,9,5,9,7,10 -L,7,15,7,8,5,9,3,3,4,12,6,11,3,8,6,9 -J,1,2,2,3,1,10,6,2,6,12,4,9,0,7,1,7 -Y,3,10,5,8,2,8,10,1,3,6,12,8,1,11,0,8 -D,6,11,8,8,8,8,8,6,6,9,5,4,6,9,5,10 -M,6,10,9,8,8,8,7,2,4,9,7,8,8,6,2,8 -G,2,1,2,2,1,8,6,6,6,6,5,10,1,7,5,10 -U,4,9,5,6,4,6,9,8,5,3,7,12,4,8,5,6 -I,0,6,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -I,4,11,5,8,3,8,6,0,7,13,6,9,1,7,3,8 -B,6,11,6,8,5,6,6,9,7,6,6,7,2,8,10,10 -Q,1,2,2,3,2,7,7,5,2,8,8,9,2,9,4,9 -J,2,7,3,5,1,13,2,9,4,14,4,12,1,6,0,8 -B,4,11,5,8,4,6,7,9,7,7,6,7,2,8,9,10 -A,3,5,5,5,4,9,8,3,4,6,8,7,4,10,4,5 -S,3,4,5,2,2,8,8,2,7,10,6,7,1,8,5,7 -U,4,4,4,6,2,8,5,14,5,6,13,8,3,9,0,8 -E,2,3,4,2,2,7,7,2,7,11,7,9,2,8,4,8 -R,3,8,3,6,3,6,10,7,4,6,3,10,2,6,5,11 -L,3,6,3,4,1,1,0,6,6,0,1,5,0,8,0,8 -N,3,7,4,5,2,7,7,14,2,5,6,8,5,8,0,8 -B,6,9,9,8,10,7,8,5,5,7,7,8,7,9,9,6 -K,6,9,8,6,9,7,6,3,5,6,6,9,8,6,7,7 -X,5,8,6,7,7,6,8,2,5,7,6,9,4,7,8,7 -P,6,9,5,4,2,5,11,5,3,13,5,4,4,9,3,8 -I,1,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -G,8,14,7,8,5,8,6,4,3,9,6,8,4,9,8,8 -A,3,10,6,8,4,12,2,3,3,10,2,9,2,6,4,8 -K,4,4,6,3,3,8,6,1,7,10,4,9,4,7,4,9 -B,5,10,7,8,7,8,6,7,7,6,7,6,2,8,8,11 -Y,3,8,5,6,3,5,9,1,6,8,12,10,1,11,2,8 -N,2,4,4,3,2,5,10,3,3,10,8,8,5,8,1,7 -Y,2,4,4,6,1,5,10,3,2,8,13,8,2,11,0,8 -O,9,12,6,7,3,8,7,6,5,9,4,7,5,9,5,9 -E,6,11,9,9,7,6,8,2,8,10,7,9,3,8,5,7 -U,6,10,6,8,4,3,9,5,6,11,11,9,3,9,1,7 -U,7,8,8,6,3,4,8,5,8,10,10,9,3,9,2,6 -X,3,5,6,4,3,9,7,1,9,10,4,7,2,8,3,8 -D,1,0,1,0,0,6,7,7,5,7,6,6,2,8,3,8 -D,2,1,3,2,2,8,7,7,7,7,7,4,2,8,3,6 -S,4,5,6,4,3,7,7,2,8,11,5,7,1,8,5,8 -K,4,5,7,4,4,5,7,2,8,10,9,10,3,8,4,6 -I,2,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -F,4,5,5,5,5,7,8,4,5,7,5,7,4,9,8,7 -A,1,1,3,2,1,6,2,2,1,6,2,7,1,6,2,6 -R,3,6,5,4,5,6,7,3,3,7,6,9,5,9,7,5 -P,3,2,4,3,3,6,9,4,4,9,7,4,1,10,4,7 -Y,2,7,4,5,2,8,10,1,6,5,11,8,1,11,1,8 -V,4,9,6,7,3,9,11,2,4,4,11,8,2,10,1,8 -M,5,11,6,8,4,7,7,12,2,7,9,8,9,6,0,8 -K,4,9,6,6,5,6,6,3,7,6,6,9,3,8,5,10 -F,4,8,7,6,7,10,6,1,5,9,6,6,5,10,4,6 -X,7,10,7,6,4,9,6,2,7,11,4,7,4,9,4,9 -H,4,9,6,6,7,7,7,6,6,7,6,9,3,8,3,8 -L,4,9,5,7,1,0,0,6,6,0,1,5,0,8,0,8 -H,6,9,8,6,7,11,6,3,6,10,3,7,3,7,3,10 -J,5,11,7,8,8,10,7,4,4,8,4,5,4,7,6,5 -R,2,3,3,2,2,6,7,5,5,7,6,7,2,7,4,9 -G,1,1,2,1,1,7,7,5,5,6,6,10,2,9,3,9 -F,5,9,8,6,7,4,10,1,4,10,7,6,7,10,3,4 -D,6,9,6,4,3,12,2,4,5,12,2,9,4,7,2,10 -K,9,13,9,7,4,4,9,3,7,10,9,11,5,7,3,6 -L,3,9,5,6,3,5,4,2,8,6,1,10,0,6,3,7 -P,5,4,5,6,3,5,9,10,5,8,5,5,2,10,4,8 -A,2,3,3,2,1,8,2,2,1,6,2,8,2,7,2,7 -I,6,10,8,7,5,7,6,2,8,7,6,8,0,9,4,8 -X,3,7,5,5,2,9,7,1,8,10,4,7,3,8,3,8 -M,3,6,5,4,5,12,5,3,2,9,4,8,5,6,2,6 -R,4,2,4,3,3,7,8,5,5,6,5,6,3,7,4,8 -Y,1,0,1,0,0,7,10,3,1,7,12,8,1,11,0,8 -I,1,3,2,1,0,7,7,1,7,13,6,8,0,8,0,7 -T,5,11,6,8,8,7,8,4,5,6,7,9,7,7,8,7 -F,3,9,4,6,2,1,12,5,4,11,10,7,0,8,3,6 -R,5,10,8,8,5,11,7,3,6,11,1,6,4,5,4,10 -Z,9,11,6,15,6,5,11,3,3,12,8,6,3,9,11,5 -K,4,8,6,6,3,7,7,1,7,10,6,9,3,8,4,8 -R,6,9,6,5,4,9,8,4,6,9,2,6,5,5,5,7 -E,4,8,5,6,3,3,9,6,12,7,5,14,0,8,7,7 -Y,10,12,8,7,5,6,8,4,5,10,7,4,3,9,5,4 -M,6,10,7,8,4,7,7,13,2,8,9,8,9,6,0,8 -G,8,15,7,8,6,8,5,4,3,8,6,8,4,9,8,8 -X,4,6,6,4,2,7,7,2,8,11,6,8,3,8,3,7 -Z,3,10,4,7,3,7,8,3,11,9,6,8,0,8,7,8 -T,3,8,4,5,1,8,15,1,6,6,11,9,0,8,0,8 -A,3,3,5,4,1,9,3,3,2,8,2,9,3,6,2,8 -A,2,4,4,5,1,8,6,3,1,7,0,8,2,6,1,8 -P,3,5,5,4,3,8,9,3,4,12,4,4,2,8,3,8 -H,4,8,4,5,2,7,8,15,1,7,5,8,3,8,0,8 -T,5,10,7,8,7,7,6,7,7,6,8,9,4,9,8,6 -M,7,10,9,8,8,9,6,2,5,9,5,7,9,8,2,8 -K,4,9,6,7,7,6,6,3,4,6,5,9,8,6,8,8 -T,1,1,2,1,0,7,14,1,4,7,11,8,0,8,0,8 -J,2,7,3,5,2,8,7,2,5,11,5,8,3,8,2,6 -I,2,8,3,6,2,9,6,0,7,13,5,9,0,8,1,8 -J,1,5,2,3,1,10,6,2,6,11,3,8,0,7,1,7 -C,4,8,5,6,2,5,9,8,8,13,9,6,2,10,2,6 -Y,3,3,4,2,1,4,11,2,7,11,10,5,1,11,2,5 -L,7,15,7,8,5,9,3,4,4,12,7,11,4,8,7,9 -B,2,4,3,2,2,8,7,3,5,9,6,6,2,8,4,8 -P,6,10,8,8,6,8,10,5,4,11,4,3,1,10,3,8 -Q,4,10,5,9,6,8,7,8,5,6,3,8,3,9,4,8 -D,3,6,4,4,5,9,7,5,4,7,5,7,4,7,6,5 -E,5,11,4,6,3,9,6,3,5,11,4,8,3,9,7,11 -D,5,7,6,6,5,6,7,6,7,7,5,7,4,7,5,5 -P,6,11,8,8,8,7,5,6,5,7,6,9,6,9,8,9 -O,4,7,6,5,4,7,7,8,4,7,6,8,3,8,3,8 -H,4,7,6,5,5,8,6,6,7,7,7,6,3,9,3,7 -N,7,11,10,8,6,12,7,3,5,10,0,3,7,11,2,9 -A,3,6,5,4,2,9,2,2,2,7,1,8,2,7,3,7 -T,4,8,6,6,5,7,7,7,7,5,9,10,4,8,7,6 -C,1,1,2,1,1,6,8,6,6,8,7,12,1,9,3,10 -L,1,3,2,2,1,7,4,2,7,7,2,9,0,7,2,8 -P,2,7,4,5,2,6,11,5,4,10,8,3,1,10,4,6 -P,4,9,5,7,4,5,10,4,5,10,9,4,4,10,4,7 -J,3,5,4,7,1,12,2,9,4,14,5,13,1,6,0,8 -D,3,1,4,2,2,7,7,6,7,6,5,5,2,8,3,7 -I,0,3,0,1,0,7,7,1,7,7,6,8,0,8,2,8 -H,2,3,4,2,2,8,7,3,5,10,6,8,3,8,2,8 -T,9,11,9,8,7,7,10,2,9,11,9,5,4,11,5,5 -Y,7,9,7,7,4,3,10,2,7,11,11,7,1,11,2,5 -C,3,6,4,4,2,6,7,5,6,11,8,12,1,9,3,9 -S,4,5,6,4,6,8,8,4,5,7,7,8,4,9,9,10 -L,5,11,5,8,2,0,0,6,6,0,1,5,0,8,0,8 -N,3,2,4,4,3,7,9,5,5,7,6,6,5,9,2,6 -G,5,7,6,5,4,5,7,6,5,9,7,10,2,9,4,10 -Q,7,9,8,11,9,8,7,6,2,7,7,12,6,9,9,6 -I,1,8,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -V,4,8,6,6,3,7,11,2,3,5,11,9,2,10,1,8 -R,4,9,5,7,4,9,8,4,6,9,3,7,3,7,4,11 -N,1,3,3,1,1,9,8,3,4,10,3,5,4,8,1,8 -C,6,14,5,8,4,7,8,4,3,9,8,10,4,9,9,11 -T,4,7,5,5,4,7,8,7,7,7,8,9,3,10,5,8 -R,4,9,5,7,5,9,7,3,5,9,3,8,3,6,3,11 -Z,3,8,4,6,2,7,7,4,14,9,6,8,0,8,8,8 -B,2,2,3,3,2,7,7,5,5,6,6,6,2,8,5,9 -T,2,2,3,3,2,7,11,2,7,7,11,8,1,11,1,8 -R,1,0,1,0,0,6,8,6,3,7,5,7,2,7,4,11 -J,2,3,4,2,1,9,6,3,5,14,6,10,0,7,0,8 -M,5,10,5,8,4,7,7,12,2,7,9,8,8,6,0,8 -X,9,13,9,7,5,4,9,3,8,12,10,9,4,9,4,5 -S,5,10,6,8,4,9,6,5,8,11,2,8,2,7,5,11 -S,3,6,4,4,2,8,7,5,8,5,6,8,0,8,9,8 -G,2,1,2,1,1,8,6,6,6,6,5,9,1,7,5,10 -B,9,14,7,8,4,9,6,6,6,11,4,9,6,7,7,10 -M,2,0,2,1,1,7,6,10,0,7,8,8,6,6,0,8 -S,3,6,4,4,2,6,5,5,9,5,6,10,0,9,9,8 -M,3,7,4,5,3,7,6,11,1,8,9,8,7,6,0,8 -L,2,6,4,4,1,5,4,1,9,7,1,9,0,7,2,7 -G,3,6,4,4,3,7,6,6,6,6,6,10,2,9,4,8 -C,7,10,5,5,2,6,10,6,7,12,8,8,2,9,5,8 -S,5,8,7,6,4,5,8,4,6,10,9,8,2,8,5,4 -C,4,10,5,8,2,5,7,7,10,7,5,14,1,9,4,9 -R,2,4,3,3,2,7,7,5,5,6,5,6,2,7,4,8 -G,6,11,8,8,9,8,7,6,2,7,6,11,5,8,9,7 -C,2,4,3,3,2,6,8,7,8,8,7,13,1,9,4,10 -I,3,8,4,6,2,7,8,0,8,14,6,6,0,8,1,7 -Y,8,11,8,8,4,2,11,3,6,12,12,7,1,11,2,5 -C,3,6,4,4,4,8,6,5,2,7,7,10,6,9,4,7 -Y,4,11,6,8,3,10,10,1,3,6,12,8,1,11,0,8 -K,4,2,5,3,3,5,7,4,8,7,6,11,3,8,5,9 -I,7,8,8,9,8,7,8,4,6,6,8,7,4,9,10,9 -E,5,9,7,7,6,8,7,6,3,7,6,10,5,9,9,8 -O,2,5,3,4,2,7,7,8,5,7,5,8,2,8,3,8 -M,5,7,7,5,6,4,7,3,4,10,10,10,6,6,2,6 -Q,4,8,5,9,5,8,7,7,2,8,7,12,3,9,6,8 -Z,3,9,4,6,3,7,7,6,11,6,6,8,1,8,8,8 -H,3,8,5,6,6,8,6,4,5,6,6,8,6,7,6,7 -Z,8,8,6,12,5,8,5,5,4,11,6,8,3,9,11,7 -H,4,9,6,7,7,7,7,5,6,7,6,8,3,8,3,8 -O,5,9,6,7,4,7,8,8,6,7,8,8,3,7,4,9 -U,5,9,5,6,4,7,5,14,5,7,11,8,3,9,0,8 -W,6,9,6,7,7,4,9,2,3,9,8,8,7,11,2,7 -L,3,8,3,6,1,0,1,5,6,0,0,6,0,8,0,8 -J,0,0,1,1,0,12,4,5,3,12,4,11,0,7,0,8 -L,5,10,7,8,5,5,5,1,9,6,2,10,3,7,4,5 -O,5,8,7,7,6,7,5,5,5,9,5,10,5,5,7,5 -K,6,11,8,8,7,6,6,4,7,6,6,11,5,7,8,10 -J,4,6,6,7,5,8,9,5,5,7,7,9,3,7,8,6 -K,3,6,4,4,4,7,9,4,4,7,5,8,4,7,6,9 -T,3,7,4,5,2,7,11,3,7,10,9,4,2,11,3,5 -G,4,10,6,8,7,7,9,6,3,5,5,11,5,7,8,7 -M,5,5,6,7,4,7,7,12,2,7,9,8,9,6,0,8 -J,2,10,3,7,1,15,2,6,6,14,0,9,0,7,0,8 -V,3,4,5,2,1,3,13,4,2,11,11,7,2,10,1,7 -T,6,8,6,6,3,6,11,2,9,12,9,4,1,11,3,4 -Y,2,1,4,2,1,6,10,2,7,8,11,8,1,11,2,7 -C,3,3,4,5,1,5,7,6,9,6,6,12,1,8,4,8 -A,3,4,5,6,2,8,5,3,1,7,1,8,2,7,2,8 -R,8,12,6,6,4,10,6,6,5,11,2,8,7,6,5,10 -M,5,9,8,7,7,12,6,2,4,9,2,6,8,6,2,8 -U,9,10,9,8,3,4,9,6,9,13,12,9,3,9,1,7 -Q,6,8,6,9,8,8,7,6,3,8,8,10,3,8,6,8 -X,3,6,5,4,3,8,7,4,9,6,6,8,3,8,6,8 -C,4,7,5,5,5,6,7,4,4,7,7,10,6,9,3,8 -Y,4,10,6,7,1,6,10,3,2,8,13,8,1,11,0,8 -L,3,6,4,4,2,4,4,4,9,2,1,7,0,7,1,6 -M,4,8,7,6,9,9,5,2,2,8,4,8,10,6,2,6 -S,1,0,1,0,0,8,7,3,5,5,6,7,0,8,6,8 -I,2,7,2,5,2,7,7,0,7,7,6,8,0,8,3,8 -J,6,7,4,11,3,6,9,3,4,13,5,5,3,8,6,9 -E,10,15,7,8,5,7,7,4,5,10,6,8,3,9,8,9 -M,5,9,8,7,10,7,6,4,2,7,4,8,13,6,3,7 -L,3,4,3,6,1,0,1,5,6,0,0,7,0,8,0,8 -T,3,8,5,6,3,7,12,4,6,8,11,7,2,12,1,7 -X,5,11,6,8,2,7,7,5,4,7,6,8,3,8,4,8 -X,5,11,6,8,2,7,7,5,4,7,6,8,3,8,4,8 -V,8,11,8,8,3,2,11,6,5,13,12,8,3,10,1,8 -D,2,4,4,2,2,9,6,4,6,10,4,6,2,8,2,9 -X,8,15,8,9,4,8,8,2,8,9,7,8,4,12,4,7 -S,3,2,4,4,3,8,7,7,5,7,7,8,2,9,9,8 -B,1,3,2,1,1,8,7,2,5,10,5,7,1,8,3,9 -E,1,3,3,2,2,6,8,2,7,11,7,9,2,8,4,9 -S,5,11,6,8,3,9,10,6,10,5,6,5,0,7,9,8 -K,5,8,8,6,5,3,8,2,6,10,11,11,3,7,3,5 -P,4,8,6,12,10,8,9,5,0,8,6,7,5,11,6,6 -Z,2,2,3,4,2,7,7,5,9,6,6,8,2,8,7,8 -R,3,5,6,3,4,8,8,3,5,9,4,7,3,6,3,11 -S,2,3,3,2,1,9,7,2,6,10,5,7,1,9,5,9 -F,2,1,3,2,1,5,11,4,5,10,9,5,1,9,3,6 -L,4,8,5,6,3,4,3,5,9,1,1,5,1,6,1,5 -N,5,9,6,7,4,8,6,9,6,4,4,4,5,7,3,7 -N,6,7,8,5,4,10,7,3,6,10,1,4,6,10,2,8 -N,1,0,1,1,0,7,7,10,0,6,6,8,4,8,0,8 -D,4,8,6,6,4,8,7,6,7,10,5,5,3,8,3,8 -M,6,10,7,8,4,8,7,13,2,6,9,8,9,6,0,8 -Y,5,10,7,8,6,8,6,7,5,5,8,8,3,8,10,6 -R,9,13,7,8,5,7,7,5,5,9,5,9,7,5,7,11 -D,6,9,8,8,8,6,8,5,7,5,3,6,5,9,8,5 -E,3,6,3,4,2,3,8,6,10,7,6,15,0,8,7,7 -R,2,0,2,1,1,7,11,8,2,7,5,8,2,7,4,10 -M,4,7,6,5,5,6,6,2,4,9,8,9,7,5,2,7 -I,6,10,8,8,5,9,5,2,6,6,7,6,0,10,4,7 -F,4,9,5,6,3,2,11,5,6,11,10,9,0,8,2,6 -P,5,10,7,8,7,6,9,3,7,9,8,5,4,10,4,7 -S,6,10,7,8,4,6,8,4,8,11,8,7,2,8,5,5 -X,3,5,4,4,4,5,8,2,4,8,7,9,2,7,7,8 -T,2,7,3,4,1,7,14,0,6,7,11,8,0,8,0,8 -R,5,10,5,8,7,6,8,8,4,7,5,7,3,8,6,12 -O,2,3,2,1,1,8,7,6,4,9,6,8,2,8,3,8 -A,4,9,6,7,3,11,2,4,3,10,2,9,3,7,3,8 -P,5,8,8,6,3,7,11,3,7,14,5,2,0,9,3,8 -X,5,8,6,7,6,7,7,2,5,7,6,8,3,10,8,7 -M,3,1,4,2,1,8,7,11,1,7,9,8,7,6,0,8 -U,3,5,5,4,4,8,6,4,4,6,6,8,4,10,1,7 -B,2,6,3,4,3,6,7,7,5,7,6,7,2,8,6,9 -Z,3,8,4,6,3,7,7,6,10,6,6,8,1,8,8,8 -G,5,8,6,6,4,6,7,5,4,9,8,9,2,7,5,9 -P,4,9,5,7,5,5,8,6,4,8,7,9,3,8,7,10 -S,6,10,9,8,11,6,7,3,2,7,5,6,3,8,11,4 -M,7,8,9,7,10,5,8,5,4,6,5,8,13,7,6,9 -E,5,5,5,8,3,3,8,6,12,7,5,15,0,8,7,6 -K,5,11,7,8,7,9,6,1,6,10,3,8,7,7,6,11 -T,3,4,5,6,1,7,15,1,5,7,11,8,0,8,0,8 -A,7,15,5,8,4,10,3,3,2,8,4,11,5,5,4,8 -S,2,6,3,4,3,7,6,7,5,7,7,8,2,9,8,7 -R,4,8,4,6,4,6,8,9,4,7,5,8,2,7,5,11 -D,3,8,4,6,6,10,7,4,5,7,6,6,4,6,9,6 -H,6,10,9,8,8,7,7,3,6,10,6,8,3,8,3,7 -G,5,9,4,4,3,9,3,5,2,9,7,10,4,9,6,8 -E,6,10,8,8,7,9,6,2,7,11,4,9,5,7,6,11 -O,5,10,5,8,5,8,6,8,4,9,5,8,3,8,3,8 -J,6,10,8,8,4,5,9,3,6,15,7,9,2,7,2,7 -C,5,8,7,7,6,5,7,3,4,7,6,11,4,10,7,10 -I,1,3,2,2,0,7,7,1,7,13,6,9,0,8,1,8 -D,4,6,5,5,4,6,6,6,7,7,6,8,4,6,5,5 -F,1,0,1,1,0,3,11,4,3,11,9,7,0,8,2,8 -U,2,3,3,2,1,4,8,4,6,11,10,9,3,9,1,7 -Q,2,3,2,3,2,8,8,5,2,8,7,10,2,9,3,8 -Q,3,7,5,5,4,8,4,7,4,6,5,7,3,8,3,9 -W,6,10,9,7,7,4,11,2,2,8,9,9,7,12,1,8 -R,4,6,5,4,4,6,7,4,6,7,6,6,6,7,4,8 -J,1,3,3,2,1,8,6,3,5,14,6,11,1,7,0,7 -Z,6,10,8,8,5,7,8,3,10,12,8,7,2,8,7,6 -C,4,9,5,8,6,5,7,3,4,7,6,11,4,10,7,10 -Q,2,3,3,3,2,8,7,6,3,6,6,9,2,8,5,9 -Q,2,2,2,2,1,7,8,4,2,8,7,9,2,9,3,9 -T,2,7,4,4,1,8,15,1,5,6,11,8,0,8,0,8 -E,3,5,3,4,3,7,7,5,7,7,6,9,2,8,5,10 -E,3,5,3,3,3,7,7,5,7,7,6,9,2,8,5,10 -P,4,7,5,5,2,6,14,5,3,12,5,1,0,10,3,7 -F,2,3,4,2,1,6,11,2,5,13,6,4,1,10,1,8 -C,4,4,5,6,2,6,6,7,11,8,5,12,1,9,4,9 -S,1,3,3,2,1,7,9,3,7,10,7,6,1,8,4,6 -S,3,6,4,4,3,7,6,7,5,7,7,9,2,9,8,7 -N,3,2,4,4,3,7,8,5,5,7,7,6,5,10,2,5 -T,6,8,6,6,3,7,11,3,8,11,9,4,2,12,3,4 -A,1,3,2,2,1,9,3,2,1,8,2,9,1,6,1,7 -X,3,2,4,3,2,8,7,3,9,6,6,8,2,8,6,8 -W,5,7,7,5,3,4,8,5,1,7,9,8,8,10,0,8 -V,3,6,5,4,5,8,5,5,2,7,7,7,4,9,4,6 -F,3,6,4,4,2,6,11,2,6,14,6,4,1,10,2,8 -D,2,2,3,3,3,7,7,6,6,7,6,5,2,8,3,7 -Q,4,9,5,8,3,9,8,8,6,5,8,9,3,8,5,9 -H,1,1,2,1,1,7,7,12,1,7,6,8,3,8,0,8 -O,4,6,6,5,4,6,6,5,5,8,4,8,3,7,5,6 -V,4,6,4,4,2,5,11,3,4,9,11,7,2,10,1,8 -T,3,8,5,6,1,7,15,1,5,7,11,8,0,8,0,8 -U,3,6,4,4,1,7,4,14,5,7,13,8,3,9,0,8 -Y,2,7,3,5,2,5,10,2,2,8,12,8,1,11,0,8 -G,1,0,2,0,1,8,7,5,5,6,6,9,1,7,5,10 -H,4,7,6,10,7,8,9,5,1,8,6,6,5,11,10,6 -U,2,1,2,1,1,8,5,11,4,6,13,8,3,10,0,8 -I,3,10,4,8,2,7,7,0,8,13,6,8,0,8,1,8 -L,4,10,5,8,3,0,2,4,6,1,0,8,0,8,0,8 -P,4,7,5,5,4,8,9,4,4,11,5,5,3,10,3,7 -L,4,10,6,7,8,7,7,3,5,6,7,10,6,10,7,4 -N,3,7,4,5,2,7,7,14,2,5,6,8,5,8,0,8 -W,7,10,7,8,8,5,10,3,3,9,7,7,8,11,3,6 -F,5,10,5,7,3,0,13,3,3,11,9,6,0,8,2,6 -A,6,14,6,8,4,12,2,3,2,12,4,11,4,4,4,11 -G,5,10,6,8,5,7,7,7,6,6,5,9,2,8,6,11 -Y,4,7,6,5,2,9,11,1,7,3,11,8,1,11,2,9 -L,5,10,7,7,3,6,4,1,10,8,2,11,0,7,3,7 -M,4,1,5,3,3,8,6,6,5,6,7,8,8,5,2,7 -O,2,4,3,2,1,8,7,7,5,7,6,8,2,8,3,8 -G,4,7,5,5,4,6,7,6,4,5,7,9,2,7,4,9 -Y,3,5,4,4,2,4,10,1,8,10,10,6,1,10,3,4 -M,3,3,5,2,3,9,6,3,4,9,5,7,6,5,1,8 -A,3,6,5,4,3,11,2,2,2,9,2,9,2,6,3,8 -P,4,8,4,5,2,3,14,8,1,11,7,3,1,10,4,8 -U,4,8,4,6,3,7,6,12,4,7,12,8,3,9,0,8 -F,2,3,4,2,1,6,10,3,5,13,6,5,1,9,2,7 -A,3,6,5,4,1,7,5,3,1,6,1,8,2,7,2,7 -P,1,3,2,1,1,5,10,3,4,10,8,5,0,9,3,7 -H,3,4,4,5,2,7,9,15,2,7,3,8,3,8,0,8 -A,4,10,7,7,5,7,5,2,3,5,2,6,3,7,4,4 -F,4,9,5,6,2,1,15,5,3,12,9,4,0,8,2,6 -G,2,1,2,1,1,8,6,6,6,6,5,9,1,7,5,10 -X,11,14,10,8,4,8,7,2,10,9,6,8,4,8,4,8 -S,9,15,8,9,4,11,2,2,5,10,2,9,3,7,4,12 -K,5,8,7,6,5,5,7,1,7,10,8,10,3,8,4,7 -D,4,4,5,6,3,5,6,10,9,5,5,5,3,8,4,8 -J,4,5,5,6,4,9,8,5,4,6,5,8,3,8,9,8 -T,7,9,7,7,5,6,12,5,6,11,9,4,3,13,3,4 -P,3,3,5,2,2,7,10,3,4,12,4,3,1,9,3,8 -K,4,8,6,6,5,5,8,1,6,9,7,9,3,8,3,8 -A,2,7,4,5,2,12,2,4,3,11,2,9,2,6,3,9 -A,3,4,6,6,2,9,3,3,3,8,2,9,3,6,3,9 -C,4,7,5,5,3,6,7,6,9,8,4,10,1,10,4,10 -M,2,3,4,2,2,6,6,3,3,9,8,9,5,5,1,8 -V,3,4,4,3,1,4,12,4,3,10,11,7,2,10,1,8 -M,5,8,7,6,8,7,7,7,5,7,5,8,7,9,8,6 -J,2,6,2,4,1,15,3,3,5,12,1,8,0,8,0,8 -O,3,7,4,5,2,7,8,8,7,7,7,8,3,8,4,8 -S,5,10,7,8,5,10,6,4,6,10,3,7,2,8,5,10 -N,3,5,4,7,3,7,7,14,2,5,6,8,6,8,0,8 -L,5,11,6,9,4,4,4,1,9,6,1,10,0,6,3,6 -V,2,5,4,4,2,6,12,2,3,8,11,8,2,10,1,8 -H,3,3,3,4,2,7,8,14,1,7,5,8,3,8,0,8 -Z,3,5,4,7,2,7,7,4,14,10,6,8,0,8,8,8 -J,2,7,3,5,1,13,2,8,4,13,4,12,1,6,0,8 -K,11,15,10,8,4,7,8,3,8,9,7,8,6,8,4,7 -X,6,8,9,6,4,6,8,2,9,10,9,8,3,8,4,7 -C,7,10,7,7,4,6,7,6,8,13,8,12,3,11,5,5 -D,3,6,3,4,3,5,7,8,6,7,7,6,2,8,3,8 -E,4,10,4,8,5,2,8,5,9,7,7,14,0,8,6,9 -M,5,9,8,7,6,5,7,3,4,10,9,9,8,6,3,8 -A,7,13,7,7,4,12,3,6,2,12,2,10,5,3,4,10 -M,6,9,8,6,8,7,7,6,5,6,7,9,8,6,2,8 -C,3,7,4,5,2,5,8,6,7,7,6,12,1,9,4,10 -J,3,10,4,8,1,12,2,10,4,14,4,13,1,6,0,8 -J,2,5,4,3,2,9,5,4,5,14,6,11,1,6,0,7 -L,4,10,4,8,1,0,1,6,6,0,0,6,0,8,0,8 -Q,3,4,4,5,4,8,8,7,2,5,7,9,3,8,5,9 -M,4,3,4,4,3,7,7,12,1,7,9,8,8,6,0,8 -Z,2,3,4,2,2,7,8,2,9,12,6,8,1,9,5,8 -Q,6,7,8,6,6,7,4,4,5,7,4,9,5,5,6,7 -N,5,6,6,6,6,7,7,4,3,7,5,7,6,9,5,5 -V,2,3,3,1,1,4,12,3,2,10,11,7,2,11,1,7 -B,3,6,4,4,3,8,6,6,7,6,6,6,2,8,7,10 -K,5,7,8,5,5,9,5,1,6,9,3,8,4,7,4,10 -Q,6,12,6,6,4,11,4,4,6,12,3,9,3,9,7,12 -A,3,7,5,5,3,11,2,2,2,9,2,9,3,6,3,9 -R,4,8,6,6,4,7,8,6,6,6,5,8,4,6,7,9 -I,1,1,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -M,6,8,9,6,9,10,6,3,3,9,4,7,9,8,3,6 -H,6,11,6,8,3,7,6,15,0,7,7,8,3,8,0,8 -D,4,6,6,4,4,7,7,6,5,7,6,6,4,8,3,7 -D,2,4,4,3,2,8,7,5,6,9,5,5,2,8,3,7 -H,3,4,4,3,3,7,8,5,7,7,6,8,6,8,4,8 -R,3,3,4,5,2,5,11,8,4,7,3,9,3,7,6,11 -Z,4,7,5,5,3,7,8,2,9,11,7,8,1,8,6,7 -Q,4,7,5,6,3,7,6,8,6,6,7,7,3,8,5,9 -B,4,9,5,6,4,6,7,8,7,7,6,7,2,8,9,10 -G,2,4,3,3,2,6,7,5,5,9,7,10,2,8,4,9 -B,1,0,2,1,1,7,8,7,5,7,6,7,1,8,6,8 -C,4,5,5,7,2,5,7,7,10,7,6,13,1,8,4,8 -K,8,15,8,8,5,3,8,4,6,10,11,11,5,11,4,7 -C,8,13,5,8,2,8,6,7,7,12,5,9,2,10,5,9 -W,4,7,5,5,5,7,7,6,2,7,8,8,5,8,3,9 -Q,3,7,4,6,2,8,6,8,6,6,4,8,3,8,4,8 -U,6,10,6,5,3,7,6,5,4,6,7,7,5,6,3,6 -X,5,8,8,6,5,10,6,1,8,10,2,7,4,9,4,10 -D,4,2,5,3,3,7,7,6,7,6,6,5,5,8,3,7 -F,6,7,8,8,8,7,9,4,5,7,7,6,5,9,9,9 -Z,5,9,7,6,5,7,8,2,9,12,6,8,1,9,6,8 -K,7,9,10,7,7,2,9,2,7,10,11,11,5,7,4,4 -S,2,3,3,2,2,8,7,6,4,7,6,8,2,8,9,8 -O,6,11,7,9,5,8,7,9,6,7,5,10,4,8,5,5 -X,10,12,9,7,4,8,7,2,9,9,6,8,4,11,4,8 -N,3,7,4,5,3,7,7,12,1,6,6,8,5,8,0,8 -Q,3,4,4,5,3,7,8,5,2,8,9,10,2,9,5,9 -J,6,11,7,8,3,9,5,3,7,15,4,10,0,6,1,7 -J,3,9,4,6,2,9,5,3,6,14,4,9,0,7,1,7 -H,6,9,8,7,7,7,7,7,5,6,5,7,3,7,7,10 -O,4,6,5,4,2,7,7,8,8,7,6,8,3,8,4,8 -B,4,6,6,4,5,9,8,3,6,7,6,8,6,8,6,9 -P,1,0,2,0,0,5,10,7,2,9,6,5,1,9,3,8 -N,6,10,9,8,6,11,8,3,5,10,1,4,7,11,2,8 -E,2,4,2,3,2,7,7,5,7,7,6,8,2,8,5,10 -I,7,13,6,7,3,12,5,2,6,12,3,6,2,10,4,12 -L,1,3,3,2,1,6,4,1,7,7,2,10,0,7,2,8 -H,4,8,4,5,2,7,7,15,1,7,6,8,3,8,0,8 -H,3,5,5,3,3,8,6,3,5,10,6,9,3,7,3,8 -M,1,0,2,0,1,7,6,9,0,7,8,8,5,6,0,8 -H,6,11,6,6,3,8,8,3,4,9,6,7,6,9,5,9 -X,1,0,1,0,0,8,7,3,5,7,6,8,2,8,3,7 -U,9,10,7,5,3,5,3,5,5,3,7,7,5,8,2,7 -I,5,11,6,8,4,9,6,0,8,13,5,9,0,8,1,9 -X,6,10,9,7,5,7,7,0,8,10,6,8,3,8,3,8 -C,2,6,3,4,2,7,8,8,7,10,6,11,2,11,4,9 -B,2,3,2,2,2,7,7,5,5,7,6,6,2,8,5,9 -D,2,3,3,2,2,7,7,6,7,7,6,4,2,8,3,7 -V,3,2,6,4,2,7,12,2,3,6,11,9,4,12,2,7 -K,4,9,5,6,5,6,5,4,4,6,6,9,3,6,8,10 -K,4,8,6,6,7,7,7,3,4,6,6,8,7,7,7,7 -B,4,11,6,8,8,8,8,6,6,7,6,5,2,8,6,9 -Q,4,9,4,4,2,11,4,4,5,12,3,8,2,7,6,12 -T,6,9,6,7,3,5,11,2,10,12,9,4,0,10,3,4 -H,3,4,6,3,3,8,7,3,6,10,5,8,3,8,3,7 -L,5,11,7,8,5,5,3,6,8,2,2,4,1,6,1,5 -W,4,11,7,8,8,10,11,2,2,5,8,7,9,12,2,8 -R,5,9,7,7,6,7,8,5,7,7,5,6,3,7,5,8 -Y,2,7,4,5,2,5,9,1,6,9,12,9,1,11,2,7 -A,3,3,5,4,1,8,6,3,1,7,1,8,2,7,1,8 -U,8,10,9,8,6,3,9,5,8,10,10,10,3,9,2,6 -Z,3,8,4,6,4,7,8,5,9,7,6,9,1,9,7,7 -D,5,8,7,6,6,8,8,6,6,9,6,4,6,10,5,7 -J,6,11,8,9,3,8,7,3,7,15,5,10,1,6,1,7 -X,4,9,6,7,6,7,8,2,6,7,7,9,4,10,6,7 -S,4,5,6,4,5,8,7,5,5,7,6,8,5,8,9,11 -O,8,15,5,8,3,7,9,6,6,9,6,6,4,10,5,9 -V,3,5,6,4,2,6,13,3,3,8,11,8,3,10,1,8 -C,5,8,7,6,6,6,5,4,4,9,6,12,6,8,4,9 -H,3,5,5,7,4,8,12,3,2,8,8,7,3,10,7,6 -R,2,3,4,2,2,8,7,3,4,9,4,6,2,7,3,9 -M,6,8,9,7,10,6,8,5,3,6,5,8,13,9,5,8 -T,3,10,5,8,5,7,11,4,5,7,11,8,3,12,1,8 -Y,1,1,2,1,0,7,10,2,2,7,12,8,1,11,0,8 -Y,2,4,3,3,1,3,12,3,6,12,10,5,1,11,2,5 -J,2,6,3,4,1,13,2,8,4,14,4,12,0,7,0,8 -F,2,7,3,5,1,1,12,4,4,12,10,7,0,8,2,6 -J,5,9,6,7,3,9,5,4,6,15,5,11,1,6,0,7 -C,5,11,6,9,3,4,9,7,8,13,11,12,2,9,3,7 -G,1,0,2,0,1,8,6,5,5,6,5,9,1,8,5,10 -Q,6,7,8,6,6,7,4,5,6,7,4,8,5,4,6,7 -P,3,8,4,6,2,3,14,8,1,11,7,3,1,10,4,8 -Q,2,2,3,2,2,8,7,6,4,6,5,9,2,9,3,9 -D,4,9,6,7,9,8,8,5,4,7,6,5,6,8,8,5 -V,7,12,6,6,3,9,10,5,4,6,10,6,5,12,3,7 -G,5,9,4,4,3,7,6,3,3,8,6,8,4,9,8,6 -Y,2,1,2,1,0,7,10,2,2,7,12,8,1,11,0,8 -L,3,6,3,4,1,0,1,6,6,0,1,5,0,8,0,8 -N,5,11,5,9,6,7,7,13,1,6,6,8,5,9,0,7 -V,4,6,5,4,3,9,11,3,1,4,10,9,3,11,4,9 -C,2,1,2,2,0,6,7,6,9,7,6,15,0,8,4,10 -I,1,4,2,3,1,7,7,1,8,13,6,8,0,8,1,8 -Y,2,6,3,4,0,6,10,2,2,8,12,8,1,10,0,8 -O,4,7,5,5,3,7,7,8,5,8,7,10,3,8,3,7 -M,6,7,9,6,9,5,9,5,3,6,4,8,13,6,5,8 -E,4,10,5,8,3,3,7,6,11,7,6,15,0,8,7,6 -I,1,5,2,3,1,7,7,0,7,13,6,8,0,8,1,8 -C,5,7,5,5,3,3,8,5,7,11,10,13,2,9,3,7 -E,4,7,6,5,4,5,8,5,8,12,10,9,3,8,5,5 -I,7,12,5,6,2,10,5,6,4,13,3,8,3,8,5,10 -E,2,4,4,3,2,7,7,2,7,11,6,8,2,8,4,9 -X,1,0,1,0,0,8,7,3,4,7,6,8,2,8,4,8 -X,4,2,6,4,3,7,7,3,10,6,6,8,2,8,6,8 -G,3,5,4,4,2,6,7,5,5,9,7,10,2,8,4,9 -E,3,6,4,4,3,7,7,6,9,7,7,9,3,8,6,8 -J,3,7,4,5,2,9,4,5,4,14,6,12,0,6,1,7 -D,3,5,4,4,2,8,7,7,7,6,6,3,2,8,3,7 -S,4,10,5,7,3,6,8,5,8,11,8,7,2,9,5,5 -Z,4,9,6,6,4,8,7,2,9,11,5,9,1,8,6,8 -W,7,10,10,8,14,9,7,5,2,7,7,8,13,10,4,6 -M,4,3,4,5,3,7,7,12,1,7,9,8,8,6,0,8 -L,4,8,5,6,3,3,4,2,8,2,1,8,0,7,1,6 -R,3,9,3,6,4,5,9,8,3,7,5,8,2,7,5,11 -H,4,7,6,5,4,7,8,3,6,10,7,8,3,8,3,8 -D,3,7,3,5,3,6,7,9,7,6,5,6,2,8,3,7 -S,2,4,4,3,2,7,7,2,7,10,6,8,1,9,5,8 -Y,3,10,5,7,1,8,11,1,3,6,12,8,1,11,0,8 -N,3,3,4,4,2,7,7,14,2,5,6,8,6,8,0,8 -Y,4,4,5,6,7,8,8,3,2,7,8,9,4,11,7,7 -R,3,9,4,6,4,6,8,8,4,7,5,8,2,7,5,11 -D,2,4,4,3,2,8,7,4,6,10,5,6,2,8,3,8 -O,3,4,4,6,2,7,6,9,6,6,5,6,3,8,4,8 -G,3,7,4,5,2,7,6,8,7,6,6,8,2,8,6,11 -H,9,15,10,8,7,8,7,3,5,10,4,7,7,6,6,7 -Y,6,10,8,8,7,9,7,7,4,6,9,7,3,9,9,4 -M,7,10,9,8,8,8,6,6,5,6,8,8,9,6,2,7 -P,9,10,7,5,3,6,12,6,4,13,5,3,4,10,4,8 -H,3,4,5,6,4,9,12,3,2,8,8,7,3,10,6,7 -V,6,9,5,4,2,7,10,7,3,9,9,5,5,12,3,9 -B,5,10,7,7,6,8,8,6,8,7,6,6,6,8,6,10 -X,3,8,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -O,3,3,4,2,2,7,8,7,5,7,7,8,2,8,3,8 -K,4,11,5,8,2,3,7,8,2,7,5,11,3,8,2,11 -G,1,0,2,1,1,8,6,6,5,6,5,9,1,8,5,10 -T,3,7,5,5,3,7,11,1,8,7,11,8,1,10,1,8 -K,2,4,3,2,2,5,7,4,6,7,6,11,3,8,4,9 -H,3,7,4,4,2,7,8,14,1,7,6,8,3,8,0,8 -G,3,7,5,5,5,7,9,6,3,6,6,10,3,7,7,8 -B,4,4,5,6,4,6,6,9,7,6,6,7,2,8,9,9 -V,4,9,6,7,2,7,8,4,3,7,14,8,3,9,0,8 -T,4,9,6,8,6,6,8,4,8,8,7,8,3,9,8,7 -N,5,5,6,7,3,7,7,15,2,4,6,8,6,8,0,8 -U,3,3,3,2,1,5,8,5,7,9,8,8,3,9,2,5 -Z,4,6,6,4,3,6,9,3,9,11,8,6,1,9,6,6 -K,1,0,1,0,0,5,8,7,0,7,6,10,3,8,2,11 -H,8,13,8,7,4,10,8,4,6,9,2,5,6,7,4,9 -I,1,3,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -A,2,1,3,2,1,8,2,2,1,7,2,8,2,7,2,7 -H,4,8,6,6,8,7,6,5,3,6,6,8,7,7,9,9 -G,4,8,5,6,2,8,6,8,8,7,5,12,2,8,5,10 -O,8,13,6,8,3,7,7,5,5,8,4,7,5,9,5,8 -E,1,1,2,2,1,4,7,5,8,7,6,13,0,8,6,9 -X,4,8,7,6,4,4,8,2,8,10,12,10,3,8,4,5 -J,4,10,5,7,3,8,6,3,6,14,4,9,0,6,1,7 -O,2,4,3,3,2,7,7,6,4,9,7,7,2,8,3,8 -X,1,1,2,2,1,7,7,3,8,6,6,8,2,8,5,8 -V,4,4,6,7,1,8,8,4,3,7,14,8,3,9,0,8 -C,5,10,5,8,3,6,8,7,7,13,7,9,2,11,3,7 -M,5,5,6,4,4,8,6,6,5,6,7,7,10,6,4,6 -Q,4,6,5,8,5,7,9,5,3,8,9,9,4,10,6,7 -K,3,1,4,2,2,6,7,4,7,7,6,10,3,8,4,9 -W,2,0,2,1,1,7,8,3,0,7,8,8,6,9,0,8 -R,2,3,3,2,2,9,6,3,4,10,4,7,2,7,3,10 -G,3,9,5,6,3,6,7,7,6,5,7,9,2,7,4,9 -S,7,10,8,8,5,7,7,4,6,9,8,9,2,11,5,6 -O,4,6,6,4,3,7,6,8,5,8,5,11,4,8,4,7 -Y,3,10,5,7,3,7,10,2,6,6,12,9,2,11,2,8 -P,5,4,5,6,3,4,13,8,2,10,6,3,1,10,4,8 -T,3,4,3,3,1,5,12,3,6,11,9,5,1,11,1,5 -R,4,6,6,4,4,9,7,4,5,9,3,7,3,7,4,11 -H,6,10,6,6,4,5,8,3,4,10,9,9,6,10,5,8 -E,6,9,8,7,7,8,6,6,2,7,6,9,4,8,8,10 -B,3,7,5,5,3,9,7,4,6,10,5,6,2,8,6,9 -F,3,4,3,3,2,5,11,3,6,11,9,5,1,10,3,6 -N,5,10,5,7,3,7,7,15,2,4,6,8,6,8,0,8 -H,3,4,3,5,2,7,7,14,1,7,6,8,3,8,0,8 -H,5,9,8,7,5,6,8,3,6,10,8,9,3,8,3,7 -L,3,7,4,5,2,6,4,2,8,7,2,10,0,7,2,8 -Q,5,7,7,11,10,9,10,5,0,5,7,10,6,13,6,12 -I,1,3,2,2,0,7,8,1,6,13,6,7,0,8,0,7 -F,3,9,4,6,2,1,13,5,4,12,10,7,0,8,2,6 -D,3,6,5,4,3,9,7,4,5,10,4,5,3,8,2,8 -B,5,9,4,5,3,7,7,5,5,10,6,9,5,7,7,9 -D,2,4,4,3,2,8,7,4,6,9,5,5,2,8,3,7 -A,1,3,2,2,1,10,2,2,1,9,2,9,1,6,2,8 -W,4,8,7,6,5,7,10,2,3,7,9,8,8,11,1,8 -D,7,11,9,8,8,7,8,7,6,8,7,6,7,7,3,7 -D,3,5,4,4,3,7,7,7,6,7,6,5,2,8,3,7 -T,3,6,4,5,4,6,7,3,8,8,7,10,3,7,7,6 -W,5,6,5,4,4,4,10,2,3,9,9,7,7,11,2,6 -E,3,2,3,3,3,7,7,5,7,7,5,9,2,8,5,10 -Z,3,9,5,7,5,8,6,3,7,7,6,8,1,7,11,9 -Y,3,8,5,6,2,5,10,3,2,8,12,8,1,11,0,8 -U,6,9,8,7,10,9,8,4,5,5,8,8,10,7,8,6 -J,6,8,8,9,7,8,9,5,5,7,7,9,4,6,9,6 -E,8,15,6,8,5,8,6,5,5,11,5,10,3,8,7,11 -W,6,5,7,4,3,3,10,3,3,10,10,8,7,10,1,7 -Y,6,8,8,10,10,10,10,6,3,6,7,7,6,11,8,3 -I,1,7,0,5,1,7,7,5,3,7,6,8,0,8,0,8 -J,3,9,4,7,3,10,6,0,8,11,3,6,0,7,1,7 -I,1,4,2,3,0,7,8,0,7,13,6,8,0,8,0,8 -P,8,15,7,8,4,6,9,6,4,13,5,5,4,10,4,8 -N,4,9,6,6,4,8,9,9,6,8,5,5,3,7,3,7 -H,3,9,4,6,2,7,8,15,1,7,4,8,3,8,0,8 -P,11,13,8,7,4,6,12,6,5,14,6,2,4,10,4,8 -Y,6,9,6,7,4,5,9,0,8,8,9,5,1,11,4,5 -E,3,7,3,5,2,3,7,6,11,7,7,15,0,8,6,7 -S,4,6,5,6,6,8,8,5,4,7,7,8,5,11,9,10 -T,4,9,5,7,5,7,11,4,6,7,11,8,2,12,1,7 -M,6,11,7,8,7,8,6,11,1,7,8,8,9,4,1,8 -L,2,6,2,4,0,0,2,5,6,0,0,7,0,8,0,8 -V,2,0,3,1,0,7,9,4,2,7,13,8,2,10,0,8 -B,4,11,6,8,8,7,7,6,5,7,6,6,3,8,6,10 -V,2,3,2,1,1,5,11,2,2,9,10,7,1,11,1,7 -S,4,9,5,7,3,8,6,6,9,5,6,8,0,9,9,8 -Q,6,13,5,7,3,8,4,4,7,10,4,9,3,8,8,10 -S,3,4,5,3,2,8,7,2,7,10,5,8,1,9,5,8 -O,5,9,6,7,5,7,8,8,4,6,7,9,3,7,4,7 -E,1,0,1,1,1,5,7,5,8,7,6,12,0,8,6,9 -A,2,6,4,4,1,8,5,3,1,7,1,8,2,7,2,8 -T,3,3,4,2,1,5,11,3,7,11,9,4,1,10,2,5 -G,2,1,3,2,2,6,7,6,6,6,6,10,2,9,3,9 -R,4,11,6,8,6,6,7,6,6,6,5,8,3,6,6,9 -H,4,7,4,4,2,7,10,14,2,7,3,8,3,8,0,8 -M,8,9,11,7,9,6,8,3,4,9,9,9,9,8,3,8 -D,4,7,6,5,3,9,6,4,8,11,4,6,3,8,3,9 -X,3,7,5,5,4,7,7,3,8,5,6,8,2,8,6,8 -C,6,11,6,8,3,4,8,6,8,12,10,13,1,9,3,7 -S,3,7,4,5,3,8,8,5,7,5,6,8,0,8,8,8 -P,5,10,7,8,6,7,10,5,4,12,5,3,1,10,3,8 -P,4,8,6,6,4,6,9,7,6,9,7,4,2,10,4,6 -J,0,0,1,0,0,11,4,5,3,12,4,10,0,7,0,8 -R,5,11,7,8,6,6,8,5,6,6,5,7,3,6,6,9 -E,7,11,4,6,2,8,7,5,8,10,6,9,2,10,7,9 -J,2,10,3,7,3,8,6,2,4,11,5,10,1,6,2,6 -Q,2,3,3,5,3,8,8,6,1,5,7,10,3,9,5,10 -V,7,12,5,6,3,8,10,5,5,7,10,5,5,12,3,7 -O,2,6,3,4,2,7,7,6,3,7,6,8,3,8,2,8 -G,2,4,3,3,2,6,7,5,4,9,7,10,2,9,4,10 -P,5,7,6,5,5,6,9,6,4,8,7,9,2,9,7,10 -I,0,3,0,2,0,9,7,2,6,7,6,7,0,8,1,7 -G,3,2,5,3,3,7,7,6,6,6,7,9,2,8,4,8 -D,3,4,4,3,2,7,7,7,7,7,6,5,2,8,3,7 -U,6,9,8,6,6,7,8,8,6,5,7,11,4,8,5,6 -D,5,8,7,7,6,6,7,5,7,7,5,7,4,7,6,5 -A,1,0,2,0,0,8,4,2,0,7,2,8,1,6,1,8 -U,1,0,1,0,0,7,7,10,4,7,12,8,3,10,0,8 -V,3,4,5,3,2,8,12,2,3,6,11,9,2,10,1,8 -D,5,9,6,7,3,6,8,11,10,8,7,6,3,8,4,8 -A,3,6,5,4,2,11,2,4,2,10,2,10,2,7,3,8 -U,7,11,6,6,4,6,6,5,5,7,8,9,5,8,3,9 -M,4,7,4,5,3,7,7,12,1,7,9,8,8,6,0,8 -X,7,10,7,5,4,6,9,3,7,11,10,8,4,14,4,6 -P,5,11,7,8,5,8,8,1,6,13,6,5,1,9,3,9 -Z,4,5,6,8,5,11,4,2,5,8,3,6,1,8,6,9 -J,6,8,7,9,7,8,7,4,6,6,6,7,4,9,10,9 -X,7,15,8,8,5,10,5,3,8,11,2,8,4,5,4,9 -G,4,8,5,6,3,7,7,7,7,11,6,11,2,9,4,9 -C,2,2,3,4,2,6,8,7,7,8,8,13,1,9,4,10 -R,4,5,7,4,6,7,7,3,4,7,5,8,6,9,5,7 -B,3,7,5,5,5,7,8,7,6,7,5,7,2,7,6,10 -T,3,5,4,4,3,7,11,3,7,7,11,8,2,11,1,8 -O,3,7,4,5,2,7,6,8,8,7,4,8,3,8,4,8 -G,5,8,7,7,7,7,8,6,3,7,7,9,7,10,8,8 -N,6,12,7,6,3,7,7,2,3,12,5,8,5,8,0,7 -K,3,4,5,3,3,6,8,1,7,10,7,10,3,8,2,7 -N,5,9,7,6,4,7,9,6,5,7,6,7,7,9,3,7 -S,3,4,3,3,2,8,7,7,5,7,6,8,2,9,9,8 -K,4,2,5,3,3,5,7,4,8,7,6,11,3,8,5,9 -A,4,12,7,8,3,7,4,3,2,6,1,8,3,7,3,7 -I,3,10,5,7,2,7,7,0,9,14,6,8,0,8,1,8 -I,1,6,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -J,5,6,6,7,5,8,9,4,5,7,6,8,3,8,8,8 -O,3,4,4,3,2,8,6,7,4,9,5,8,2,8,3,8 -C,3,4,4,6,1,5,6,7,9,6,5,13,1,8,4,9 -L,2,5,4,4,2,7,4,1,8,8,2,10,0,7,2,8 -T,3,7,4,5,2,6,12,2,7,8,11,8,1,11,1,7 -K,5,10,7,7,6,6,7,4,7,6,6,9,7,8,5,9 -P,6,9,8,7,6,5,14,6,2,12,6,2,1,10,3,7 -U,6,7,7,5,4,4,8,5,7,9,8,9,3,9,3,5 -P,4,10,6,7,6,7,6,7,4,7,6,8,3,8,7,10 -T,6,13,5,7,2,6,9,3,7,13,6,6,2,8,4,4 -C,3,2,4,4,2,5,8,7,7,9,8,13,1,9,4,10 -N,2,3,3,2,2,7,9,6,4,8,6,7,4,8,1,7 -H,4,2,5,3,4,7,7,6,6,7,6,8,3,8,3,9 -K,5,11,6,8,2,4,5,9,2,7,7,12,4,7,3,11 -F,4,8,6,9,8,7,9,4,4,8,6,7,4,9,8,8 -C,4,7,5,5,2,7,7,6,7,12,7,11,2,10,3,8 -F,5,11,6,8,6,6,9,4,7,10,9,6,2,9,4,6 -L,4,9,5,4,3,9,4,3,4,12,7,11,3,10,4,10 -Y,4,7,4,5,2,4,9,2,6,10,11,6,1,11,2,5 -S,7,11,9,8,11,8,6,5,3,8,6,8,5,7,11,8 -U,3,8,5,6,3,6,8,8,9,9,9,8,3,9,1,8 -N,1,1,2,2,1,7,7,11,1,5,6,8,4,8,0,8 -Z,4,8,5,6,3,8,6,2,10,11,4,9,2,8,6,9 -O,2,1,3,2,2,8,7,7,4,7,6,8,2,8,3,8 -P,6,9,5,5,2,7,9,5,3,12,4,5,4,9,4,8 -J,3,10,4,8,2,14,3,5,5,13,1,9,0,7,0,8 -O,4,9,6,7,3,8,7,9,8,7,5,8,3,8,4,8 -Z,2,4,4,2,2,7,7,2,9,12,6,8,1,8,5,8 -X,4,4,6,3,3,7,6,1,9,11,7,9,3,7,3,7 -H,5,10,7,8,8,7,7,6,7,7,6,9,3,8,4,8 -X,5,9,6,6,1,7,7,5,4,7,6,8,3,8,4,8 -H,5,6,7,4,5,5,9,3,6,10,9,9,3,9,3,6 -K,3,7,3,5,2,5,7,7,2,6,5,11,3,8,2,11 -D,5,11,6,8,7,10,6,3,6,10,3,6,3,8,3,9 -T,4,9,5,7,4,9,11,3,7,5,11,8,2,12,1,8 -A,4,11,6,8,4,8,3,2,3,6,1,8,2,7,3,7 -H,4,5,5,3,3,7,7,6,6,7,6,8,3,8,3,8 -Q,2,3,3,3,2,8,9,5,2,5,8,10,2,9,5,9 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -P,8,11,7,6,4,8,9,4,4,12,4,4,4,10,5,7 -F,6,10,8,8,9,7,6,6,4,8,7,8,4,10,8,11 -K,1,0,1,0,0,4,6,5,1,7,6,10,2,7,1,10 -H,1,0,2,0,0,7,8,11,1,7,6,8,2,8,0,8 -E,3,6,3,4,2,3,8,6,10,7,5,14,0,8,7,7 -A,2,4,4,3,2,9,2,2,1,8,2,9,2,7,2,8 -C,7,11,8,8,5,4,8,6,7,12,9,11,2,11,3,7 -H,7,12,8,6,5,11,6,3,5,10,4,6,5,9,4,8 -I,1,10,0,8,1,7,7,5,3,7,6,8,0,8,0,8 -J,1,7,2,5,1,9,6,2,7,11,4,8,0,7,1,6 -Y,9,9,7,13,5,7,11,2,3,9,10,5,4,10,6,8 -G,3,5,4,3,2,6,7,5,5,9,7,10,2,8,4,9 -X,5,10,6,7,2,7,7,5,4,7,6,8,3,8,4,8 -T,2,6,4,4,1,8,15,1,5,6,11,8,0,8,0,8 -D,3,7,5,5,4,9,7,3,5,10,4,6,3,8,2,8 -Q,5,8,5,9,5,8,6,7,2,8,7,12,3,8,6,7 -Y,3,8,5,6,1,6,9,3,1,8,13,8,2,11,0,8 -O,4,7,4,5,4,7,8,7,4,9,7,8,3,8,3,8 -B,5,9,7,7,5,8,8,4,7,10,5,5,2,8,6,10 -E,3,5,5,3,2,6,7,1,8,11,6,9,2,8,4,8 -Z,3,3,4,5,2,7,7,4,14,9,6,8,0,8,8,8 -X,7,15,8,8,5,11,7,2,8,11,4,6,3,11,4,9 -G,2,2,4,3,2,6,7,6,6,7,6,10,2,8,4,9 -M,6,10,8,8,10,7,6,7,4,6,5,8,8,8,8,9 -U,4,7,5,5,2,7,4,14,5,7,14,8,3,9,0,8 -X,4,9,7,6,4,7,7,0,8,9,6,8,2,8,3,7 -W,3,2,4,3,3,8,11,2,2,6,8,8,6,11,0,8 -M,2,3,4,2,2,8,6,3,4,9,6,8,6,5,1,7 -T,3,4,4,3,2,5,12,3,7,11,9,4,1,11,2,5 -B,2,3,4,1,2,8,7,2,5,10,5,6,1,8,4,9 -J,1,6,2,4,1,14,2,6,5,13,1,9,0,7,0,8 -I,1,3,2,2,1,7,8,1,7,13,6,7,0,8,1,7 -L,2,6,3,4,2,3,4,3,8,2,1,8,0,7,1,6 -F,3,9,5,6,3,4,11,2,6,11,10,6,1,10,3,5 -L,3,7,4,5,3,5,5,2,8,7,2,9,1,7,3,7 -N,4,9,4,6,4,8,7,12,1,6,6,8,5,9,0,8 -J,3,7,4,5,2,9,6,1,6,11,4,7,0,7,1,7 -E,4,6,6,4,4,6,8,3,7,11,8,9,3,9,4,7 -B,3,5,5,3,3,9,7,3,6,10,5,6,2,8,5,10 -G,1,0,2,0,0,8,6,5,4,6,5,9,1,8,5,10 -Y,3,9,6,6,1,5,11,3,2,10,12,7,1,11,0,8 -H,2,3,4,2,2,6,8,2,5,10,7,8,3,8,2,7 -B,6,11,8,8,7,9,7,4,7,10,4,6,3,8,6,10 -Y,7,9,5,13,4,5,11,2,4,11,10,6,4,11,6,7 -A,3,9,5,6,3,9,3,2,3,7,1,8,2,6,2,7 -R,1,0,2,1,1,6,10,7,2,7,5,8,2,7,4,10 -R,3,4,3,5,2,5,11,7,4,7,3,9,3,7,6,11 -H,7,9,7,4,3,8,8,4,5,8,5,7,6,7,4,8 -A,5,8,8,7,7,8,7,2,5,7,8,8,5,10,3,6 -D,2,6,3,4,3,8,7,5,6,6,5,4,3,8,3,7 -P,4,7,6,5,5,6,7,7,4,7,6,8,3,10,7,9 -A,2,4,3,2,1,8,2,2,2,8,2,8,2,6,2,7 -E,5,9,7,6,5,7,8,1,8,11,6,9,3,8,4,9 -Y,2,3,4,4,0,7,10,2,2,8,12,8,1,11,0,8 -V,6,8,6,6,2,4,12,4,4,10,12,7,3,9,1,8 -Q,6,7,8,11,8,10,12,6,0,4,7,11,6,15,5,8 -F,2,1,2,1,1,5,10,4,4,10,9,5,1,10,2,7 -G,5,8,6,6,6,7,7,6,2,6,6,10,4,8,7,7 -N,3,5,5,3,2,6,9,2,4,10,7,7,5,8,1,8 -Q,3,4,4,5,3,8,8,5,2,8,7,10,2,9,4,8 -X,2,5,4,3,2,7,7,3,9,6,6,8,2,8,6,8 -K,4,5,7,4,4,6,7,2,7,10,7,10,3,8,3,8 -I,1,3,2,1,0,7,7,1,6,13,6,8,0,8,0,8 -V,4,7,5,5,3,9,12,2,3,4,10,9,3,12,2,8 -K,5,9,7,8,8,8,8,2,5,8,3,8,5,4,4,10 -V,7,12,7,7,4,7,8,4,4,7,7,6,6,12,2,9 -L,3,6,5,4,5,8,8,3,5,5,7,9,6,11,6,5 -W,7,10,7,8,7,4,11,2,2,9,8,7,7,12,2,6 -D,5,8,8,6,6,8,8,5,6,10,6,5,5,9,4,10 -U,2,6,4,4,3,6,9,4,5,6,9,9,3,9,0,8 -S,6,11,8,8,5,8,7,3,6,10,5,7,2,8,5,8 -D,1,0,1,0,0,6,7,7,5,7,6,6,2,8,3,8 -V,9,14,7,8,3,7,11,5,6,10,10,5,4,11,3,8 -Z,3,8,5,6,3,6,9,2,9,11,8,7,2,9,6,7 -E,4,7,6,5,3,7,8,3,9,11,7,8,2,8,5,7 -Y,4,10,6,8,2,5,11,1,4,9,11,8,0,10,0,8 -T,2,8,3,6,2,7,13,0,5,7,10,8,0,8,0,8 -M,4,6,6,4,4,10,6,7,5,6,7,4,8,5,2,5 -L,2,1,2,3,1,4,4,5,7,2,2,5,1,7,1,6 -S,2,1,2,2,1,8,7,6,4,8,5,8,2,8,8,8 -J,1,3,3,2,1,8,6,3,6,14,5,10,0,7,0,7 -B,2,2,3,3,2,8,7,5,5,6,6,5,2,8,7,9 -Z,7,10,5,14,5,5,11,3,3,12,8,6,3,8,12,5 -S,4,8,5,6,3,10,7,4,8,11,5,7,2,9,5,9 -A,7,12,6,6,3,9,0,3,2,9,4,12,3,5,4,6 -R,3,6,3,4,3,6,9,7,3,7,5,8,2,7,5,11 -Y,1,1,2,1,0,7,10,2,2,7,12,8,1,11,0,8 -U,5,6,5,4,3,4,8,5,7,9,8,9,3,9,3,5 -Y,5,8,5,6,2,3,13,4,6,13,11,4,1,11,2,5 -Z,5,11,7,8,8,6,7,3,9,7,6,10,1,8,11,5 -X,1,0,1,0,0,7,7,3,4,7,6,8,2,8,3,8 -R,7,12,7,6,5,11,5,3,5,10,3,8,6,8,6,10 -S,4,8,5,6,3,7,7,4,8,11,4,8,2,7,5,8 -Q,4,7,5,6,3,8,5,8,7,7,4,9,3,8,4,8 -D,2,5,4,4,3,8,7,5,6,9,5,5,3,8,4,8 -C,1,3,2,1,1,5,9,4,6,11,8,10,1,9,2,8 -P,6,9,5,4,2,7,9,6,3,13,5,4,4,9,4,7 -G,7,15,6,8,5,8,7,4,4,8,6,7,4,9,9,8 -Z,3,4,5,6,4,9,7,5,6,8,3,7,3,6,6,8 -N,4,8,6,6,4,5,9,2,3,9,8,8,5,8,1,7 -M,5,9,6,7,4,8,7,13,2,6,9,8,8,6,0,8 -A,3,6,4,4,2,8,2,2,2,7,2,8,2,6,3,7 -N,4,7,6,5,4,8,8,5,6,7,6,4,7,9,4,6 -Z,2,4,4,6,3,11,5,3,4,9,3,7,2,7,6,8 -T,4,8,6,6,5,6,8,7,7,8,7,8,3,10,6,9 -I,3,6,4,4,2,7,7,0,7,13,6,8,0,8,1,7 -N,3,3,5,2,2,7,9,3,4,10,6,6,5,9,1,7 -D,4,6,5,5,5,7,7,5,6,7,5,9,4,6,6,5 -X,4,11,6,8,6,6,7,2,7,7,7,10,6,5,8,7 -Z,1,1,2,2,1,7,8,5,8,6,6,9,1,8,7,7 -N,4,8,6,6,5,8,8,5,5,6,6,5,6,10,2,5 -Q,3,4,4,5,3,8,7,6,3,8,8,10,3,8,5,8 -Q,5,7,5,9,5,7,9,4,3,7,9,11,3,9,6,8 -A,1,0,2,1,0,8,4,2,0,7,2,8,2,7,1,8 -G,3,5,4,4,2,5,7,5,5,9,7,10,2,8,4,9 -W,2,4,4,2,2,8,10,2,2,6,9,8,6,11,0,8 -B,5,8,7,6,6,8,6,6,6,9,7,7,3,8,7,8 -Q,3,4,4,5,3,8,8,6,2,5,7,10,3,9,5,10 -O,2,2,3,3,2,7,7,8,4,7,6,8,2,8,3,8 -N,3,7,4,5,3,8,8,6,4,7,6,6,5,9,1,6 -I,2,8,2,6,2,7,7,0,7,7,6,8,0,8,3,8 -N,4,5,5,4,3,7,8,6,5,7,6,6,6,9,2,5 -U,4,5,5,3,2,3,8,4,6,11,11,9,3,9,1,6 -Z,4,7,6,5,5,8,8,5,3,6,4,6,4,8,8,3 -K,4,10,5,8,4,3,6,7,4,7,7,12,3,8,3,11 -C,4,6,4,4,2,3,9,5,8,10,10,12,1,8,3,7 -N,4,5,7,4,3,6,10,3,5,10,8,7,5,8,1,7 -K,3,5,5,4,3,6,7,1,7,10,7,10,3,8,3,8 -C,4,7,5,5,2,4,9,6,8,12,10,12,1,9,3,7 -R,4,6,5,4,3,10,7,3,6,10,3,6,3,7,4,10 -O,6,9,6,7,4,8,6,8,5,10,6,10,3,8,4,6 -Q,1,0,2,1,1,8,7,6,4,6,6,8,2,8,3,8 -I,1,4,2,3,1,7,8,0,6,13,6,8,0,8,0,8 -W,4,10,6,7,4,11,8,5,2,7,9,8,8,10,0,8 -X,2,1,3,2,2,8,7,3,8,6,6,8,2,8,5,8 -T,1,0,2,1,0,7,14,1,4,7,10,8,0,8,0,8 -R,4,6,4,4,2,6,12,8,3,7,3,9,2,7,5,11 -J,3,6,5,4,4,8,8,4,3,8,4,7,4,9,5,4 -K,5,9,8,7,5,8,6,1,7,10,3,9,5,6,6,10 -J,3,9,4,7,1,12,2,9,4,13,7,13,1,6,0,8 -E,3,5,5,4,3,7,7,2,7,11,6,8,2,9,5,8 -A,1,0,2,0,0,7,4,2,0,7,2,8,1,6,1,8 -C,5,7,5,5,3,5,8,6,8,12,9,13,1,9,3,7 -X,3,6,4,4,2,7,7,4,4,7,6,8,2,8,4,8 -L,2,7,3,5,2,5,5,3,8,3,2,7,0,6,2,6 -S,3,5,5,3,2,7,7,3,7,11,5,8,1,8,5,8 -N,2,1,2,2,1,7,7,12,1,5,6,8,5,8,0,8 -F,3,6,4,4,3,5,10,2,6,10,9,6,1,10,3,6 -S,6,9,8,7,5,6,7,4,7,10,10,9,2,9,5,5 -K,3,6,4,4,3,6,7,5,7,7,6,10,3,8,5,9 -O,5,9,6,6,8,7,8,5,1,7,7,8,8,9,6,10 -J,5,10,7,8,5,9,4,5,6,8,5,6,2,8,4,6 -T,3,4,4,2,1,5,11,2,7,11,9,5,1,10,2,5 -H,5,8,7,6,6,4,9,3,5,10,9,9,3,8,3,5 -Z,2,0,2,1,1,7,7,3,11,8,6,8,0,8,7,8 -X,7,15,8,8,5,6,8,2,8,11,7,8,4,9,4,6 -F,3,5,4,7,2,0,14,4,4,12,11,6,0,8,2,6 -D,6,11,8,8,8,10,7,4,6,9,3,6,3,8,3,8 -C,3,10,5,8,4,5,8,7,6,9,8,14,2,9,4,10 -B,3,7,3,5,3,6,8,9,6,6,5,7,2,8,8,9 -C,4,9,6,6,7,7,7,4,3,6,7,10,8,10,6,6 -H,5,10,5,8,5,8,7,13,1,7,7,8,3,8,0,8 -T,3,3,3,2,1,5,12,3,5,11,9,4,2,11,1,5 -J,2,7,3,5,2,9,6,1,6,11,4,8,0,7,1,7 -S,2,3,2,1,1,8,8,6,5,7,5,7,2,8,8,8 -M,3,2,4,3,3,8,6,5,3,7,7,9,9,5,1,8 -H,2,3,4,1,2,8,7,3,6,10,5,7,3,8,2,7 -N,4,7,4,5,3,8,8,12,1,6,6,7,5,8,0,9 -K,3,6,5,4,5,6,7,3,6,6,5,8,3,8,4,9 -A,2,5,4,3,2,10,2,3,2,10,2,9,2,6,2,8 -D,1,1,2,2,1,6,7,8,6,6,6,6,2,8,3,8 -P,4,6,6,4,3,8,10,3,5,13,4,3,1,10,3,9 -I,1,4,3,3,1,7,7,1,7,14,6,8,0,8,1,8 -J,6,11,5,8,4,9,8,2,3,12,5,6,2,9,7,9 -J,2,10,3,8,2,12,3,7,3,12,5,11,1,6,0,8 -F,3,8,3,6,1,1,13,5,3,12,10,6,0,8,2,6 -K,6,7,8,5,5,7,8,2,7,10,5,9,4,7,3,7 -W,4,9,6,6,3,4,8,5,1,7,9,8,8,10,0,8 -V,4,5,7,8,2,7,8,4,3,7,14,8,3,9,0,8 -I,1,1,1,1,0,7,7,2,8,7,6,8,0,8,3,8 -O,2,3,3,2,2,7,7,7,5,7,6,8,2,8,3,8 -P,4,7,6,5,3,7,11,5,4,12,4,1,1,10,3,8 -W,4,4,6,6,3,8,8,4,1,7,8,8,8,9,0,8 -U,4,8,5,6,5,7,6,9,5,7,6,9,4,9,6,4 -O,3,8,4,6,3,7,7,8,4,10,6,8,3,8,3,7 -U,5,9,7,6,4,4,8,7,9,9,10,11,3,9,1,7 -I,3,9,4,6,2,7,8,0,8,14,6,6,0,8,1,7 -X,2,3,3,2,1,7,7,1,8,10,6,8,2,8,2,7 -J,2,8,3,6,2,9,6,3,6,11,4,9,1,6,2,6 -B,4,2,5,4,4,8,7,5,6,6,5,5,2,8,7,10 -Q,2,3,3,4,2,7,9,4,1,7,8,10,2,9,4,8 -G,4,7,4,5,3,7,6,6,6,10,6,12,2,10,4,9 -Q,7,8,7,9,7,8,7,6,2,7,7,11,5,9,7,7 -J,7,11,9,8,6,9,4,5,6,8,5,6,2,7,5,6 -D,8,12,8,6,4,11,3,3,6,10,2,8,4,7,3,12 -U,4,10,6,7,9,10,8,4,4,5,8,8,9,8,8,6 -P,4,10,5,8,4,6,10,6,5,9,7,3,2,10,4,7 -X,4,8,5,6,1,7,7,4,4,7,6,8,3,8,4,8 -B,3,6,4,4,4,8,7,5,6,7,6,6,2,8,6,9 -G,4,8,5,6,3,7,7,8,6,7,6,12,3,8,4,9 -W,3,4,5,6,3,6,8,4,1,7,8,8,8,10,0,8 -G,2,4,3,3,2,6,7,5,5,9,7,10,2,9,4,9 -A,4,9,5,6,4,7,5,3,0,6,1,8,2,7,1,7 -R,4,8,6,6,6,6,7,5,6,7,6,7,3,7,5,9 -B,2,4,3,2,2,10,7,2,6,10,4,6,2,8,4,10 -X,8,11,7,6,3,7,7,2,9,9,7,9,4,11,4,7 -N,3,4,5,3,2,6,9,3,4,11,8,8,5,7,1,8 -K,7,10,10,7,8,8,6,1,7,9,5,9,5,7,5,8 -B,4,8,6,6,6,7,8,6,4,7,5,6,4,7,6,6 -E,3,7,4,5,3,4,9,2,8,10,8,10,2,8,4,5 -E,4,8,4,6,2,3,6,6,11,7,7,15,0,8,7,7 -W,4,6,6,4,5,7,11,2,2,7,8,8,6,11,1,8 -A,3,9,5,7,3,13,3,3,2,11,1,8,2,6,3,9 -U,3,5,4,4,2,6,8,6,7,7,9,9,3,9,1,8 -M,3,4,5,2,3,8,6,6,4,7,7,9,9,5,2,8 -J,5,9,7,7,3,9,6,3,7,15,5,10,1,6,1,7 -C,5,4,6,6,2,6,7,7,11,7,6,14,1,8,4,9 -M,3,6,4,4,4,7,6,6,4,6,7,8,7,5,2,7 -P,4,7,6,5,3,8,9,3,5,13,5,4,1,10,2,8 -I,1,5,1,3,1,7,7,1,7,7,6,8,0,8,3,8 -D,5,10,7,7,6,11,6,2,6,11,3,7,3,8,3,9 -E,5,11,7,8,5,5,9,4,9,11,9,8,3,8,5,5 -S,4,7,5,5,3,10,6,4,8,11,3,8,2,8,5,10 -I,3,8,6,6,5,8,8,4,5,9,6,4,5,10,4,6 -W,8,13,8,7,5,4,8,1,3,8,9,8,9,11,2,5 -C,3,7,4,5,2,3,8,5,8,9,9,13,1,8,3,7 -F,4,9,4,6,2,1,13,5,3,12,10,6,0,8,2,6 -C,3,7,4,5,2,3,9,6,7,11,11,11,1,8,2,6 -Z,4,8,5,6,3,7,7,3,12,9,6,8,0,8,8,8 -F,5,10,7,8,5,8,9,2,6,13,6,5,2,10,2,8 -R,7,11,10,8,11,5,8,3,5,6,5,10,8,9,9,6 -A,5,10,8,8,5,11,3,1,2,8,2,9,4,6,3,8 -V,5,9,5,7,4,3,11,2,3,9,11,8,2,11,1,8 -Z,4,5,5,8,2,7,7,4,14,9,6,8,0,8,8,8 -I,1,3,2,2,1,7,8,0,6,13,6,7,0,8,0,7 -O,10,13,7,8,4,7,7,5,5,8,4,7,5,9,6,8 -D,1,0,1,0,0,6,7,6,4,7,6,6,2,8,2,8 -M,3,4,4,2,3,7,6,6,4,6,7,8,6,6,2,8 -S,6,12,6,6,3,7,8,3,6,13,6,7,2,8,3,7 -E,6,10,9,8,6,4,9,4,9,12,10,9,3,8,5,5 -D,6,11,9,8,8,7,8,6,6,10,7,5,7,9,6,11 -I,2,5,4,4,1,7,7,0,7,13,6,8,0,8,1,8 -Q,5,5,7,8,4,8,9,7,6,6,8,9,3,7,6,10 -M,5,5,6,8,4,7,7,12,2,7,9,8,9,6,0,8 -P,4,7,5,5,3,6,10,7,3,10,5,4,2,10,3,8 -N,6,10,9,8,5,8,8,3,5,10,5,6,6,8,2,7 -F,5,5,5,7,2,1,14,5,4,12,10,6,0,8,2,5 -P,6,10,8,8,5,6,12,5,3,12,5,2,1,11,3,8 -T,5,10,6,8,4,7,9,0,8,11,9,6,1,10,3,4 -U,2,6,3,4,1,8,5,13,5,6,13,8,3,9,0,8 -O,4,10,6,8,3,8,8,9,8,6,7,10,3,8,4,8 -O,5,9,6,6,5,7,7,7,4,9,6,10,4,8,4,7 -S,5,10,7,7,4,9,6,3,7,10,6,9,2,10,5,9 -X,3,9,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -B,4,10,5,8,6,8,7,7,6,7,6,6,2,8,7,10 -N,3,2,3,3,2,7,8,5,4,7,6,7,4,8,1,7 -X,3,7,5,5,3,8,7,4,9,6,6,8,3,8,7,9 -Q,3,6,4,6,2,8,6,8,6,6,6,8,3,8,4,8 -P,2,1,2,2,1,5,10,4,4,9,7,4,1,10,3,7 -L,5,10,7,8,4,7,3,2,9,7,1,9,1,6,3,7 -W,3,5,5,4,4,9,11,3,2,5,9,7,7,11,1,8 -N,3,7,5,5,3,6,9,6,5,8,7,8,5,8,1,7 -O,4,9,5,6,4,8,7,8,5,7,7,7,3,8,3,8 -V,7,11,9,8,6,5,12,3,2,9,10,7,5,10,6,8 -G,4,8,6,6,3,6,6,6,7,7,5,9,3,10,4,8 -F,3,4,3,5,1,1,14,5,3,12,9,5,0,8,2,6 -L,2,4,4,3,2,6,4,1,8,8,2,11,0,7,2,8 -B,4,5,5,8,4,6,7,10,7,7,6,7,2,8,9,9 -I,1,7,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -X,4,4,5,6,1,7,7,5,4,7,6,8,3,8,4,8 -D,4,8,5,6,8,9,7,5,5,7,6,6,4,7,7,6 -I,1,8,2,6,2,7,7,0,8,7,6,8,0,8,3,8 -D,2,7,4,5,4,7,7,4,6,7,6,6,3,8,2,7 -C,6,11,7,8,4,5,8,8,9,9,9,13,2,9,4,9 -G,4,6,5,4,3,6,7,6,6,9,8,9,2,8,4,9 -V,1,1,2,1,0,7,9,4,2,7,13,8,2,10,0,8 -T,5,5,5,4,2,5,12,3,7,12,9,4,1,11,1,5 -K,5,7,7,5,4,4,8,2,7,10,10,11,3,8,4,6 -C,7,11,7,8,4,5,7,6,8,12,9,14,2,10,4,7 -Z,4,5,5,7,2,7,7,4,15,9,6,8,0,8,8,8 -W,6,10,6,8,7,4,10,3,2,9,7,8,8,12,3,5 -E,4,9,4,7,3,3,8,6,12,7,5,15,0,8,7,7 -B,7,12,6,6,4,8,6,4,5,10,5,8,6,7,7,10 -B,4,7,6,5,4,10,6,3,7,10,4,7,3,8,5,11 -K,2,1,3,3,2,6,7,4,7,7,6,10,3,8,5,9 -M,2,3,4,1,2,8,6,3,4,9,6,7,6,5,1,7 -H,4,4,6,6,5,9,9,3,1,7,7,8,4,9,8,8 -C,6,8,8,7,7,5,7,4,5,7,6,11,4,9,8,9 -V,7,12,7,6,4,9,8,4,5,8,8,5,6,10,3,6 -F,4,10,6,8,3,4,13,6,5,12,10,3,2,10,2,4 -T,3,8,4,6,2,9,13,0,5,6,10,8,0,8,0,8 -Y,5,10,7,8,3,7,10,1,3,7,12,8,1,11,0,8 -F,3,7,3,4,1,2,14,5,2,12,9,4,0,8,3,6 -X,2,3,3,2,2,8,7,3,8,6,6,6,2,8,6,8 -D,5,8,7,6,6,8,7,5,6,9,4,5,3,8,4,9 -R,2,0,2,1,1,6,10,7,2,7,5,7,2,7,4,9 -Y,1,3,2,2,1,6,11,1,7,8,11,9,1,11,2,8 -X,4,8,6,6,4,7,7,3,9,5,6,8,3,8,7,8 -O,4,6,4,4,4,6,9,7,4,9,8,8,3,8,3,7 -C,8,12,5,7,3,5,10,6,8,11,8,8,1,8,6,8 -H,3,3,4,4,2,7,7,14,1,7,6,8,3,8,0,8 -A,3,9,5,7,3,9,3,2,2,8,1,8,2,6,3,7 -X,6,10,9,8,4,5,8,2,9,11,12,10,4,7,4,5 -R,5,8,8,7,8,8,8,3,3,7,5,8,7,8,6,4 -T,5,7,6,6,6,5,8,4,8,9,7,10,3,7,7,5 -C,5,4,6,7,2,7,6,7,11,9,5,13,1,9,4,8 -D,8,14,8,8,4,11,4,3,6,10,2,7,5,7,4,12 -N,1,3,3,2,1,5,9,3,3,10,8,8,4,8,0,7 -A,4,6,6,5,5,8,8,3,5,7,8,7,5,10,4,6 -A,3,8,5,6,3,7,5,3,0,7,1,8,2,7,1,8 -A,3,11,6,8,4,12,2,2,2,9,2,9,2,6,3,8 -B,4,9,6,7,5,8,7,6,6,9,6,6,3,8,7,8 -V,1,0,2,0,0,8,9,3,2,6,12,8,2,10,0,8 -D,5,5,6,7,3,5,7,10,10,6,6,6,3,8,4,8 -X,2,3,3,2,2,7,7,3,9,6,6,8,2,8,5,8 -D,6,11,6,6,3,10,4,3,6,9,3,7,4,7,4,11 -J,2,5,4,4,1,9,6,2,7,14,5,10,1,6,1,7 -H,5,11,5,8,3,7,9,15,2,7,3,8,3,8,0,8 -E,2,3,4,2,2,7,7,2,7,11,7,9,2,8,4,8 -I,3,9,4,6,3,8,7,0,7,13,6,8,0,8,1,8 -U,7,9,6,5,3,4,4,5,5,4,7,8,5,7,2,7 -C,7,10,9,8,6,7,7,8,7,6,7,8,5,6,5,9 -I,7,14,5,8,2,9,7,6,4,13,3,7,3,7,6,11 -T,4,6,5,6,5,5,8,4,7,8,8,9,3,8,7,6 -A,2,4,3,3,1,10,2,3,2,10,2,9,2,6,2,8 -K,8,13,8,8,4,8,7,3,6,9,7,8,6,11,4,7 -W,5,8,8,6,3,7,7,5,2,7,8,8,9,9,0,8 -Q,4,7,5,9,6,8,6,8,2,5,6,9,3,8,5,10 -T,5,10,6,8,4,5,11,1,9,8,11,9,1,10,1,7 -Z,1,0,2,1,0,7,7,2,11,8,6,8,0,8,6,8 -B,5,4,5,6,4,7,9,9,8,7,5,7,2,8,9,9 -P,4,6,6,4,3,7,10,3,4,13,6,3,1,10,3,9 -V,6,11,6,6,3,5,9,4,3,10,8,5,5,12,2,7 -P,2,1,2,1,1,5,11,7,2,9,6,4,1,9,3,8 -H,3,6,4,4,2,7,8,14,1,7,5,8,3,8,0,8 -X,7,10,10,8,6,9,6,1,8,10,3,7,3,8,3,9 -P,4,9,6,6,4,5,10,6,5,10,8,3,1,10,4,6 -C,0,0,1,0,0,6,7,5,7,7,6,14,0,8,3,10 -G,3,4,4,3,2,7,6,6,6,6,6,10,2,9,4,9 -G,3,5,4,4,3,6,7,5,5,9,7,10,2,8,4,10 -X,9,11,8,6,3,7,7,2,9,9,6,8,4,9,4,8 -Z,5,8,6,6,4,7,8,2,10,12,7,6,1,7,6,6 -W,6,11,9,8,7,5,9,5,1,7,9,8,8,11,0,7 -I,2,8,3,6,1,9,7,0,8,14,5,8,0,8,1,8 -Z,2,4,4,3,2,8,7,2,9,12,6,7,1,8,5,8 -C,2,6,3,4,2,6,8,8,8,9,8,13,1,9,4,10 -W,3,7,6,5,4,5,10,2,3,8,9,9,7,11,1,8 -G,4,7,5,5,3,6,7,7,7,10,7,9,2,10,4,9 -X,3,3,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -R,3,7,3,5,2,6,9,9,5,7,5,8,3,8,5,10 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -N,5,9,8,7,5,10,7,3,5,10,2,5,6,9,1,7 -W,8,10,8,5,4,1,9,3,3,11,12,9,8,10,1,6 -K,7,10,10,8,6,4,9,2,7,10,9,10,5,6,4,5 -U,4,7,4,5,3,7,6,12,4,7,12,8,3,9,0,8 -B,8,12,6,6,4,7,7,5,6,10,5,8,6,6,7,10 -H,4,5,6,4,4,7,7,3,6,10,6,8,3,8,3,8 -E,4,7,5,5,4,10,6,2,7,11,4,8,4,9,5,12 -C,3,7,5,5,5,5,7,3,4,7,6,10,5,10,3,8 -Q,3,6,4,8,4,8,11,4,3,5,9,11,2,10,5,8 -P,6,11,8,8,5,5,11,7,4,11,7,2,1,10,4,6 -L,3,7,3,5,1,0,1,5,6,0,0,6,0,8,0,8 -E,0,0,1,0,0,5,7,5,6,7,6,12,0,8,6,10 -K,1,1,2,1,1,6,7,4,7,7,6,11,3,8,4,9 -R,4,4,4,6,3,5,11,8,4,7,2,9,3,7,6,11 -O,1,0,1,0,0,7,6,6,3,7,6,7,2,8,3,8 -K,4,9,6,7,4,5,7,5,7,6,6,10,4,8,5,9 -V,5,6,5,4,2,3,12,4,4,10,12,7,2,10,1,7 -F,5,8,7,6,4,7,9,3,6,13,6,5,2,9,3,7 -T,2,4,3,3,1,7,11,2,7,6,11,8,1,10,1,8 -S,2,6,3,4,2,7,6,5,8,4,6,8,0,9,8,8 -Q,3,7,4,6,3,8,7,7,4,6,6,9,2,8,4,9 -V,2,0,3,1,0,7,9,4,2,7,13,8,2,10,0,8 -U,3,6,4,4,2,7,4,14,5,7,12,8,3,9,0,8 -P,1,0,2,0,0,5,11,6,1,9,6,5,1,9,3,8 -J,1,1,2,3,1,11,6,2,6,12,3,7,0,7,1,8 -S,6,9,7,6,4,8,8,4,10,11,4,7,2,6,5,9 -M,10,15,12,9,6,10,2,3,2,10,3,9,8,1,1,8 -T,3,9,4,7,4,7,11,3,6,7,11,9,2,12,1,8 -U,5,6,6,4,3,3,9,5,7,11,11,9,3,9,2,6 -F,3,7,3,4,1,1,13,5,4,12,10,7,0,8,2,6 -X,3,5,6,3,3,7,7,1,8,10,6,8,2,8,3,8 -L,7,11,6,6,3,10,2,4,4,12,5,13,2,7,5,9 -X,4,6,5,5,5,8,8,2,4,7,6,8,3,8,7,7 -F,7,12,6,6,3,8,8,3,7,12,4,5,2,8,7,7 -J,7,8,4,12,4,7,9,3,4,13,4,5,3,8,7,10 -T,5,9,5,6,3,5,12,3,8,12,9,4,1,11,2,4 -Y,3,9,5,6,2,9,11,1,3,5,11,8,1,10,0,8 -A,3,8,5,5,2,7,5,3,1,6,1,8,2,7,2,7 -F,4,7,6,5,3,5,11,3,5,13,8,5,1,10,2,7 -I,2,9,2,7,3,7,7,0,7,7,6,8,0,8,3,8 -U,3,2,4,4,2,6,8,6,7,6,9,9,3,9,1,7 -I,0,6,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -E,4,5,6,4,5,6,8,4,4,8,7,9,4,11,8,10 -H,8,10,11,8,6,7,8,3,7,10,8,8,6,8,5,7 -M,4,2,6,3,4,8,6,6,5,6,7,8,8,7,3,6 -N,3,6,4,4,2,7,7,14,2,5,6,8,6,8,0,8 -S,3,8,4,6,2,7,6,6,10,5,7,10,0,9,9,8 -L,10,15,8,8,4,9,2,4,5,12,4,13,2,7,6,8 -F,3,5,5,6,4,6,9,3,4,8,7,7,4,10,8,9 -H,5,9,8,7,7,8,8,5,7,7,6,7,6,8,4,7 -W,5,6,7,5,8,6,7,6,5,6,5,8,8,10,8,10 -N,4,7,6,5,3,11,6,4,5,10,1,5,5,9,1,7 -H,7,9,10,7,6,5,8,4,7,10,9,10,3,8,3,6 -I,2,8,4,6,4,10,6,1,4,8,5,5,3,8,5,7 -D,3,5,5,4,3,9,6,4,7,10,4,6,2,8,3,9 -D,4,11,5,8,5,5,7,10,7,6,5,6,3,8,3,8 -Q,4,7,5,7,4,8,7,7,5,6,4,9,2,8,3,8 -J,6,7,8,9,7,8,8,4,6,7,6,7,4,8,8,8 -V,3,8,5,6,3,6,11,2,3,7,11,9,2,10,1,8 -J,2,7,3,5,1,9,6,3,7,12,4,9,0,7,2,6 -C,2,4,3,3,2,6,8,7,7,8,7,13,1,9,4,10 -O,7,11,7,8,5,8,7,8,5,10,6,8,3,8,3,8 -J,7,10,5,8,4,8,10,3,3,13,4,5,2,9,7,9 -F,5,6,6,7,6,7,9,6,6,7,6,9,5,8,8,6 -T,6,10,6,7,5,5,11,3,7,11,10,5,2,12,2,4 -X,3,6,4,4,3,8,7,3,8,6,6,8,2,8,6,8 -G,6,10,7,8,4,6,7,7,8,10,7,10,2,10,5,9 -S,3,9,4,6,3,8,7,8,7,7,7,9,2,10,9,8 -O,2,4,2,3,2,8,7,6,3,9,6,8,2,8,2,8 -E,5,8,7,6,4,7,7,3,8,12,7,9,3,8,5,8 -R,4,4,4,5,2,5,10,8,4,7,4,8,3,7,6,11 -Y,4,7,6,5,3,9,10,1,7,3,11,8,1,11,2,9 -B,3,6,5,4,4,7,8,5,5,9,6,6,3,8,7,8 -T,3,11,4,8,1,5,14,1,6,9,11,7,0,8,0,8 -F,4,8,5,6,4,4,11,6,5,11,10,5,2,9,2,5 -Q,6,9,7,11,8,7,9,5,3,8,10,10,5,8,8,10 -R,5,7,8,6,8,9,7,4,4,8,5,7,8,10,7,5 -E,3,9,4,6,2,3,7,6,11,7,6,15,0,8,7,7 -V,3,5,5,4,2,4,12,3,3,9,11,8,2,11,0,8 -O,4,8,5,6,2,8,6,8,7,7,5,8,3,8,4,8 -W,12,14,12,8,5,2,9,3,2,10,12,8,9,10,1,6 -K,4,2,5,3,3,6,7,4,8,7,6,10,6,8,5,9 -A,3,9,6,6,3,11,3,2,2,9,2,9,3,5,3,8 -U,5,7,6,5,3,4,8,6,8,10,10,9,3,9,2,5 -X,4,10,6,7,6,7,7,2,6,7,6,7,4,7,6,7 -W,6,9,9,7,7,4,10,2,3,8,9,9,10,9,1,8 -M,7,10,10,8,9,11,6,2,5,9,4,6,10,7,2,8 -L,3,8,4,6,1,0,0,6,6,0,1,5,0,8,0,8 -Q,4,9,6,8,3,9,8,8,6,5,8,9,3,8,5,9 -H,6,9,6,4,3,9,6,4,4,9,7,8,6,12,4,9 -N,1,0,1,0,0,7,7,9,0,6,6,8,3,8,0,8 -N,4,8,6,6,3,5,9,3,4,10,9,9,5,8,1,7 -Q,2,2,3,3,2,8,8,6,1,5,6,9,2,9,4,10 -E,5,8,7,6,6,6,8,3,7,11,9,9,3,8,5,6 -K,2,6,3,4,2,3,7,6,2,7,6,10,3,8,2,11 -G,3,6,4,4,4,7,8,5,3,6,6,10,3,8,6,8 -I,2,8,3,6,1,7,7,0,8,14,6,9,0,8,1,8 -C,4,9,6,7,4,5,8,6,6,8,8,15,3,10,4,9 -E,2,4,2,3,2,7,7,5,6,7,6,8,2,8,5,11 -G,2,1,3,2,1,6,7,5,5,6,6,9,2,9,4,8 -B,3,5,5,4,4,9,6,3,6,10,5,7,2,8,5,10 -T,4,10,6,8,4,6,12,3,7,7,12,8,2,12,1,7 -P,2,3,4,2,2,8,8,3,3,12,4,5,1,9,2,8 -J,4,9,6,7,3,6,7,3,5,15,6,10,1,6,1,7 -M,2,3,3,1,2,6,6,6,4,7,7,10,6,5,1,9 -U,4,3,4,2,2,5,8,5,7,10,9,9,3,9,2,6 -L,7,10,9,8,7,6,7,7,7,6,6,8,6,8,5,10 -N,5,7,7,5,3,5,9,3,5,10,9,9,6,7,1,7 -W,5,10,8,8,13,9,7,5,2,7,7,8,10,10,3,5 -I,7,12,5,6,2,10,5,6,4,13,3,9,3,8,4,9 -V,10,15,10,8,5,6,8,4,4,8,8,5,6,12,4,6 -Z,6,9,8,7,4,9,6,3,10,11,4,9,1,7,6,8 -M,5,5,6,8,4,8,7,12,2,6,9,8,9,6,0,8 -E,5,5,5,7,3,3,8,6,12,7,5,15,0,8,7,7 -A,2,2,4,3,2,8,2,2,2,8,2,8,2,6,3,7 -M,4,7,8,5,8,10,6,3,3,9,4,7,10,5,3,6 -D,1,0,2,0,0,6,7,7,6,7,6,6,2,8,3,8 -Z,5,5,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -N,8,11,11,8,6,12,7,3,6,10,0,3,7,11,2,8 -J,2,5,5,3,1,8,6,3,7,15,6,10,1,6,1,7 -Y,6,11,9,8,8,8,4,6,5,8,7,8,6,8,8,3 -X,4,9,6,7,4,8,7,4,9,6,6,6,3,8,7,7 -B,2,3,4,2,2,8,7,3,5,10,5,6,2,8,4,9 -A,3,11,5,8,4,12,3,3,3,10,1,9,2,6,3,8 -T,5,7,6,5,6,6,8,4,6,7,6,10,5,8,5,7 -H,3,2,4,4,3,7,7,5,6,7,6,8,6,8,4,8 -H,4,9,5,6,2,7,6,15,1,7,8,8,3,8,0,8 -H,3,7,3,4,2,7,6,14,1,7,7,8,3,8,0,8 -Y,4,5,5,7,5,10,11,5,4,5,8,8,5,10,9,5 -V,4,6,4,4,2,3,11,4,3,10,12,7,2,10,1,8 -K,5,11,6,8,2,4,6,9,2,7,7,12,4,8,3,11 -X,3,7,5,5,2,9,7,1,8,10,4,7,3,8,3,8 -Q,5,8,6,7,3,9,8,8,6,5,8,9,3,7,5,9 -S,5,8,6,6,4,8,8,4,8,10,4,6,2,7,5,8 -C,4,9,5,6,3,4,8,5,6,12,10,12,2,9,2,7 -B,1,0,2,1,1,7,7,7,5,6,6,7,1,8,7,9 -B,5,11,7,8,7,8,7,7,7,6,6,5,2,8,8,10 -H,5,9,7,6,4,7,6,3,7,10,8,9,3,8,3,7 -X,3,5,5,4,3,7,7,3,9,6,6,8,3,8,6,8 -H,3,7,4,4,2,7,7,14,1,7,6,8,3,8,0,8 -Z,3,8,5,6,3,8,7,2,9,11,5,9,1,8,6,8 -S,7,11,7,6,3,7,6,3,4,13,8,8,3,8,4,7 -M,5,2,6,4,4,9,6,7,4,6,7,5,10,5,3,5 -V,1,0,1,0,0,8,10,3,1,7,12,8,2,11,0,8 -W,4,7,6,5,3,9,8,5,1,7,8,8,8,9,0,8 -F,4,8,6,6,4,7,9,2,6,13,6,5,2,10,2,8 -O,5,9,5,7,4,7,7,8,5,9,7,10,3,8,4,6 -T,4,9,5,7,3,6,11,2,8,8,12,8,1,11,1,7 -O,4,10,5,8,3,9,7,9,7,7,6,10,3,8,4,8 -B,5,7,7,5,5,8,6,6,7,9,7,6,3,8,8,7 -T,4,8,5,6,4,6,7,7,6,8,10,8,3,9,5,9 -X,3,7,4,5,2,7,7,4,4,7,6,7,2,8,4,8 -C,9,12,7,7,5,7,9,4,5,9,8,9,4,9,8,11 -N,6,5,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -X,6,10,9,8,5,7,8,1,8,10,6,8,3,8,4,8 -Q,5,7,6,5,5,8,6,7,4,4,8,10,6,6,7,10 -V,2,1,4,1,1,7,12,3,2,6,11,9,2,11,0,7 -D,2,3,4,2,2,9,6,4,6,10,4,6,2,8,3,8 -K,5,9,8,7,4,4,9,2,7,10,10,11,3,8,3,6 -A,3,11,6,8,2,8,6,3,1,7,0,8,3,7,2,8 -V,3,6,4,4,2,2,11,4,3,11,12,8,2,10,1,8 -H,4,8,5,6,5,8,7,5,6,7,6,8,6,8,3,7 -D,1,0,1,0,0,6,7,7,5,7,6,6,2,8,2,8 -G,3,8,4,6,2,7,6,8,7,6,5,11,1,8,5,11 -J,2,5,3,8,1,12,3,10,4,13,5,13,1,6,0,8 -C,2,5,3,4,2,6,8,7,7,8,8,13,1,9,4,10 -G,5,10,6,8,3,7,6,8,8,6,6,8,2,8,6,11 -K,5,5,5,8,2,3,6,8,3,7,7,11,4,8,3,11 -V,3,9,5,6,1,7,8,4,2,7,14,8,3,9,0,8 -C,3,4,4,3,2,4,8,4,6,11,10,12,1,9,2,7 -M,5,10,6,8,4,8,7,12,2,6,9,8,8,6,0,8 -F,5,8,7,6,7,7,8,1,4,10,6,6,5,10,3,5 -Y,2,3,3,4,0,8,11,1,3,5,11,8,0,10,0,8 -C,3,5,4,3,2,4,8,5,8,11,9,13,1,9,3,7 -Q,6,8,9,12,14,8,5,6,1,6,6,9,10,10,8,14 -H,9,15,8,8,5,6,7,5,4,8,10,9,7,11,5,9 -U,9,11,8,6,4,9,6,6,7,3,9,7,5,9,3,5 -D,5,10,6,8,6,7,7,7,7,7,6,5,3,8,3,7 -H,5,10,7,8,10,8,9,5,3,6,7,7,7,9,9,8 -O,6,10,8,8,10,8,9,6,1,7,7,8,9,8,5,9 -W,3,7,5,5,7,9,5,5,2,7,6,8,5,10,2,5 -S,4,7,6,5,6,8,9,4,4,9,5,7,4,9,10,9 -U,2,3,3,2,1,5,8,4,7,10,8,8,3,9,2,6 -Y,6,11,6,8,3,4,10,2,7,10,11,6,1,11,3,4 -N,3,8,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -N,7,12,6,6,3,5,9,4,5,4,4,11,5,9,2,7 -M,4,2,5,4,4,8,6,6,4,7,7,8,7,5,2,7 -E,2,7,4,5,4,7,8,3,5,5,7,10,3,11,7,8 -I,1,3,2,2,1,7,8,1,7,13,6,8,0,8,1,7 -Z,2,3,2,2,2,7,7,5,9,6,6,8,1,8,6,8 -B,2,4,2,3,2,7,7,5,5,6,6,6,2,8,5,9 -B,7,11,9,8,7,9,6,4,7,10,5,6,3,8,6,10 -G,6,10,8,8,8,6,6,6,3,6,6,10,5,8,8,7 -P,4,9,5,6,2,3,14,7,1,11,6,3,0,10,4,8 -P,3,4,5,6,7,8,5,5,2,7,6,7,6,9,6,9 -U,3,5,5,3,2,7,9,6,7,7,10,9,3,9,1,8 -K,8,10,11,8,5,4,8,4,9,12,12,11,3,8,4,5 -V,6,10,5,5,2,8,10,6,3,7,9,5,6,13,3,7 -C,9,14,7,8,5,7,6,4,4,9,8,11,4,9,9,11 -W,3,8,5,6,5,6,11,2,2,7,8,8,6,11,1,8 -V,4,7,6,5,4,8,11,2,2,6,10,8,4,10,4,9 -C,5,5,6,8,2,6,7,7,10,8,6,15,1,9,4,9 -E,2,3,3,2,1,7,7,2,7,11,7,9,1,8,3,8 -O,4,9,5,7,2,7,7,9,8,7,5,8,3,8,4,8 -O,1,1,2,1,1,7,7,6,4,7,6,8,2,8,2,8 -E,4,7,6,5,4,6,8,3,7,11,8,8,3,8,4,6 -C,2,1,2,1,1,6,7,6,9,7,6,13,0,8,4,9 -O,3,5,4,4,2,8,6,7,4,9,5,8,2,8,3,8 -A,3,8,6,6,4,8,5,2,4,6,2,6,2,6,2,6 -N,4,10,4,7,3,7,7,14,2,4,6,8,6,8,0,8 -Z,3,9,4,7,3,7,8,3,11,8,6,8,0,8,7,7 -A,6,9,6,5,3,13,0,5,1,12,3,11,2,3,2,10 -S,4,5,5,5,6,7,7,5,4,7,7,7,5,8,10,10 -I,3,10,6,8,7,10,6,2,5,8,4,5,3,8,5,7 -F,6,10,8,7,6,6,10,2,6,13,7,6,2,10,2,7 -L,3,7,4,5,2,4,5,1,9,7,2,11,0,8,2,7 -V,7,8,9,7,10,8,7,4,5,7,6,8,8,10,9,4 -G,5,11,6,8,8,8,4,4,3,7,5,11,6,8,6,13 -G,5,9,4,5,2,7,4,4,2,7,4,5,4,7,5,8 -L,5,10,7,8,4,7,3,2,9,7,1,9,1,6,3,7 -P,3,6,4,4,2,5,12,7,3,12,6,3,1,10,4,7 -A,3,8,5,6,3,11,2,3,3,10,2,9,2,6,3,8 -P,3,7,5,10,8,7,12,4,1,9,8,5,4,11,4,8 -C,5,8,6,6,2,6,7,7,10,6,6,15,1,8,4,9 -M,4,2,5,4,4,8,6,6,4,7,7,8,7,5,2,8 -U,2,1,2,2,1,7,9,5,5,6,9,9,3,9,1,8 -Y,5,6,5,4,3,5,9,1,7,9,10,6,1,11,3,5 -D,7,10,9,8,7,7,7,5,6,7,6,7,7,8,3,8 -Y,9,9,7,13,5,7,8,4,3,6,11,5,5,10,6,6 -Y,4,5,5,4,2,4,11,2,7,11,10,6,1,11,2,5 -T,4,9,4,4,2,5,10,2,6,11,8,6,2,9,4,3 -W,4,9,5,6,6,7,6,6,2,7,7,8,6,8,4,8 -B,5,11,8,8,11,9,7,4,4,6,7,7,8,8,8,7 -E,3,5,6,4,3,6,8,2,9,11,8,8,2,8,4,6 -X,3,9,5,7,4,8,7,3,8,5,6,8,3,8,6,8 -S,2,7,3,5,3,8,7,7,5,7,7,8,2,9,8,8 -U,5,5,6,4,3,4,8,5,8,10,8,9,3,9,2,6 -T,4,6,5,4,4,7,7,7,7,7,6,8,3,10,6,8 -U,3,4,4,3,2,5,8,5,7,9,8,8,3,9,2,5 -V,3,8,5,6,2,5,11,3,4,9,12,9,3,10,1,9 -J,4,6,5,4,2,9,7,0,7,13,5,7,0,8,0,8 -B,5,10,5,5,5,7,8,3,5,9,6,7,6,5,7,8 -H,1,0,1,0,0,7,8,10,1,7,6,8,2,8,0,8 -D,6,11,8,8,7,7,7,6,6,7,7,7,7,7,3,7 -S,3,3,4,4,2,7,7,5,8,5,6,8,0,8,8,8 -L,1,4,2,3,1,7,4,1,7,7,2,10,0,7,2,8 -Q,6,8,7,10,6,8,6,7,4,8,7,11,4,9,7,7 -H,3,3,5,2,2,9,6,3,6,10,4,8,3,8,3,9 -M,4,3,5,5,3,7,7,12,1,7,9,8,8,6,0,8 -C,1,0,1,1,0,7,7,5,7,7,6,14,0,8,4,10 -R,3,2,4,4,3,7,8,5,5,6,5,6,3,7,4,8 -G,1,0,2,1,0,8,6,6,4,6,5,9,1,8,5,10 -A,2,6,5,4,3,6,5,1,3,5,2,7,2,6,3,4 -O,4,7,4,5,3,9,6,7,5,10,4,10,3,8,3,8 -I,1,6,3,4,3,9,6,3,4,7,6,5,3,8,5,5 -V,4,8,4,6,2,3,11,4,4,11,12,8,2,10,1,8 -V,1,0,2,1,0,7,9,3,2,7,12,8,2,10,0,8 -A,5,12,5,6,3,14,0,4,2,12,3,11,2,4,2,10 -K,3,2,4,4,3,5,7,3,7,6,6,10,6,8,4,9 -V,3,5,4,3,1,4,12,4,4,11,11,7,2,11,1,8 -C,7,10,7,7,4,4,10,7,8,12,10,9,2,10,3,6 -L,4,6,5,4,3,6,6,7,6,6,6,8,2,8,4,10 -H,2,1,2,1,2,8,8,6,6,7,6,8,3,8,3,8 -U,5,6,6,4,3,4,9,5,7,11,11,9,3,9,2,7 -N,3,5,4,3,3,7,9,5,5,7,6,6,5,9,2,6 -D,4,10,6,8,4,8,7,7,7,10,5,4,3,7,5,9 -Q,3,3,4,4,3,8,7,6,2,8,7,9,2,9,4,8 -X,3,5,5,3,2,8,7,3,9,6,6,9,3,7,7,9 -N,4,11,5,8,5,7,7,13,1,6,6,8,6,9,1,6 -N,1,0,1,0,0,7,7,10,0,5,6,8,4,8,0,8 -L,3,9,5,7,7,7,8,3,5,6,6,10,6,11,7,5 -F,4,11,5,8,4,4,11,4,6,11,10,6,2,10,3,5 -N,5,9,5,5,2,5,8,4,6,4,4,9,4,7,2,8 -I,1,11,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -Y,5,8,5,6,3,5,9,1,8,9,9,5,1,11,3,4 -Z,2,4,4,3,2,7,8,2,9,12,7,7,1,8,5,6 -N,5,11,7,8,6,7,7,8,5,7,5,6,3,7,3,8 -N,4,7,5,5,4,6,7,8,5,7,5,7,3,7,3,8 -P,4,10,4,7,2,4,10,10,3,9,6,4,2,10,4,8 -K,12,15,11,9,5,6,8,3,7,9,9,10,6,10,4,6 -A,1,0,2,1,0,7,4,2,0,7,2,8,2,7,1,8 -K,5,10,6,7,2,4,7,9,2,7,6,12,3,8,3,11 -G,7,11,8,8,5,6,6,7,8,10,7,11,2,10,5,9 -K,4,5,7,4,4,6,7,1,7,10,7,10,3,8,3,8 -A,3,10,6,7,4,11,3,2,2,9,2,9,3,7,3,9 -T,2,1,3,2,1,6,12,2,7,8,11,8,1,10,1,7 -Q,4,9,5,8,3,8,6,9,7,6,5,9,3,8,4,8 -Y,3,4,5,6,1,7,12,2,3,8,12,8,1,10,0,8 -N,3,7,5,5,3,7,9,6,5,7,6,7,5,9,2,6 -L,2,6,2,4,1,0,1,5,6,0,0,7,0,8,0,8 -E,7,13,5,7,3,6,8,6,8,10,6,10,1,8,8,8 -J,1,3,2,5,1,12,3,9,3,13,5,13,1,6,0,8 -Z,2,1,2,2,1,7,7,3,11,9,6,8,0,8,7,8 -G,1,0,1,0,0,8,7,5,4,6,5,9,1,8,4,10 -U,5,9,6,7,6,8,8,8,5,5,7,9,3,8,4,6 -C,3,2,4,4,2,6,8,7,8,9,8,13,1,9,4,10 -G,8,12,6,6,5,8,8,4,3,9,5,6,4,9,9,8 -W,6,10,6,8,6,2,11,2,2,10,9,7,6,11,2,6 -J,4,9,6,6,4,7,6,4,5,8,6,7,5,6,4,6 -L,4,11,6,8,8,7,8,3,5,6,6,10,6,11,7,5 -R,5,10,7,8,6,6,8,5,6,6,5,8,3,6,6,9 -F,2,4,4,3,2,7,9,1,7,13,5,5,1,9,2,8 -Y,6,12,5,6,3,4,9,4,2,10,9,6,3,9,3,4 -Y,3,5,5,4,2,7,10,1,7,7,11,8,1,11,2,8 -H,2,1,3,3,2,6,7,5,6,7,6,8,3,8,3,8 -X,3,6,4,4,3,7,8,3,8,6,6,8,2,8,6,8 -R,5,11,7,8,10,6,7,3,4,6,6,9,7,10,8,6 -P,3,6,5,4,3,5,12,6,3,10,7,2,1,10,3,6 -U,3,3,3,5,1,7,5,13,5,7,14,8,3,9,0,8 -C,2,0,2,1,1,6,7,6,10,7,6,14,0,8,4,9 -R,1,0,2,1,1,6,9,7,3,7,5,8,2,7,4,11 -T,8,15,7,9,3,6,10,3,8,13,6,6,2,8,5,4 -Y,6,8,8,11,12,8,8,4,2,7,8,9,4,12,9,8 -O,4,7,4,5,3,7,7,8,6,9,7,10,3,8,3,7 -J,0,0,1,0,0,12,4,6,3,12,4,11,0,7,0,8 -R,3,4,5,3,3,9,7,3,5,11,3,6,2,7,3,9 -Z,1,3,3,2,1,8,7,2,9,11,6,8,1,8,5,7 -X,3,11,4,8,4,7,7,4,4,7,6,8,3,8,4,8 -U,2,3,3,2,1,5,8,5,6,10,9,9,3,9,2,6 -C,5,11,6,8,5,5,8,8,7,10,8,13,2,11,4,10 -V,5,11,7,8,8,8,5,5,3,8,7,9,9,9,6,11 -C,4,7,5,5,2,6,7,6,10,6,6,12,1,7,4,8 -M,8,10,11,7,7,5,6,4,5,11,10,11,11,5,4,7 -I,1,1,1,1,1,7,7,2,7,7,6,8,0,8,2,8 -U,1,0,2,1,0,8,6,11,4,7,12,8,3,10,0,8 -L,5,11,7,8,9,8,7,3,5,6,7,9,7,10,7,6 -J,1,3,1,2,0,10,6,2,5,11,4,9,0,7,1,7 -F,5,8,7,6,3,4,12,3,6,14,8,4,1,10,1,7 -G,2,4,3,3,2,6,7,5,5,9,7,10,2,9,4,9 -G,4,10,6,8,7,8,6,5,2,6,6,10,7,8,5,10 -A,2,1,3,1,1,7,4,2,0,7,2,8,2,6,2,8 -Q,2,0,2,1,1,8,7,6,4,6,6,9,2,8,3,8 -B,4,8,6,6,6,8,7,6,5,9,7,6,3,8,7,8 -P,1,0,1,0,0,5,10,7,1,9,6,5,1,9,2,8 -C,3,8,4,6,3,5,8,6,6,9,8,14,1,9,3,10 -E,2,4,4,3,2,6,8,2,8,11,7,9,2,8,4,8 -M,10,13,12,7,6,10,2,3,2,10,2,9,8,1,2,8 -L,2,6,2,4,1,0,2,5,6,0,0,7,0,8,0,8 -D,4,11,6,8,7,8,7,5,7,7,6,6,6,8,3,7 -B,2,6,3,4,3,6,7,7,5,7,6,7,2,8,6,9 -E,4,9,6,7,5,5,9,3,7,11,9,9,3,9,4,6 -Q,6,15,6,8,4,7,5,5,8,9,5,8,3,7,9,9 -M,7,6,9,5,9,7,8,5,4,6,5,8,13,7,5,8 -G,4,6,6,6,6,7,7,5,4,7,7,8,7,10,6,8 -U,3,6,5,4,4,8,8,8,5,6,7,9,3,8,4,6 -X,3,7,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -N,8,10,10,9,11,7,7,5,4,7,6,7,8,9,6,5 -W,5,6,5,4,4,3,10,2,3,10,9,8,6,11,2,6 -I,0,1,1,2,1,7,7,1,6,7,6,8,0,8,2,8 -F,5,5,5,7,2,1,15,5,3,12,9,4,0,8,3,6 -E,5,10,5,8,5,2,7,5,9,7,6,14,0,8,6,8 -Y,4,10,6,7,1,8,10,2,2,6,13,8,1,11,0,8 -B,4,8,6,6,5,10,6,3,6,10,4,7,3,8,5,11 -D,4,8,5,6,4,6,7,8,7,6,5,4,3,8,4,8 -O,2,1,2,2,1,8,7,7,5,7,6,8,2,8,3,8 -H,3,3,5,2,2,7,8,3,5,10,7,8,3,8,3,7 -Q,4,5,5,5,2,8,5,8,8,6,4,8,3,8,4,8 -Y,4,8,4,6,2,3,12,4,5,12,12,6,1,11,2,6 -B,3,8,4,6,5,8,7,8,5,7,6,6,3,8,7,10 -O,4,9,5,7,3,6,9,7,5,10,8,7,3,8,3,8 -P,3,4,5,3,3,7,10,6,3,11,4,3,1,10,3,8 -E,1,0,1,0,0,5,8,5,7,7,6,12,0,8,6,10 -O,3,7,4,5,2,8,8,8,6,6,7,9,3,8,4,8 -V,3,8,5,6,1,9,8,4,3,6,14,8,3,9,0,8 -Q,6,9,6,10,8,8,5,7,4,9,5,8,4,8,5,7 -K,4,8,5,6,7,8,7,3,4,6,6,8,6,8,7,5 -T,6,10,6,7,4,6,12,4,7,11,9,4,2,13,4,4 -C,5,9,6,7,3,4,8,6,9,12,9,12,1,9,3,7 -U,4,5,5,3,2,6,8,6,7,7,10,10,3,9,1,8 -N,1,0,2,1,0,7,7,11,0,5,6,8,4,8,0,8 -C,3,2,4,3,2,6,8,7,7,9,8,12,2,10,3,9 -K,7,10,9,8,5,4,8,3,8,11,11,11,4,6,5,5 -H,6,11,8,8,8,6,6,8,4,6,4,8,4,6,8,11 -P,6,10,5,5,3,4,12,6,1,12,6,4,3,10,4,8 -P,1,0,2,0,0,5,11,6,1,9,6,5,1,9,3,8 -U,3,3,4,2,1,5,8,5,7,11,10,8,3,9,2,6 -C,5,9,5,7,4,4,8,5,6,11,9,14,2,9,3,7 -U,5,4,6,3,2,4,8,5,8,10,9,9,3,9,2,6 -E,2,3,2,1,1,7,7,5,7,7,6,8,2,8,5,10 -V,10,15,9,8,5,6,9,4,4,9,8,5,5,12,3,8 -J,2,6,4,4,3,10,5,2,4,7,5,5,3,8,4,6 -Y,5,9,5,6,3,3,10,2,7,11,11,6,1,11,2,5 -B,4,6,5,4,4,8,9,3,5,10,5,5,3,8,5,8 -F,4,9,5,6,2,1,12,5,5,12,10,8,0,8,2,6 -L,8,12,8,6,4,8,4,4,5,12,8,11,3,9,6,9 -S,4,9,6,7,3,9,7,4,8,12,4,7,2,8,5,9 -O,2,6,3,4,3,7,8,7,5,7,9,8,2,9,3,7 -U,6,7,7,5,3,4,10,6,7,12,11,8,3,9,2,7 -R,3,7,4,5,2,5,10,8,3,7,5,8,2,8,6,11 -T,3,6,4,4,3,7,8,7,6,7,7,8,3,10,5,9 -Z,1,3,2,1,1,7,7,5,8,6,6,8,1,8,6,8 -O,5,6,6,9,3,8,7,9,8,7,6,9,3,8,4,8 -G,7,11,9,9,12,8,7,4,3,6,5,9,8,7,9,14 -K,6,9,9,8,9,6,7,2,4,7,4,9,7,5,10,10 -Y,8,10,6,15,5,4,9,3,1,9,10,5,4,10,7,5 -G,6,9,5,4,3,8,3,4,3,7,3,5,4,7,4,9 -H,4,5,7,4,4,7,8,3,6,10,6,8,3,8,3,8 -J,3,9,4,7,1,12,2,10,4,14,5,13,1,6,0,8 -T,3,5,4,4,2,6,10,1,8,11,9,5,1,9,3,4 -W,5,9,7,7,3,8,8,4,2,7,8,8,8,9,0,8 -B,2,4,4,3,3,8,7,2,5,10,5,6,2,8,4,9 -U,3,8,4,6,2,7,5,14,5,7,13,8,3,9,0,8 -F,1,3,3,2,1,5,11,3,4,13,7,5,1,9,1,7 -R,4,10,6,8,6,7,7,4,6,6,5,7,3,7,5,9 -U,3,9,4,7,2,7,5,15,5,7,12,8,3,9,0,8 -M,8,9,12,8,12,7,7,4,4,6,5,8,14,9,6,9 -P,3,4,5,2,2,7,11,4,3,12,4,2,1,9,2,9 -I,2,11,2,8,4,7,7,0,6,7,6,8,0,9,3,8 -J,3,5,5,6,4,8,9,4,5,7,6,8,3,8,8,9 -P,6,9,8,7,7,6,6,8,4,7,6,8,4,9,8,11 -U,4,8,6,6,6,10,6,4,5,6,7,6,5,8,4,6 -I,1,6,0,4,0,7,7,5,3,7,6,8,0,8,0,8 -P,4,7,6,5,3,7,12,4,5,14,5,1,0,10,3,8 -H,3,3,5,2,3,7,7,2,6,10,6,8,3,8,3,7 -V,4,2,6,4,2,7,13,3,4,8,12,8,3,10,2,8 -N,6,9,9,7,5,7,9,2,5,10,6,6,6,9,1,8 -G,6,11,7,8,4,7,6,7,7,11,6,13,3,9,5,8 -W,4,2,6,4,4,9,11,2,2,5,9,7,9,11,2,7 -S,5,11,6,8,6,8,8,5,8,5,5,8,0,8,9,8 -J,1,3,3,2,1,9,4,4,4,13,7,12,1,7,0,7 -B,3,7,4,5,3,6,6,9,7,6,6,7,2,8,9,9 -V,3,10,5,8,2,8,8,4,3,6,14,8,3,9,0,8 -E,4,9,4,6,4,3,6,5,9,6,7,13,0,8,7,9 -Q,5,6,5,8,5,8,4,6,5,10,5,10,4,7,6,7 -G,6,10,8,7,5,7,7,7,6,5,7,9,3,8,4,8 -X,3,6,5,5,5,9,6,2,6,8,6,7,3,10,8,6 -D,3,4,4,3,3,7,7,6,7,7,6,5,2,8,3,7 -G,5,9,6,6,7,9,6,5,2,6,6,10,6,7,5,11 -X,3,5,6,3,2,5,8,2,9,11,10,9,2,9,3,6 -F,6,10,9,7,5,5,12,4,5,13,8,4,2,10,2,6 -W,3,7,5,5,3,11,8,5,1,6,9,8,7,10,0,8 -Q,4,9,5,8,5,8,8,7,4,5,9,9,2,9,4,9 -Z,4,8,5,6,5,7,7,5,10,7,6,8,1,8,7,7 -W,6,9,8,6,7,7,7,6,3,8,8,7,7,9,5,10 -F,2,5,3,4,2,6,9,4,5,10,9,6,2,10,3,6 -Y,6,9,6,4,3,7,7,4,4,9,8,6,4,10,4,4 -I,1,9,0,7,1,7,7,5,3,7,6,8,0,8,0,8 -U,2,3,3,2,1,5,8,4,5,10,8,9,3,10,1,7 -A,4,11,7,8,6,7,5,1,4,5,2,6,5,6,6,6 -U,3,8,4,6,2,7,5,14,5,7,13,8,3,9,0,8 -D,1,3,2,2,1,9,6,4,4,10,3,5,2,8,2,8 -S,6,12,6,6,3,10,4,4,3,12,6,9,3,10,2,8 -U,1,3,2,1,1,9,8,6,5,5,9,7,3,10,0,8 -D,3,9,5,6,4,6,7,9,6,6,6,5,3,8,3,8 -I,2,6,3,4,1,7,7,1,8,14,6,8,0,8,1,8 -O,5,9,4,4,3,6,8,6,4,9,8,9,4,9,4,8 -V,3,7,5,5,1,8,8,4,2,6,14,8,3,10,0,8 -P,5,9,7,7,6,9,8,4,5,11,4,4,2,9,4,8 -T,2,10,4,7,1,7,14,0,6,7,11,8,0,8,0,8 -S,3,7,4,5,3,8,8,7,6,7,6,8,2,8,9,8 -G,3,6,4,4,2,8,6,7,7,6,6,9,1,7,6,11 -O,4,11,5,8,3,7,7,9,7,7,6,8,3,8,4,8 -X,5,9,8,6,4,10,6,2,8,10,2,7,3,8,3,9 -G,5,9,7,7,7,7,9,6,3,5,5,10,4,8,7,8 -U,6,9,6,7,4,5,7,7,8,8,6,9,3,9,3,4 -F,4,9,5,6,2,1,11,5,7,12,11,9,0,8,2,6 -Q,5,8,6,10,6,9,5,7,4,9,5,11,4,8,6,7 -M,1,0,2,0,1,7,6,9,0,7,8,8,6,6,0,8 -B,7,13,7,7,6,10,6,4,5,9,5,8,6,8,8,9 -C,5,8,6,6,2,3,10,5,8,12,11,10,1,8,2,6 -K,7,9,10,8,10,9,7,3,4,9,2,8,8,4,8,12 -R,1,1,2,1,1,6,9,8,4,7,5,8,2,7,4,11 -A,6,11,8,9,8,7,7,8,4,8,5,8,4,8,10,1 -Q,6,7,6,9,7,8,5,7,4,8,6,7,6,8,6,9 -K,4,10,5,7,2,3,8,8,2,7,5,11,3,8,3,10 -I,1,6,1,4,1,7,7,0,7,7,6,9,0,8,3,8 -V,5,6,5,4,3,4,12,1,2,8,10,7,3,11,1,7 -F,2,1,3,2,1,5,11,3,5,11,9,5,1,10,3,6 -O,4,8,5,6,4,7,8,8,5,10,7,8,3,8,3,8 -A,2,7,4,5,3,12,3,2,2,9,2,9,3,7,3,9 -N,6,10,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -C,2,1,2,2,1,6,8,7,7,9,7,12,1,10,4,10 -W,1,0,1,0,0,7,8,3,0,7,8,8,3,9,0,8 -M,5,7,6,5,7,8,8,6,5,7,6,8,7,9,7,6 -Q,5,9,6,11,7,7,9,4,3,8,10,10,4,10,8,8 -C,3,8,4,6,3,5,7,6,7,7,5,11,1,8,4,10 -A,7,9,10,8,8,6,8,2,4,7,7,9,8,6,4,8 -Y,3,5,5,8,1,6,10,2,2,7,13,8,2,11,0,8 -I,1,11,0,8,1,7,7,5,3,7,6,8,0,8,0,8 -B,5,9,7,8,9,7,7,5,4,7,6,8,6,9,8,7 -G,4,7,4,5,2,6,7,6,6,10,8,9,2,9,4,9 -L,4,9,4,5,2,9,3,4,5,12,4,13,2,6,5,9 -I,2,8,3,6,2,8,7,0,7,13,6,8,0,8,1,8 -Y,8,10,7,5,4,8,6,4,6,9,6,5,4,10,4,6 -K,3,6,5,4,5,8,6,4,4,7,6,8,6,7,6,8 -X,5,11,9,9,7,6,8,2,6,7,6,9,6,5,8,7 -V,8,10,7,8,5,3,12,2,3,9,11,8,7,11,2,6 -S,8,11,9,8,6,7,8,3,6,10,5,7,4,6,6,8 -K,3,7,5,5,5,5,6,3,4,6,5,9,5,7,8,7 -A,3,8,5,5,2,7,5,3,1,7,1,8,2,7,2,7 -S,9,13,8,7,4,9,4,4,3,13,8,10,4,9,3,9 -D,2,4,4,3,2,8,7,5,6,9,5,5,2,8,3,7 -Q,6,9,8,7,6,8,4,9,5,7,4,8,3,8,4,8 -N,10,13,9,7,4,4,9,4,7,3,3,11,5,8,2,7 -Z,5,7,7,9,6,10,5,4,4,8,2,6,2,7,7,8 -A,4,9,7,7,4,8,2,2,3,6,1,7,2,7,3,7 -B,4,6,5,4,4,8,7,5,6,9,6,6,2,8,6,9 -U,5,8,5,6,2,7,4,14,5,7,14,8,3,9,0,8 -S,3,5,6,3,2,6,8,2,7,10,7,8,1,9,5,6 -P,3,1,4,2,2,5,10,4,4,10,8,4,1,9,4,7 -C,3,2,4,4,2,6,8,7,7,8,7,13,1,9,4,10 -Q,1,0,2,1,1,8,7,6,4,6,6,9,2,8,3,8 -Q,5,6,7,9,8,8,11,4,3,5,8,11,5,13,7,11 -E,3,8,5,6,4,4,8,5,8,11,10,9,2,9,4,5 -D,2,4,4,3,2,9,6,4,6,10,4,5,2,8,3,8 -G,4,2,5,4,3,7,6,6,6,6,6,9,2,8,4,8 -V,2,1,4,2,1,6,13,3,2,8,11,8,2,10,1,8 -A,4,10,7,7,2,7,5,3,1,7,1,8,3,7,2,8 -A,2,8,4,6,2,12,3,3,2,10,1,9,2,6,2,8 -R,3,2,4,4,3,7,7,5,5,6,5,7,3,6,6,9 -S,3,5,4,4,2,8,7,3,7,10,6,8,1,9,5,8 -Q,5,9,5,4,3,8,5,4,8,10,4,9,3,7,8,10 -Z,6,9,9,7,6,8,6,2,9,11,5,9,3,5,7,8 -C,7,10,8,8,5,3,7,5,7,11,10,14,2,9,3,7 -F,6,12,5,6,3,4,12,3,5,12,7,4,2,7,5,5 -B,4,10,5,8,7,7,8,9,6,7,6,7,2,7,8,10 -R,3,7,3,5,3,5,9,7,3,7,5,8,2,7,4,11 -W,8,10,9,8,6,1,10,3,3,11,11,9,7,10,1,7 -K,6,10,8,7,6,6,6,1,7,10,6,10,4,8,4,8 -P,2,4,4,3,2,8,8,3,5,12,4,4,1,10,2,8 -O,3,6,4,4,3,7,8,7,4,9,7,8,3,8,2,8 -J,5,8,4,6,3,8,7,2,4,11,6,8,2,10,6,11 -A,6,9,5,4,2,11,3,3,1,9,4,11,4,5,4,9 -P,3,7,5,5,3,9,8,2,5,12,4,5,1,10,2,9 -N,10,13,12,8,5,4,9,3,4,13,10,9,6,8,0,7 -M,3,2,5,3,3,9,6,6,4,6,7,6,7,5,2,6 -P,3,7,5,11,8,8,9,5,0,8,6,6,5,11,6,9 -Z,3,7,5,5,3,6,8,2,9,11,7,7,1,9,6,7 -S,4,6,5,4,3,9,8,3,7,10,4,7,2,7,4,9 -X,1,0,1,0,0,8,7,3,4,7,6,8,2,8,4,8 -P,4,8,4,5,2,5,10,9,5,9,6,5,2,10,4,8 -C,6,11,6,8,4,5,8,7,8,12,9,12,2,10,4,6 -P,5,8,7,6,5,9,8,2,6,13,5,5,2,9,3,9 -D,3,7,3,5,2,5,6,10,7,5,4,5,3,8,3,8 -Z,2,4,5,3,2,7,8,2,9,12,7,7,1,8,5,6 -Y,7,6,6,9,4,6,8,4,2,7,10,5,4,10,5,6 -L,1,3,3,1,1,6,4,1,7,7,2,9,0,7,2,8 -K,4,5,5,4,3,5,7,4,8,7,6,10,6,8,5,9 -T,6,9,6,6,4,7,11,3,9,12,9,4,2,12,3,4 -R,2,1,2,1,1,6,10,7,2,7,5,8,2,7,4,10 -T,4,11,5,8,2,5,15,1,6,9,11,7,0,8,0,8 -A,8,14,8,8,6,9,4,5,4,10,6,12,9,2,7,11 -H,5,10,5,7,3,7,5,15,1,7,8,8,3,8,0,8 -Z,5,7,6,5,4,8,5,2,9,11,4,10,2,8,6,10 -G,4,4,6,6,2,8,5,8,9,6,5,10,2,8,5,10 -U,3,1,4,1,1,7,9,5,6,7,10,9,3,10,1,8 -B,4,8,6,6,4,11,6,3,7,11,3,7,2,8,5,11 -L,7,13,6,7,3,7,4,3,6,11,4,13,2,7,6,8 -V,7,9,9,8,10,7,6,5,4,7,6,7,7,10,8,11 -B,2,5,4,3,3,8,7,3,6,9,5,7,2,8,5,10 -Q,1,1,2,2,2,8,7,5,2,5,6,9,2,9,4,10 -G,6,11,7,8,5,6,7,7,7,10,8,10,2,8,5,9 -D,4,8,6,6,5,7,8,8,6,9,7,4,4,9,3,7 -K,7,10,7,5,3,7,6,3,6,9,8,9,6,11,3,7 -Y,4,5,5,7,7,9,6,6,3,7,7,8,7,8,6,4 -W,4,8,6,6,3,6,8,4,1,7,8,8,8,9,0,8 -Y,4,4,5,6,5,9,9,5,3,7,7,7,5,10,6,4 -H,4,4,4,5,2,7,6,15,1,7,8,8,3,8,0,8 -S,7,10,5,5,2,9,2,3,4,9,2,9,3,6,5,10 -Q,8,15,8,8,5,11,4,5,7,12,3,10,3,7,8,12 -D,6,5,6,8,3,5,7,10,10,7,6,5,3,8,4,8 -G,3,8,5,6,4,6,6,6,6,7,5,11,2,10,4,9 -F,4,11,4,8,3,1,11,4,5,11,11,9,0,8,2,6 -U,2,3,3,2,1,5,8,5,6,10,9,8,3,9,2,6 -S,2,5,2,4,2,8,8,7,5,8,5,7,2,8,8,8 -A,3,9,5,7,3,11,3,2,2,9,2,9,3,5,3,8 -C,2,2,3,3,2,6,8,7,8,8,7,13,1,9,4,10 -I,3,9,5,7,3,7,7,0,7,13,6,8,0,8,1,8 -I,1,1,1,2,1,7,7,1,6,7,6,8,0,8,2,8 -H,3,3,5,2,2,7,8,3,6,10,7,7,3,8,3,8 -Y,3,5,5,8,6,7,10,3,3,7,8,9,4,10,9,5 -W,4,8,7,6,9,9,8,5,2,7,7,7,12,10,4,6 -P,3,7,5,11,9,9,8,4,1,8,6,7,7,9,5,6 -F,6,11,6,8,2,1,12,5,6,12,11,8,0,8,2,5 -J,0,0,1,1,0,12,4,6,3,12,5,11,0,7,0,8 -U,2,4,3,3,2,5,8,5,6,10,9,9,3,9,2,6 -H,8,11,12,9,10,6,7,3,7,10,8,9,5,8,5,7 -R,3,5,4,4,3,7,7,4,5,6,5,6,3,7,4,8 -C,3,8,4,6,3,5,7,6,8,5,6,12,1,7,4,10 -R,4,9,6,7,6,6,7,5,6,7,6,6,3,7,5,9 -B,4,8,6,6,8,8,8,4,3,6,7,7,6,11,8,9 -M,6,9,10,7,11,10,5,3,2,9,4,8,11,6,4,7 -O,4,8,5,6,4,7,7,7,6,7,5,8,2,8,3,8 -C,6,11,7,8,5,5,8,7,6,8,8,15,4,9,6,6 -E,3,4,5,3,2,6,8,2,8,11,8,9,2,8,4,7 -Z,1,4,2,3,1,8,7,5,8,6,6,8,1,8,7,7 -M,6,11,8,8,8,8,6,5,5,6,7,8,8,6,2,7 -E,3,7,3,5,2,3,7,6,11,7,7,15,0,8,7,7 -U,4,10,5,8,4,8,6,12,4,7,13,7,3,8,0,9 -R,3,8,3,6,4,5,9,7,3,7,5,8,2,7,5,11 -D,4,11,4,8,3,5,7,11,8,7,6,5,3,8,4,8 -F,5,7,6,5,6,7,8,6,4,8,6,8,3,10,8,11 -C,7,11,8,8,5,5,7,5,7,12,9,13,4,11,5,5 -L,5,10,6,8,4,7,4,2,8,7,1,8,1,6,3,7 -F,5,11,6,8,7,6,9,6,4,8,6,8,3,10,8,11 -S,2,4,4,3,2,9,6,3,7,10,4,8,1,9,5,9 -C,6,9,8,8,8,5,7,3,5,7,6,11,4,11,8,8 -U,4,6,4,4,3,7,5,12,4,7,12,8,3,9,0,8 -P,6,13,6,7,4,8,9,4,3,12,4,4,4,11,5,6 -H,3,6,4,4,2,7,7,14,0,7,6,8,3,8,0,8 -H,3,5,6,3,3,7,7,3,6,10,6,8,3,8,3,7 -H,4,5,5,4,4,8,7,6,6,7,6,8,3,8,3,7 -V,4,7,4,5,2,2,11,3,3,11,11,8,2,11,0,8 -J,4,11,5,8,4,8,5,3,7,12,4,10,1,6,2,6 -Z,2,1,3,3,2,7,7,5,9,6,6,8,1,8,7,8 -M,4,3,5,5,3,7,7,12,1,7,9,8,8,6,0,8 -I,1,1,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -S,7,11,7,6,3,9,5,4,4,13,6,8,2,9,3,8 -J,1,4,2,3,1,10,7,1,7,11,4,7,0,7,1,7 -W,10,15,10,8,5,4,9,2,2,8,10,8,9,12,1,6 -N,6,9,9,7,5,9,8,2,5,10,2,4,7,10,2,7 -I,1,1,1,3,1,7,7,1,6,7,6,8,0,8,2,8 -M,5,6,7,4,6,7,6,5,5,8,6,11,10,5,2,9 -E,3,8,4,6,3,7,8,6,10,6,4,9,3,8,6,8 -G,4,7,5,5,3,7,7,6,7,10,7,11,2,9,4,9 -P,2,3,3,1,1,5,9,4,4,9,8,5,1,9,3,7 -R,5,11,7,8,6,10,7,3,5,10,3,7,3,7,4,10 -Z,2,3,3,2,2,7,7,5,9,6,6,8,1,8,7,8 -O,2,4,3,3,2,7,7,6,4,9,6,8,2,8,2,8 -W,4,8,6,6,6,5,11,2,2,7,8,8,7,11,1,8 -A,2,4,3,3,1,11,3,3,2,11,2,9,2,6,2,9 -J,0,0,1,0,0,12,4,5,3,12,5,11,0,7,0,8 -T,3,5,4,4,3,9,12,4,5,5,11,9,2,12,1,8 -X,2,1,3,3,2,7,7,3,8,6,6,8,2,8,6,8 -J,2,7,3,5,1,14,2,6,5,14,2,11,0,7,0,8 -D,2,2,3,3,2,7,7,6,6,7,6,5,2,8,3,7 -J,2,9,3,6,2,10,6,1,7,11,3,6,0,7,1,7 -X,3,8,5,6,3,8,7,4,8,6,6,8,3,8,6,8 -J,1,7,2,5,2,10,6,1,5,11,4,8,0,6,1,7 -W,4,4,6,3,3,8,11,3,2,6,9,8,8,12,1,7 -A,3,9,5,7,3,11,4,2,2,8,2,9,3,5,3,8 -R,3,5,5,4,3,9,7,3,5,10,4,6,3,7,4,10 -V,6,11,6,8,4,3,11,1,2,9,10,8,4,11,1,7 -T,8,11,7,6,3,7,9,4,8,13,6,8,2,7,4,6 -V,5,8,5,6,2,3,11,3,4,10,11,7,2,10,1,8 -B,1,0,1,0,1,7,7,6,4,6,6,7,1,8,5,9 -G,2,1,3,2,2,7,7,5,5,7,6,10,3,7,4,9 -B,4,9,6,6,5,9,6,4,6,10,5,7,3,7,6,9 -N,5,9,5,7,3,7,7,15,2,4,6,8,6,8,0,8 -K,2,3,3,2,2,6,7,4,7,6,6,10,3,8,4,9 -U,3,6,4,4,1,7,4,13,5,7,13,8,3,9,0,8 -L,3,7,4,5,3,5,4,5,7,2,2,5,1,6,1,5 -O,2,4,3,3,2,8,7,6,3,9,6,8,2,8,2,8 -W,5,5,7,8,4,9,8,4,2,7,8,8,9,9,0,8 -H,4,11,6,8,7,7,7,5,6,7,6,9,6,8,3,8 -B,8,12,6,6,4,9,5,4,5,10,5,9,5,7,7,10 -V,5,8,5,6,3,3,12,3,3,10,11,8,2,10,1,8 -D,4,6,6,4,5,9,6,4,5,10,3,6,3,7,3,8 -Q,3,5,4,8,7,8,7,5,0,6,6,9,7,10,6,12 -G,7,12,6,7,3,10,4,4,4,10,3,6,4,7,5,9 -D,4,7,5,5,3,6,7,10,10,6,5,6,3,8,4,8 -G,6,10,8,8,6,6,6,6,6,5,6,11,2,9,4,8 -L,1,4,2,3,1,6,4,2,7,7,2,9,0,7,2,8 -D,6,9,6,5,3,8,6,5,5,10,4,6,4,7,6,10 -H,1,0,2,0,0,7,7,11,1,7,6,8,3,8,0,8 -V,3,3,5,4,1,8,8,4,2,6,14,8,3,10,0,8 -T,3,9,5,7,3,7,12,3,7,7,12,8,1,12,1,8 -W,4,8,7,6,4,7,10,2,3,7,9,8,8,11,1,8 -I,1,5,3,4,1,7,7,0,7,13,6,8,0,8,1,8 -M,3,6,4,4,4,9,6,6,4,6,7,5,7,5,2,6 -E,3,8,4,6,5,6,7,3,4,6,7,10,4,11,8,7 -U,5,5,6,7,2,7,4,14,6,7,15,8,3,9,0,8 -A,3,5,5,3,2,10,2,2,2,10,2,9,2,6,2,7 -M,11,15,11,8,6,9,11,6,4,4,6,9,10,12,2,7 -M,3,4,5,3,3,8,6,6,4,7,7,8,7,5,2,7 -A,3,9,5,7,3,10,2,2,2,8,1,8,2,7,3,8 -L,4,8,6,7,6,7,6,5,5,7,7,7,3,9,8,11 -R,4,8,5,6,4,7,9,6,5,7,6,8,3,7,6,9 -U,6,11,7,8,6,8,5,13,5,6,12,8,3,9,0,8 -E,0,0,1,0,0,5,7,5,6,7,6,12,0,8,5,11 -E,4,7,6,6,5,5,9,3,5,8,7,9,4,10,7,7 -P,7,15,7,8,5,8,9,4,4,12,5,4,4,11,6,6 -U,3,7,4,5,3,8,5,12,4,7,11,8,3,9,0,8 -N,5,10,7,8,4,3,9,4,4,10,11,10,5,7,1,8 -K,3,7,5,5,5,8,7,4,4,7,6,7,4,6,8,13 -X,5,5,6,8,2,7,7,5,4,7,6,8,3,8,4,8 -O,1,0,1,0,0,7,7,6,3,7,6,8,2,8,3,8 -D,6,5,6,8,3,5,7,10,9,7,6,5,3,8,4,8 -J,3,7,4,5,1,8,6,3,7,15,5,10,0,7,1,7 -E,5,10,7,8,4,5,9,3,9,11,9,9,2,9,5,5 -D,3,6,3,4,2,6,8,10,8,7,7,6,3,8,4,8 -Q,3,3,4,5,3,8,8,7,2,5,7,9,2,9,5,9 -D,9,15,8,8,6,8,6,3,7,10,5,6,6,7,9,6 -O,3,4,4,3,2,7,7,7,4,9,7,9,2,8,3,8 -Z,8,8,6,11,5,7,7,4,3,11,6,8,3,9,11,6 -R,5,6,6,8,4,5,12,8,3,7,3,9,3,7,7,11 -R,4,7,5,5,4,11,7,2,5,11,3,7,3,7,3,11 -E,5,10,5,8,3,3,8,6,12,7,5,15,0,8,7,7 -Y,7,10,7,7,3,2,11,5,6,13,13,7,2,11,2,6 -I,0,7,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -W,4,7,6,5,3,4,8,5,1,7,9,8,8,10,0,8 -K,4,10,6,7,6,6,7,3,7,6,5,8,3,8,5,9 -F,2,6,3,4,3,6,10,3,5,10,9,5,2,10,3,6 -B,5,5,5,7,4,6,7,9,6,7,6,6,2,8,9,10 -D,3,7,4,5,3,6,7,8,6,7,6,4,3,8,3,7 -Q,5,8,6,9,6,8,7,7,4,9,8,9,4,9,7,9 -U,8,10,9,8,4,3,8,6,8,10,10,9,3,9,2,5 -N,7,10,10,7,4,6,8,3,5,10,8,8,6,7,1,7 -C,2,3,2,2,1,4,9,5,6,12,9,10,1,9,2,7 -A,5,9,9,7,6,5,5,2,4,3,2,7,6,7,7,2 -B,2,2,3,3,2,8,7,5,5,6,5,5,2,8,6,9 -C,9,14,6,8,3,7,8,7,7,11,6,7,2,9,6,8 -T,3,5,5,6,1,8,15,1,5,7,11,8,0,8,0,8 -Y,2,4,4,5,1,8,10,2,2,6,12,8,1,11,0,8 -Q,4,6,6,5,6,8,4,4,4,7,4,10,5,6,7,7 -G,6,11,5,6,3,11,4,3,4,10,2,7,4,7,4,9 -G,5,11,7,8,5,6,6,7,7,6,5,10,2,9,4,8 -A,3,8,6,5,2,6,5,3,0,6,1,8,2,7,2,7 -L,4,10,6,8,3,7,4,0,9,9,2,10,0,7,3,8 -L,3,6,4,5,4,8,6,5,5,7,7,9,3,8,7,10 -Y,9,12,8,7,5,6,6,5,4,9,9,6,5,11,4,6 -D,1,1,2,1,1,6,7,8,6,6,6,6,2,8,3,8 -D,5,10,8,8,5,9,8,5,8,10,5,4,4,7,5,9 -A,3,9,5,7,4,9,3,2,2,7,2,8,2,6,3,6 -P,7,15,7,8,5,6,11,3,5,13,6,3,3,9,5,5 -D,4,10,5,7,3,5,7,10,9,6,6,5,3,8,4,8 -O,4,8,5,6,4,8,6,8,4,7,4,8,3,8,3,8 -U,5,6,5,4,4,5,8,5,6,9,7,10,3,9,3,6 -S,4,7,5,5,3,5,9,3,6,10,7,6,3,7,4,5 -E,7,10,9,7,7,5,9,2,8,11,8,9,3,8,5,6 -U,5,8,6,6,5,8,6,8,5,7,6,9,3,8,4,6 -C,5,9,6,7,4,4,8,7,8,7,8,14,2,8,4,10 -P,5,11,6,8,3,5,9,11,6,8,6,5,2,10,4,8 -U,2,0,2,1,0,7,5,11,4,7,13,8,3,10,0,8 -B,3,6,4,4,4,9,6,3,5,10,4,7,2,8,4,10 -D,6,9,8,6,5,10,6,4,7,10,4,6,5,9,5,8 -Y,4,6,6,8,1,7,11,2,3,7,12,8,1,11,0,8 -A,3,7,5,5,3,8,2,2,2,7,1,8,2,7,3,7 -G,7,12,6,6,4,7,6,4,3,9,6,8,4,9,9,8 -O,6,11,7,8,6,7,8,8,7,7,6,6,4,7,5,10 -H,4,3,5,4,4,6,7,6,6,7,6,10,3,8,3,8 -Y,3,6,5,8,1,10,11,2,4,4,12,8,0,10,0,8 -K,3,2,4,4,3,5,7,4,7,7,6,11,3,8,5,9 -B,5,10,5,7,7,6,7,8,5,7,6,7,2,8,7,10 -M,2,3,4,1,2,5,7,4,3,10,10,10,4,7,1,6 -C,3,7,5,6,5,5,8,3,5,7,7,11,3,9,6,10 -Q,4,7,6,6,5,6,4,4,5,6,4,7,3,5,6,6 -S,6,9,8,8,9,8,8,4,5,7,7,7,5,10,10,10 -I,4,10,6,8,4,5,6,2,6,7,7,12,0,9,4,9 -R,7,11,9,8,6,9,8,4,7,9,3,7,3,6,5,11 -D,8,11,8,6,4,9,6,5,6,12,4,8,6,6,6,10 -X,5,9,8,6,4,5,8,2,8,11,11,9,3,9,4,6 -Q,3,5,4,5,3,8,7,7,4,6,6,9,2,8,4,9 -L,3,5,4,4,2,4,4,4,8,2,1,6,0,7,1,6 -R,3,7,5,5,5,8,7,7,5,8,6,7,3,8,5,9 -H,9,13,9,7,5,10,6,4,5,9,5,5,7,10,5,9 -K,4,5,5,7,2,4,7,9,2,7,5,11,4,8,2,11 -I,1,9,2,6,2,7,7,0,6,7,6,8,0,8,2,8 -A,2,6,5,4,3,5,5,2,2,4,2,7,2,6,3,3 -D,4,6,6,4,4,7,7,4,6,7,6,8,6,8,3,7 -G,3,7,4,5,2,8,7,8,7,6,6,9,2,7,5,11 -Y,3,9,5,6,1,8,10,3,2,6,13,8,2,11,0,8 -A,3,9,6,7,4,13,3,3,3,11,1,9,2,6,2,9 -U,7,10,6,5,3,6,6,4,5,4,8,7,5,8,2,6 -I,1,1,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -Q,2,1,2,1,1,8,7,6,4,6,6,8,2,8,3,8 -J,1,3,2,2,0,9,6,3,6,14,6,10,0,7,0,8 -N,6,9,9,8,8,7,9,4,4,7,4,7,9,7,6,6 -A,2,3,3,2,1,10,2,2,1,8,2,9,1,6,1,8 -O,4,5,5,8,2,8,7,9,7,7,5,8,3,8,4,8 -K,4,7,6,5,3,6,6,2,7,10,7,10,3,8,4,8 -M,4,8,5,6,5,7,5,10,0,7,8,8,8,5,2,10 -L,5,11,5,8,3,0,1,5,6,0,0,7,0,8,0,8 -E,5,7,6,6,6,5,7,4,3,7,6,8,5,11,9,8 -G,4,7,5,5,5,9,5,5,2,7,6,10,5,10,3,9 -H,3,5,5,4,3,9,6,3,6,10,4,8,3,8,3,9 -S,4,9,5,6,6,9,7,5,3,8,6,8,4,8,10,9 -T,6,7,6,5,3,7,11,3,7,11,8,4,4,10,4,4 -B,3,6,4,4,3,6,6,8,6,6,6,7,2,8,9,10 -A,2,7,4,5,3,11,3,2,2,9,2,9,2,6,3,8 -W,5,8,7,6,3,5,8,5,1,7,8,8,8,9,0,8 -M,6,9,9,6,10,10,3,3,2,9,4,8,11,5,3,7 -T,5,10,6,7,5,8,11,3,7,6,11,8,2,12,1,8 -O,4,8,6,6,2,6,7,8,8,7,6,7,3,8,4,8 -N,6,9,5,4,2,9,11,5,4,4,6,10,5,11,3,7 -M,4,5,7,3,4,7,6,3,4,9,7,8,7,5,2,8 -U,7,9,7,7,5,3,8,5,7,10,9,9,3,9,2,6 -H,3,5,4,3,3,8,7,6,6,7,6,6,3,8,3,6 -N,6,10,9,7,5,6,10,5,4,8,7,9,7,7,2,8 -J,7,12,5,9,5,8,9,2,4,11,6,7,2,9,8,9 -I,1,4,2,3,1,7,7,0,7,13,6,8,0,8,1,8 -O,3,8,4,6,2,7,8,9,7,7,7,8,3,8,4,8 -B,3,8,5,6,5,9,7,4,5,10,5,7,2,8,5,9 -Q,4,6,6,9,9,9,7,6,1,7,6,9,10,9,5,7 -K,5,11,6,8,2,3,7,8,2,7,6,11,4,8,2,11 -Z,7,9,7,5,4,7,7,2,9,12,6,8,3,7,6,6 -R,2,3,3,2,2,8,8,3,4,9,5,7,2,7,3,9 -B,3,4,5,3,3,7,8,3,5,10,6,6,2,8,5,9 -V,7,9,7,7,4,3,12,2,3,9,11,8,4,12,1,7 -R,6,12,6,7,5,10,6,3,5,10,4,8,6,8,6,10 -Z,2,1,2,2,1,7,7,3,11,9,6,8,0,8,6,8 -F,4,9,6,6,3,6,11,3,6,13,7,4,1,10,2,7 -S,4,8,5,6,2,7,7,6,9,5,6,8,0,8,9,7 -T,2,7,3,4,1,10,14,1,6,4,11,9,0,8,0,8 -B,3,6,5,4,6,8,6,5,4,7,7,8,7,9,7,8 -P,5,6,7,4,3,9,8,4,6,12,4,5,2,9,4,9 -Y,7,10,7,7,3,4,10,2,8,11,11,6,1,10,3,3 -A,5,6,7,5,5,8,8,3,4,7,8,8,5,9,3,6 -V,5,6,5,4,2,3,12,5,4,11,11,7,3,10,1,8 -P,3,9,5,7,5,6,9,4,5,9,8,4,1,10,4,7 -C,7,11,5,6,2,7,7,7,7,12,6,9,2,9,5,9 -H,4,8,6,6,7,8,7,4,3,6,6,7,7,8,7,6 -A,3,4,5,3,2,10,2,2,2,8,2,9,4,5,2,9 -A,3,6,6,4,4,8,5,2,4,7,2,6,2,6,4,6 -L,5,10,5,5,3,8,5,3,5,12,7,11,2,9,6,9 -J,3,8,4,6,2,8,7,1,8,12,5,8,0,6,2,6 -R,8,12,6,6,4,11,5,5,5,11,2,8,6,6,6,10 -T,2,6,3,4,1,7,13,0,5,7,10,8,0,8,0,8 -M,5,10,6,8,4,7,7,12,2,8,9,8,8,6,0,8 -W,7,7,7,5,6,4,11,2,2,10,9,7,7,11,2,6 -Y,5,7,7,10,10,8,8,4,2,7,8,9,4,11,9,8 -O,3,10,5,8,4,8,8,8,6,6,6,11,3,8,4,7 -H,8,10,12,8,7,7,8,3,7,10,5,7,3,8,3,8 -R,4,9,5,7,5,7,7,5,6,6,5,7,3,7,5,8 -B,6,11,7,8,8,8,7,5,5,7,5,7,4,8,6,8 -N,6,8,9,6,5,4,10,3,4,10,10,8,5,8,1,8 -S,2,4,2,2,1,8,8,6,5,7,5,7,2,8,8,8 -J,3,10,5,8,5,8,7,2,5,11,5,9,5,6,3,4 -L,2,7,3,5,1,0,2,3,5,1,0,8,0,8,0,8 -B,9,14,7,8,5,6,8,5,7,10,6,8,6,6,7,9 -A,3,9,5,7,3,11,3,3,4,11,2,9,2,6,3,8 -D,3,7,5,5,4,7,7,7,4,6,5,6,3,8,3,7 -J,7,10,5,8,4,7,10,3,2,12,5,5,2,9,8,9 -X,3,5,6,4,3,6,7,1,9,11,9,9,3,8,3,7 -U,2,0,3,1,1,7,5,11,5,7,14,8,3,10,0,8 -Q,1,0,2,1,0,8,7,7,3,6,6,9,2,8,3,8 -N,2,1,3,2,2,7,8,5,4,7,6,6,4,8,1,6 -Y,4,7,5,5,5,9,6,5,4,7,8,7,3,9,8,4 -Y,7,6,6,9,3,6,12,2,3,10,10,6,4,11,5,7 -M,5,11,8,8,8,9,7,5,5,6,7,5,10,8,3,5 -D,4,8,4,6,2,5,7,10,9,6,6,5,3,8,4,8 -H,4,7,6,9,5,10,11,3,2,7,8,8,3,11,7,10 -C,7,10,8,8,5,5,8,6,7,12,9,12,3,11,4,6 -Q,1,2,2,2,1,8,8,4,2,8,7,9,2,9,3,9 -A,2,3,4,4,2,8,3,1,2,7,2,8,2,6,2,7 -T,2,7,4,5,2,8,12,4,6,6,11,8,2,12,1,8 -J,6,8,8,9,7,8,8,4,7,6,7,7,4,11,11,9 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -F,9,13,8,7,6,7,9,3,5,11,6,6,5,8,8,7 -P,6,9,8,7,7,7,7,5,5,7,6,9,6,8,7,10 -U,4,6,5,4,3,6,7,5,6,8,6,8,3,9,3,6 -X,6,11,8,9,7,8,6,3,5,6,7,8,3,9,9,9 -P,4,5,4,3,3,5,10,5,4,10,8,4,1,10,4,7 -G,3,8,4,6,3,6,6,6,6,7,5,11,3,10,4,8 -W,3,5,5,3,3,5,11,2,2,8,9,9,6,10,0,8 -H,2,3,4,2,2,7,7,2,5,10,5,8,3,7,2,8 -Z,3,8,4,6,2,7,7,3,13,10,6,8,0,8,8,8 -S,2,1,2,2,1,8,8,6,5,8,6,7,2,8,8,8 -S,7,12,7,7,4,10,3,4,3,13,6,10,3,9,3,9 -M,5,10,5,8,4,7,7,12,2,7,9,8,8,6,0,8 -G,4,8,5,6,3,5,6,5,6,6,6,9,2,8,4,7 -R,6,11,6,8,4,5,11,9,3,7,4,8,3,8,6,11 -R,9,11,7,6,4,10,6,6,5,11,2,8,6,6,5,10 -I,1,6,0,4,1,7,7,5,3,7,6,8,0,8,0,8 -U,6,9,8,8,7,7,7,5,4,5,7,8,7,7,2,6 -O,5,5,6,7,3,7,7,9,8,7,5,7,3,8,4,8 -B,9,12,8,7,7,7,8,4,5,9,6,7,8,5,9,7 -N,3,7,5,5,3,4,10,3,3,10,10,9,5,8,1,7 -J,4,9,6,7,3,6,9,2,6,14,6,7,1,7,1,7 -A,3,10,6,7,2,7,3,3,3,7,1,8,3,6,3,7 -P,3,2,4,3,2,5,10,4,5,10,8,3,1,10,4,7 -Y,2,1,2,1,0,7,10,2,2,7,12,8,1,11,0,8 -Y,5,5,7,8,8,8,8,7,3,7,7,8,6,10,6,4 -N,6,7,8,5,4,9,7,3,5,10,2,5,5,9,1,7 -I,1,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -F,5,10,5,6,2,6,10,3,5,13,6,5,2,8,5,6 -B,4,6,7,6,6,7,10,6,6,8,7,8,5,9,7,9 -H,6,11,8,8,7,10,7,3,6,10,3,7,6,8,5,9 -Q,5,9,5,4,3,12,3,3,4,10,3,8,3,9,5,12 -L,4,10,6,8,3,3,4,3,10,2,0,7,0,7,1,5 -E,4,8,5,6,5,7,7,5,8,7,7,9,3,8,6,9 -N,4,11,4,8,5,8,7,12,1,6,6,7,5,8,0,9 -R,4,7,6,5,4,9,7,4,6,9,4,7,3,7,5,11 -G,4,9,5,7,4,5,7,6,5,9,8,10,2,8,4,9 -L,5,12,5,7,3,10,2,3,4,12,4,11,2,8,4,10 -S,8,11,9,9,6,5,8,3,6,10,8,8,3,8,5,5 -Y,7,9,6,5,3,4,7,5,3,9,11,6,4,10,3,4 -E,2,0,2,1,1,5,7,5,8,7,6,12,0,8,7,9 -T,5,7,6,5,5,6,7,7,6,7,6,8,3,9,6,10 -J,2,5,5,4,2,10,5,4,5,14,5,11,1,6,1,7 -F,3,8,3,6,1,1,14,5,3,12,10,5,0,8,2,6 -Z,4,8,5,6,2,7,7,4,14,9,6,8,0,8,8,8 -V,6,9,6,4,2,5,12,5,2,11,7,4,3,11,2,7 -A,2,3,3,1,1,8,2,2,1,7,2,8,2,6,2,7 -I,2,2,1,4,1,7,7,1,8,7,6,8,0,8,3,8 -V,2,7,4,5,2,5,11,3,3,9,11,9,2,11,1,8 -V,2,7,4,5,2,8,11,2,3,5,10,8,2,11,1,8 -B,2,4,3,3,3,7,8,5,5,7,6,6,2,8,6,9 -C,7,9,7,7,4,4,7,5,7,11,9,14,3,10,4,7 -U,7,15,7,8,5,8,5,5,5,6,6,7,5,7,3,6 -Z,2,7,3,5,2,7,7,3,12,8,6,8,0,8,7,8 -R,10,13,8,7,5,7,7,5,5,9,4,9,7,6,7,11 -H,8,11,11,9,7,8,6,3,6,10,5,8,3,8,3,8 -Q,4,5,4,6,4,8,5,6,3,9,6,9,3,8,4,8 -Q,3,5,4,6,3,8,10,5,2,6,9,12,2,10,6,8 -Y,5,8,5,6,3,5,8,0,8,9,9,6,1,10,3,4 -A,5,10,7,8,4,9,2,3,3,8,1,8,2,7,4,8 -B,4,6,5,4,3,8,8,4,6,9,6,5,2,8,7,7 -J,2,4,4,3,1,9,5,3,7,15,6,12,0,7,0,8 -E,2,3,4,1,2,7,7,2,7,11,7,9,1,9,4,8 -K,4,5,5,4,3,4,7,5,8,7,6,13,3,8,5,9 -Q,3,7,4,9,5,8,7,8,3,5,6,9,3,8,6,10 -R,3,8,4,6,4,5,8,7,5,6,4,9,3,6,5,8 -W,8,14,8,8,6,4,8,1,3,8,9,8,10,11,2,6 -G,5,8,7,6,4,6,7,6,6,6,6,9,4,7,4,8 -T,3,5,4,3,2,5,12,3,7,11,9,5,1,11,2,5 -L,2,5,2,3,1,4,3,3,7,2,2,6,0,7,0,6 -G,3,4,4,6,2,7,5,7,7,5,5,10,1,8,6,11 -K,3,6,4,4,1,4,8,8,1,7,6,11,3,8,3,11 -Z,4,9,6,7,6,7,9,3,8,7,6,8,2,10,13,6 -E,4,9,6,7,6,8,9,7,2,6,6,11,4,7,8,9 -S,4,10,6,7,4,9,6,3,7,10,6,8,2,9,4,9 -X,3,9,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -M,6,11,9,8,10,7,10,6,4,7,7,8,6,8,6,8 -X,3,4,4,3,2,7,7,3,9,6,6,10,2,8,6,7 -C,3,9,4,6,3,5,8,8,7,10,8,12,2,11,4,10 -T,4,10,6,8,8,7,7,4,6,7,7,9,5,9,5,7 -A,2,6,4,4,1,7,5,3,1,6,0,8,2,7,1,7 -B,5,9,7,6,9,8,6,5,4,7,7,8,7,9,7,9 -K,4,7,6,5,4,3,8,2,6,10,9,11,3,8,2,6 -K,3,4,6,2,3,7,7,2,7,10,6,9,4,8,4,7 -T,7,12,6,7,4,9,8,3,7,11,5,6,2,8,6,7 -W,11,14,12,8,7,8,9,3,4,6,9,6,11,8,2,6 -R,3,7,5,5,3,9,8,6,6,8,5,8,3,7,6,10 -M,6,8,9,6,10,6,8,4,3,7,4,8,14,3,4,7 -U,4,9,5,7,4,8,6,13,4,7,11,8,3,9,0,8 -M,1,0,2,0,0,7,6,9,0,7,8,8,5,6,0,8 -F,5,11,5,8,4,1,13,5,4,12,10,6,0,8,2,6 -L,3,7,5,5,3,7,4,1,7,8,2,9,1,6,2,8 -I,1,6,1,4,1,7,7,1,6,7,6,8,0,8,2,8 -D,7,11,9,8,8,6,7,7,5,7,7,6,4,7,4,8 -Y,6,8,6,6,2,2,12,4,6,13,12,6,1,11,1,6 -U,3,4,4,6,2,8,5,14,5,6,13,8,3,9,0,8 -Z,6,10,9,8,7,10,9,6,5,7,6,8,4,9,10,7 -U,7,11,8,8,4,4,8,7,8,10,9,9,3,9,3,5 -D,3,7,4,5,3,10,6,3,7,11,3,6,3,8,3,9 -L,9,14,9,8,5,7,4,4,5,12,8,12,4,9,6,10 -I,1,11,0,8,1,7,7,5,3,7,6,8,0,8,0,8 -O,4,9,5,7,4,7,6,8,4,7,5,9,3,8,3,8 -D,5,11,7,8,7,9,7,4,5,10,4,5,3,8,3,8 -D,2,1,3,3,2,7,7,6,6,7,6,5,2,8,2,7 -N,10,12,8,6,4,9,11,6,5,3,5,10,6,9,2,7 -B,6,9,9,8,11,7,7,5,4,8,6,8,7,9,8,7 -X,1,0,1,0,0,7,7,3,4,7,6,8,2,8,3,8 -Q,2,2,3,2,2,7,9,4,2,7,8,10,2,9,4,9 -P,5,10,6,8,6,5,10,3,7,10,9,6,4,10,4,7 -E,6,10,8,8,7,5,9,4,8,12,10,8,3,8,5,4 -Y,4,7,6,10,9,9,7,6,3,7,7,8,7,10,6,4 -M,4,9,6,7,6,8,6,6,4,7,7,8,8,5,2,7 -M,4,10,5,8,4,7,7,12,2,7,9,8,8,6,0,8 -B,1,0,1,0,0,7,7,6,4,7,6,7,1,8,5,9 -L,4,6,5,6,4,7,7,4,5,7,6,8,2,9,7,10 -N,6,8,8,6,4,10,8,3,6,10,2,4,5,9,1,7 -W,2,1,3,2,2,5,10,3,2,8,9,9,5,11,0,8 -L,3,9,4,6,2,7,4,0,9,9,2,11,0,7,2,8 -V,9,11,7,6,4,9,9,6,5,6,10,5,6,13,3,7 -M,5,10,6,5,3,10,2,1,3,9,3,9,5,4,1,9 -Q,7,12,6,6,4,10,5,4,7,11,4,8,3,8,8,11 -V,4,6,6,6,6,7,6,5,4,6,5,8,7,9,7,9 -C,7,10,7,8,5,5,7,5,7,12,8,13,4,9,5,6 -X,6,13,7,7,4,9,7,2,7,11,4,6,4,10,4,8 -D,2,1,3,2,2,7,7,6,6,7,6,5,2,8,3,7 -P,9,13,8,7,4,8,7,5,5,11,3,6,5,9,4,8 -E,2,5,4,3,2,7,7,2,8,11,7,9,2,9,4,8 -A,7,9,9,8,8,5,8,3,5,7,8,10,8,8,4,8 -L,3,7,5,5,2,6,3,2,8,7,2,10,0,7,2,8 -P,2,5,4,4,2,7,11,4,3,12,4,2,1,10,3,8 -S,3,8,4,6,3,8,7,8,6,8,6,7,2,8,9,8 -I,1,4,1,3,0,8,7,0,7,13,6,8,0,8,0,8 -U,5,9,6,8,7,7,6,4,4,6,7,8,7,8,2,7 -T,7,10,9,7,7,6,7,7,7,8,10,8,3,9,6,8 -S,4,7,4,5,2,7,6,6,9,6,7,11,0,9,9,8 -B,3,7,5,5,6,8,6,5,3,7,6,8,6,10,8,7 -M,6,5,6,8,4,7,7,13,2,7,9,8,9,6,0,8 -F,6,9,9,7,6,7,9,3,6,12,7,6,3,9,3,7 -C,4,8,5,6,3,5,8,6,6,8,8,15,3,10,4,10 -D,2,4,4,3,2,9,6,4,6,10,4,6,2,8,3,8 -X,3,9,5,6,4,7,7,3,8,5,6,8,2,8,6,8 -J,3,8,4,6,3,8,7,1,7,11,5,8,0,6,1,6 -R,2,3,4,2,2,8,7,4,5,9,4,7,2,7,4,10 -E,1,3,2,1,2,7,7,5,6,7,6,8,2,8,5,10 -Q,4,8,5,10,5,10,11,6,2,3,8,12,3,10,6,10 -L,2,5,3,3,1,4,4,4,7,2,2,6,1,7,1,6 -E,4,5,4,4,4,7,7,5,8,7,7,9,2,8,6,9 -Y,7,6,5,9,4,7,11,2,3,8,10,5,3,9,5,7 -L,2,3,2,5,1,0,1,5,6,0,0,7,0,8,0,8 -F,2,4,2,2,1,6,10,4,5,10,9,4,1,10,3,6 -X,4,8,5,6,3,8,7,4,4,7,6,8,3,8,4,8 -T,4,6,4,4,2,5,12,4,5,11,9,4,2,11,1,5 -K,4,10,4,7,2,4,8,9,2,6,3,11,4,8,2,11 -B,5,10,5,8,7,7,8,8,6,8,6,7,2,8,8,9 -E,4,7,6,5,4,9,6,2,8,11,5,9,3,8,5,10 -R,3,5,6,4,4,9,7,3,5,9,4,6,3,7,4,10 -P,3,6,4,9,8,8,9,5,0,8,7,6,5,10,3,7 -X,6,11,7,6,4,7,8,2,7,11,7,7,4,10,4,6 -K,6,10,9,8,6,5,8,2,7,10,8,10,3,8,3,8 -E,4,9,6,6,6,7,7,6,3,7,6,11,4,8,8,9 -Y,3,9,5,6,1,6,12,2,3,9,12,8,1,10,0,8 -E,4,5,4,8,3,3,8,6,11,7,5,14,0,8,7,7 -A,2,4,4,5,2,7,4,3,1,7,1,8,2,7,2,8 -X,4,7,7,5,3,10,6,1,8,10,3,7,2,8,3,9 -A,4,7,5,5,3,8,2,2,2,6,2,8,2,6,3,6 -Z,6,12,6,6,4,6,7,2,9,11,7,8,3,7,6,6 -H,4,3,4,4,2,7,7,14,0,7,6,8,3,8,0,8 -A,4,6,6,5,5,8,8,2,4,7,8,8,5,8,4,6 -Q,6,10,6,5,4,9,6,4,6,10,5,8,3,8,9,9 -O,4,6,4,4,3,9,6,7,5,10,4,10,3,8,4,7 -M,2,1,3,2,2,7,6,6,4,6,7,8,6,5,1,8 -F,4,5,4,8,2,1,12,5,4,11,10,7,0,8,3,6 -A,4,6,5,6,5,7,9,2,4,7,7,9,7,7,3,8 -D,5,11,5,6,4,6,8,5,6,9,6,7,5,10,6,5 -H,5,11,6,8,3,7,9,15,1,7,3,8,3,8,0,8 -O,2,5,3,4,2,7,7,8,5,7,6,8,2,8,3,8 -A,5,7,6,5,6,8,7,7,4,7,6,8,2,8,8,3 -T,7,15,6,8,4,9,7,3,7,12,5,7,3,9,5,6 -L,2,7,4,5,5,7,8,2,4,6,7,10,5,11,6,5 -F,3,8,4,6,2,1,14,5,3,12,10,5,0,8,2,6 -V,4,4,6,6,1,10,8,5,3,5,14,8,3,9,0,8 -P,2,3,4,2,2,7,9,3,4,12,5,4,1,10,2,8 -T,4,7,5,5,2,6,11,2,8,11,9,5,1,11,3,4 -R,5,10,5,5,4,7,7,3,4,7,5,9,5,8,6,7 -J,1,7,2,5,1,13,3,8,4,13,4,12,1,6,0,8 -L,2,3,2,5,1,0,1,5,6,0,0,7,0,8,0,8 -E,5,10,7,8,6,4,9,4,7,12,10,8,3,9,4,5 -Z,4,10,5,7,4,7,7,3,12,9,6,8,0,8,8,8 -V,3,5,6,7,2,6,8,4,3,7,14,8,3,9,0,8 -I,1,10,2,8,2,7,7,0,8,7,6,8,0,8,3,8 -E,3,10,4,7,2,3,7,6,11,7,6,15,0,8,7,7 -K,4,9,5,6,5,6,7,3,6,6,6,9,3,8,5,10 -O,4,9,5,7,4,7,7,8,6,7,6,6,2,8,3,8 -P,2,3,3,2,1,7,10,3,4,12,5,3,0,9,2,8 -N,3,5,3,3,2,7,8,5,5,7,6,6,5,10,2,5 -F,4,7,6,5,4,9,8,2,5,13,5,6,2,9,2,9 -X,4,5,5,7,2,7,7,5,4,7,6,8,3,8,4,8 -E,4,9,4,6,2,3,7,6,11,7,6,15,0,8,7,7 -D,2,5,4,4,3,9,6,4,6,10,4,6,2,8,3,8 -Z,2,8,3,6,3,7,8,3,11,8,6,8,0,8,7,8 -S,4,6,5,4,2,8,8,4,8,11,8,7,2,10,5,6 -V,2,4,4,3,1,7,12,2,2,7,11,9,2,10,1,8 -G,3,5,4,4,2,6,6,5,5,9,7,11,2,9,4,10 -O,3,5,4,3,2,7,7,7,4,9,6,7,2,8,3,7 -P,1,1,2,1,1,5,11,7,2,10,6,4,1,9,3,8 -G,4,6,5,4,3,7,6,5,6,11,6,12,2,10,3,10 -V,6,8,6,6,3,3,12,3,3,9,11,8,3,11,1,7 -E,2,5,4,3,2,7,8,2,8,11,7,9,2,9,4,8 -C,2,1,3,2,1,6,8,7,7,8,7,13,1,9,4,10 -O,2,4,3,3,2,7,7,8,5,7,6,8,2,8,3,8 -G,4,8,5,6,3,6,6,7,6,10,7,12,2,9,4,9 -U,2,0,2,1,0,7,5,10,4,7,12,8,3,10,0,8 -J,4,8,6,6,2,7,6,4,6,15,7,11,1,6,1,7 -C,3,6,5,5,4,5,6,3,4,7,6,11,4,10,7,8 -E,3,5,5,4,3,5,8,3,8,11,9,10,2,8,4,6 -Q,3,6,4,5,3,8,8,6,4,6,9,8,3,8,5,9 -S,4,8,5,6,3,9,7,4,8,11,7,7,2,10,5,8 -I,1,4,2,3,1,7,8,0,7,13,6,8,0,8,1,7 -T,3,10,5,7,1,5,15,1,6,9,11,7,0,8,0,8 -C,5,10,6,8,2,6,7,7,11,6,6,13,1,8,4,8 -X,5,11,8,8,7,7,7,3,8,5,7,10,3,8,6,8 -A,3,9,4,6,3,9,5,2,0,8,1,8,2,6,1,8 -A,4,7,5,5,5,7,7,6,3,7,6,8,2,7,8,3 -W,3,2,5,4,3,7,11,2,2,7,9,8,7,11,0,8 -G,3,3,5,5,2,8,6,7,8,6,5,10,1,8,6,11 -Y,6,11,9,8,5,6,9,1,7,6,12,9,2,11,2,8 -P,3,7,4,5,3,4,12,7,1,10,6,4,1,10,3,8 -G,2,4,3,3,2,6,7,5,5,10,7,10,2,9,4,9 -G,3,2,4,4,2,6,6,5,6,6,6,9,2,9,3,8 -H,4,7,4,5,3,7,7,12,0,7,7,7,3,8,0,8 -O,1,0,1,1,0,7,6,6,3,7,6,8,2,8,3,8 -T,2,5,3,3,2,8,12,3,6,6,11,7,2,11,1,7 -L,2,6,4,4,2,6,4,3,8,6,2,7,1,6,2,7 -X,5,8,8,6,4,6,8,1,8,10,9,9,2,9,3,7 -O,2,3,3,1,1,8,7,7,5,7,6,8,2,8,3,8 -A,4,9,4,4,3,10,3,4,2,10,5,11,5,4,4,10 -G,4,7,4,5,3,6,7,5,5,9,7,12,2,9,4,10 -J,3,9,5,7,5,9,9,3,3,8,4,6,4,8,5,5 -J,3,11,4,8,5,7,7,2,5,11,5,9,4,7,2,6 -T,3,3,4,2,1,5,11,3,7,11,9,5,1,11,2,5 -J,4,8,5,6,3,7,5,5,4,14,8,14,1,6,1,7 -M,6,11,9,8,9,9,7,5,5,6,7,5,11,8,4,6 -M,4,2,5,3,4,9,6,6,4,6,7,6,9,6,3,6 -H,3,6,4,4,2,7,6,14,1,7,7,8,3,8,0,8 -N,2,1,2,1,1,7,7,12,1,5,6,8,5,8,0,8 -D,1,0,1,1,0,5,7,7,5,6,6,6,2,8,3,8 -X,7,13,6,7,3,8,7,2,8,9,6,8,4,8,4,8 -Z,1,0,2,1,0,7,7,2,10,8,6,8,0,8,6,8 -T,3,5,4,7,1,9,14,0,6,5,11,8,0,8,0,8 -B,5,8,8,7,9,8,6,5,5,7,6,7,8,11,9,6 -P,8,15,8,8,5,9,8,4,4,11,4,5,5,11,6,7 -I,1,8,0,6,1,7,7,5,3,7,6,8,0,8,0,8 -Z,3,5,4,4,3,7,7,5,10,6,6,8,2,8,7,8 -G,2,0,2,1,1,8,6,6,5,6,5,9,1,8,5,10 -N,5,11,6,8,6,8,8,13,1,6,6,8,6,8,1,10 -R,3,6,4,4,4,6,10,7,3,7,4,8,2,6,5,11 -Z,3,6,6,4,3,7,7,2,10,12,6,8,1,8,6,8 -J,3,8,5,6,5,9,7,3,3,8,4,5,4,8,6,5 -S,2,4,4,3,2,7,7,2,7,10,5,7,1,8,5,8 -B,2,7,3,5,2,6,6,9,7,6,7,7,2,8,8,10 -Z,5,8,7,6,5,8,7,2,9,12,6,7,1,7,6,7 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -V,5,5,6,4,2,4,12,3,3,10,11,7,2,10,1,8 -I,0,1,1,2,0,7,7,2,6,7,6,8,0,8,2,8 -O,4,8,6,6,3,8,6,8,8,7,5,8,3,8,4,8 -Q,2,5,3,6,4,8,7,8,3,6,6,10,2,9,4,9 -P,7,11,10,9,8,7,11,6,4,11,5,3,2,11,4,8 -I,1,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -N,4,11,5,8,3,7,7,15,2,4,6,8,6,8,0,8 -F,2,7,3,5,2,1,11,3,5,11,11,9,0,8,2,7 -Z,8,10,6,14,5,6,11,3,3,12,7,6,3,9,13,5 -W,4,7,6,5,4,6,11,2,3,7,9,9,8,11,1,8 -I,1,11,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -C,8,15,5,8,3,7,7,8,8,12,7,10,2,9,5,9 -C,3,3,4,4,1,6,7,7,9,7,6,13,1,9,4,9 -E,5,9,7,7,8,8,7,3,5,6,7,9,5,10,8,8 -O,4,5,6,4,4,6,6,5,5,8,4,7,3,7,4,7 -D,5,7,6,6,6,6,7,5,6,6,4,7,4,7,6,5 -V,6,8,6,6,3,3,12,3,3,10,11,8,2,10,1,8 -E,2,1,3,2,2,7,7,5,7,7,6,8,2,8,5,10 -R,3,9,4,7,4,6,9,8,3,7,5,8,2,7,5,11 -Z,2,3,3,2,2,7,7,5,9,6,6,9,1,8,7,8 -J,4,5,6,6,5,8,9,4,5,7,6,8,3,8,8,7 -X,4,9,6,7,6,9,7,2,6,7,5,6,3,8,6,8 -E,3,9,5,7,4,7,7,6,9,6,4,9,2,8,6,9 -E,4,7,5,5,3,7,7,6,10,7,7,9,3,8,6,8 -F,9,14,8,8,6,9,8,3,5,12,4,5,5,7,8,9 -A,1,1,2,1,1,7,3,2,1,6,2,8,1,6,1,7 -T,10,14,8,8,4,7,8,3,10,13,6,6,2,9,5,5 -V,2,3,3,2,1,4,12,3,3,10,11,7,2,11,0,8 -H,4,7,6,5,5,7,7,2,6,10,6,8,3,8,3,8 -Q,6,10,6,5,3,12,3,3,7,11,2,8,2,9,5,13 -Y,6,9,5,4,2,5,9,4,4,11,9,6,4,10,4,4 -F,3,5,5,3,2,6,10,2,6,13,7,5,1,9,2,7 -I,1,3,0,2,0,7,7,1,7,7,6,8,0,8,2,8 -N,2,0,2,1,0,7,7,11,0,5,6,8,4,8,0,8 -U,4,9,4,4,3,6,6,5,4,7,8,8,4,7,3,8 -V,4,6,4,4,2,2,12,3,3,11,11,8,2,11,1,8 -N,6,7,8,5,4,7,9,2,5,10,5,6,5,9,1,7 -H,3,7,4,5,3,8,7,7,6,7,6,7,3,8,4,7 -C,6,12,5,6,4,8,6,4,3,9,8,11,4,9,7,11 -M,6,8,10,6,7,4,7,3,5,11,10,11,9,8,4,7 -R,1,0,1,1,1,6,9,7,3,7,5,8,2,7,4,10 -F,3,3,5,2,2,6,11,2,5,13,7,4,1,9,1,7 -K,8,11,11,8,7,9,7,2,7,10,3,8,3,8,3,9 -Z,5,10,6,8,3,7,7,4,15,9,6,8,0,8,9,8 -Y,1,1,2,2,1,7,11,1,6,7,11,8,1,11,1,8 -Y,5,7,6,9,9,8,8,7,3,7,7,8,9,11,6,4 -W,3,7,5,5,3,6,8,4,1,7,8,8,8,9,0,8 -Q,2,0,2,1,1,8,7,7,5,6,6,9,2,8,3,8 -R,4,6,6,6,6,6,8,4,3,6,5,9,7,6,7,8 -P,6,11,9,8,6,6,12,4,4,13,6,3,1,10,3,8 -S,7,11,8,8,6,5,9,3,7,10,6,6,3,7,5,5 -K,4,8,6,6,4,6,8,4,7,6,5,10,3,8,4,9 -T,10,14,8,8,3,4,12,3,8,12,8,4,2,9,3,3 -D,6,11,6,8,6,5,7,10,7,5,4,6,4,10,5,9 -O,5,10,5,8,4,8,7,8,5,10,6,8,3,8,3,8 -Z,1,0,2,1,0,7,7,3,11,8,6,8,0,8,6,8 -R,6,9,9,8,9,7,7,4,4,7,5,8,8,7,7,9 -A,6,11,8,8,8,8,9,8,5,6,6,8,3,7,8,4 -O,6,7,8,6,6,7,5,4,5,8,5,11,5,6,7,6 -N,3,7,4,5,2,7,7,14,2,5,6,8,6,8,0,8 -S,2,1,3,2,2,8,8,6,5,7,6,7,2,8,9,8 -Z,9,10,6,14,6,6,10,4,2,12,7,6,3,9,14,6 -Z,2,7,3,5,2,7,8,3,11,8,6,8,0,8,7,7 -X,3,8,5,6,4,7,7,3,8,6,6,8,3,8,6,7 -H,5,5,5,7,3,7,8,15,1,7,4,8,3,8,0,8 -G,4,9,6,7,7,7,9,6,3,6,6,10,4,8,7,7 -Y,3,5,4,7,6,7,9,3,2,7,7,8,3,11,7,6 -I,1,4,3,2,1,7,7,1,8,14,6,8,0,8,1,8 -N,8,10,7,6,3,7,10,5,5,4,5,10,6,11,3,7 -P,4,9,4,6,4,5,10,8,2,9,6,5,1,10,3,8 -P,4,7,5,5,5,5,9,6,4,8,7,9,2,9,7,10 -Y,6,9,5,4,3,6,8,3,4,10,8,5,3,10,4,4 -N,3,7,4,5,3,5,9,6,4,8,7,9,5,8,1,7 -L,5,11,6,8,4,10,3,2,7,9,2,9,4,5,5,9 -E,6,8,8,7,8,5,10,4,5,8,7,9,4,10,9,7 -S,5,9,6,7,5,8,8,7,5,7,5,7,2,7,9,8 -B,3,5,4,4,3,8,7,6,6,6,5,6,2,8,6,10 -D,2,3,4,1,2,9,6,4,6,10,4,6,2,8,3,8 -V,4,4,5,3,1,4,12,4,4,11,11,6,2,10,1,8 -A,4,5,7,7,2,7,6,3,0,7,0,8,3,7,1,8 -I,3,9,4,6,2,5,8,0,8,14,7,8,0,8,1,7 -Q,5,6,5,8,5,8,8,5,2,8,8,10,3,9,6,8 -C,2,1,2,1,0,6,7,6,9,7,6,14,0,8,4,10 -R,3,5,5,4,3,8,7,3,5,10,4,6,3,7,3,9 -K,9,12,9,6,5,8,7,3,6,10,7,9,6,12,4,9 -G,3,4,4,3,2,6,6,5,5,7,6,9,3,7,4,8 -H,8,12,7,6,4,9,9,4,7,8,2,5,6,6,4,8 -Y,4,5,5,8,7,10,8,5,3,7,7,7,6,10,8,4 -L,4,9,5,7,3,6,4,4,8,5,2,6,1,6,2,6 -V,3,6,5,4,3,8,11,3,2,5,10,9,3,10,3,10 -J,0,0,1,1,0,12,4,5,3,12,4,11,0,7,0,8 -L,2,5,4,3,2,7,4,1,8,8,2,10,0,7,3,8 -L,3,8,4,6,2,4,3,6,7,1,1,5,1,6,1,6 -E,6,11,8,8,6,4,9,2,8,10,8,9,3,8,5,5 -Y,5,6,6,9,6,10,12,5,4,6,7,7,6,11,8,6 -J,1,2,2,3,1,10,6,3,5,12,4,9,1,6,1,7 -A,2,8,4,5,2,6,5,3,1,6,1,8,2,7,2,7 -K,2,1,2,1,0,5,7,8,1,7,6,11,3,8,2,11 -R,4,7,7,6,6,7,7,3,3,7,5,8,6,8,5,7 -Y,7,9,7,7,3,4,11,2,8,12,11,5,1,10,2,4 -U,4,4,5,3,2,5,8,5,8,10,8,8,3,9,2,5 -C,5,4,6,7,2,5,7,7,11,7,5,12,1,9,4,8 -O,5,8,5,6,4,7,7,8,5,10,7,8,3,8,4,8 -F,5,7,7,8,7,7,10,5,5,8,7,9,5,9,7,5 -P,2,1,3,2,2,5,9,5,4,9,7,4,1,10,3,7 -D,3,6,4,4,3,7,8,8,7,8,7,3,3,8,3,7 -B,2,2,2,3,2,7,7,6,5,7,6,6,2,8,5,10 -X,5,9,8,6,4,6,8,1,8,10,9,9,2,9,3,7 -H,3,5,5,3,3,6,7,6,6,7,6,9,3,8,3,8 -I,2,5,4,4,2,7,7,0,8,13,6,8,0,8,1,8 -U,3,6,3,4,1,7,5,13,5,7,13,8,3,9,0,8 -U,5,5,6,8,2,8,5,14,5,6,15,8,3,9,0,8 -M,4,3,5,4,4,8,6,6,4,6,7,8,9,5,3,6 -R,4,2,4,3,3,7,8,5,5,6,5,6,3,7,4,8 -C,1,3,2,1,1,5,9,4,6,11,9,11,1,9,2,8 -C,4,9,5,6,4,5,8,7,6,9,8,14,2,10,4,10 -B,3,7,5,5,4,7,8,7,6,7,5,6,2,8,7,10 -O,7,9,9,8,6,5,7,6,8,9,7,8,4,5,6,5 -L,2,4,3,3,1,5,4,4,7,2,2,5,1,7,1,6 -G,2,1,4,2,2,7,7,5,5,7,6,9,3,7,4,9 -B,3,5,5,4,5,7,7,4,4,7,6,8,6,9,8,6 -P,6,7,8,9,8,7,9,2,3,7,9,6,6,10,6,4 -F,2,4,3,2,2,5,10,4,5,10,9,5,1,10,3,6 -S,4,4,5,6,3,7,6,5,9,5,6,8,0,9,9,8 -X,3,6,5,4,3,7,7,3,8,6,6,9,3,8,6,8 -F,4,9,6,7,4,5,11,4,6,11,10,5,2,10,3,5 -T,2,3,3,1,1,5,12,3,5,11,9,5,1,10,1,5 -O,6,10,4,5,2,8,7,6,5,9,4,7,5,9,5,9 -V,4,7,6,5,7,7,8,4,1,8,7,8,5,10,5,8 -X,2,2,3,3,2,8,7,3,8,6,6,7,2,8,5,7 -U,5,7,6,5,4,5,7,5,7,9,7,9,3,9,3,6 -N,4,3,4,5,2,7,7,14,2,5,6,8,6,8,0,8 -M,4,9,5,6,5,6,6,6,4,7,7,11,7,5,2,10 -N,4,6,6,4,3,7,8,3,4,10,6,7,5,8,0,7 -R,3,9,5,6,4,6,7,6,6,6,6,6,3,8,6,8 -B,4,6,6,5,6,8,8,5,5,7,6,8,6,8,8,3 -W,4,7,7,5,5,5,11,2,2,8,9,8,7,12,1,8 -Z,1,0,1,1,0,7,7,2,9,9,6,8,0,8,6,8 -P,7,14,7,8,5,8,9,4,4,12,5,4,4,11,6,6 -B,6,8,9,7,9,7,8,5,5,8,6,8,7,7,9,6 -O,3,2,4,3,2,7,7,7,5,7,7,7,2,8,3,7 -Y,4,7,6,5,3,8,10,1,6,4,11,9,2,11,2,8 -D,2,3,3,1,2,9,6,3,6,10,4,6,2,8,2,9 -K,2,6,3,4,1,4,8,8,2,7,4,11,3,8,2,10 -A,5,11,8,8,5,11,2,3,3,9,2,9,5,7,4,9 -C,1,0,2,0,0,7,7,6,8,7,6,13,0,8,4,10 -Z,4,10,5,8,5,8,7,6,10,7,5,7,1,7,8,8 -A,3,6,5,5,4,9,7,3,5,7,8,6,4,10,3,5 -I,5,11,6,9,4,9,5,2,5,6,7,5,1,10,4,7 -H,6,9,6,5,4,8,7,3,4,10,5,7,6,9,5,7 -D,3,2,4,4,3,7,7,7,7,7,6,5,2,8,3,7 -B,3,6,4,4,4,6,7,6,3,6,5,7,2,8,6,6 -B,4,6,6,4,6,9,9,4,4,5,7,7,7,12,6,8 -M,2,0,2,1,1,7,6,10,0,7,8,8,6,6,0,8 -A,1,3,2,1,1,9,3,2,1,8,2,9,1,6,0,8 -L,1,0,1,0,0,2,2,5,4,1,2,6,0,8,0,8 -M,4,7,7,5,7,9,5,2,1,8,4,8,10,5,2,6 -B,6,10,6,8,5,6,6,9,8,6,6,7,2,8,10,10 -F,2,3,3,4,1,1,14,4,3,12,9,5,0,8,2,6 -L,4,3,4,5,1,1,0,6,6,0,1,4,0,8,0,8 -A,3,7,5,5,3,11,2,3,2,10,2,9,2,6,3,8 -Q,2,2,2,3,2,8,8,5,2,7,8,10,2,9,4,8 -Y,3,7,5,5,2,7,10,1,2,7,12,8,1,11,0,8 -X,3,7,5,5,2,6,9,1,8,10,8,8,2,8,3,7 -T,1,1,2,1,0,7,14,1,4,7,10,8,0,8,0,8 -Q,2,4,3,4,3,8,8,6,3,8,7,9,2,9,4,9 -N,6,11,9,9,7,7,7,8,5,7,5,6,3,7,3,8 -D,3,6,5,5,5,7,7,4,6,7,4,8,4,7,6,5 -M,5,6,8,4,4,9,6,3,5,9,5,7,8,6,2,8 -Q,4,6,5,7,4,8,6,6,4,9,6,10,3,8,5,8 -F,3,9,4,7,3,0,11,3,4,11,11,8,0,8,2,7 -V,3,5,6,4,2,6,12,2,3,8,11,8,2,10,1,9 -V,4,9,7,7,2,9,8,5,3,6,14,8,3,9,0,8 -O,4,6,5,4,5,8,5,5,2,7,5,8,8,8,3,9 -E,6,8,8,6,5,7,8,2,10,11,6,9,2,8,4,8 -H,3,7,4,5,3,7,7,12,1,7,6,8,3,8,0,8 -S,2,7,3,5,3,8,7,7,6,7,8,9,2,10,8,8 -I,3,9,5,7,6,10,8,2,5,9,5,4,3,9,6,5 -X,2,7,4,5,2,7,7,4,8,6,6,8,3,8,6,8 -U,2,0,2,1,1,8,5,11,5,7,13,8,3,10,0,8 -X,3,5,4,3,2,7,7,3,9,6,6,7,3,8,6,7 -T,3,5,4,3,2,9,12,3,7,5,11,9,1,11,1,8 -N,2,4,4,3,2,6,8,2,4,10,7,8,4,8,0,8 -Q,4,7,6,6,5,6,4,4,4,5,3,7,3,6,5,6 -A,2,4,4,3,2,9,2,2,2,8,2,9,1,6,1,7 -O,7,12,5,6,3,5,8,6,4,10,7,9,5,10,5,8 -V,7,9,7,7,3,3,11,2,4,9,11,7,5,11,1,6 -R,4,7,5,5,3,6,10,9,4,6,4,8,2,8,5,10 -R,3,7,5,5,4,7,8,5,6,8,5,9,3,6,5,11 -V,8,14,7,8,3,9,10,4,6,6,11,6,4,11,3,6 -F,2,1,2,2,1,5,10,4,5,10,9,5,1,10,3,7 -Y,3,6,5,9,8,8,6,4,1,7,8,9,7,10,8,8 -X,4,6,6,4,3,8,7,2,8,10,5,8,3,8,4,8 -M,5,6,7,5,7,7,9,4,4,7,5,7,9,8,5,5 -Y,2,1,3,1,0,7,10,3,1,7,13,8,1,11,0,8 -X,3,8,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -U,4,6,6,5,5,7,8,4,3,6,6,8,4,7,1,7 -G,6,11,5,6,4,8,5,4,3,9,6,9,4,9,8,8 -S,3,7,4,5,2,7,8,4,8,11,8,8,2,10,5,7 -F,6,10,10,8,9,8,8,1,6,10,6,5,5,10,4,6 -L,2,4,3,2,1,6,4,1,8,7,2,10,0,7,2,8 -S,5,9,8,7,9,7,4,3,3,7,5,7,4,8,11,6 -M,5,8,7,6,5,11,5,2,4,9,3,6,7,6,2,8 -U,4,9,4,7,2,7,5,14,5,7,14,8,3,9,0,8 -A,2,1,3,3,1,7,2,1,2,6,2,7,2,5,2,8 -S,3,7,5,5,6,7,5,3,3,6,5,7,3,8,9,3 -J,4,9,5,7,3,7,9,2,6,14,5,7,0,6,1,7 -X,3,7,4,5,2,7,7,4,4,7,6,8,2,8,4,8 -J,3,7,5,5,4,8,9,4,3,8,5,6,6,9,6,4 -T,4,7,5,5,5,6,8,3,5,7,6,9,5,9,4,8 -E,3,6,4,4,4,8,7,6,3,7,6,10,3,8,7,9 -T,4,7,6,5,6,5,8,4,6,7,6,10,5,8,5,7 -L,6,11,6,6,3,8,4,3,5,12,7,12,3,8,6,9 -F,3,5,5,3,2,6,10,2,6,13,7,5,1,10,2,7 -R,5,9,7,8,8,7,8,3,4,7,5,8,7,8,6,8 -D,3,6,4,4,4,7,7,4,6,7,6,6,3,8,2,7 -M,5,9,6,4,3,7,3,3,2,7,4,10,6,3,2,8 -A,1,3,2,2,1,10,2,3,1,9,2,9,2,6,1,7 -Q,4,9,5,10,7,8,6,8,3,6,5,9,3,8,6,10 -M,4,4,5,6,3,7,7,12,1,7,9,8,8,6,0,8 -W,2,1,4,2,2,7,11,2,2,7,9,8,5,11,0,8 -M,4,4,7,3,4,7,6,3,4,9,8,9,7,5,2,8 -Q,4,6,4,7,4,7,9,5,3,7,9,11,3,9,7,8 -B,3,8,4,6,4,7,7,7,6,7,6,6,2,8,7,9 -U,2,1,2,1,1,8,5,11,5,7,13,8,3,10,0,8 -I,1,5,1,4,1,7,7,1,7,7,6,9,0,8,3,8 -N,6,10,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -I,1,2,1,3,1,7,7,1,7,7,6,8,0,8,3,8 -U,6,11,9,8,5,6,8,6,8,7,9,10,3,9,1,8 -C,6,11,6,8,4,2,9,5,7,11,11,13,1,8,2,7 -W,8,9,8,6,6,2,10,2,3,10,10,9,7,10,2,7 -Z,3,5,5,6,3,10,3,2,6,7,3,6,1,8,7,7 -U,6,8,6,6,3,4,8,6,8,10,10,9,3,9,2,5 -W,3,7,5,5,4,7,10,2,3,6,9,8,7,11,1,8 -U,5,8,6,6,3,4,9,5,7,12,11,9,3,9,2,7 -M,2,1,3,1,2,7,6,6,4,6,7,7,7,6,2,7 -B,5,11,8,8,10,9,5,5,5,7,7,7,7,9,8,9 -W,4,8,6,6,3,9,8,4,1,7,8,8,8,9,0,8 -Z,2,2,3,3,2,7,7,5,9,6,6,8,2,8,7,8 -T,3,1,4,3,2,7,12,4,6,7,11,8,2,11,1,8 -U,2,5,3,4,2,7,8,7,8,8,9,7,3,9,1,8 -T,1,0,2,0,0,7,14,1,4,7,10,8,0,8,0,8 -Z,4,9,5,7,5,8,7,5,9,7,5,7,1,7,7,8 -E,6,10,5,5,3,7,8,4,4,10,6,8,3,9,9,9 -S,2,6,3,4,2,8,8,7,6,7,5,8,2,8,9,8 -X,4,9,5,6,1,7,7,4,4,7,6,8,3,8,4,8 -S,4,8,5,6,3,7,6,6,10,5,6,10,0,9,9,8 -V,5,10,5,7,3,4,11,2,3,9,11,7,2,10,1,8 -A,7,12,7,7,4,12,1,4,1,11,4,12,5,4,4,11 -B,6,10,8,8,9,8,7,5,6,7,6,6,2,8,6,10 -J,4,8,3,12,3,8,7,3,3,11,4,5,3,8,7,10 -Z,2,1,3,2,2,7,7,5,9,6,6,8,1,8,7,8 -L,5,9,6,6,5,6,7,7,5,6,6,9,6,8,5,11 -A,3,11,5,8,4,12,3,2,2,9,2,9,2,6,2,8 -H,5,10,5,8,5,7,8,13,1,7,5,8,3,8,0,8 -S,4,7,5,5,3,8,7,3,6,9,6,7,2,8,5,8 -Y,2,5,4,3,2,7,10,1,7,7,11,8,2,11,2,8 -C,2,2,3,4,2,6,8,8,7,9,8,12,1,10,4,10 -K,4,8,4,6,2,3,6,8,3,7,7,11,4,8,3,10 -C,5,9,6,8,7,6,7,5,5,6,7,12,6,9,8,10 -Y,1,1,3,2,1,8,11,1,6,6,10,8,1,11,1,8 -Y,3,6,5,4,1,6,10,3,2,8,13,8,2,11,0,8 -P,4,8,4,5,2,3,14,7,1,11,7,3,0,10,4,8 -D,3,4,5,3,3,9,6,4,6,10,4,6,2,8,3,8 -Q,1,0,2,1,1,8,7,6,4,6,6,9,2,8,3,8 -T,4,4,4,3,2,5,12,3,7,12,9,4,1,11,1,5 -S,3,9,4,7,2,9,9,6,10,5,5,5,0,7,9,7 -O,3,5,4,4,3,8,7,7,4,9,6,8,2,8,3,7 -V,6,8,6,6,3,3,12,4,4,10,12,7,2,10,1,8 -O,5,11,5,8,6,8,6,8,4,9,4,8,3,8,3,8 -K,3,4,4,3,3,6,7,4,7,7,6,11,3,8,5,10 -F,5,8,7,6,5,7,9,2,5,13,6,5,2,10,2,8 -T,3,7,4,5,3,7,11,1,8,7,11,8,0,10,1,8 -T,3,4,4,3,1,5,12,2,7,11,9,5,0,10,1,5 -P,3,4,5,3,2,7,10,3,4,12,4,2,1,10,2,8 -L,4,10,6,8,4,5,5,1,9,6,2,10,1,7,3,7 -H,5,8,7,6,5,5,8,3,6,10,8,9,3,8,3,6 -C,2,5,3,3,2,6,8,7,7,9,7,12,2,9,4,10 -T,4,10,6,7,5,9,11,3,7,5,11,8,2,12,1,8 -W,4,7,6,5,8,9,6,5,2,7,6,8,10,10,2,7 -D,5,11,7,8,5,8,8,6,7,10,6,4,4,7,5,10 -S,5,10,6,8,4,10,7,4,6,10,3,7,3,9,5,11 -C,1,0,2,1,0,6,7,6,8,7,6,14,0,8,4,10 -F,4,9,5,6,2,1,14,5,3,12,9,4,0,8,3,6 -X,3,6,5,4,4,7,7,3,5,6,6,9,2,8,8,8 -N,4,7,6,5,3,4,9,4,4,10,10,9,5,8,1,7 -C,6,9,8,7,5,7,7,8,6,8,5,11,4,9,4,8 -W,6,9,8,7,4,11,8,5,2,6,9,8,8,9,0,8 -R,6,11,8,8,7,9,7,3,6,10,3,7,3,6,3,11 -Q,1,0,2,1,0,8,7,6,3,6,6,9,2,8,3,8 -H,2,1,3,2,2,7,8,6,6,7,6,9,3,8,3,8 -Y,2,7,3,4,0,7,11,1,3,8,12,8,1,11,0,8 -J,2,3,2,5,1,12,3,9,3,13,5,12,1,6,0,8 -P,6,6,8,8,8,6,11,2,3,8,9,6,5,10,5,6 -M,3,6,4,4,4,7,5,10,0,6,8,8,6,5,0,7 -J,2,3,3,5,1,13,3,8,4,13,4,11,1,6,0,8 -Y,5,10,8,8,5,8,10,1,7,4,11,8,1,11,2,8 -A,1,3,3,2,1,8,3,2,2,7,2,8,2,6,2,7 -S,5,10,6,7,4,6,8,5,8,11,10,7,2,10,5,5 -N,5,4,5,7,3,7,7,15,2,4,6,8,6,8,0,8 -I,2,11,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -I,1,1,1,3,0,7,7,1,8,7,6,8,0,8,3,8 -A,6,11,6,6,4,10,2,4,2,11,5,12,5,4,6,10 -V,5,8,7,6,5,7,12,2,1,7,10,8,5,11,6,8 -C,4,7,5,5,2,4,9,6,8,13,11,10,1,9,2,6 -C,5,8,5,6,3,6,7,5,6,12,8,13,3,9,4,7 -G,3,7,5,5,5,8,9,6,3,6,6,9,4,8,6,7 -W,6,10,6,7,7,4,10,2,3,9,8,8,7,11,2,7 -W,6,8,9,7,11,9,7,5,5,7,5,8,12,10,9,4 -C,3,7,4,5,2,6,8,8,8,9,7,12,1,10,4,9 -Y,4,10,6,8,3,7,10,1,7,7,12,8,1,11,2,8 -L,4,7,5,5,6,6,7,3,6,7,7,11,6,11,6,5 -K,2,1,2,1,1,6,7,4,7,6,6,10,3,8,4,9 -F,1,3,3,2,1,7,9,2,4,13,6,6,1,9,1,8 -S,2,3,2,2,2,8,7,6,5,7,7,8,2,9,8,8 -I,0,0,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -R,5,9,7,7,6,6,8,6,6,6,5,8,3,6,6,9 -Y,3,5,5,8,7,8,7,4,2,6,8,9,4,11,7,8 -W,4,7,6,5,4,7,8,4,0,6,9,8,7,12,0,8 -N,6,7,8,5,3,8,8,3,5,10,5,6,6,9,1,7 -I,1,6,1,4,1,7,7,0,7,7,6,8,0,8,2,8 -X,3,7,4,5,3,8,7,2,5,6,6,7,2,8,8,9 -Z,6,10,8,7,5,6,9,3,10,12,9,7,1,9,6,6 -U,5,10,7,7,5,6,8,8,5,5,6,12,5,9,7,3 -H,4,11,6,8,10,8,9,5,3,6,7,7,8,8,10,8 -U,5,8,5,6,2,7,4,14,5,7,14,8,3,9,0,8 -F,2,7,4,5,2,5,11,2,7,10,9,5,1,10,3,5 -K,4,9,5,7,2,3,7,8,2,7,6,12,3,8,3,11 -V,2,6,4,4,2,9,12,2,3,4,10,9,2,11,1,9 -H,2,3,3,1,2,7,8,6,6,7,6,9,3,8,3,8 -G,2,1,3,1,1,8,6,6,6,6,5,9,1,7,6,10 -Z,2,7,4,5,4,8,8,2,7,7,7,7,0,8,8,9 -L,6,11,8,8,10,7,7,3,6,6,7,11,6,11,7,5 -S,3,4,5,3,2,8,8,2,8,11,5,6,1,9,4,8 -F,4,9,4,7,3,1,12,4,4,11,10,7,0,8,2,7 -Z,2,4,3,2,1,8,7,2,9,11,5,9,1,9,5,8 -P,7,10,7,5,4,7,10,3,6,13,5,4,3,10,5,6 -G,5,11,5,8,5,5,7,5,4,9,9,9,2,8,5,9 -E,6,9,8,7,7,8,5,7,3,8,6,11,5,8,8,10 -U,9,11,9,8,7,4,8,5,8,9,7,9,6,8,4,3 -D,4,5,4,8,3,5,7,11,8,7,7,5,3,8,4,8 -E,5,9,7,6,4,7,7,2,9,11,6,9,2,8,4,8 -I,1,8,2,6,2,7,7,0,7,7,6,8,0,8,2,8 -W,9,12,9,6,5,4,8,2,4,8,10,8,10,10,2,5 -K,1,0,2,1,0,5,8,8,1,7,6,11,3,8,2,11 -R,5,6,7,5,7,6,7,4,3,6,5,9,7,9,6,10 -H,11,13,10,7,5,8,9,4,6,9,5,7,6,8,5,9 -I,2,8,3,6,1,7,7,0,7,13,6,9,0,8,1,8 -C,5,5,6,7,2,5,7,7,11,7,6,12,1,8,4,9 -J,1,1,2,2,1,11,7,1,5,11,4,7,0,7,0,8 -N,3,6,4,4,3,6,9,6,4,7,6,8,5,9,1,7 -P,7,10,6,5,4,6,12,5,3,12,6,3,3,11,5,6 -D,2,5,4,3,3,9,6,3,6,10,4,7,3,7,3,8 -T,3,7,5,5,3,7,12,3,7,8,11,7,2,11,1,7 -F,2,2,3,3,2,5,11,4,5,11,9,5,1,10,3,6 -K,1,0,1,0,0,5,7,7,0,7,6,10,2,8,2,11 -W,8,11,7,6,4,1,9,3,2,11,12,9,7,10,0,6 -H,2,1,3,2,2,6,7,6,5,7,6,8,3,8,3,8 -I,5,8,6,9,6,7,8,5,6,7,7,7,3,9,9,9 -Y,3,9,5,6,1,7,12,1,3,7,12,8,1,10,0,8 -H,3,3,5,2,3,7,7,3,6,10,6,8,3,8,3,7 -F,7,13,6,7,3,7,9,3,6,12,5,5,2,8,6,6 -V,7,11,7,8,4,2,12,2,3,9,11,8,2,10,1,7 -O,4,9,4,7,4,7,8,7,4,9,7,8,3,8,3,7 -C,4,9,5,6,3,5,7,6,8,5,7,12,1,7,4,9 -E,3,9,5,6,5,6,8,3,6,6,7,11,4,11,8,8 -H,8,10,8,5,5,8,8,3,5,10,3,7,6,5,4,7 -E,3,7,4,5,3,3,7,5,9,7,6,14,0,8,6,9 -B,3,7,4,5,3,7,6,9,7,6,7,7,2,9,8,9 -N,8,11,11,8,5,9,7,3,6,10,3,5,6,8,2,7 -P,2,4,4,3,2,7,11,5,2,11,5,3,1,10,2,9 -N,2,3,4,2,1,7,9,3,4,10,7,7,5,8,1,8 -U,4,4,5,3,2,4,8,5,8,10,10,9,3,9,2,6 -O,6,11,7,8,3,8,8,8,9,6,7,9,3,8,4,8 -C,3,4,4,3,2,6,8,7,7,9,8,12,2,10,3,9 -F,2,2,3,3,2,5,10,4,5,10,9,5,1,10,3,6 -Q,2,1,2,1,1,8,7,7,4,6,6,8,2,8,3,8 -F,2,6,3,4,2,4,11,5,5,11,10,6,2,10,2,6 -T,3,10,5,7,1,8,14,0,6,6,11,8,0,8,0,8 -I,0,1,1,2,1,7,7,1,6,7,6,8,0,8,2,8 -R,3,6,5,4,5,7,8,3,4,6,6,9,6,8,7,6 -T,3,8,5,6,3,6,12,4,7,9,12,7,2,12,1,7 -X,3,7,4,5,4,6,6,3,5,6,6,10,2,8,8,7 -A,2,4,4,2,2,11,2,2,1,9,2,9,2,7,2,9 -L,3,9,5,6,6,7,8,3,6,5,7,10,5,12,6,5 -C,5,8,6,6,2,6,6,7,11,8,5,12,1,9,4,8 -R,4,7,6,5,4,10,7,3,7,11,2,6,4,5,3,9 -P,6,6,8,9,8,7,9,3,2,8,8,6,8,11,6,5 -G,4,7,5,5,2,7,6,7,9,6,5,10,1,8,6,11 -X,5,11,7,8,5,4,8,1,8,9,10,10,2,9,3,5 -M,4,10,5,8,4,8,7,12,2,6,9,8,8,6,0,8 -S,5,9,6,7,3,8,7,4,8,11,6,7,2,9,5,8 -L,6,10,7,8,6,6,6,7,6,6,5,8,5,7,4,10 -L,2,5,4,4,2,7,4,1,7,9,2,10,0,7,2,8 -Y,3,10,5,7,1,7,10,1,3,7,12,8,1,11,0,8 -U,3,3,4,2,1,4,8,4,6,11,11,9,3,9,0,7 -F,2,5,4,4,2,6,10,2,6,13,7,6,1,9,2,7 -G,2,3,3,2,2,7,7,5,5,9,7,10,2,8,4,9 -Q,4,7,6,7,3,8,9,8,5,6,7,9,3,8,5,9 -V,8,9,10,8,12,7,6,5,5,7,6,8,7,10,6,9 -H,3,4,6,2,3,9,6,3,5,10,5,7,3,8,3,7 -K,4,9,6,7,8,7,9,3,5,5,6,8,8,9,8,7 -T,2,7,4,5,1,9,14,1,6,5,11,9,0,8,0,8 -L,5,11,4,6,2,5,5,3,7,9,4,12,2,6,5,7 -M,3,5,6,4,4,7,7,2,4,9,7,8,7,5,1,8 -O,4,9,5,7,4,8,7,8,4,7,6,4,4,8,4,8 -H,4,7,4,5,4,7,9,12,1,7,4,8,3,7,0,8 -U,2,0,2,1,0,8,5,11,4,7,13,8,3,10,0,8 -R,4,2,4,3,3,7,8,5,6,6,5,7,3,7,4,8 -B,7,10,9,8,7,9,7,4,7,10,5,6,2,8,6,10 -D,3,6,4,4,3,8,7,4,5,10,5,5,3,8,3,8 -L,3,10,3,8,1,0,1,5,6,0,0,7,0,8,0,8 -V,3,4,4,3,1,4,12,3,3,10,11,7,2,11,1,8 -E,1,0,1,1,1,5,7,5,8,7,6,12,0,8,6,9 -V,4,11,6,8,4,6,11,2,3,7,11,9,2,10,1,9 -U,4,6,5,4,3,6,8,6,7,6,9,9,3,9,1,8 -O,3,6,5,4,3,7,6,8,6,6,4,7,3,8,3,8 -V,10,13,8,7,4,8,10,5,6,6,10,5,5,12,4,7 -D,2,3,3,1,2,7,7,6,6,7,6,5,2,8,3,7 -H,8,10,11,7,8,7,7,2,6,10,6,9,5,7,4,7 -R,5,10,7,8,7,8,8,4,6,8,4,8,4,5,5,11 -J,5,6,3,9,3,8,8,3,3,12,5,5,3,8,6,10 -H,3,3,4,4,2,7,9,14,1,7,4,8,3,8,0,8 -J,6,11,8,8,4,8,9,1,7,14,4,6,2,8,2,7 -H,4,3,4,4,2,7,6,14,1,7,8,8,3,8,0,8 -Q,2,0,2,1,1,8,7,6,4,6,6,9,2,8,3,8 -C,3,7,4,5,3,6,8,7,7,10,8,13,2,10,4,10 -H,3,4,4,6,4,8,7,4,0,7,6,7,3,9,8,5 -S,5,7,6,5,3,8,8,4,9,11,4,7,2,6,5,9 -M,3,7,3,5,3,8,7,11,1,6,9,8,7,6,0,8 -Q,2,2,3,3,2,8,8,5,2,5,7,10,2,9,5,10 -M,7,9,10,7,6,4,6,4,5,11,11,11,9,3,4,6 -C,4,4,5,7,2,7,6,7,10,9,5,13,1,10,4,9 -F,3,8,3,6,1,1,12,4,5,12,11,8,0,8,2,6 -Y,5,9,5,6,3,3,11,3,7,12,11,6,1,10,2,5 -V,6,8,6,6,4,3,12,2,3,9,11,8,4,12,1,7 -X,3,6,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -L,2,5,4,4,2,6,4,1,8,8,2,10,0,7,2,8 -C,2,3,2,2,1,4,8,4,6,11,10,11,1,9,2,7 -T,2,8,4,6,2,6,11,3,7,8,11,7,2,11,1,7 -C,9,13,6,8,3,6,9,7,7,11,7,6,2,9,6,8 -G,5,9,6,7,3,8,6,8,9,6,6,10,1,8,6,10 -K,1,0,1,1,0,5,7,7,1,7,6,11,2,8,2,11 -S,9,14,7,8,4,8,3,4,5,8,1,7,3,6,6,9 -Y,7,9,7,7,4,5,8,2,8,8,10,5,5,11,6,3 -Q,3,3,4,4,3,8,7,6,3,8,6,9,2,9,3,9 -F,2,3,4,2,1,6,10,3,5,13,7,5,1,9,1,7 -W,4,5,4,3,3,3,10,2,2,10,10,8,5,11,1,7 -T,4,11,6,8,6,9,11,3,7,5,12,8,2,12,1,9 -U,2,6,3,4,1,8,6,12,5,7,13,8,3,9,0,8 -I,1,5,1,4,1,7,7,1,7,7,6,8,0,8,2,8 -G,5,10,6,7,3,7,5,8,10,7,5,12,1,9,5,10 -G,3,5,4,7,3,7,7,8,7,7,7,7,2,7,6,11 -L,7,15,6,8,3,8,4,3,6,11,4,12,2,7,6,9 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -R,3,4,5,3,3,8,7,3,5,9,4,7,3,7,4,10 -X,4,9,5,6,1,7,7,5,4,7,6,8,3,8,4,8 -K,2,1,3,2,2,5,7,4,7,7,6,11,3,8,4,9 -T,5,5,5,4,2,5,12,2,7,11,9,4,1,11,2,4 -P,6,9,5,5,3,6,11,6,2,11,5,4,4,10,4,8 -N,11,14,9,8,4,8,11,5,5,3,6,10,6,10,3,7 -K,4,5,7,3,4,7,6,2,7,10,6,10,4,8,4,8 -Q,4,6,6,9,3,7,6,8,6,5,7,8,3,8,5,9 -M,5,7,7,5,6,7,7,3,4,9,8,9,7,5,2,8 -G,6,11,7,9,5,6,7,8,7,6,6,13,3,8,5,7 -J,7,10,4,14,4,7,9,3,4,13,5,5,3,8,7,10 -I,4,7,6,8,5,8,8,5,6,7,7,7,4,8,9,9 -B,3,6,5,4,5,8,8,6,6,7,6,6,2,8,6,9 -S,6,10,8,8,4,9,7,4,8,11,7,8,2,10,5,7 -L,2,3,3,2,1,6,4,2,8,8,2,10,0,7,2,8 -O,3,7,4,5,3,9,5,7,5,10,4,9,3,8,3,8 -I,1,3,2,2,0,7,7,1,7,13,6,8,0,8,0,7 -K,3,2,4,3,2,5,7,4,8,7,6,11,3,8,5,9 -Z,1,1,2,1,0,8,7,2,10,9,6,8,0,8,6,8 -O,6,9,6,7,5,8,6,8,4,9,5,8,4,7,4,9 -G,5,5,6,8,3,7,6,8,8,6,6,10,2,8,6,11 -L,3,7,4,5,3,6,5,7,6,6,6,9,2,8,4,10 -C,3,5,4,4,2,6,7,7,8,8,8,13,1,9,4,10 -X,6,10,7,5,3,5,9,2,8,11,8,8,4,9,3,6 -F,1,1,1,1,0,2,12,4,3,11,9,6,0,8,2,7 -I,8,13,7,7,4,9,7,3,6,12,4,5,3,8,6,11 -Z,2,7,3,5,2,8,6,5,10,7,6,7,1,7,8,8 -Z,7,11,9,8,6,8,7,3,10,12,6,8,2,7,6,8 -I,7,15,6,8,4,9,7,3,6,13,3,5,3,8,6,10 -F,2,7,3,4,1,1,13,5,3,12,10,6,0,8,3,7 -X,4,5,5,7,2,7,7,5,4,7,6,8,3,8,4,8 -G,5,10,6,8,5,5,7,6,6,10,8,11,2,9,4,10 -I,1,3,1,2,1,8,7,1,7,7,6,7,0,8,2,7 -I,3,5,4,6,4,7,8,5,5,6,8,7,3,10,8,8 -K,3,5,5,4,4,6,7,3,3,6,4,9,4,6,7,8 -J,3,5,4,7,1,13,2,8,5,14,3,12,0,6,0,8 -I,1,5,2,3,1,7,7,0,7,13,6,8,0,8,0,8 -P,3,5,5,4,2,7,12,4,3,12,4,1,1,10,3,8 -M,5,9,6,7,4,7,7,12,2,7,9,8,9,6,0,8 -Z,3,9,4,6,2,7,7,4,14,9,6,8,0,8,8,8 -J,5,11,4,8,3,9,7,2,4,12,5,7,2,9,7,9 -O,2,5,3,3,2,8,7,7,4,9,5,8,2,8,3,8 -G,4,8,5,6,2,7,6,7,9,6,6,9,2,8,6,11 -E,3,8,3,6,2,3,7,6,9,7,6,14,0,8,7,8 -L,6,11,6,6,3,6,6,5,5,12,9,11,3,10,6,9 -P,3,6,3,4,2,3,12,6,1,11,7,4,0,9,3,8 -V,4,5,6,3,2,4,13,3,3,10,11,7,3,10,1,7 -V,1,0,2,1,0,7,9,3,2,7,12,8,2,10,0,8 -S,3,5,3,4,2,8,7,7,5,8,5,7,2,9,9,8 -F,3,8,5,6,2,3,13,6,3,13,9,4,2,10,2,5 -L,3,6,4,6,4,8,6,5,5,6,7,8,3,8,8,11 -P,5,8,7,6,6,7,6,6,4,7,6,9,5,8,7,10 -C,4,8,5,6,3,5,8,8,8,8,8,14,1,9,4,9 -V,8,10,8,8,5,3,12,3,3,10,11,8,3,9,2,6 -R,4,7,6,5,6,6,8,3,4,6,6,9,6,10,7,5 -U,5,9,4,5,3,7,7,4,5,7,7,8,5,6,3,7 -T,6,11,6,8,4,3,13,4,6,12,10,4,1,11,1,4 -P,5,6,5,8,3,4,12,9,2,10,6,4,1,10,4,8 -E,4,8,6,6,5,8,6,6,3,7,6,10,4,8,8,9 -V,6,10,6,8,4,2,11,2,3,10,11,8,2,10,1,8 -I,3,10,4,7,2,7,8,0,8,13,6,7,0,8,1,7 -S,3,5,3,4,2,8,7,7,5,8,6,7,2,9,9,8 -O,5,10,5,8,4,8,7,8,5,10,5,8,3,8,3,8 -Q,7,9,8,11,7,8,7,6,3,8,7,11,5,8,8,6 -A,6,12,6,6,3,13,1,5,2,12,2,10,2,3,2,10 -P,3,9,4,7,3,5,11,9,2,10,6,4,1,10,3,7 -H,6,11,6,8,3,7,7,15,0,7,6,8,3,8,0,8 -N,4,6,6,5,5,7,7,4,4,6,5,8,6,8,4,6 -B,6,10,6,8,5,6,6,9,8,6,6,7,2,8,10,10 -W,5,8,8,6,11,7,7,7,2,7,6,8,15,12,4,11 -H,6,8,9,6,7,6,9,3,6,10,8,8,3,8,4,6 -C,1,3,2,2,1,6,8,7,7,8,7,13,1,9,4,10 -O,2,1,2,1,1,8,7,7,6,7,6,8,2,8,3,8 -W,6,9,9,8,11,10,7,5,5,7,5,8,10,11,9,4 -H,3,3,4,2,2,7,8,6,6,7,6,8,3,8,3,7 -T,4,5,5,8,2,9,15,1,6,5,11,9,0,8,0,8 -H,4,6,6,4,5,7,8,5,6,7,5,8,3,8,3,8 -G,4,5,5,8,2,7,6,8,8,6,5,11,2,8,6,11 -Y,7,15,6,8,4,5,8,4,3,10,9,6,4,10,4,4 -Z,5,9,7,7,5,6,9,3,9,12,8,6,3,10,8,6 -D,4,7,5,5,5,7,8,6,6,8,7,5,3,8,3,7 -Z,4,8,5,6,5,8,7,3,8,8,6,7,1,8,10,9 -R,2,4,4,3,2,8,7,3,4,9,4,6,3,7,3,9 -M,6,8,9,6,7,8,7,2,5,9,6,8,9,6,2,8 -J,4,9,4,7,3,8,9,2,3,13,5,5,2,9,7,9 -L,4,8,5,6,4,3,4,4,7,2,0,8,0,6,1,6 -I,1,5,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -R,2,1,2,2,2,6,7,5,5,6,5,6,2,7,4,8 -L,5,9,6,7,5,5,6,5,6,6,5,9,8,7,4,10 -V,3,7,5,5,3,7,12,2,3,6,11,9,2,11,1,8 -J,4,7,5,5,2,8,6,3,7,15,5,10,0,7,1,7 -R,6,9,6,5,5,7,7,3,4,7,5,9,5,8,6,7 -D,4,8,5,6,4,7,7,8,7,7,6,5,3,8,3,7 -X,3,5,4,5,4,6,7,2,5,8,7,10,2,10,7,8 -E,5,9,6,7,6,6,7,6,9,8,7,10,3,8,6,8 -D,6,10,6,5,3,8,6,5,6,12,4,7,5,7,5,9 -L,2,6,3,4,1,0,1,5,6,0,0,6,0,8,0,8 -U,6,7,7,5,3,4,9,5,8,11,11,9,3,9,2,7 -S,5,9,6,7,3,8,7,4,8,11,7,8,2,10,5,8 -Q,6,8,6,9,7,8,9,6,2,6,8,11,3,8,6,8 -K,5,9,8,6,6,6,7,1,6,9,6,9,3,8,3,8 -F,4,5,4,8,2,1,12,5,5,11,11,8,0,8,2,6 -H,3,2,5,3,3,7,7,6,6,7,6,8,3,8,3,8 -G,3,7,4,5,2,8,7,8,8,6,6,11,1,8,5,10 -N,6,9,8,8,8,7,7,5,4,7,5,8,7,9,5,7 -X,4,8,6,6,4,8,8,3,9,5,5,6,3,9,7,8 -V,1,0,2,0,0,7,9,3,1,7,11,8,2,11,0,8 -G,5,9,4,4,3,7,8,4,3,8,6,7,3,10,9,7 -Z,7,15,7,9,5,11,3,4,6,12,3,10,3,7,7,11 -H,2,3,4,1,2,7,8,3,5,10,7,7,3,9,2,7 -Z,7,11,9,8,7,7,7,2,9,12,6,9,2,9,6,8 -F,7,13,6,8,3,6,9,3,6,12,5,5,2,9,6,6 -T,5,9,5,4,2,7,8,2,7,11,7,8,2,9,4,5 -I,4,10,7,8,8,10,8,1,6,9,5,5,3,8,7,6 -X,2,1,2,1,0,8,7,4,4,7,6,8,3,8,4,8 -E,3,4,5,3,2,7,7,2,8,11,7,9,2,8,4,8 -C,6,11,7,8,4,6,7,10,9,10,7,11,2,12,4,9 -T,5,8,6,6,4,4,12,3,6,12,10,5,1,11,1,5 -C,2,2,3,4,2,6,8,7,7,8,8,13,1,9,4,10 -M,4,4,6,3,3,10,6,3,4,9,4,7,7,6,2,8 -G,4,3,5,5,2,8,5,7,9,7,4,11,1,9,5,10 -K,7,9,6,5,3,6,8,3,7,9,8,9,5,8,3,7 -K,4,10,5,7,2,3,6,8,3,7,7,11,4,8,2,11 -E,2,1,3,2,2,7,7,5,7,7,6,8,2,8,5,10 -N,5,9,8,7,5,7,9,2,4,9,5,6,5,9,1,7 -Z,2,4,5,3,2,7,7,2,9,12,6,8,1,8,5,8 -M,4,3,5,5,3,8,7,12,1,6,9,8,8,6,0,8 -I,1,11,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -I,1,7,1,5,2,8,7,0,7,7,6,7,0,8,2,7 -Y,6,9,6,4,3,6,6,4,4,9,9,6,4,10,3,5 -H,4,10,5,7,3,7,7,15,1,7,6,8,3,8,0,8 -F,5,9,4,5,2,7,8,2,7,10,6,6,2,10,5,7 -W,3,3,4,1,2,5,11,3,2,9,8,7,6,11,1,6 -O,4,6,6,6,4,7,5,4,4,8,3,7,3,7,4,8 -B,3,4,4,3,3,7,7,5,5,7,6,6,2,8,6,9 -X,7,13,8,7,5,8,7,2,8,11,4,7,4,9,4,7 -R,4,5,4,8,3,5,11,8,4,7,4,9,3,7,7,11 -O,5,9,6,7,5,8,6,8,4,6,5,5,4,8,4,8 -I,3,7,4,5,2,8,6,2,7,7,6,7,0,9,4,7 -Y,3,7,5,5,4,8,6,6,5,5,8,8,2,8,9,5 -V,2,6,4,4,4,8,7,4,2,8,7,8,5,10,4,7 -L,3,2,3,3,2,4,4,5,7,2,1,6,1,7,1,6 -F,5,9,4,4,2,6,10,3,5,12,6,5,2,8,5,6 -O,3,5,4,7,2,7,7,9,6,7,6,8,3,8,4,8 -V,2,3,4,4,1,7,8,4,2,7,13,8,3,10,0,8 -U,1,0,2,1,0,7,6,10,4,7,12,8,3,10,0,8 -H,5,10,6,8,8,8,8,6,6,7,6,6,6,8,3,8 -T,5,9,5,7,3,5,12,4,6,12,9,4,2,12,2,4 -L,3,3,3,4,1,1,0,6,6,0,1,5,0,8,0,8 -D,8,14,7,8,5,7,6,3,7,10,5,7,6,7,8,5 -Z,4,6,5,4,4,9,9,5,4,7,5,7,3,8,9,5 -B,3,7,5,5,4,9,8,3,5,9,5,6,2,8,5,9 -E,5,7,7,5,5,7,8,1,8,11,6,9,3,8,4,9 -O,3,3,4,2,2,8,7,7,5,7,6,7,2,8,3,7 -F,4,9,4,4,2,6,10,2,5,11,7,5,2,9,5,5 -C,2,3,3,1,1,5,8,4,6,11,9,11,1,9,2,8 -J,5,8,7,6,5,8,6,9,6,7,7,8,4,5,6,3 -C,5,9,6,6,3,5,9,7,8,5,8,14,2,7,5,8 -G,3,5,5,4,5,7,8,5,2,7,7,8,6,11,7,8 -V,3,4,4,3,1,4,12,3,3,10,11,7,2,11,1,8 -J,1,1,1,1,0,12,3,6,4,13,4,11,0,7,0,8 -C,6,9,8,7,8,6,6,4,5,7,6,10,6,9,4,8 -S,4,8,6,6,3,9,6,4,8,11,4,8,2,8,5,10 -T,3,6,4,4,3,6,7,7,6,7,6,7,3,9,5,9 -C,6,8,6,6,3,5,7,6,8,11,8,14,2,10,4,7 -W,2,3,3,1,2,8,11,2,1,6,9,8,5,11,0,8 -B,2,6,3,4,4,6,6,7,5,6,6,7,2,9,7,10 -J,5,9,6,7,5,8,7,6,5,8,7,7,3,6,4,6 -O,5,9,6,7,4,8,6,8,5,10,5,9,3,8,3,8 -O,6,11,5,6,3,5,8,6,4,10,8,9,5,10,4,8 -D,2,3,3,1,1,8,7,4,5,10,4,5,2,8,2,8 -A,1,3,2,1,1,9,3,1,1,8,3,9,1,6,1,8 -D,5,6,7,5,5,6,7,5,7,7,4,7,3,7,5,6 -J,7,9,5,13,4,6,9,3,3,12,6,5,3,8,8,8 -Y,6,9,8,7,7,9,7,6,5,5,9,7,3,8,9,5 -D,4,7,4,5,2,5,6,10,9,5,5,6,3,8,4,8 -N,5,6,7,4,3,6,8,3,5,11,8,8,5,8,1,8 -Y,2,1,3,2,1,9,10,1,6,5,11,7,1,11,2,8 -W,6,9,6,4,3,1,10,3,3,12,11,9,6,11,0,6 -C,4,8,5,6,3,5,7,6,9,6,7,13,1,7,4,9 -L,2,3,3,2,1,7,4,1,8,8,2,10,0,7,2,8 -C,3,5,4,5,4,5,7,3,4,7,6,11,4,9,7,9 -A,3,5,5,3,2,8,2,2,2,8,2,8,2,6,3,7 -F,3,3,4,4,1,1,15,5,3,12,9,4,0,8,2,6 -C,4,6,5,5,5,5,6,3,5,7,6,11,4,10,6,10 -P,3,7,3,5,2,3,14,7,2,12,7,3,0,10,4,8 -Q,9,14,8,8,5,9,3,4,7,11,4,10,3,7,8,11 -E,2,4,4,3,2,7,8,2,7,11,7,8,2,8,4,8 -M,4,3,5,5,3,7,7,12,1,7,9,8,8,6,0,8 -M,4,8,6,6,7,7,8,6,4,7,5,8,6,9,7,7 -G,4,7,5,5,5,8,5,4,3,7,6,10,6,8,4,10 -H,4,7,6,5,5,7,8,5,5,7,6,8,6,7,5,9 -H,5,8,8,6,5,7,7,3,6,10,6,8,3,8,3,7 -I,2,7,3,5,2,7,7,0,7,13,6,8,0,8,1,8 -O,4,5,6,7,3,8,7,9,8,7,6,8,3,8,4,8 -S,7,12,6,7,3,9,3,4,4,9,2,8,3,6,5,9 -Q,2,1,3,2,1,8,6,7,5,6,6,8,3,8,4,8 -B,3,7,3,5,4,7,7,8,5,7,6,7,2,8,7,9 -W,6,9,8,7,8,8,4,7,3,7,6,7,8,7,6,3 -Z,2,7,3,5,3,7,8,5,8,7,6,10,1,9,7,7 -O,4,7,6,5,6,8,10,5,2,7,7,8,7,9,4,9 -S,3,5,5,4,2,7,7,3,7,11,6,8,1,9,5,7 -Q,1,2,2,2,1,8,7,6,2,6,6,9,2,9,3,10 -U,5,10,7,7,7,8,9,7,6,6,8,9,6,7,4,8 -H,2,1,2,2,2,7,8,5,5,7,6,8,3,8,2,8 -T,5,6,5,4,3,4,11,1,7,11,9,6,1,10,2,5 -L,5,11,6,8,4,3,4,3,9,2,0,8,0,7,1,5 -C,4,8,6,6,5,5,6,4,5,8,6,11,6,9,4,8 -C,5,9,5,7,3,5,8,6,8,12,9,12,2,10,3,7 -H,1,0,2,0,0,7,8,11,1,7,5,8,3,8,0,8 -X,3,5,6,3,2,9,6,1,8,11,4,8,2,8,3,9 -H,6,9,9,7,7,8,6,2,6,10,6,9,3,8,4,7 -E,3,7,3,5,2,3,7,6,10,7,6,15,0,8,7,7 -A,2,7,4,5,2,12,4,4,3,11,1,8,2,6,2,8 -F,4,5,5,8,2,1,14,5,4,12,10,5,0,8,2,5 -X,6,9,6,4,3,8,7,2,8,9,6,8,4,9,4,8 -B,8,13,6,7,4,9,6,5,5,11,4,9,6,6,7,10 -V,5,9,8,6,8,7,7,4,2,8,8,8,5,10,4,8 -P,5,9,5,4,3,10,8,4,4,12,4,5,4,10,5,9 -D,5,5,6,7,3,5,8,10,9,7,7,5,3,8,4,8 -S,3,4,5,3,2,9,6,2,7,10,4,7,1,9,5,10 -H,6,7,9,9,8,9,12,3,2,8,7,6,4,11,8,6 -H,4,8,5,5,2,7,5,15,1,7,8,8,3,8,0,8 -H,7,9,10,7,8,10,6,3,6,10,3,8,5,7,5,9 -U,7,10,6,5,4,8,6,4,5,7,7,7,6,7,4,6 -R,5,7,6,5,5,9,9,6,3,7,4,6,5,7,8,8 -N,2,2,3,3,2,7,8,5,4,7,6,6,5,8,1,6 -P,3,4,5,6,6,8,9,5,0,8,6,6,5,9,5,8 -C,3,8,4,6,2,6,7,7,10,6,6,14,1,8,4,9 -B,3,5,5,4,4,9,6,3,6,11,4,7,4,7,5,9 -Z,4,10,6,7,4,8,7,2,10,11,6,8,1,7,6,8 -E,5,9,7,8,7,5,8,4,3,8,6,9,5,11,10,9 -E,6,9,8,7,5,9,7,2,9,11,4,9,2,8,5,10 -W,7,9,7,4,3,6,10,1,3,8,10,7,7,12,1,7 -H,4,9,4,7,4,7,7,13,1,7,6,8,3,8,0,8 -L,5,10,5,5,3,10,3,3,3,11,6,10,3,10,4,10 -O,7,14,5,8,4,5,6,7,4,10,6,9,6,9,5,7 -G,5,9,7,8,8,7,6,6,4,8,7,9,10,8,10,7 -Z,3,5,5,8,3,11,5,3,5,10,2,7,2,7,5,11 -O,4,11,5,8,5,8,7,8,6,7,6,8,3,8,3,8 -S,4,9,5,7,3,9,8,6,9,5,6,8,0,8,9,8 -J,4,9,6,7,4,8,5,3,5,8,6,8,4,6,4,6 -M,5,11,6,8,4,9,7,13,2,6,9,8,8,6,0,8 -H,5,11,5,8,5,7,8,14,1,7,5,8,3,8,0,8 -T,2,3,3,2,1,7,12,2,7,7,11,8,1,11,1,8 -I,1,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -P,3,4,4,6,2,3,14,7,2,11,7,3,0,10,4,8 -X,2,4,3,3,2,8,7,3,8,6,6,6,2,8,5,8 -Y,3,5,5,4,2,4,10,1,8,10,10,5,3,11,5,3 -O,5,10,5,8,5,7,7,8,4,9,6,8,3,8,3,8 -Z,3,5,5,4,2,7,7,2,10,12,6,8,1,8,6,8 -U,5,8,7,7,6,7,7,4,5,6,7,8,7,8,2,7 -X,3,4,4,3,2,8,7,3,9,6,6,6,2,8,6,8 -R,3,6,5,4,5,7,7,3,4,7,6,8,6,9,6,6 -D,3,8,5,6,7,9,8,4,4,7,6,6,4,7,7,6 -L,2,7,3,5,2,4,4,6,7,2,2,5,1,6,1,6 -P,5,5,7,8,8,7,6,4,3,7,7,7,7,11,5,6 -E,3,5,4,4,3,7,8,5,8,7,5,9,2,8,6,9 -G,5,10,6,8,8,9,6,5,2,7,6,10,8,8,5,10 -X,7,10,10,7,5,5,9,2,9,11,12,9,3,9,4,5 -A,2,6,4,4,2,11,3,3,2,10,1,9,2,6,2,8 -U,4,9,5,7,4,7,6,11,4,6,13,8,3,9,0,8 -X,6,11,9,8,5,10,7,1,8,10,2,7,3,8,4,9 -G,3,7,5,5,5,8,5,4,3,7,6,10,6,8,4,10 -V,2,2,4,3,2,7,12,2,3,7,11,9,2,10,1,8 -T,3,7,4,5,3,7,12,3,7,7,11,8,2,11,1,8 -K,5,9,5,5,2,4,8,4,6,9,11,11,5,9,3,6 -F,6,10,8,7,6,7,9,3,6,12,7,6,3,9,2,7 -I,4,7,5,5,3,7,8,2,7,7,6,9,0,8,4,8 -N,8,10,11,7,5,11,7,3,6,11,0,3,6,9,2,8 -U,3,6,4,5,4,6,7,5,4,6,5,9,4,8,1,8 -O,4,11,5,8,5,8,7,8,4,7,6,5,4,8,3,8 -P,5,10,7,8,6,5,10,4,5,11,9,4,1,10,4,7 -U,4,7,4,5,1,8,5,13,5,7,14,8,3,9,0,8 -T,7,10,7,8,5,7,11,4,7,11,8,4,3,12,3,4 -B,8,10,7,5,5,9,7,4,5,9,4,7,6,7,8,9 -F,3,8,5,6,4,4,11,2,6,11,9,6,1,10,3,6 -L,2,6,2,4,1,0,1,5,6,0,0,6,0,8,0,8 -F,2,1,3,3,2,5,11,4,5,11,9,5,1,10,3,6 -D,5,11,7,8,5,8,7,9,8,7,6,2,4,8,5,9 -T,8,10,8,7,6,6,11,4,6,11,9,5,3,12,2,4 -C,3,2,4,3,2,6,8,7,7,9,8,13,1,9,4,10 -S,7,9,9,8,9,10,8,4,7,7,7,8,5,9,9,11 -U,6,10,6,5,4,8,5,5,5,6,8,7,4,9,3,7 -V,8,14,7,8,4,9,10,6,4,7,10,5,6,13,4,7 -U,6,9,8,7,10,9,7,4,5,5,8,7,11,9,6,6 -M,3,1,4,2,1,7,7,11,1,7,9,8,7,6,0,8 -J,5,6,3,9,3,9,7,3,3,11,4,5,3,8,6,9 -J,1,1,2,2,0,10,6,3,5,12,4,9,1,7,1,7 -X,6,9,9,6,4,5,8,2,8,11,11,9,3,9,4,5 -I,1,11,0,8,1,7,7,5,3,7,6,8,0,8,0,8 -D,6,11,8,8,7,7,6,7,5,5,5,6,7,9,3,7 -B,4,6,6,4,7,8,7,5,2,6,7,8,5,10,9,8 -D,3,6,5,6,4,7,7,5,6,7,5,7,4,7,6,5 -E,2,1,2,2,1,4,7,5,8,7,6,13,0,8,7,9 -P,4,10,6,8,6,7,7,8,4,8,6,7,3,9,7,9 -Z,3,5,4,7,2,7,7,4,14,10,6,8,0,8,8,8 -G,3,8,5,6,4,6,6,6,5,5,7,10,2,8,4,9 -L,5,9,5,5,3,7,5,3,6,11,6,11,2,7,6,8 -J,4,11,5,9,3,14,3,5,4,13,2,10,0,7,0,8 -W,5,11,8,8,12,10,8,4,2,6,7,8,11,10,4,5 -I,6,11,7,8,5,7,8,1,8,7,6,8,0,7,4,8 -E,3,2,4,3,3,7,8,5,8,7,6,9,2,8,6,9 -I,1,3,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -Y,4,5,5,4,2,4,10,2,8,11,10,5,3,10,4,3 -C,5,6,5,4,2,5,9,6,8,12,9,10,2,9,3,7 -V,3,8,5,6,1,6,8,4,3,8,13,8,3,10,0,8 -P,4,8,6,6,5,7,5,6,5,7,6,8,3,8,4,8 -R,12,15,9,8,5,9,6,6,5,10,2,8,7,6,6,11 -U,2,0,2,0,0,7,5,10,4,7,13,8,3,10,0,8 -A,1,0,2,0,0,7,4,2,0,7,2,8,1,7,1,8 -M,5,8,7,6,6,4,7,3,4,10,10,10,5,6,2,6 -K,6,8,9,6,4,6,8,2,7,11,6,8,3,8,4,7 -T,3,9,4,6,3,10,10,1,8,5,11,8,1,10,1,8 -Q,4,5,4,6,4,7,8,6,3,9,9,9,3,9,6,7 -X,4,5,5,7,2,7,7,5,4,7,6,8,3,8,4,8 -J,4,9,6,7,2,10,5,4,7,15,3,9,0,7,0,8 -X,2,1,3,1,1,8,7,4,8,6,6,7,2,8,5,8 -F,2,6,4,4,3,5,10,3,5,10,9,6,2,10,3,6 -S,4,10,5,8,3,8,7,6,9,4,6,8,0,8,9,8 -V,8,10,8,8,3,2,11,6,5,13,12,8,3,10,1,8 -X,3,4,5,3,2,9,7,2,8,10,3,7,2,8,3,9 -M,11,13,11,7,6,11,11,7,3,4,7,9,10,13,3,6 -T,7,10,9,8,7,6,7,7,8,7,8,9,4,10,7,7 -S,1,0,1,1,0,8,7,4,6,5,6,7,0,8,7,8 -C,4,8,5,6,2,5,7,7,10,7,5,12,1,9,4,9 -I,4,5,6,5,5,8,8,4,5,7,6,7,4,8,8,9 -P,5,9,5,7,5,4,11,9,2,10,6,4,1,10,3,8 -D,4,8,6,6,5,7,5,8,5,5,5,5,3,9,3,8 -C,5,9,6,6,5,7,8,8,6,6,6,11,4,8,4,8 -T,2,3,2,1,1,5,12,2,5,11,9,5,1,10,1,5 -D,5,7,6,5,5,7,7,4,6,7,7,9,6,7,3,7 -P,5,11,7,8,5,5,12,5,5,11,8,2,1,10,4,6 -G,3,7,5,5,6,7,6,4,3,6,5,10,6,8,6,10 -J,1,3,3,1,1,8,8,2,5,14,5,8,1,7,0,8 -W,4,4,5,3,3,4,11,3,2,9,9,8,6,11,1,7 -Y,4,8,6,6,3,7,10,1,7,5,11,8,1,11,2,8 -U,1,0,2,0,0,7,6,10,4,7,13,8,2,10,0,8 -Y,3,4,5,5,1,6,11,2,2,9,12,8,1,10,0,8 -W,4,2,5,4,3,6,10,2,3,7,9,8,7,11,0,8 -F,6,12,6,7,4,8,8,3,4,10,5,5,3,9,7,8 -U,3,6,3,4,2,8,6,12,4,8,11,8,3,9,0,8 -C,3,7,5,6,5,5,8,3,5,7,6,11,3,9,7,9 -S,5,7,6,5,3,6,9,3,8,11,5,7,2,6,5,8 -W,5,4,6,3,3,5,11,3,2,9,8,7,7,12,2,6 -T,2,7,3,5,1,9,14,0,6,5,11,8,0,8,0,8 -S,5,10,8,7,9,5,10,3,4,8,7,6,3,8,10,1 -W,3,1,3,2,1,8,8,4,0,7,8,8,7,10,0,8 -I,3,7,4,5,1,7,9,0,7,14,6,6,0,9,2,7 -C,3,10,4,8,3,5,7,6,8,7,5,12,1,8,4,10 -Z,2,1,3,3,2,7,8,5,9,6,6,9,1,9,7,8 -A,7,13,6,8,4,8,2,3,2,8,4,12,5,5,4,7 -S,4,9,6,7,4,10,6,5,6,10,2,7,2,7,4,11 -F,6,8,8,6,7,8,7,5,4,7,6,8,5,11,9,11 -I,2,9,3,7,2,7,7,0,7,13,6,8,0,8,1,8 -G,5,10,7,7,8,7,4,5,3,8,6,11,7,7,10,6 -Q,6,7,8,10,8,10,13,5,2,3,8,12,5,15,4,10 -O,5,10,7,8,5,7,8,9,6,7,7,8,3,8,4,7 -V,2,6,3,4,1,7,9,3,1,7,12,8,2,11,0,8 -O,5,11,7,8,5,8,5,9,5,6,6,4,5,7,5,9 -S,5,11,6,8,6,8,7,8,5,7,6,7,2,8,9,8 -D,4,10,5,8,7,7,7,6,6,7,6,5,6,8,3,7 -U,2,3,3,2,1,7,8,6,6,7,9,8,3,10,1,8 -T,5,8,7,6,7,7,8,4,6,7,6,9,5,8,5,7 -U,4,7,5,5,3,7,9,6,7,5,10,9,3,9,1,8 -A,4,9,7,7,5,6,5,2,3,4,1,6,5,7,5,4 -S,4,10,5,8,5,8,8,5,9,5,5,6,1,6,9,6 -J,5,10,7,8,3,8,8,1,8,14,4,6,1,9,1,8 -W,4,8,5,6,3,4,8,5,1,7,8,8,8,10,0,8 -M,4,7,7,5,8,7,7,3,2,7,5,8,8,5,2,7 -E,6,11,4,6,2,6,8,4,6,10,6,9,2,9,8,9 -Y,4,5,5,3,2,4,10,2,8,11,10,5,1,11,3,4 -X,4,6,6,4,3,10,7,1,8,10,2,6,3,8,3,9 -X,3,6,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -K,3,9,4,6,2,3,7,7,2,7,5,11,3,8,2,10 -U,7,10,6,5,3,6,4,5,5,4,8,8,5,10,2,7 -D,1,3,3,2,2,8,7,4,5,9,4,6,2,8,2,8 -M,3,7,4,5,3,7,7,11,1,7,9,8,8,5,0,8 -T,3,3,3,2,1,5,13,4,5,11,8,4,2,11,1,5 -K,5,6,7,4,4,4,7,2,7,10,9,11,3,8,3,6 -O,4,6,6,4,3,7,5,7,5,8,4,10,3,7,3,8 -P,2,3,3,2,1,5,11,3,4,10,8,3,0,9,3,6 -Q,7,8,7,10,6,7,8,6,4,8,9,10,4,8,8,8 -Y,3,8,6,6,3,9,10,1,6,4,11,8,1,11,2,9 -S,4,5,5,7,3,8,8,6,9,5,6,7,0,8,9,8 -X,4,7,6,5,3,5,8,1,8,10,9,9,2,9,3,6 -M,4,4,6,3,4,5,7,3,4,10,10,10,7,7,2,8 -C,3,2,4,4,2,6,8,8,8,9,8,12,2,10,4,9 -J,1,4,2,2,1,8,7,2,5,14,6,9,1,7,0,7 -L,5,11,6,8,2,0,0,7,6,0,1,4,0,8,0,8 -F,4,8,6,6,5,7,8,6,4,8,6,8,3,10,8,10 -X,3,5,5,3,3,8,7,3,10,6,6,8,4,7,7,9 -E,2,6,3,4,2,3,8,5,8,7,6,13,0,8,6,10 -D,3,8,3,6,2,5,7,10,8,7,6,5,3,8,4,8 -W,4,6,6,4,5,7,7,6,2,8,8,8,6,7,4,8 -L,2,4,3,6,1,0,1,5,6,0,0,7,0,8,0,8 -U,4,4,5,3,2,5,8,5,8,10,9,9,3,9,2,6 -H,4,7,6,5,4,8,8,3,6,10,5,7,3,8,3,7 -K,2,3,3,1,1,4,8,2,6,10,10,10,2,8,2,6 -W,9,10,9,5,3,3,10,2,2,10,11,8,8,12,0,7 -W,3,1,5,2,2,8,11,3,2,6,9,8,6,11,1,7 -R,4,7,4,4,2,5,11,8,3,7,4,8,3,7,6,11 -Q,4,6,5,8,3,8,7,8,6,6,8,8,3,7,6,10 -S,4,9,5,7,3,8,8,6,9,5,6,6,0,8,9,7 -U,9,10,9,8,5,4,7,6,9,9,8,9,6,10,4,2 -O,5,11,6,8,6,8,7,9,4,7,6,7,3,8,3,8 -A,3,7,5,5,4,8,5,1,3,7,2,6,2,6,4,5 -N,6,11,6,8,6,7,7,13,1,6,6,8,5,8,0,8 -D,5,9,7,7,5,7,6,8,5,6,5,4,5,8,5,9 -F,5,11,6,8,2,1,15,5,3,12,9,4,0,8,2,5 -T,4,6,4,4,2,6,12,3,6,11,9,4,2,11,2,5 -H,6,10,6,8,6,7,6,13,2,7,8,8,3,9,0,8 -X,3,9,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -O,2,5,3,4,2,8,7,7,4,9,6,8,2,8,2,8 -Y,6,8,9,12,12,7,9,3,3,7,8,9,7,13,12,5 -C,10,15,6,8,3,7,8,6,7,12,6,7,2,9,5,8 -N,3,3,5,2,2,6,10,3,4,10,8,7,5,8,0,8 -Z,6,7,5,11,4,9,6,4,3,11,6,8,3,9,11,7 -P,4,6,6,4,3,6,13,7,2,11,5,2,1,10,4,7 -V,9,13,8,7,4,6,10,4,4,8,8,5,5,11,3,6 -M,4,10,5,8,6,7,6,10,1,7,8,8,7,5,0,8 -R,4,6,6,4,5,7,7,3,4,6,6,8,6,9,6,6 -B,6,9,8,6,8,7,9,6,5,7,5,6,4,7,6,8 -Z,5,8,7,6,4,7,8,2,10,12,7,9,1,9,6,8 -Y,4,9,4,4,2,7,7,4,4,9,9,5,3,11,3,4 -X,4,6,6,4,3,10,7,1,8,10,2,6,3,8,3,10 -L,2,6,4,4,2,4,5,1,8,6,2,10,0,7,2,7 -L,3,8,4,6,2,0,2,4,6,1,0,7,0,8,0,8 -X,3,10,6,7,6,8,7,2,6,7,6,8,3,8,6,8 -S,4,10,6,8,7,7,6,3,2,7,5,6,3,7,14,4 -S,4,5,6,5,6,8,7,5,5,7,6,7,5,8,9,11 -O,4,8,5,6,4,7,8,8,4,7,7,8,3,8,3,8 -E,4,7,6,5,5,6,8,3,7,11,8,9,3,8,4,7 -Y,1,1,2,1,0,8,9,2,2,7,12,8,1,10,0,8 -O,9,14,6,8,4,4,9,6,5,10,8,9,5,10,5,7 -G,7,10,6,6,4,8,7,4,3,9,5,6,4,9,8,8 -A,3,4,5,3,2,8,2,2,2,8,2,8,2,7,3,7 -D,4,9,5,6,4,8,7,6,6,10,5,5,3,8,3,8 -Y,4,10,6,7,3,7,10,1,8,6,12,8,1,11,2,8 -T,2,6,4,4,2,6,12,3,7,8,11,8,1,11,1,7 -V,3,5,4,3,2,4,12,2,3,9,11,7,3,10,1,7 -G,4,7,5,5,2,7,6,7,9,6,5,10,1,8,6,11 -N,5,9,5,7,3,7,7,15,2,4,6,8,6,8,0,8 -G,6,9,8,7,10,8,7,4,3,6,5,9,8,7,9,13 -E,6,11,8,8,7,10,6,1,8,11,4,8,4,7,5,11 -D,4,5,5,4,4,6,7,5,7,6,4,7,3,8,5,6 -Q,2,1,3,2,1,8,7,7,5,6,6,8,3,8,4,8 -C,5,11,6,8,5,7,8,8,6,5,6,12,4,7,4,7 -W,4,10,6,8,8,7,7,6,3,8,8,7,6,8,4,9 -O,4,6,6,5,4,7,6,4,4,7,3,7,3,7,4,8 -I,3,11,5,8,6,10,6,1,4,9,4,4,3,8,5,8 -W,3,7,5,5,5,7,7,6,2,7,8,8,5,8,3,8 -P,4,7,6,5,4,6,12,5,3,12,5,1,1,10,3,8 -E,2,7,3,5,2,3,7,6,10,7,6,14,0,8,7,8 -V,4,7,4,5,3,3,11,2,2,9,11,8,2,11,1,8 -D,8,13,8,7,4,9,5,4,6,11,3,7,5,6,6,11 -N,2,2,3,3,2,7,8,5,4,7,7,6,5,9,2,5 -H,5,7,7,5,5,6,7,6,7,7,6,8,6,8,3,8 -W,4,9,6,7,3,8,8,4,1,6,8,8,8,10,0,8 -A,5,12,5,6,3,12,2,4,2,11,3,11,4,4,4,11 -N,7,13,7,7,3,6,9,4,5,4,5,11,6,11,2,7 -A,2,1,4,2,1,8,2,2,1,7,2,8,2,6,3,6 -Z,4,8,5,6,5,8,11,6,5,6,5,7,3,9,6,4 -N,5,7,8,5,3,7,8,3,5,10,6,7,6,8,1,7 -Z,2,4,4,3,2,8,6,2,9,11,5,9,1,8,5,9 -V,3,9,5,7,1,7,8,4,2,7,14,8,3,9,0,8 -B,8,13,8,7,7,8,8,4,5,9,5,7,8,4,9,7 -M,3,4,4,3,3,7,6,6,4,7,7,10,6,5,1,9 -R,6,11,9,8,6,9,9,4,7,8,3,8,3,6,5,11 -B,6,11,4,6,3,10,5,6,5,11,3,9,6,7,6,10 -E,1,3,3,1,1,6,7,2,6,10,7,10,1,8,4,9 -K,2,1,3,2,2,7,7,4,6,6,6,9,3,8,5,10 -E,2,3,3,5,2,3,8,6,10,7,6,14,0,8,7,8 -X,4,9,7,6,4,7,7,4,10,6,6,8,3,8,7,8 -Z,3,7,5,5,2,9,5,3,9,11,4,9,2,7,6,9 -A,3,7,5,4,2,8,3,3,3,7,2,8,3,6,3,8 -F,5,7,6,8,7,6,11,4,4,8,7,6,4,9,7,7 -O,4,8,5,6,4,8,7,8,6,7,7,10,3,7,4,7 -M,5,9,6,5,3,14,2,4,3,12,1,9,5,4,0,9 -O,3,5,4,3,3,8,7,7,5,7,6,8,2,8,3,8 -K,4,8,6,6,5,5,6,4,7,6,6,10,3,8,5,10 -Q,3,5,4,6,4,9,8,7,2,4,7,11,3,9,6,10 -I,5,7,6,8,6,7,9,4,5,8,7,7,4,8,9,10 -U,4,5,4,4,2,4,8,5,7,10,9,9,3,9,2,6 -G,5,10,6,7,3,7,5,8,9,6,5,10,1,8,6,11 -X,1,0,2,1,0,7,7,4,5,7,6,8,2,8,4,8 -A,2,5,3,3,2,11,3,2,2,9,2,9,2,6,2,8 -T,1,6,2,4,1,7,13,0,4,7,10,8,0,8,0,8 -J,2,6,4,4,3,9,7,2,3,8,4,6,4,8,6,5 -A,3,5,5,4,2,10,2,2,2,8,2,9,3,5,2,8 -P,1,0,1,0,0,5,11,6,1,9,6,5,0,9,3,8 -K,4,8,4,6,2,3,6,9,2,7,7,11,3,8,2,11 -Y,2,8,3,6,1,9,10,1,3,6,11,8,1,11,0,8 -W,5,11,8,8,4,8,8,5,2,7,8,8,9,9,0,8 -K,4,7,6,5,5,5,7,4,7,6,6,11,3,8,5,9 -W,4,2,6,4,4,8,11,3,2,6,9,8,8,12,1,7 -M,11,11,11,6,5,6,10,5,5,4,4,11,10,12,2,7 -W,8,10,11,9,14,7,7,5,5,6,5,8,11,9,10,9 -F,8,11,6,6,3,9,6,3,8,11,4,6,2,10,5,9 -K,4,7,5,5,5,6,8,5,3,7,5,8,4,6,7,10 -T,4,8,5,6,4,6,11,3,7,8,11,8,2,12,1,7 -U,3,7,5,5,4,8,7,7,5,6,7,9,5,8,3,7 -U,3,8,4,6,3,8,6,12,4,7,11,8,3,9,0,8 -I,1,6,2,4,1,7,7,0,7,14,6,8,0,8,1,8 -D,5,8,5,6,5,6,7,9,8,6,5,6,2,8,3,7 -L,1,0,1,1,0,2,2,5,5,1,1,6,0,8,0,8 -A,4,9,6,7,4,12,2,3,2,10,2,9,2,7,3,8 -I,3,10,4,7,2,7,7,0,8,14,6,8,0,8,1,8 -V,4,6,4,4,2,4,12,1,2,9,10,7,2,11,0,8 -Z,4,8,5,6,5,8,10,5,4,6,5,6,3,8,8,3 -H,4,9,4,6,2,7,8,15,1,7,5,8,3,8,0,8 -C,2,1,2,1,0,6,7,6,9,7,6,14,0,8,4,10 -Y,1,0,2,0,0,7,9,3,1,7,12,8,1,11,0,8 -H,6,10,6,6,3,7,8,3,5,9,5,7,6,7,5,8 -F,1,3,3,2,1,5,11,3,4,12,7,5,1,9,1,7 -A,3,2,5,4,2,10,2,2,2,9,1,8,2,6,3,8 -B,5,7,6,5,6,8,7,4,4,7,5,7,6,8,5,8 -T,7,9,7,7,4,5,10,1,8,11,9,6,0,9,2,4 -G,10,14,8,8,4,11,4,4,5,11,3,8,5,7,5,10 -E,6,9,8,7,6,5,8,3,8,11,9,9,3,9,4,6 -Y,1,0,2,0,0,7,10,1,3,7,12,8,1,11,0,8 -X,9,15,10,9,6,8,8,2,7,11,6,6,5,12,4,8 -Y,3,4,5,6,6,7,8,4,1,6,8,9,4,11,7,7 -V,3,4,5,6,1,9,8,4,3,6,14,8,3,10,0,8 -M,3,8,4,6,3,7,6,11,1,7,9,8,8,6,0,8 -X,3,8,5,6,3,7,7,4,9,6,6,8,3,8,6,8 -H,4,10,6,7,10,8,8,5,2,6,6,7,8,9,10,8 -S,5,5,6,8,4,8,9,6,10,5,6,6,0,7,9,7 -Y,3,6,4,4,2,10,11,2,2,5,12,8,1,11,0,8 -R,4,8,6,6,7,6,7,3,4,6,6,9,7,10,7,5 -G,4,7,5,5,3,6,7,6,7,10,7,11,2,9,4,9 -B,3,2,4,4,4,7,7,5,6,7,6,6,2,8,6,10 -L,3,10,3,8,1,0,1,5,6,0,0,7,0,8,0,8 -T,4,11,5,8,3,7,14,0,5,7,10,8,0,8,0,8 -S,6,12,5,6,2,10,2,1,5,9,1,8,2,8,4,11 -I,1,3,1,2,1,8,7,1,7,7,6,7,0,8,2,7 -R,4,6,6,4,3,10,8,3,7,11,1,6,3,7,3,10 -E,3,9,4,7,4,7,7,7,9,8,8,10,3,8,6,7 -O,7,13,5,7,4,6,6,6,3,10,7,9,5,9,5,8 -Y,7,11,7,8,5,4,9,1,7,9,10,6,2,12,4,3 -X,4,4,6,3,3,5,8,2,9,11,10,9,3,7,3,6 -O,4,8,6,6,5,7,7,8,4,7,5,8,3,8,3,8 -V,3,7,5,5,5,8,5,4,1,7,7,8,5,9,3,7 -H,3,7,4,5,2,7,8,14,1,7,6,8,3,8,0,8 -C,8,12,5,6,2,7,8,7,7,11,7,9,2,9,5,9 -P,7,10,6,5,3,5,11,5,2,12,5,4,4,9,4,8 -R,7,11,10,8,7,11,6,3,6,11,2,6,6,7,5,10 -A,2,1,3,1,0,7,4,2,0,7,2,8,2,7,1,8 -P,2,6,2,4,2,3,13,5,1,11,7,4,0,9,2,7 -R,3,8,3,6,2,6,10,9,4,7,4,8,3,7,5,10 -Y,3,3,4,2,1,4,10,2,7,10,10,5,2,12,3,4 -T,3,8,4,6,1,8,15,1,6,6,11,9,0,8,0,8 -Q,5,10,7,9,3,8,7,8,7,6,7,9,3,8,5,9 -V,3,2,5,3,2,7,12,2,3,7,11,9,2,10,1,8 -J,6,10,9,8,6,9,5,6,5,8,6,7,3,7,4,6 -N,5,9,7,7,4,8,7,3,5,10,5,6,6,8,1,7 -M,4,5,6,4,4,8,6,2,4,9,6,8,7,5,2,8 -V,7,9,7,7,3,3,11,5,5,12,12,7,3,10,1,8 -W,4,4,6,6,3,4,8,5,1,7,8,8,8,9,0,8 -E,1,0,1,1,0,5,7,5,7,7,6,12,0,8,6,10 -M,4,2,5,3,4,8,6,6,4,7,7,9,9,5,2,8 -S,3,5,3,4,2,8,7,7,5,8,5,7,2,8,9,8 -H,5,8,8,6,5,5,9,4,6,10,10,9,4,9,4,6 -J,4,9,6,7,3,7,7,3,6,15,6,11,1,6,1,7 -T,6,9,6,7,2,5,13,3,9,12,9,3,0,10,2,4 -J,3,6,4,4,2,9,4,5,4,14,7,13,1,6,0,7 -B,6,9,8,7,6,9,7,3,7,11,4,6,2,8,6,10 -J,2,8,3,6,1,11,5,2,9,12,2,8,0,7,1,8 -S,2,4,4,3,2,9,6,2,7,11,5,8,1,9,4,9 -K,3,9,4,6,3,4,7,7,3,7,6,12,3,8,3,11 -L,4,9,6,6,3,7,3,2,8,7,2,8,1,6,2,7 -N,4,4,4,6,2,7,7,14,2,4,6,8,6,8,0,8 -F,5,7,7,8,7,7,8,4,6,7,6,6,4,9,9,9 -N,6,10,8,8,6,7,9,5,5,7,6,6,7,7,3,7 -V,1,0,2,1,0,8,9,3,2,7,12,8,2,10,0,8 -U,3,2,4,4,2,8,8,6,7,5,9,8,3,9,1,8 -P,5,7,6,10,11,8,6,6,1,7,6,7,9,8,6,8 -O,3,7,4,5,3,6,8,7,5,9,8,8,3,8,3,8 -I,4,10,5,7,3,7,7,0,7,13,6,8,0,8,1,8 -J,3,7,5,5,2,9,5,5,5,15,6,11,0,6,1,7 -M,3,7,4,5,3,7,7,11,1,7,9,8,8,5,0,8 -P,8,9,7,4,3,6,11,6,2,10,4,5,4,9,4,8 -Q,5,10,6,9,6,8,8,7,4,5,10,9,3,8,5,9 -X,6,9,9,7,5,4,8,2,8,10,12,11,3,8,3,5 -Z,3,8,4,6,3,9,6,5,10,7,5,6,1,7,8,8 -M,1,0,2,0,1,7,6,9,0,7,8,8,6,6,0,8 -G,5,11,6,8,7,7,8,6,2,6,6,10,4,8,7,7 -T,4,5,5,7,2,5,15,1,6,9,11,7,0,8,0,8 -I,6,12,4,7,3,11,3,4,5,12,2,8,3,8,4,10 -I,4,10,5,8,4,6,8,0,7,13,7,8,0,8,1,7 -L,5,10,5,5,3,5,7,3,7,12,8,11,2,8,6,7 -J,2,6,4,4,3,9,7,3,3,8,5,6,4,8,6,5 -J,4,9,6,7,6,9,9,4,3,8,4,6,4,8,5,4 -P,3,3,4,5,2,4,11,9,2,10,6,4,1,10,4,8 -M,5,5,7,4,4,7,6,6,6,6,7,7,9,7,3,6 -I,3,11,4,8,3,9,7,0,7,13,5,8,0,8,1,8 -U,3,1,4,3,2,6,9,5,7,7,10,9,3,9,1,8 -B,2,3,4,2,2,8,8,3,5,10,5,6,3,7,5,8 -U,5,10,6,8,6,9,6,6,6,7,6,8,9,8,4,7 -F,3,8,3,5,1,1,13,4,4,12,11,6,0,8,2,6 -F,5,9,5,5,4,5,12,3,3,11,7,4,4,10,7,5 -L,5,10,7,8,4,7,3,1,9,9,2,11,0,7,3,9 -Q,6,10,8,9,4,8,6,8,8,6,5,8,3,8,5,8 -X,2,0,2,1,0,7,7,6,2,7,6,8,3,8,3,8 -P,2,3,3,2,2,5,9,4,4,9,7,4,1,10,3,7 -Z,2,1,2,2,1,7,7,5,9,6,6,8,1,8,6,8 -B,7,10,9,8,6,11,5,3,7,11,3,7,5,7,7,12 -E,6,9,8,8,8,6,9,4,4,8,7,10,5,11,8,10 -E,3,2,3,3,3,7,7,5,7,7,5,9,2,8,5,10 -F,6,9,8,6,5,6,11,3,5,13,7,4,2,10,2,7 -V,3,6,5,4,1,7,8,4,2,7,13,8,3,10,0,8 -M,4,11,5,8,4,7,7,12,2,7,9,8,8,6,0,8 -F,4,10,7,8,8,9,6,1,5,9,6,6,6,11,5,6 -K,4,10,6,8,6,7,6,5,4,6,6,8,4,6,10,11 -X,1,1,2,1,1,7,7,3,7,6,6,8,2,8,5,8 -Y,5,8,5,6,2,4,10,1,7,10,10,6,1,11,3,3 -L,4,8,5,6,2,5,3,1,9,6,1,10,0,7,2,7 -T,5,8,5,6,3,5,11,2,8,12,10,5,1,10,2,4 -Y,9,13,8,7,4,6,7,5,4,10,9,5,4,10,4,5 -S,8,15,6,9,3,11,3,4,5,11,2,9,4,6,5,11 -G,3,8,4,6,2,8,5,8,9,8,4,12,1,9,5,10 -B,6,10,8,7,6,10,7,3,7,11,3,6,2,8,5,11 -H,4,5,5,4,4,8,7,6,6,7,6,8,3,8,4,7 -J,3,6,5,4,2,7,6,3,6,15,6,11,1,6,0,8 -V,4,5,7,8,2,7,8,4,3,7,14,8,3,9,0,8 -V,3,6,5,4,1,8,8,4,2,6,14,8,3,9,0,8 -Y,4,7,6,5,3,5,9,1,7,8,12,9,1,11,2,7 -Z,3,9,5,7,5,8,6,2,7,8,6,8,1,7,11,10 -Q,2,4,3,5,3,8,7,6,2,8,7,9,2,8,4,9 -F,7,11,6,6,3,7,8,3,6,12,5,6,2,8,6,6 -Y,3,7,5,4,1,7,10,3,2,7,13,8,2,11,0,8 -T,5,6,7,6,6,7,9,5,8,7,7,7,3,11,7,7 -E,4,9,5,7,6,6,7,5,8,7,6,10,3,8,6,9 -Q,3,5,4,6,4,8,7,7,3,8,6,9,2,9,3,8 -Z,3,5,6,4,3,8,7,2,10,12,6,9,1,8,6,8 -U,12,14,10,8,4,6,5,4,7,3,9,6,6,7,2,7 -X,2,3,4,1,2,7,7,4,9,7,6,8,2,8,6,7 -D,8,14,7,8,5,6,7,5,6,9,6,6,5,8,7,4 -I,5,10,4,6,2,9,7,3,6,13,4,5,2,9,4,10 -C,4,9,5,6,3,4,8,6,6,11,10,12,2,10,3,7 -N,6,9,5,5,2,4,8,4,6,4,4,11,5,9,2,7 -R,5,9,8,6,9,8,7,4,4,6,7,8,7,9,8,6 -U,4,5,5,4,2,4,8,5,8,10,9,9,3,9,2,6 -X,3,6,5,4,4,8,6,2,5,6,6,7,2,9,8,9 -L,7,11,9,9,7,9,7,8,6,6,6,7,6,7,9,15 -B,7,11,9,8,9,8,8,4,6,7,6,7,7,7,7,9 -F,3,10,4,8,3,1,12,3,4,12,11,8,0,8,2,6 -G,5,11,6,8,4,6,7,7,7,10,7,11,2,9,4,9 -K,4,5,6,5,5,9,5,2,4,8,4,8,4,6,6,11 -J,3,9,5,7,3,5,7,3,5,15,8,11,1,6,1,7 -X,3,8,5,6,4,8,7,3,8,5,6,8,2,8,6,8 -R,1,0,1,0,0,6,8,7,3,7,5,7,2,7,4,11 -R,2,3,3,2,2,6,8,4,5,7,5,7,2,7,4,9 -R,3,8,5,6,5,8,8,7,4,8,5,7,4,7,6,11 -R,5,9,7,6,6,6,8,5,6,7,5,8,3,7,5,9 -J,1,3,2,2,1,8,6,3,4,14,6,10,1,7,0,7 -Z,4,7,4,5,3,7,7,6,11,6,6,8,1,8,8,8 -A,4,9,7,6,4,8,3,1,2,5,2,8,3,5,3,7 -V,2,1,3,2,1,9,12,2,2,5,10,9,2,11,0,8 -G,6,9,6,7,5,5,6,6,5,9,8,11,2,9,4,10 -K,7,12,7,7,4,11,6,4,6,11,2,6,5,8,4,10 -I,3,6,4,4,2,7,7,0,7,13,6,8,0,8,1,8 -N,6,9,8,7,9,7,7,3,5,8,6,7,6,9,7,5 -X,5,8,7,6,3,8,7,2,8,10,4,7,3,8,4,8 -N,4,4,4,6,2,7,7,14,2,4,6,8,6,8,0,8 -E,5,10,7,8,6,7,7,6,9,7,6,9,6,8,6,9 -J,3,7,5,5,2,8,5,5,5,15,7,12,1,6,1,6 -W,5,11,7,8,4,7,7,5,2,7,8,8,9,9,0,8 -Z,4,8,6,6,3,7,7,2,10,12,6,7,1,7,6,7 -D,7,12,7,6,4,12,2,4,5,12,1,9,4,7,2,11 -J,4,5,6,5,5,8,8,4,6,7,6,8,3,9,8,8 -D,5,8,7,6,5,10,5,2,7,11,3,7,4,7,3,9 -J,4,11,6,9,5,7,7,1,6,11,5,9,1,6,2,5 -Z,1,0,1,1,0,7,7,2,10,9,6,8,0,8,6,8 -W,6,10,8,8,4,4,8,5,2,7,9,8,9,9,0,8 -B,5,11,5,8,7,6,7,8,5,6,6,7,2,8,8,9 -S,4,5,4,4,3,8,8,7,5,7,6,7,2,9,9,8 -L,4,9,4,7,1,0,0,6,6,0,1,5,0,8,0,8 -C,5,11,6,8,3,4,7,7,11,7,7,12,1,7,4,8 -E,4,6,5,5,5,6,8,4,3,8,7,9,4,10,8,11 -J,5,8,3,12,3,9,6,2,4,9,5,6,3,9,5,10 -E,5,9,8,7,5,10,6,2,8,11,4,9,3,8,5,11 -M,7,11,9,8,11,7,8,6,4,7,6,8,8,10,9,11 -W,7,10,7,8,7,4,11,2,2,9,8,7,7,12,2,6 -W,6,8,8,7,10,7,7,5,5,6,5,8,10,8,8,10 -X,5,10,7,8,5,8,7,3,9,5,6,9,5,7,9,8 -W,4,4,5,3,3,4,11,3,2,9,9,7,6,12,1,6 -J,2,7,2,5,1,15,3,3,5,12,1,8,0,8,0,8 -D,2,3,4,2,2,9,6,4,6,10,4,6,2,8,3,8 -R,3,7,4,5,4,8,8,7,2,7,4,6,4,6,8,8 -H,4,7,6,5,5,7,9,7,5,8,5,7,3,7,5,10 -E,2,1,3,3,2,7,7,5,7,7,6,9,2,8,5,10 -C,4,7,5,5,2,4,9,6,8,12,10,11,1,9,3,7 -T,2,3,3,1,1,7,11,2,6,7,11,8,1,10,1,7 -O,4,7,5,5,3,7,6,8,5,7,5,8,3,8,3,8 -M,2,1,3,2,1,7,6,10,1,7,9,8,7,6,0,8 -F,3,11,4,8,2,1,13,5,4,12,10,7,0,8,3,6 -L,3,9,5,7,3,5,5,2,8,6,1,10,0,6,3,7 -S,4,6,5,4,5,8,9,4,4,8,5,6,3,9,9,7 -Y,1,0,2,0,0,8,10,3,1,6,12,8,1,11,0,8 -R,4,5,5,7,3,5,10,9,4,7,4,8,3,7,6,11 -F,2,4,3,2,1,4,11,4,4,13,8,5,1,9,1,7 -Z,5,11,6,8,5,6,8,6,11,7,7,10,1,9,8,8 -Y,3,2,5,4,2,6,10,1,8,8,12,8,1,11,3,7 -J,5,9,7,7,4,6,7,3,6,15,7,11,1,6,2,6 -D,6,11,9,8,8,8,8,5,6,10,6,5,4,8,4,9 -T,2,1,3,2,1,8,12,3,6,7,11,8,2,11,1,8 -M,3,5,4,4,4,8,6,6,4,7,7,8,7,5,2,7 -Q,3,5,4,8,2,8,7,9,5,6,7,9,3,8,5,9 -O,1,0,2,0,0,7,7,6,4,7,6,8,2,8,3,8 -B,4,11,5,8,4,6,8,10,7,7,5,7,2,8,9,9 -D,2,4,4,3,2,9,6,4,6,10,4,6,2,8,3,8 -U,4,9,5,6,4,7,6,12,4,6,12,8,3,9,0,8 -Z,3,9,4,7,5,9,9,3,7,7,7,5,0,9,12,9 -C,4,7,4,5,3,5,8,5,6,11,9,13,2,9,3,7 -N,1,0,2,1,0,7,7,11,0,5,6,8,4,8,0,8 -F,6,11,8,8,8,6,10,6,5,9,6,9,3,10,8,10 -J,5,10,6,8,3,6,9,3,6,15,7,8,2,8,2,8 -C,5,11,6,8,3,5,8,8,8,8,8,14,2,9,4,9 -P,2,3,2,2,1,5,9,3,4,9,8,5,1,9,2,7 -L,7,10,9,7,7,6,6,9,5,6,6,9,3,7,6,13 -I,4,5,6,5,4,8,9,4,6,7,7,8,3,8,8,8 -M,2,0,2,1,1,7,6,10,0,7,8,8,6,6,0,8 -S,4,6,5,4,3,7,8,3,7,10,4,7,2,6,4,8 -W,6,7,6,5,6,7,10,4,2,8,6,6,8,12,4,5 -Z,5,6,4,8,3,8,6,5,5,10,6,7,3,9,9,9 -C,1,3,2,2,1,6,8,6,7,7,8,12,1,9,4,10 -J,5,7,7,8,6,8,9,4,5,7,6,7,3,8,9,8 -F,2,4,3,3,2,7,9,2,5,13,6,6,2,11,2,7 -S,4,7,6,5,3,9,7,4,8,11,3,8,2,8,5,11 -Y,3,5,4,7,6,8,8,3,1,7,7,9,4,11,6,7 -T,3,4,4,2,1,5,13,3,6,12,9,3,1,10,1,5 -T,4,9,4,4,1,6,10,2,7,12,7,5,1,10,3,5 -N,4,2,5,4,3,7,9,5,5,7,6,6,7,8,3,7 -Y,5,6,6,8,9,9,8,6,3,7,7,8,6,10,7,4 -C,3,3,4,2,1,4,8,4,7,10,9,12,1,9,2,7 -G,6,9,5,5,4,8,4,5,2,9,6,9,4,8,7,8 -F,8,15,7,8,5,8,10,3,5,12,5,4,4,9,7,7 -A,3,7,4,5,3,9,4,3,1,8,1,8,2,6,1,8 -Q,3,4,4,5,3,8,7,5,3,8,8,9,3,8,4,9 -U,4,7,6,5,7,7,7,4,4,6,7,8,10,9,5,8 -G,3,4,4,3,2,6,7,5,5,9,7,9,2,9,4,9 -Q,3,4,4,6,2,8,7,8,6,6,7,8,3,8,5,9 -K,5,9,6,5,3,3,9,3,6,9,8,11,4,7,3,6 -C,1,3,2,2,1,6,7,7,6,8,7,13,1,9,3,10 -O,4,5,5,8,3,8,8,9,7,6,7,9,3,8,4,8 -C,5,11,6,9,4,6,8,9,7,10,7,11,2,11,4,9 -W,4,6,6,4,3,9,8,4,1,7,8,8,8,9,0,8 -Z,4,10,5,7,5,7,8,5,9,7,6,9,1,9,7,7 -U,3,1,4,3,2,6,8,6,7,7,9,9,3,9,1,8 -R,3,7,4,5,4,6,9,8,3,7,5,8,2,7,5,11 -C,3,2,4,4,2,6,8,8,8,9,8,12,2,10,4,10 -C,2,1,3,2,1,6,8,7,8,8,8,13,1,9,4,10 -P,6,11,6,8,3,4,13,9,2,10,6,4,1,10,4,8 -N,4,6,7,4,6,7,8,3,4,8,7,7,6,9,5,4 -W,3,3,4,2,2,4,11,3,2,9,9,7,6,11,1,7 -U,6,8,7,6,5,4,8,5,7,9,8,10,5,8,3,4 -K,6,9,9,7,10,7,7,4,4,6,6,9,8,8,8,8 -D,4,8,5,6,4,7,7,5,5,7,6,7,4,8,3,7 -K,1,0,1,0,0,4,6,6,1,7,6,10,3,7,1,10 -M,5,6,8,4,5,7,6,2,5,9,7,8,8,6,2,8 -I,3,11,4,9,2,6,8,0,7,13,7,8,0,8,1,7 -W,4,8,6,6,5,8,8,4,1,6,9,8,7,11,0,8 -Z,3,5,3,3,2,8,7,5,10,6,6,7,2,8,7,8 -B,3,7,3,5,4,6,7,8,5,7,6,7,2,8,7,10 -G,9,14,7,8,5,8,7,5,4,9,5,6,4,9,8,8 -Z,5,5,7,8,3,7,7,4,15,9,6,8,0,8,9,8 -F,4,11,5,8,2,1,11,5,7,12,12,10,0,8,2,6 -T,2,5,3,4,2,7,12,3,6,7,11,8,2,11,1,8 -G,4,3,5,4,3,6,6,5,6,6,6,8,2,8,4,8 -J,3,7,4,5,2,9,6,1,6,13,4,8,0,7,0,8 -A,8,12,8,6,4,11,0,4,3,12,6,14,4,5,5,11 -S,3,10,4,8,5,8,8,8,5,7,5,8,2,8,8,8 -N,5,6,7,4,3,7,8,3,5,10,6,7,5,8,1,7 -J,2,9,3,6,3,11,5,2,6,11,2,7,0,7,1,7 -K,6,11,9,8,8,3,8,1,6,9,9,11,3,8,3,6 -U,4,6,6,6,5,7,6,5,4,6,6,8,4,8,1,7 -S,4,7,6,5,7,6,6,3,2,8,6,7,3,7,11,2 -Y,4,7,6,10,10,7,5,4,3,8,8,9,9,10,8,8 -E,2,1,2,1,2,7,7,5,6,7,6,8,2,8,5,10 -O,5,11,5,8,5,8,7,8,4,9,6,6,4,9,4,8 -V,3,9,5,7,3,7,11,2,3,6,11,9,2,10,1,8 -W,7,10,9,7,6,4,8,5,1,7,9,8,8,10,0,8 -A,3,7,5,5,3,10,2,2,2,9,2,8,2,6,4,8 -I,2,6,4,4,2,7,7,0,8,13,6,8,0,8,1,7 -Z,2,2,2,3,2,7,8,5,9,6,6,9,1,9,7,8 -O,4,7,4,5,3,8,6,6,3,10,5,10,3,8,2,8 -P,4,9,6,7,4,6,10,5,6,10,8,3,1,10,4,7 -X,2,1,4,2,2,7,7,3,9,6,6,8,2,8,5,8 -M,5,10,8,7,10,12,4,3,1,9,4,9,10,6,3,8 -R,1,1,2,1,1,6,9,7,3,7,5,8,2,7,4,11 -M,4,7,7,5,9,8,7,3,3,8,4,7,10,5,2,6 -Z,2,5,3,3,3,8,7,5,9,6,6,7,2,8,7,8 -N,5,5,5,7,3,7,7,15,2,4,6,8,6,8,0,8 -M,5,10,6,8,4,8,7,13,2,6,9,8,8,6,0,8 -L,3,6,4,4,2,5,3,5,8,2,2,4,1,6,1,5 -M,1,0,2,0,1,7,6,9,0,7,8,8,5,6,0,8 -N,4,8,6,6,4,8,6,9,5,4,4,5,4,6,3,8 -W,9,10,8,7,6,5,10,3,3,9,8,7,10,11,4,5 -Y,4,9,5,6,1,7,10,3,2,7,13,8,1,11,0,8 -N,3,6,5,4,3,4,9,3,3,10,10,9,5,8,0,8 -J,3,8,4,6,2,9,5,4,5,15,6,12,1,6,1,7 -L,4,11,6,8,3,4,4,1,10,6,1,11,0,7,3,6 -C,7,11,8,8,4,2,10,5,8,11,11,11,1,8,2,6 -A,4,9,6,7,4,7,5,3,0,6,1,8,2,7,1,7 -F,2,3,2,1,1,5,11,3,5,11,9,5,1,9,3,6 -T,2,7,4,5,1,7,14,0,5,7,10,8,0,8,0,8 -N,2,3,4,2,2,8,9,3,4,10,4,5,5,9,1,7 -I,1,7,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -H,3,2,4,4,3,8,8,6,6,7,6,8,3,8,3,9 -A,3,7,5,6,4,6,8,2,4,7,7,9,5,9,3,7 -R,2,3,3,5,2,6,9,9,4,7,5,7,2,8,5,10 -H,5,8,7,6,7,6,7,6,6,7,6,10,3,8,3,9 -E,4,8,6,6,4,6,8,4,9,11,9,9,2,9,5,5 -Y,3,5,4,3,2,4,10,1,7,10,10,5,2,11,3,4 -L,2,6,3,4,1,0,1,5,6,0,0,6,0,8,0,8 -J,4,7,5,5,2,9,5,3,7,15,4,9,0,7,0,8 -A,1,1,2,1,0,7,4,2,0,7,2,8,2,6,1,8 -U,4,5,5,4,3,4,8,5,7,10,9,9,3,9,2,6 -Y,2,7,4,4,1,9,10,2,3,6,12,8,1,11,0,8 -I,7,12,5,6,2,9,6,5,5,13,3,8,3,7,5,10 -O,6,9,8,8,7,7,5,4,5,9,3,7,4,8,6,9 -T,4,5,5,3,2,6,11,2,8,11,9,4,1,11,3,4 -K,4,8,6,6,4,4,7,6,7,6,6,13,4,7,6,10 -Q,3,6,5,5,3,8,7,7,5,6,6,8,2,8,4,9 -P,2,1,2,1,1,5,11,7,1,9,6,4,1,9,3,8 -P,5,8,8,6,4,6,12,7,2,11,5,2,1,10,4,9 -U,4,4,4,6,2,8,5,14,5,6,13,8,3,9,0,8 -V,5,9,5,6,3,2,11,2,3,10,11,8,2,11,1,8 -O,2,3,2,1,1,8,7,6,4,9,6,8,2,8,3,8 -L,3,2,4,3,2,4,4,5,7,2,2,5,1,6,1,6 -W,6,6,6,4,4,7,11,5,2,8,6,6,7,12,2,6 -I,6,15,4,8,3,11,5,5,4,13,3,8,3,8,5,9 -N,4,4,5,6,2,7,7,15,2,4,6,8,6,8,0,8 -V,6,9,5,4,2,6,11,6,3,11,9,4,4,12,3,9 -K,4,8,6,6,4,5,7,4,8,7,6,10,4,8,5,9 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -I,0,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -H,2,6,3,4,1,7,8,14,1,7,5,8,3,8,0,8 -B,7,9,6,4,5,9,7,3,5,9,4,7,7,5,7,8 -D,8,12,7,6,5,8,6,3,7,10,5,7,6,7,8,6 -A,6,14,6,8,5,11,3,4,2,11,3,11,5,3,4,11 -R,7,10,9,8,11,7,7,3,5,6,6,9,7,9,7,6 -P,3,2,3,3,2,5,11,5,4,10,7,2,1,10,4,6 -L,5,11,7,8,5,9,3,1,8,9,2,10,3,6,5,10 -L,1,0,1,1,0,2,2,5,5,1,1,6,0,8,0,8 -E,2,4,4,3,2,6,7,2,7,11,7,9,2,8,4,8 -M,3,4,4,3,3,8,6,6,4,6,7,8,7,5,2,7 -J,2,6,4,4,1,10,6,2,7,15,4,7,0,7,0,8 -I,4,9,5,7,3,9,6,0,7,13,5,9,0,8,1,8 -H,7,9,10,6,6,6,7,3,7,10,8,9,3,8,3,7 -V,3,8,5,6,1,8,8,4,3,6,14,8,3,10,0,8 -D,3,5,4,3,2,8,7,7,8,6,6,3,2,8,3,7 -D,10,15,9,8,5,7,6,5,6,9,4,5,5,8,6,9 -K,5,6,7,4,5,6,7,1,6,10,6,10,4,8,4,8 -D,5,8,8,6,5,8,8,7,8,10,5,4,3,8,5,8 -L,4,10,5,8,7,8,8,3,5,5,7,9,5,11,9,10 -Y,9,15,8,8,4,7,8,4,4,10,7,5,4,9,5,3 -D,2,1,2,2,1,6,7,9,6,6,6,6,2,8,3,8 -V,6,11,9,8,10,7,5,5,3,8,8,9,9,9,6,8 -X,3,4,6,3,3,6,9,1,8,10,9,8,2,8,3,6 -N,2,3,4,2,1,5,9,3,3,10,8,8,5,8,0,7 -J,1,5,3,4,1,9,6,3,6,14,5,10,0,7,0,7 -P,4,5,6,7,7,6,8,5,3,7,7,6,7,12,6,9 -W,5,9,7,7,7,10,11,2,2,6,8,7,9,13,2,8 -V,4,9,7,7,3,5,12,3,4,8,12,9,2,10,1,8 -F,4,7,6,5,6,7,8,5,4,8,6,9,4,11,9,11 -K,8,10,7,5,3,8,7,3,7,9,7,7,6,10,4,8 -E,3,7,4,5,3,7,7,6,8,7,6,9,3,8,6,8 -T,3,11,5,8,1,6,14,0,6,8,11,8,0,8,0,8 -O,5,9,5,6,4,7,7,8,5,10,6,8,3,8,3,8 -K,7,9,10,7,6,2,8,3,8,11,12,12,5,6,5,3 -R,5,8,7,6,6,8,8,5,5,9,5,8,3,8,5,11 -T,4,8,6,6,5,6,7,6,6,7,9,9,3,10,5,8 -I,2,8,2,6,2,7,7,0,8,7,6,8,0,8,3,8 -D,1,3,2,2,1,9,6,3,4,10,4,6,2,8,2,8 -K,4,4,5,6,2,3,7,8,2,7,6,11,3,8,2,11 -J,1,6,2,4,1,11,3,9,3,13,7,13,1,6,0,8 -U,4,4,5,2,2,4,8,5,7,10,9,9,3,9,2,6 -H,2,4,4,2,2,7,8,3,5,10,6,7,3,8,2,8 -P,7,11,9,8,6,8,9,2,6,14,6,5,3,10,4,9 -K,3,4,6,3,3,6,7,2,7,10,7,10,3,8,3,7 -F,3,7,3,5,2,1,12,4,4,11,10,8,0,8,2,6 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -K,4,8,5,6,2,4,8,9,1,7,6,11,3,8,3,11 -Q,1,0,1,1,0,8,6,7,5,6,6,9,2,7,3,9 -Q,3,4,4,5,3,8,8,6,2,8,7,9,2,9,3,9 -L,4,11,5,8,3,9,2,2,7,9,2,10,1,5,3,9 -I,0,3,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -T,7,13,6,7,4,8,8,3,7,11,5,6,2,8,6,7 -A,4,8,6,6,3,13,3,4,3,11,1,8,2,6,2,9 -G,5,10,6,7,4,6,7,7,7,10,7,11,2,9,5,9 -O,6,9,8,7,5,7,6,8,4,7,5,8,3,8,3,8 -P,2,2,3,3,2,5,10,4,4,9,8,4,1,10,3,7 -N,4,10,6,8,4,8,8,6,5,6,6,6,6,9,2,5 -T,3,1,4,2,1,7,11,2,7,7,11,8,1,10,1,8 -V,5,9,6,7,4,8,11,3,2,5,10,9,5,11,5,8 -H,5,6,7,4,4,10,7,4,6,10,2,7,3,8,3,9 -G,1,0,1,0,0,7,6,6,5,6,5,9,1,7,4,10 -P,4,9,4,7,4,5,10,9,3,9,6,5,1,10,3,8 -D,3,6,5,4,3,9,7,5,7,10,5,4,3,8,3,8 -K,5,6,7,5,6,7,7,2,4,7,3,9,6,4,8,10 -Z,1,0,1,0,0,7,7,2,9,8,6,8,0,8,5,8 -X,4,6,5,4,3,7,8,1,8,10,7,8,3,8,3,7 -K,7,9,9,8,9,10,6,3,5,10,2,8,8,6,7,12 -G,4,7,5,5,5,8,7,6,2,7,6,11,4,8,7,9 -J,4,9,5,7,3,9,6,2,6,14,4,8,0,7,0,8 -Q,9,15,8,8,5,9,4,5,9,11,3,11,3,6,8,11 -M,5,5,8,4,4,10,5,3,5,9,3,7,10,7,3,9 -Q,1,2,2,3,2,8,7,6,2,5,6,10,2,9,4,9 -C,6,9,6,7,3,3,8,5,7,12,10,12,2,9,2,7 -Y,7,11,6,6,3,5,9,4,3,11,10,6,4,10,3,3 -F,3,10,4,7,2,0,13,4,4,12,11,7,0,8,2,6 -U,4,10,4,7,2,7,5,15,5,7,13,8,3,9,0,8 -T,6,9,5,4,2,5,11,3,6,13,7,5,2,8,3,4 -I,6,7,8,8,7,9,8,5,5,7,5,9,3,8,9,7 -F,4,8,4,6,3,2,12,5,6,11,10,8,0,8,2,7 -L,2,3,2,2,1,4,4,4,7,2,2,6,0,7,1,6 -L,3,7,5,6,4,8,5,5,4,6,7,8,3,8,8,11 -G,4,6,6,6,6,8,9,6,3,6,6,9,7,11,6,9 -H,2,4,3,3,3,7,7,5,5,7,6,8,3,8,2,8 -K,8,13,8,7,4,9,7,3,7,9,3,6,5,8,4,8 -C,2,5,3,3,2,6,8,7,8,8,7,13,1,9,4,10 -V,2,7,4,5,1,9,8,4,2,6,13,8,3,10,0,8 -Q,2,2,2,3,2,8,9,5,2,8,8,10,2,9,4,9 -Y,1,0,2,0,0,8,10,3,1,6,12,8,1,11,0,8 -O,2,1,3,2,2,7,8,7,5,7,7,8,2,8,3,8 -Y,8,14,6,8,4,7,8,4,4,9,8,5,4,10,4,4 -X,5,11,7,8,7,8,7,3,5,6,7,6,4,10,11,9 -A,1,0,2,0,0,8,4,2,0,7,2,8,1,6,1,8 -P,6,9,9,7,4,9,9,3,7,14,4,3,2,9,4,9 -L,2,2,3,4,1,3,4,3,8,2,1,7,0,7,1,6 -V,9,12,7,7,3,7,9,6,4,8,9,5,6,13,4,9 -F,2,5,3,4,2,5,11,3,5,11,9,5,1,10,3,6 -E,3,8,5,6,5,7,7,3,6,7,7,10,4,10,8,8 -Z,5,12,6,6,4,9,5,3,8,12,4,9,3,9,5,11 -U,3,3,4,1,1,4,9,5,6,11,10,9,3,10,2,7 -J,2,5,3,4,1,11,6,2,6,11,3,8,1,6,1,7 -F,2,4,4,3,2,6,10,2,6,13,7,5,1,10,1,7 -F,4,6,6,4,5,10,7,1,5,9,5,6,4,10,4,7 -Z,1,3,2,2,1,7,7,5,8,6,6,8,2,8,7,8 -W,3,4,4,3,3,6,10,4,2,8,7,7,6,11,1,6 -J,1,0,1,1,0,12,3,5,3,12,5,11,0,7,0,8 -P,4,9,5,6,3,5,10,10,5,9,6,5,2,10,4,8 -L,0,0,1,0,0,2,2,5,4,1,2,6,0,8,0,8 -C,5,11,6,8,2,5,7,7,10,7,6,14,1,8,4,9 -A,5,8,7,6,6,8,9,7,5,6,6,8,3,7,7,4 -X,6,9,8,8,8,8,7,2,5,7,6,7,4,9,8,8 -Q,6,9,7,11,8,9,10,6,4,3,9,12,4,9,9,14 -A,3,2,6,4,2,10,2,2,2,9,1,8,2,6,2,8 -W,4,4,5,2,3,7,11,3,2,6,9,8,7,11,0,8 -K,4,9,5,6,2,3,8,8,2,7,5,11,4,8,3,10 -F,5,9,7,7,8,10,6,2,4,9,5,6,6,9,5,7 -E,4,8,4,6,3,3,9,6,12,7,5,14,0,8,7,7 -H,7,10,10,8,9,7,8,3,6,10,6,7,3,8,3,8 -G,8,11,7,6,4,7,6,6,5,9,5,6,4,7,5,7 -Y,5,6,6,8,8,9,7,6,3,7,8,8,7,10,6,5 -T,2,3,3,4,1,7,14,0,6,7,11,8,0,8,0,8 -J,2,8,3,6,1,12,2,9,4,14,6,13,1,6,0,8 -T,8,11,8,8,4,4,12,2,8,13,10,5,0,10,2,4 -V,4,10,5,8,3,5,11,3,3,9,12,9,2,10,1,8 -A,5,6,7,5,6,6,6,3,5,7,8,10,8,11,3,8 -V,5,9,4,4,2,9,9,5,4,5,10,6,4,11,3,5 -M,3,7,5,5,5,9,6,6,4,6,7,6,7,5,2,6 -U,5,10,6,8,5,6,8,8,5,5,6,12,5,9,7,3 -D,5,10,7,8,6,6,7,8,7,7,7,5,4,7,4,9 -Q,6,9,6,10,6,8,6,7,4,9,6,10,4,10,7,6 -X,4,6,6,4,3,7,7,1,8,10,7,9,3,8,3,7 -H,3,9,4,7,4,8,9,13,2,7,4,8,3,8,0,8 -V,1,0,2,0,0,8,9,3,1,6,12,8,2,11,0,8 -G,4,6,4,4,3,6,7,5,6,9,8,10,2,9,4,9 -F,3,4,3,6,1,0,11,4,7,12,12,9,0,8,2,6 -H,6,7,9,10,8,7,11,5,1,8,7,5,4,12,10,4 -U,6,10,6,6,4,7,6,5,5,7,8,9,5,8,3,8 -W,4,4,5,2,3,4,11,3,2,10,9,8,6,11,1,6 -H,4,10,4,7,2,7,7,15,1,7,7,8,3,8,0,8 -M,6,10,8,8,7,6,7,3,5,9,9,9,8,6,2,7 -U,10,14,9,8,5,6,6,5,5,6,8,9,7,7,4,9 -E,3,3,3,5,2,3,9,6,11,7,5,14,0,8,7,8 -Z,6,6,5,9,4,7,8,5,3,11,7,7,2,9,9,7 -U,2,5,4,4,3,7,7,4,3,6,7,8,3,8,1,7 -U,3,6,4,4,1,7,5,13,5,7,14,8,3,9,0,8 -Y,3,6,5,4,2,10,11,2,7,3,11,8,1,11,1,9 -T,1,0,1,0,0,7,14,1,4,7,10,8,0,8,0,8 -D,6,11,6,8,4,6,7,11,11,6,5,6,3,8,4,8 -I,1,4,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -M,2,0,3,1,1,7,6,10,0,7,9,8,7,6,0,8 -I,1,8,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -I,3,10,4,8,2,7,7,0,8,13,6,8,0,8,1,7 -E,2,3,3,2,1,6,8,1,7,11,6,9,2,8,3,8 -Q,8,13,8,7,5,12,4,3,6,10,3,7,3,9,6,13 -W,2,0,2,0,1,7,8,4,0,7,8,8,6,9,0,8 -H,7,9,10,7,8,6,8,2,6,10,7,8,5,9,4,8 -I,2,5,3,3,1,7,8,1,8,14,6,7,0,8,1,7 -Q,4,6,5,9,6,8,13,4,3,4,8,12,4,14,7,13 -D,3,6,5,4,3,7,7,8,7,7,6,5,3,8,3,7 -Q,6,10,8,8,7,7,4,8,4,6,7,10,5,7,7,9 -C,3,8,4,6,2,6,8,8,7,10,8,13,2,10,4,10 -V,5,7,5,5,2,3,11,4,3,10,12,7,2,10,1,8 -D,3,6,4,4,3,5,8,8,7,8,7,6,2,8,3,8 -J,4,10,6,7,6,10,8,3,4,8,3,6,4,8,7,7 -N,3,6,4,4,3,7,7,12,1,7,6,8,5,9,0,8 -V,3,3,4,2,1,4,12,3,2,10,11,7,2,11,1,8 -U,5,7,5,5,3,3,9,5,6,11,11,9,3,9,1,6 -S,2,6,3,4,2,8,7,7,7,7,7,9,2,10,9,8 -A,3,7,5,5,3,11,2,3,2,10,2,9,3,7,3,9 -W,7,7,9,6,10,7,7,5,5,7,6,8,9,9,9,8 -F,4,11,6,8,4,5,11,4,6,11,10,5,2,10,3,5 -N,2,1,2,1,1,7,7,11,1,5,6,8,4,8,0,8 -N,2,4,3,3,2,7,8,5,4,7,6,6,4,8,1,6 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -P,4,6,5,4,4,6,7,6,4,7,6,8,2,9,7,10 -T,2,7,3,4,1,7,14,0,6,7,11,8,0,8,0,8 -D,6,9,9,8,8,6,7,5,7,7,4,7,4,6,6,5 -R,5,8,7,6,7,8,6,7,3,8,6,8,6,6,6,11 -E,5,9,5,7,3,3,8,6,11,7,6,15,0,8,7,7 -Z,7,10,9,8,6,7,8,2,9,12,7,7,1,8,6,8 -F,1,0,1,0,0,3,11,4,3,11,9,7,0,8,2,8 -P,4,7,5,5,3,7,10,6,4,11,5,4,1,10,3,8 -T,7,15,6,8,3,6,9,3,8,13,6,6,2,8,5,4 -P,3,10,4,8,4,3,12,7,2,11,8,4,0,10,3,8 -K,3,7,4,5,1,3,7,7,2,7,7,11,3,8,3,10 -E,3,6,4,4,2,5,9,4,8,12,9,8,2,9,5,5 -W,10,11,10,8,8,2,11,2,3,10,11,9,7,10,2,6 -Z,4,9,4,7,2,7,7,4,14,9,6,8,0,8,8,8 -B,4,5,5,8,4,6,9,9,7,8,5,6,2,8,9,10 -R,3,7,4,5,4,7,9,6,5,8,5,9,3,6,5,10 -Y,9,8,7,12,5,8,5,5,5,5,12,6,5,10,4,7 -Z,5,10,6,8,5,7,8,3,12,9,6,8,0,8,8,7 -Z,2,5,4,4,2,7,8,2,10,11,6,7,1,8,6,7 -I,2,10,2,8,3,7,7,0,7,7,6,8,0,8,3,8 -Z,4,8,5,6,5,8,8,3,7,7,6,7,1,9,10,8 -L,2,3,3,2,1,5,4,5,8,3,2,6,1,7,1,6 -E,3,5,3,4,3,7,8,5,8,7,5,9,2,8,6,9 -K,3,9,4,7,2,3,7,7,3,7,7,11,3,8,3,10 -G,3,7,4,5,3,6,6,5,4,6,6,9,2,9,4,8 -P,4,9,6,6,3,9,9,2,6,14,5,4,1,10,3,10 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -P,7,10,7,5,4,8,9,4,3,12,5,4,4,11,5,6 -K,6,11,8,8,5,6,7,2,7,10,7,10,3,8,3,8 -V,4,8,6,6,1,6,8,5,3,8,14,8,3,9,0,8 -T,3,4,3,3,1,5,13,3,5,11,9,3,1,11,1,5 -Q,2,2,3,4,3,8,8,6,2,5,7,9,3,9,5,9 -R,5,8,7,6,5,10,6,3,5,10,3,7,3,7,4,10 -P,6,7,8,10,9,7,9,4,2,7,8,7,6,11,6,5 -N,7,12,7,6,3,8,10,5,4,4,6,9,6,10,3,6 -B,4,9,5,6,5,7,8,7,4,7,5,6,4,7,6,6 -N,3,5,5,4,2,7,8,3,5,10,6,7,5,8,1,7 -R,5,11,6,8,7,6,8,9,5,6,5,8,2,8,8,9 -C,5,5,6,8,2,6,7,7,10,7,6,15,1,8,4,9 -M,4,7,4,5,3,7,7,12,1,7,9,8,8,6,0,8 -H,5,8,8,6,5,6,8,4,7,10,9,9,4,9,4,6 -Q,4,8,5,8,3,8,7,8,6,6,7,8,3,8,5,9 -Q,3,5,5,8,3,7,5,9,6,6,4,8,3,8,4,8 -S,4,7,5,5,4,7,7,5,8,5,6,9,0,9,9,8 -J,4,9,5,7,2,10,6,2,8,14,3,8,0,7,0,8 -R,5,10,5,8,6,6,9,9,4,6,5,7,3,8,5,11 -F,5,8,6,10,8,7,9,5,5,7,6,7,4,9,9,7 -P,1,0,1,0,0,5,11,6,1,9,6,5,0,9,3,8 -I,1,11,0,8,1,7,7,5,3,7,6,8,0,8,0,8 -I,3,11,6,8,7,11,6,1,6,8,4,5,3,8,5,9 -S,2,7,3,5,3,8,8,8,6,8,4,6,2,6,8,8 -Q,5,6,6,8,5,8,6,8,4,5,6,9,3,8,6,10 -V,7,11,6,6,3,9,8,6,4,7,10,7,7,12,3,8 -A,3,8,6,6,3,11,2,2,2,9,2,9,3,7,3,9 -Q,4,5,5,8,3,8,7,8,6,5,6,8,3,8,5,9 -J,0,0,1,1,0,12,4,5,3,12,4,11,0,7,0,8 -U,2,0,2,1,0,8,5,11,4,7,13,8,3,10,0,8 -G,4,7,6,5,5,7,8,5,3,6,6,11,4,8,7,8 -H,4,2,5,4,4,8,7,6,6,7,6,8,3,8,3,9 -K,5,11,7,8,8,5,7,5,4,7,5,8,4,6,10,8 -B,3,4,5,3,3,8,7,2,6,11,5,7,2,8,4,9 -O,6,10,9,8,10,8,7,5,1,7,6,8,9,9,7,11 -B,3,5,5,3,3,8,7,2,6,10,5,7,2,8,4,10 -H,3,6,4,4,3,7,6,12,1,7,7,8,3,8,0,8 -H,5,11,8,8,9,8,8,6,7,7,5,8,3,8,4,7 -J,0,0,1,1,0,12,4,5,3,12,4,11,0,7,0,8 -K,3,6,4,4,3,5,7,4,8,6,6,11,3,8,6,9 -E,3,8,5,6,6,5,7,3,7,8,7,12,4,9,8,8 -R,10,11,8,6,4,10,5,5,5,10,3,8,6,6,6,11 -F,4,9,5,7,4,4,11,4,6,11,10,6,2,10,3,5 -I,4,6,5,7,5,8,9,4,5,8,7,8,4,7,8,7 -B,4,10,6,7,7,8,6,4,4,6,5,7,4,9,5,8 -Q,4,5,5,7,5,9,11,6,2,3,7,12,3,10,5,10 -G,4,9,5,7,2,7,6,8,9,7,5,11,1,8,5,10 -A,5,10,7,8,5,8,4,3,0,7,1,8,2,7,4,8 -B,2,3,3,2,2,8,7,3,5,10,6,7,2,8,4,9 -Y,2,1,3,1,0,7,10,3,1,7,12,8,1,11,0,8 -A,3,5,5,3,2,11,2,2,2,9,2,9,2,6,2,8 -V,8,11,8,6,4,7,10,4,5,8,9,6,5,11,3,7 -Z,6,10,9,7,5,5,10,4,10,11,10,6,1,9,6,5 -W,11,12,10,6,4,4,10,2,3,9,11,8,9,12,1,6 -H,5,6,7,4,4,7,7,3,7,10,7,9,3,8,3,7 -H,4,5,5,4,4,7,7,6,6,7,6,8,3,8,3,7 -G,2,4,3,3,2,6,7,5,5,9,7,10,2,9,4,9 -Z,4,6,5,4,4,9,9,5,4,6,5,7,3,8,8,4 -N,5,11,6,9,3,7,7,15,2,4,6,8,6,8,0,8 -S,5,9,6,6,4,6,7,4,7,10,10,9,2,9,5,5 -B,7,15,7,8,6,10,6,4,5,10,4,7,7,6,8,9 -Q,5,7,6,6,5,9,3,4,4,8,3,10,3,6,6,7 -Z,5,11,7,8,5,7,7,3,13,9,6,8,0,8,8,8 -Q,2,3,2,3,2,8,8,5,1,8,7,9,2,9,4,8 -M,6,10,7,8,7,8,5,11,0,7,9,8,10,5,3,7 -G,7,11,7,8,5,7,6,7,7,10,7,13,3,8,5,7 -Y,4,6,6,8,8,9,6,6,3,7,8,8,6,10,6,4 -A,2,7,4,5,2,8,3,2,2,7,1,8,2,6,2,7 -J,2,6,2,4,1,13,2,7,4,13,4,12,0,7,0,8 -J,2,8,2,6,1,15,3,4,5,12,1,8,0,7,0,8 -E,8,12,5,6,3,8,6,5,7,11,6,9,2,10,8,9 -D,5,11,7,8,8,7,7,4,8,6,6,6,3,8,3,7 -Z,4,7,4,5,3,7,7,5,11,7,6,9,1,8,8,8 -N,2,2,3,4,2,7,8,5,4,7,7,7,5,9,2,6 -O,4,8,5,6,4,7,7,7,4,10,6,8,3,8,3,8 -E,2,1,2,1,1,4,8,5,8,7,6,13,0,8,7,9 -G,2,2,3,3,2,7,6,6,5,6,6,10,2,9,4,9 -O,8,9,5,5,3,7,9,6,5,9,5,6,4,9,5,8 -G,4,7,4,5,3,6,7,6,7,9,8,9,2,10,4,9 -T,7,9,6,5,2,8,8,4,8,13,5,7,2,8,5,6 -Y,5,8,5,6,4,4,9,1,6,9,10,7,3,11,4,4 -G,4,7,6,5,3,5,5,5,7,6,5,9,2,10,4,7 -T,6,8,6,6,4,6,12,4,6,11,9,4,3,12,3,4 -A,1,1,2,1,0,7,4,2,0,6,2,8,2,7,1,8 -O,5,11,6,8,9,8,10,5,2,7,7,8,8,9,5,10 -A,3,9,5,7,4,12,2,3,3,10,2,9,3,8,4,9 -M,2,0,2,1,1,7,6,10,0,7,8,8,6,6,0,8 -O,4,7,4,5,3,7,7,7,5,10,6,8,3,8,3,8 -T,3,4,4,3,2,5,12,3,6,11,9,4,1,11,1,5 -X,3,9,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -K,6,9,7,4,3,5,8,3,5,9,9,10,5,10,3,6 -D,4,8,6,6,5,8,8,5,6,10,5,4,3,8,4,8 -X,5,9,8,7,7,6,7,3,6,8,8,11,6,6,8,6 -B,6,9,8,7,6,9,6,4,7,9,5,7,3,8,6,10 -F,7,12,6,6,3,6,8,2,7,10,7,6,2,10,5,6 -A,5,11,7,9,5,8,3,3,1,7,2,8,5,8,5,10 -D,4,9,4,4,3,7,8,4,7,10,5,6,4,8,5,6 -C,6,10,6,7,3,4,8,6,8,12,10,12,1,9,3,7 -E,4,7,6,5,5,8,7,6,3,7,6,10,4,8,8,9 -E,3,9,4,7,2,3,8,6,11,7,5,15,0,8,7,7 -B,4,4,5,6,4,6,8,9,7,7,5,7,2,8,9,9 -Y,5,10,5,7,3,3,10,2,8,11,11,6,0,10,2,4 -D,2,5,4,3,3,9,6,4,6,10,4,6,2,8,3,8 -E,4,6,5,4,5,7,9,5,4,6,6,9,4,7,7,7 -N,10,14,12,8,5,12,5,3,4,13,1,6,6,7,0,8 -V,8,10,8,8,4,2,13,5,4,11,12,7,3,9,2,7 -Q,4,8,5,9,5,8,9,6,2,6,8,12,3,10,6,8 -Y,3,7,5,5,2,4,9,1,7,10,12,9,1,10,2,7 -W,12,15,11,8,5,6,10,2,3,7,10,7,10,12,1,6 -U,8,9,9,7,6,4,7,5,8,9,7,9,6,8,4,3 -M,3,1,3,1,1,8,6,11,0,7,9,8,7,6,0,8 -Z,3,7,4,5,2,7,7,4,13,9,6,8,0,8,8,8 -E,3,6,5,4,3,5,9,5,8,11,10,8,3,8,4,4 -W,3,1,4,2,1,7,8,4,0,7,8,8,7,9,0,8 -O,5,9,4,4,2,9,7,5,4,9,4,8,4,9,5,8 -T,5,10,7,7,6,6,7,7,7,7,6,8,4,11,7,8 -X,3,7,5,5,3,5,8,1,7,10,10,9,2,9,3,6 -F,5,9,7,6,4,10,7,2,6,13,4,6,6,9,5,9 -L,1,4,3,3,1,6,5,2,9,7,2,10,0,7,3,7 -M,5,2,7,4,5,8,6,6,5,6,7,7,10,6,3,6 -P,8,9,6,4,3,8,8,5,4,12,3,6,5,9,4,8 -W,6,10,7,5,4,7,8,3,4,6,9,6,9,9,2,6 -E,3,9,4,7,4,6,7,7,9,8,8,10,3,8,6,8 -U,6,8,7,6,3,3,9,5,8,11,11,9,3,9,2,6 -I,3,7,5,5,5,9,7,2,4,8,5,5,3,9,5,6 -H,5,7,8,5,4,8,7,3,6,10,4,7,3,8,3,8 -E,4,11,5,8,5,2,8,5,10,7,5,14,0,8,6,9 -D,4,9,5,7,3,5,7,10,9,6,5,6,3,8,4,8 -Q,1,2,2,3,2,8,7,6,2,6,6,9,2,9,3,10 -R,6,11,6,8,4,5,13,8,4,7,3,9,3,7,7,11 -M,2,1,2,1,1,8,6,10,0,6,9,8,6,6,0,8 -B,5,10,8,8,11,8,7,5,3,6,7,7,7,10,9,9 -M,2,4,3,3,3,8,6,6,4,6,7,6,6,6,2,6 -Y,7,8,7,6,3,2,12,4,6,13,11,5,1,11,1,5 -G,5,9,4,4,3,8,6,5,2,9,6,8,3,10,7,8 -Y,2,3,3,2,1,4,10,2,7,10,10,5,1,11,2,4 -U,4,4,5,3,2,4,8,5,7,11,10,9,3,9,1,7 -O,1,0,2,0,0,7,7,6,4,7,6,8,2,8,3,8 -K,4,7,6,5,4,6,7,1,6,10,7,10,3,8,3,8 -X,2,2,4,3,2,8,7,3,9,6,6,8,3,8,6,8 -X,2,1,3,3,2,7,8,3,8,6,6,7,2,8,6,7 -C,2,1,2,2,1,6,8,7,6,9,7,11,2,10,4,10 -U,6,10,7,7,4,3,8,5,7,10,9,9,3,9,2,6 -X,4,8,7,6,6,8,7,2,6,7,6,7,5,7,7,8 -N,5,5,6,7,3,7,7,15,2,4,6,8,6,8,0,8 -M,4,7,5,5,6,7,7,7,4,6,5,8,6,9,7,8 -D,3,6,5,4,4,7,7,6,6,6,5,5,3,8,3,7 -E,4,7,6,5,4,5,9,2,8,11,7,9,3,9,5,7 -R,4,8,5,6,4,8,8,5,7,6,4,7,3,6,5,8 -A,4,8,6,6,4,9,5,3,0,8,1,8,2,7,1,8 -U,5,10,6,8,4,5,8,7,7,8,10,10,3,9,1,8 -Z,4,4,5,7,2,7,7,4,15,9,6,8,0,8,8,8 -I,2,10,3,7,2,9,7,0,7,13,5,8,0,8,1,8 -H,2,1,3,1,2,6,7,5,6,7,6,8,5,8,3,8 -F,5,7,6,8,7,7,9,4,4,7,6,7,4,9,9,8 -K,5,10,5,8,4,4,7,7,3,7,6,12,3,8,3,11 -R,4,7,4,5,4,6,9,8,3,7,5,8,2,7,5,11 -P,2,3,4,2,2,7,10,3,4,12,4,3,1,10,2,8 -H,8,11,12,8,10,9,6,3,7,10,5,8,6,8,5,8 -Q,6,6,8,6,6,8,3,4,5,7,3,9,5,5,6,8 -G,7,10,6,6,3,7,6,6,5,10,5,7,4,7,5,7 -D,6,7,8,6,8,7,6,5,6,7,5,9,5,6,8,3 -B,6,10,8,8,9,8,6,5,6,9,5,7,4,9,7,10 -F,4,9,4,6,2,1,14,5,3,12,9,4,0,8,3,6 -U,3,7,4,5,3,7,5,12,4,7,11,8,3,9,0,8 -K,3,4,6,3,3,7,7,1,6,10,5,9,4,7,4,8 -R,3,7,4,4,2,5,11,8,3,7,3,9,3,7,5,11 -X,5,9,7,8,8,8,7,2,4,8,6,8,4,10,8,6 -W,3,6,5,4,3,7,10,2,2,7,9,8,6,11,0,8 -N,4,7,6,5,4,7,9,6,5,7,6,6,5,9,1,6 -W,1,0,2,0,1,8,8,4,0,7,8,8,5,10,0,8 -K,5,8,7,6,5,4,7,2,6,10,10,11,3,8,3,6 -E,2,3,4,2,2,7,7,2,7,11,6,9,2,8,4,8 -E,2,3,3,2,2,7,7,5,7,7,6,8,2,8,5,10 -A,3,8,6,6,3,12,2,2,2,10,2,9,2,6,2,8 -R,2,1,3,2,2,7,8,5,5,7,5,6,2,7,4,8 -S,2,3,4,2,1,9,6,3,7,10,4,8,1,8,5,10 -P,6,10,5,5,2,6,10,6,5,14,5,5,3,9,4,8 -F,1,1,2,1,0,3,12,4,3,11,9,6,0,8,2,7 -G,5,7,5,5,4,6,8,5,5,9,8,8,2,8,4,9 -O,4,7,5,5,4,7,7,7,4,8,5,10,4,8,3,7 -X,5,8,7,7,7,9,8,3,5,8,5,6,3,6,8,8 -B,5,11,7,8,8,7,6,8,6,6,6,6,3,8,8,11 -Z,1,0,1,1,0,7,7,2,10,8,6,8,0,8,6,8 -M,3,3,3,4,2,8,6,11,1,6,9,8,7,6,0,8 -N,1,3,3,2,1,6,8,3,3,10,7,8,4,8,0,7 -B,3,2,4,4,3,7,7,5,5,6,6,5,2,8,6,10 -V,4,7,6,6,7,6,7,5,4,7,6,8,6,9,7,10 -J,4,11,5,8,3,11,5,4,7,12,2,9,1,6,2,6 -D,5,10,7,8,7,9,7,6,6,8,5,5,5,9,4,10 -V,5,8,5,6,2,4,12,4,4,10,12,7,3,10,1,8 -G,6,11,6,8,5,5,6,5,5,9,8,11,2,9,4,9 -G,7,14,6,8,5,7,7,5,4,9,5,6,4,9,9,8 -Q,3,6,4,7,4,9,8,7,2,5,7,10,3,9,5,9 -C,4,5,5,5,4,6,8,3,5,6,6,11,4,9,7,9 -F,9,14,8,8,6,7,11,3,4,12,6,4,6,8,9,5 -D,6,11,9,8,8,8,8,5,6,10,6,5,6,9,6,11 -H,6,9,8,7,7,6,7,5,5,7,6,8,6,7,7,11 -M,5,8,8,6,5,3,7,4,5,11,12,11,6,9,3,7 -L,3,2,4,3,2,5,4,5,7,2,2,5,1,7,1,6 -S,5,9,7,8,8,9,8,4,5,7,6,8,5,10,9,11 -P,5,11,5,8,3,5,10,10,4,9,6,5,2,10,4,8 -Y,7,10,6,5,4,7,6,4,4,9,8,5,3,10,4,4 -S,5,7,6,5,4,9,7,4,7,10,3,7,2,7,5,10 -Q,3,5,4,6,4,9,10,6,2,4,7,11,2,9,5,10 -T,2,4,3,5,1,5,14,1,6,9,11,7,0,8,0,8 -Y,4,11,7,8,4,7,10,1,7,6,12,9,1,11,2,8 -M,3,7,4,5,3,8,7,11,1,6,9,8,8,6,0,8 -O,4,8,5,6,2,7,7,8,7,7,6,8,3,8,4,8 -X,4,9,6,7,3,6,8,1,8,10,9,8,3,8,4,7 -N,6,11,8,8,8,5,9,3,4,9,8,9,9,8,7,3 -B,4,8,6,6,6,8,7,4,5,9,5,6,3,8,6,9 -E,2,3,4,2,2,8,6,1,7,11,5,9,2,8,4,10 -H,3,7,4,5,2,7,9,14,2,7,3,8,3,8,0,8 -X,5,9,8,7,4,5,8,2,8,11,11,9,3,9,4,6 -K,4,8,4,6,2,3,7,8,2,7,6,11,4,8,2,11 -O,4,9,5,7,5,8,6,7,3,10,5,9,3,8,3,7 -Y,4,6,6,9,7,9,10,6,3,7,7,7,6,11,6,5 -C,6,10,7,8,4,6,8,7,8,13,8,10,2,11,3,7 -W,6,9,8,6,7,7,7,6,3,5,8,9,11,8,6,4 -U,5,5,6,8,2,8,4,14,6,6,14,8,3,9,0,8 -F,6,10,8,7,8,8,8,6,4,8,6,7,5,11,9,11 -C,1,0,1,1,0,7,7,5,7,7,6,13,0,8,4,10 -O,5,9,6,7,5,8,7,8,7,7,6,8,3,8,4,8 -X,3,7,4,5,2,7,7,4,4,7,6,8,2,8,4,8 -E,4,6,6,4,5,7,9,5,3,6,6,8,4,8,6,7 -U,5,8,8,6,4,7,8,6,9,5,9,8,3,9,1,8 -Q,4,7,5,7,3,8,7,8,6,6,7,9,3,8,5,9 -R,5,11,7,8,6,7,7,4,8,7,6,6,3,8,5,8 -P,6,12,6,7,4,6,10,3,5,13,6,3,3,10,5,6 -S,3,9,4,7,4,8,8,5,7,5,5,6,0,8,8,8 -Z,2,4,5,3,2,7,8,2,9,11,7,6,1,8,5,7 -K,7,12,7,7,4,5,8,3,5,10,9,11,5,9,3,7 -R,6,9,8,7,8,9,5,7,4,7,5,7,6,7,8,9 -P,5,10,8,8,5,8,9,5,5,12,4,3,2,10,4,8 -D,3,5,4,7,2,5,6,11,7,5,5,5,3,8,4,8 -D,7,9,9,8,9,6,7,5,7,6,3,7,5,10,9,5 -Q,2,2,2,2,1,7,8,5,2,7,8,10,2,9,4,8 -L,4,11,6,9,5,8,4,0,8,9,3,10,2,5,3,9 -N,6,10,8,7,5,8,9,2,5,9,4,6,5,9,1,7 -V,3,6,5,4,2,7,12,3,4,8,12,8,3,10,1,8 -A,1,1,2,1,0,7,4,2,0,7,2,8,2,7,1,8 -S,6,10,5,5,2,8,4,5,4,9,3,8,4,6,5,9 -R,6,10,6,8,4,6,10,10,5,7,5,8,3,8,6,10 -D,5,10,7,8,7,7,8,7,5,8,7,7,7,8,3,7 -T,4,10,6,8,5,6,7,8,7,8,8,7,3,10,6,10 -V,4,6,5,5,6,8,7,5,4,7,6,9,6,8,8,4 -E,6,11,8,8,5,4,10,4,9,11,10,9,2,8,5,4 -C,4,10,6,8,4,4,9,5,6,5,7,14,4,8,5,7 -W,6,10,9,8,8,5,12,2,2,8,8,9,9,14,2,8 -V,1,3,2,1,1,6,12,2,3,8,11,8,2,11,0,8 -H,2,7,3,4,2,7,6,14,2,7,8,8,3,8,0,8 -J,2,8,3,6,1,13,3,9,4,13,4,12,1,6,0,8 -B,4,7,4,5,3,6,7,9,7,7,6,7,2,8,8,9 -N,5,8,8,6,3,3,9,4,4,11,11,10,5,8,1,7 -I,0,6,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -L,5,11,5,6,3,7,4,3,5,11,7,12,3,7,6,8 -Z,5,8,7,10,7,11,5,5,4,9,3,8,3,6,6,9 -K,10,12,10,7,4,9,8,4,8,9,1,5,5,6,3,9 -Z,3,6,4,4,3,7,8,5,10,7,7,9,1,9,7,8 -N,6,7,8,5,4,11,7,3,6,10,1,4,5,9,1,7 -I,2,6,3,4,1,7,7,0,7,13,6,8,0,8,1,8 -M,2,0,2,1,1,7,6,10,0,7,8,8,6,6,0,8 -Z,3,7,4,5,2,7,7,4,14,9,6,8,0,8,8,8 -X,10,12,9,6,4,10,6,3,8,10,4,7,4,12,4,9 -O,4,9,3,5,3,6,8,6,4,9,7,9,5,9,4,8 -T,2,4,4,6,1,7,14,0,6,7,11,8,0,8,0,8 -Z,4,7,6,5,3,7,7,2,10,12,6,8,1,9,6,8 -P,5,10,7,8,6,6,6,6,4,7,6,9,5,8,7,10 -M,7,11,8,8,4,7,7,13,2,7,10,8,9,6,0,8 -I,1,10,0,8,1,7,7,5,3,7,6,8,0,8,0,8 -Y,2,3,2,2,1,4,11,3,5,11,10,5,1,11,2,6 -G,6,6,7,8,3,8,5,8,9,6,5,10,2,8,6,11 -N,5,10,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -N,3,5,6,4,3,9,8,3,5,10,3,5,5,9,1,8 -D,5,11,6,8,4,5,7,10,10,6,5,6,3,8,4,8 -D,4,7,4,5,2,5,7,10,8,7,6,5,3,8,4,8 -T,2,9,4,6,1,7,14,0,6,7,11,8,0,8,0,8 -L,2,5,4,3,2,7,3,2,8,8,2,9,1,7,3,8 -G,3,6,4,4,3,6,7,5,5,10,8,10,2,9,4,9 -O,5,8,7,6,8,8,6,5,2,7,5,8,9,9,5,11 -R,5,10,5,7,3,5,10,9,4,7,4,8,3,7,6,11 -S,6,13,5,7,3,10,4,5,5,10,3,10,4,5,4,10 -X,3,1,4,2,2,7,7,3,9,6,6,8,3,8,6,8 -L,1,3,2,1,1,7,3,1,6,9,3,10,0,7,2,9 -W,6,6,6,4,4,2,11,2,2,10,10,8,6,11,1,7 -J,0,0,1,1,0,12,4,5,3,12,4,10,0,7,0,8 -F,3,7,5,5,2,5,12,4,6,12,9,4,1,10,3,4 -F,2,5,3,4,2,5,10,4,5,10,9,5,2,10,3,6 -C,2,4,3,3,1,6,8,7,8,8,7,14,1,9,4,10 -C,2,7,3,5,2,5,8,7,7,8,8,13,2,9,4,10 -U,5,9,5,7,2,7,4,14,5,7,14,8,3,9,0,8 -V,8,11,7,8,4,3,11,3,4,10,12,8,3,10,1,7 -L,2,5,4,4,2,6,4,1,8,8,2,10,0,7,2,8 -X,2,3,3,2,2,7,8,3,8,6,6,7,2,8,5,7 -V,4,6,6,5,6,7,7,4,4,7,6,8,6,10,7,7 -G,7,8,9,7,10,7,6,5,4,7,7,9,8,10,9,7 -D,6,10,6,5,4,9,6,3,7,10,4,7,5,7,8,7 -L,4,9,4,7,2,0,2,4,6,1,0,8,0,8,0,8 -P,1,0,1,1,0,5,10,6,1,9,6,4,1,9,2,8 -X,3,4,5,3,2,9,6,1,8,10,4,7,2,8,3,8 -C,8,12,6,6,2,5,11,5,8,11,8,9,1,7,5,8 -M,6,10,7,8,4,7,7,13,2,7,9,8,9,6,0,8 -Y,3,6,4,4,1,5,11,2,2,8,12,8,1,11,0,8 -R,6,11,9,8,9,6,8,5,6,6,5,8,3,7,5,9 -A,3,8,5,5,2,9,6,3,1,8,0,8,2,7,1,8 -Q,4,3,5,5,4,8,8,6,2,5,7,10,3,9,6,9 -M,3,3,4,1,2,8,6,6,4,6,7,8,6,5,2,7 -U,5,5,6,3,3,4,8,5,8,10,9,9,3,9,2,6 -T,6,9,6,6,5,6,11,4,6,11,9,5,3,12,2,4 -J,2,8,3,6,1,13,2,8,4,13,4,12,1,6,0,8 -M,4,7,6,5,5,9,7,2,4,9,6,7,7,5,2,7 -O,4,11,5,8,3,8,8,9,7,7,8,8,3,8,4,8 -U,5,9,6,7,6,8,6,8,5,7,6,9,3,8,4,6 -E,7,10,9,8,8,7,4,6,4,7,6,9,5,9,9,8 -N,4,5,6,5,5,7,8,5,4,7,5,7,6,9,5,3 -L,3,7,4,5,2,6,4,1,9,8,2,11,0,7,2,8 -Y,4,9,6,7,3,8,10,1,8,5,12,8,1,11,2,8 -Z,5,9,7,7,5,9,6,2,9,11,4,9,3,7,7,9 -W,9,11,9,6,5,5,8,2,4,7,9,7,10,10,2,5 -K,2,3,4,1,1,4,9,2,6,10,9,10,3,8,2,7 -Q,1,0,1,0,0,8,7,6,3,6,6,8,2,8,3,8 -C,2,3,3,4,1,5,8,6,8,7,7,12,1,7,4,9 -R,2,3,2,2,2,6,8,4,4,7,5,7,2,7,3,8 -T,3,4,3,3,1,5,11,3,7,11,9,5,1,11,2,5 -Y,3,5,4,4,2,4,11,2,7,11,10,6,1,11,2,5 -Z,3,5,5,4,2,8,7,2,10,12,5,9,1,8,6,9 -Z,3,4,4,6,2,7,7,4,14,9,6,8,0,8,8,8 -M,4,3,4,4,2,7,7,12,1,7,9,8,8,6,0,8 -I,1,3,2,2,1,7,8,1,7,13,6,8,0,8,1,7 -O,4,10,5,8,5,8,8,8,5,6,8,9,3,8,3,7 -E,2,1,3,2,2,7,7,5,7,7,6,8,2,8,5,10 -Y,5,9,5,4,3,6,6,5,4,9,10,6,3,9,2,5 -E,2,3,4,2,2,7,7,1,8,11,6,9,1,8,4,8 -Q,7,10,6,5,3,10,4,4,7,12,3,11,3,7,7,11 -R,2,2,3,4,3,7,7,5,6,7,6,7,3,7,5,8 -T,7,10,7,8,5,5,11,3,6,11,10,5,2,12,2,4 -E,4,9,6,7,6,7,7,5,8,7,7,9,3,8,5,9 -V,2,0,3,1,0,7,9,4,2,7,13,8,2,10,0,8 -U,3,4,4,3,2,4,8,5,6,11,10,9,3,9,1,7 -T,4,7,5,5,4,7,7,7,6,6,7,9,3,10,6,7 -G,3,6,5,5,5,7,8,5,2,7,7,8,6,11,7,7 -D,3,7,4,5,2,5,7,10,8,7,6,5,3,8,4,8 -W,4,4,5,3,2,4,10,3,2,9,9,7,6,11,1,7 -N,5,5,5,8,3,7,7,15,2,4,6,8,6,8,0,8 -M,4,4,7,3,4,7,5,3,4,10,8,9,7,5,2,8 -R,5,7,7,5,4,8,9,4,6,8,4,8,3,6,5,11 -Y,4,10,7,8,3,4,10,2,8,10,12,9,1,10,2,7 -T,5,7,5,5,3,7,11,3,8,11,9,4,2,12,3,5 -M,8,12,10,7,5,9,4,3,2,10,2,9,10,1,1,8 -R,4,9,4,6,4,6,10,8,3,7,4,8,2,7,5,11 -Y,3,7,4,5,4,9,8,6,4,5,9,7,2,8,7,5 -J,3,6,5,4,1,7,8,2,8,15,6,8,0,7,0,7 -T,2,3,3,2,1,5,12,3,6,11,9,5,1,10,1,5 -P,2,2,3,4,2,5,10,4,4,10,8,4,1,10,3,7 -D,5,5,6,5,5,7,7,4,6,7,4,8,4,7,5,6 -K,4,10,6,8,6,5,7,4,7,6,6,11,3,8,6,9 -V,5,10,7,8,4,9,9,4,2,5,13,8,4,9,1,7 -V,5,10,5,8,3,3,11,5,4,12,12,8,2,10,1,8 -V,5,9,5,6,3,2,11,4,4,11,12,8,2,10,1,7 -P,5,11,6,8,3,4,12,9,2,10,6,4,1,10,4,8 -X,4,7,6,5,3,6,8,1,8,10,8,9,3,8,3,7 -B,7,12,6,6,6,8,8,4,5,9,6,7,6,7,8,7 -C,3,5,5,3,2,4,8,5,7,11,10,12,1,9,2,7 -P,5,8,7,6,5,8,9,5,4,11,4,4,2,10,3,8 -M,7,9,10,7,7,3,7,4,5,10,11,11,10,6,4,7 -S,5,9,7,6,8,7,8,5,3,8,5,8,4,8,10,7 -H,5,11,6,8,3,7,7,15,1,7,7,8,3,8,0,8 -J,2,7,3,5,1,12,2,9,4,13,5,13,1,6,0,8 -N,4,7,5,5,4,8,8,13,1,6,6,7,6,8,1,10 -S,4,8,6,6,4,9,7,3,6,10,5,8,2,9,5,9 -B,4,9,4,7,6,6,8,8,5,7,5,7,2,8,7,10 -R,5,7,6,5,6,8,9,7,3,8,4,6,5,7,7,9 -T,3,5,4,7,1,7,14,0,6,7,11,8,0,8,0,8 -J,2,7,3,5,3,9,7,1,5,10,4,7,0,7,1,6 -I,2,11,2,8,2,8,7,0,8,7,6,7,0,8,3,7 -A,2,4,4,3,2,8,2,2,2,7,2,8,2,6,2,7 -E,4,8,5,6,4,6,8,2,8,11,7,9,2,8,5,7 -S,9,15,8,9,4,11,2,4,5,11,2,10,3,6,5,12 -Y,3,7,4,5,4,9,5,6,5,7,8,8,3,9,7,4 -T,3,9,4,6,2,9,13,0,6,6,10,8,0,8,0,8 -S,1,0,2,0,0,8,8,4,6,5,6,7,0,8,7,8 -V,2,3,4,4,1,8,8,4,2,6,13,8,3,10,0,8 -E,3,5,6,3,3,7,6,2,8,11,6,10,2,8,4,9 -H,3,5,5,6,4,11,5,3,2,8,4,9,4,8,5,11 -O,2,1,3,2,1,7,7,7,6,7,6,8,2,8,3,8 -V,5,6,7,6,7,7,8,6,5,7,6,7,6,9,7,10 -T,3,4,4,3,2,6,10,2,8,11,9,5,1,10,3,4 -Z,6,6,5,9,4,7,8,4,2,11,7,7,3,9,10,6 -C,3,4,4,3,1,5,9,5,7,12,9,11,1,10,3,7 -O,5,10,6,8,5,7,8,8,5,10,8,8,3,8,3,8 -V,2,6,4,4,1,8,8,4,2,6,13,8,3,10,0,8 -P,6,11,8,8,5,7,11,6,4,12,5,2,1,11,4,9 -U,6,11,6,6,3,6,5,4,5,6,8,8,5,7,2,8 -Y,2,3,2,2,1,4,11,2,6,11,10,5,1,10,1,5 -R,4,10,5,7,3,5,10,9,4,7,4,8,3,7,6,11 -V,5,7,7,6,7,8,6,5,5,7,6,8,7,10,6,7 -S,2,7,3,5,2,8,7,7,7,7,7,8,2,9,9,8 -N,7,9,8,4,3,9,6,4,4,13,2,7,6,8,0,7 -B,2,5,4,4,3,8,8,3,5,10,6,6,3,7,5,9 -F,2,3,4,2,2,7,9,2,6,13,6,5,2,9,2,7 -T,3,2,4,3,2,7,12,2,7,7,11,8,1,11,1,7 -B,2,4,3,3,2,8,7,3,5,9,6,6,2,8,5,9 -K,5,8,8,7,7,7,7,2,4,7,3,8,6,4,8,11 -F,6,11,5,6,3,7,9,2,6,11,6,5,2,10,5,6 -T,3,9,5,6,3,7,12,2,8,7,12,8,1,11,1,8 -P,3,5,6,4,3,7,10,4,4,12,4,3,1,10,3,8 -T,5,11,7,8,6,7,11,2,7,7,11,8,2,12,1,8 -O,2,1,2,2,1,8,7,7,4,7,6,8,2,8,3,8 -F,3,5,3,4,2,5,10,4,5,10,9,5,1,10,3,7 -R,3,7,3,5,3,6,10,8,4,7,3,9,2,6,4,10 -J,2,9,4,6,4,10,7,3,3,9,3,6,2,7,7,7 -W,9,13,9,7,5,5,9,2,2,7,10,8,10,12,1,6 -X,4,8,7,6,3,7,7,1,8,10,7,9,3,8,3,7 -T,3,7,4,5,2,6,14,1,5,8,10,7,0,8,0,8 -F,3,11,4,8,3,1,13,4,4,12,10,7,0,8,2,6 -N,8,15,7,8,4,7,9,4,7,4,4,9,5,8,2,8 -C,3,6,4,4,2,4,9,6,7,12,9,10,2,10,3,7 -Z,3,8,4,6,2,7,7,4,14,9,6,8,0,8,8,8 -B,4,8,5,6,4,6,6,8,7,6,6,7,2,8,9,10 -P,6,9,9,7,6,6,13,7,2,12,5,2,1,11,4,8 -R,4,8,6,6,4,8,7,6,6,9,5,7,3,8,5,11 -F,2,4,4,3,2,7,9,2,6,13,6,6,1,9,2,8 -K,6,11,6,8,3,4,9,9,2,7,3,11,4,8,2,11 -O,4,8,5,6,3,7,6,8,5,7,5,8,3,8,3,8 -V,6,10,6,7,4,4,12,1,2,8,10,7,6,12,2,7 -E,4,7,6,5,4,7,8,2,7,11,6,9,3,8,4,9 -D,5,11,6,8,5,9,7,5,7,10,4,5,3,8,3,8 -L,9,15,8,8,4,9,2,4,5,12,4,13,2,7,6,8 -R,4,8,6,6,5,6,8,5,6,6,5,7,3,7,5,8 -W,5,7,5,5,5,5,9,3,3,9,7,7,6,11,3,6 -B,2,3,4,2,2,9,7,2,5,10,5,6,2,8,4,9 -C,6,12,4,6,2,5,10,5,8,11,8,9,2,8,5,8 -L,4,10,4,8,1,0,0,6,6,0,0,5,0,8,0,8 -P,3,5,4,4,3,5,10,4,4,10,8,4,1,10,3,7 -V,5,10,7,9,8,7,7,6,4,7,6,8,7,10,8,11 -Y,4,4,6,6,1,7,10,3,2,7,13,8,2,11,0,8 -S,1,1,2,1,0,8,7,4,7,5,6,7,0,8,7,8 -L,6,14,6,8,4,8,4,3,4,12,8,11,4,9,6,10 -B,6,10,9,7,7,8,7,5,6,9,5,6,3,7,7,10 -R,6,11,6,6,5,7,8,3,6,8,3,8,6,6,6,7 -Z,2,2,3,3,2,7,7,5,9,6,6,8,1,8,7,8 -C,4,9,5,7,4,6,8,6,8,7,6,13,1,8,4,9 -Z,8,14,8,8,5,7,7,2,9,11,7,9,4,7,7,5 -M,7,11,10,8,13,11,5,3,3,9,4,8,11,8,4,8 -H,5,7,7,5,4,5,8,4,6,10,9,9,3,8,3,7 -T,5,10,7,8,6,6,7,7,7,8,9,8,4,9,7,7 -T,8,14,7,8,4,5,11,2,7,12,8,6,3,8,5,3 -G,2,4,3,3,2,6,7,5,5,9,7,10,2,9,4,9 -O,1,0,2,1,0,8,7,7,4,7,6,8,2,8,3,8 -H,3,4,6,3,3,7,7,3,6,10,6,8,3,8,3,7 -P,3,5,4,8,7,8,7,5,1,7,6,7,6,9,5,9 -K,7,9,9,7,7,6,7,1,7,9,6,10,4,8,4,8 -Q,6,8,6,9,6,8,7,7,4,8,7,10,3,8,6,8 -X,4,6,5,5,5,7,9,2,6,8,6,8,3,6,6,7 -Z,4,6,6,9,4,12,3,3,6,10,2,8,1,7,5,11 -L,4,8,5,6,2,3,1,7,9,0,1,3,0,7,1,5 -X,9,13,10,7,5,7,7,2,9,11,5,8,4,7,4,7 -Q,6,11,6,6,4,11,3,4,5,12,3,9,3,9,7,12 -W,4,5,6,3,4,6,11,2,2,7,9,8,8,11,1,8 -J,3,6,4,4,2,6,8,2,5,14,7,9,1,6,0,7 -A,2,3,3,1,1,8,2,2,1,7,2,8,2,7,2,7 -P,1,0,2,0,0,5,11,7,1,9,6,4,1,9,3,8 -M,2,3,4,1,2,5,6,3,4,10,10,10,4,7,1,7 -T,4,11,6,8,2,8,15,1,6,7,11,8,0,8,0,8 -F,3,2,4,3,2,6,10,4,5,10,9,4,2,10,3,6 -Y,9,15,8,8,5,5,7,4,3,9,9,6,4,9,4,4 -J,2,6,2,4,1,13,2,8,4,13,4,12,0,7,0,8 -P,4,8,6,6,4,9,7,2,5,13,4,5,1,10,3,10 -D,5,5,5,7,3,6,7,10,10,7,7,6,3,8,4,8 -M,5,7,7,6,8,5,7,5,4,6,5,8,11,7,5,9 -F,3,4,5,3,2,6,10,3,6,13,7,5,1,10,2,7 -W,3,1,5,3,3,7,11,3,2,6,9,8,7,11,0,8 -U,3,3,4,2,2,6,8,5,7,6,9,9,3,10,1,7 -J,4,8,6,6,2,9,6,2,8,15,4,8,0,7,0,8 -P,5,5,7,7,8,8,7,4,2,7,8,7,7,12,5,7 -Z,5,10,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -C,5,9,6,7,7,5,6,3,4,7,6,11,6,9,3,8 -E,3,2,4,3,3,7,7,5,8,7,5,8,2,8,6,9 -K,4,7,5,5,4,6,6,1,6,10,7,10,3,8,3,8 -U,5,11,7,8,5,4,9,6,7,9,11,10,3,9,1,8 -B,7,11,7,6,5,9,7,3,5,10,5,7,6,7,7,8 -X,3,4,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -Z,4,11,4,9,4,6,8,6,10,7,7,9,2,9,8,8 -O,2,3,3,2,1,7,7,7,4,7,6,8,2,8,2,8 -X,5,5,6,7,2,7,7,5,4,7,6,8,3,8,4,8 -R,5,10,6,8,7,8,5,7,3,8,6,8,6,5,6,10 -Y,2,3,4,4,1,8,10,2,2,6,13,8,2,11,0,8 -I,3,10,4,8,3,7,9,0,7,13,6,7,0,9,2,7 -V,5,11,7,8,9,8,5,5,2,8,7,8,6,8,5,8 -J,5,11,7,8,8,9,7,4,4,8,4,6,4,7,6,4 -C,5,10,5,7,3,3,8,5,7,11,10,13,1,9,3,8 -N,3,5,4,7,3,7,7,14,2,5,6,8,6,8,0,8 -P,3,8,4,5,2,5,10,10,4,8,6,5,2,10,4,8 -O,2,5,3,3,2,7,7,8,4,7,6,8,2,8,3,8 -O,3,7,4,5,3,7,8,7,4,8,7,10,3,8,3,9 -A,2,6,4,4,2,11,3,3,2,10,1,9,2,6,2,8 -R,3,6,4,4,4,7,8,4,6,6,5,7,3,7,5,8 -W,4,2,6,4,4,8,11,2,2,6,9,8,9,13,1,7 -D,4,6,5,4,3,8,8,7,8,9,5,3,3,8,4,6 -T,3,8,4,6,2,8,14,0,5,6,10,8,0,8,0,8 -N,1,0,2,1,1,7,7,11,1,5,6,8,4,8,0,8 -H,4,8,6,10,7,9,10,3,1,8,7,6,3,10,8,7 -D,3,7,5,5,4,8,7,3,5,10,5,6,3,8,3,8 -R,5,9,7,7,6,10,6,3,5,10,3,7,4,6,4,10 -B,7,10,6,6,4,8,5,4,5,10,6,9,5,7,7,10 -A,5,8,8,7,7,7,7,2,5,7,9,10,5,11,3,7 -A,2,1,3,1,1,7,4,2,0,7,1,8,3,6,1,8 -T,4,10,5,8,4,5,12,4,7,9,12,7,2,12,1,7 -O,9,13,6,7,4,5,8,6,4,10,8,9,5,10,5,8 -J,5,8,6,6,3,8,8,1,6,14,5,7,1,6,1,8 -Y,4,4,6,6,6,9,10,5,4,6,7,7,5,10,7,5 -L,6,15,6,8,4,7,5,3,5,11,7,11,3,8,6,9 -Q,4,6,5,7,5,8,5,7,3,6,5,9,3,8,5,9 -B,5,7,7,5,6,7,9,4,6,10,6,6,3,7,6,8 -R,5,8,7,7,7,7,8,3,3,7,5,7,6,8,6,6 -E,4,8,4,6,2,3,6,6,11,7,7,15,0,8,7,7 -M,7,10,10,8,6,10,5,2,5,9,4,7,8,6,2,9 -Q,4,9,5,10,5,7,7,6,3,8,9,10,3,8,7,9 -U,4,5,4,8,2,7,4,15,6,7,12,8,3,9,0,8 -E,6,9,8,8,8,7,9,5,6,6,8,11,8,9,9,8 -N,4,6,6,4,5,4,10,2,4,8,7,9,6,7,4,5 -G,5,8,6,6,3,7,7,7,8,10,6,11,2,10,4,9 -D,2,4,4,3,2,9,7,4,6,10,4,6,2,8,3,8 -U,8,9,9,7,4,3,8,6,8,10,11,10,3,9,2,5 -A,5,11,9,8,7,10,5,1,5,9,1,5,3,7,4,8 -P,4,10,5,8,5,4,10,4,5,11,9,5,1,10,3,7 -L,5,11,6,8,5,3,4,3,8,2,0,8,0,7,1,5 -P,4,11,5,8,3,4,12,9,2,10,6,4,1,10,4,8 -L,2,2,3,4,2,4,4,5,7,2,2,5,1,6,1,6 -B,3,6,5,4,4,7,8,4,5,9,6,5,2,8,6,6 -E,3,4,4,6,2,3,8,6,10,7,6,14,0,8,7,7 -C,3,8,4,6,3,6,8,6,5,9,8,14,1,9,3,11 -H,4,5,6,3,3,8,8,3,6,10,6,8,3,8,3,8 -L,3,7,3,5,1,0,1,6,6,0,1,6,0,8,0,8 -T,5,7,7,6,6,5,8,3,8,7,7,9,3,7,7,5 -O,2,2,3,3,2,7,7,7,4,7,6,8,2,8,3,8 -D,7,11,6,6,5,8,8,4,7,10,5,6,6,6,7,6 -K,4,6,6,4,4,3,8,2,6,10,10,11,3,8,3,6 -B,3,2,4,3,3,7,7,5,6,6,6,6,2,8,7,10 -F,2,1,2,2,1,5,11,3,5,11,9,5,1,10,3,6 -Y,7,8,6,11,5,7,6,5,5,6,11,6,4,11,3,7 -R,8,10,6,6,4,6,8,5,5,9,6,9,7,5,7,11 -Y,7,9,7,7,4,3,10,2,7,11,11,6,1,11,2,5 -K,5,9,7,7,7,6,6,3,7,6,6,9,7,8,5,9 -M,3,3,5,2,3,8,6,6,4,7,7,8,7,5,2,7 -Y,3,8,5,5,1,7,10,3,2,7,13,8,2,11,0,8 -G,3,5,4,7,2,7,7,8,7,5,6,10,2,7,5,11 -K,5,4,5,6,2,4,8,9,1,7,6,11,3,8,3,11 -J,1,3,2,2,1,8,5,4,4,13,7,12,1,7,0,8 -X,4,11,6,8,4,7,7,4,9,6,6,8,3,8,7,7 -W,6,10,6,8,6,1,10,2,3,10,10,9,6,10,1,7 -A,4,9,6,6,2,8,4,3,1,7,1,8,3,7,2,8 -V,9,15,8,8,4,5,10,4,4,9,9,6,4,11,2,8 -H,3,1,4,2,3,7,7,6,6,7,6,8,3,8,4,8 -I,7,14,6,8,4,8,9,3,7,14,4,5,2,8,5,9 -B,3,5,5,4,4,8,8,3,6,10,5,5,3,7,6,9 -D,4,8,6,6,4,8,8,6,7,9,5,4,3,7,4,9 -M,6,11,9,9,10,9,7,5,5,6,7,6,10,9,3,6 -G,3,5,4,4,2,6,7,6,7,7,5,10,2,9,4,9 -H,2,1,3,2,2,8,7,6,5,7,6,8,3,8,3,8 -D,2,3,3,2,2,9,6,4,6,10,5,6,2,8,2,8 -G,3,4,5,7,2,8,7,9,7,5,6,10,2,7,5,10 -M,3,8,4,6,3,7,7,11,1,7,9,8,8,5,0,8 -G,6,11,8,9,9,9,7,5,2,6,6,10,8,8,5,10 -A,2,8,4,6,3,11,3,3,3,10,2,9,2,6,3,8 -O,5,9,6,6,3,7,7,8,8,7,6,8,3,8,4,8 -Y,3,5,4,6,5,8,10,6,4,7,7,6,4,10,6,3 -D,2,5,3,3,3,7,7,6,6,7,6,5,2,8,2,7 -J,6,11,5,8,4,5,13,3,3,13,6,4,2,8,6,6 -C,2,5,3,4,2,6,8,7,7,9,8,13,1,9,4,10 -M,4,10,5,8,6,7,5,11,1,7,9,8,9,5,2,8 -T,3,4,5,6,1,7,15,1,6,7,11,8,0,8,0,8 -L,5,11,7,8,4,7,3,2,8,7,2,8,1,6,3,7 -J,1,6,2,4,1,10,6,1,7,11,3,7,0,7,1,7 -D,4,9,5,6,8,8,10,5,4,8,6,5,6,10,9,6 -Z,5,7,7,5,6,9,5,5,4,7,5,7,3,7,10,5 -R,4,6,5,4,5,8,7,6,3,8,5,7,4,7,7,10 -V,5,10,5,7,4,4,11,1,2,8,10,7,3,10,1,8 -H,5,8,7,6,7,8,7,6,7,7,6,7,3,8,4,7 -K,9,14,9,8,6,3,8,4,6,10,11,12,5,8,4,6 -O,6,11,9,8,11,8,6,6,1,7,6,8,11,8,6,8 -M,7,9,9,7,7,6,6,3,5,10,9,9,10,7,3,8 -R,4,4,5,6,3,5,13,8,4,8,3,9,3,7,7,11 -X,5,10,6,8,4,7,7,4,4,7,6,7,3,8,4,8 -O,9,15,6,9,5,4,8,6,4,10,8,9,5,10,5,8 -L,5,7,6,5,4,6,6,7,7,5,6,10,2,8,4,10 -Z,4,7,6,5,4,9,6,2,8,11,4,10,2,7,6,10 -F,4,7,6,5,4,5,11,3,5,13,7,5,1,10,2,7 -Q,5,5,7,4,5,8,5,5,4,7,4,10,5,6,6,8 -C,8,12,6,6,5,7,7,4,4,9,8,10,4,9,8,10 -G,3,7,4,5,3,6,5,5,6,6,6,9,2,9,3,7 -V,4,5,6,3,2,4,12,3,3,10,11,7,2,10,1,8 -I,6,9,8,7,4,6,7,2,7,7,6,11,0,8,4,8 -C,4,5,6,8,2,6,8,7,10,5,7,13,1,7,4,9 -D,4,8,5,6,4,7,6,7,8,6,5,5,3,8,3,7 -X,5,11,6,8,2,7,7,5,4,7,6,8,3,8,4,8 -E,5,11,5,8,3,3,7,6,11,7,6,14,0,8,8,7 -E,1,1,2,2,1,4,7,5,8,7,6,13,0,8,7,9 -S,4,10,5,7,5,8,9,8,6,7,4,6,2,6,9,8 -V,5,9,7,7,3,9,12,3,4,4,11,9,3,10,1,8 -D,2,6,4,4,3,9,6,4,6,10,4,6,3,8,3,8 -L,4,10,4,8,1,0,1,5,6,0,0,6,0,8,0,8 -D,3,8,5,6,7,9,8,4,5,7,6,6,5,6,8,6 -U,3,5,5,5,4,8,7,4,4,6,7,7,4,8,1,6 -I,2,6,3,4,1,7,7,0,7,13,6,8,0,8,1,8 -V,6,7,8,6,9,8,6,5,5,7,6,8,8,10,7,4 -F,8,14,7,8,5,10,6,3,5,10,4,6,4,8,7,10 -M,5,7,8,5,7,8,7,2,4,9,6,7,7,5,2,7 -I,4,10,6,8,4,7,7,0,8,13,6,8,0,8,1,8 -W,4,5,5,4,3,4,10,3,2,9,9,7,6,11,1,6 -I,4,5,5,6,5,7,10,4,5,8,7,8,4,7,6,6 -H,8,10,8,5,5,8,7,3,5,10,5,7,6,9,4,8 -A,4,10,6,7,2,7,5,3,1,7,0,8,3,7,2,8 -N,6,8,9,7,9,6,7,4,4,6,5,8,8,9,5,8 -P,6,9,9,7,4,7,10,2,7,14,5,3,3,8,4,8 -V,4,5,6,8,2,7,8,4,3,7,14,8,3,9,0,8 -R,7,9,10,8,11,7,7,4,4,7,5,8,7,8,6,6 -R,4,8,5,6,5,8,8,7,5,8,5,7,7,8,6,11 -I,4,11,6,8,3,7,7,0,8,14,6,8,0,8,1,8 -E,3,5,5,4,3,8,7,2,7,11,5,8,2,9,5,10 -F,5,9,5,6,2,1,12,5,6,12,11,9,0,8,2,6 -G,4,5,5,4,3,6,7,5,5,9,8,9,2,8,5,9 -O,5,9,6,7,5,8,6,8,6,7,5,8,3,8,4,7 -A,4,8,6,6,6,8,8,7,4,6,6,8,3,7,7,4 -S,4,8,4,6,4,8,8,5,7,5,5,7,0,8,8,8 -J,2,5,3,8,1,12,3,10,3,13,6,13,1,6,0,8 -E,3,2,3,3,3,7,7,5,7,7,6,9,2,8,5,10 -Q,6,14,5,8,5,9,6,4,6,11,5,7,4,8,9,10 -F,3,8,4,6,3,3,12,4,5,12,10,5,1,10,3,5 -X,4,8,6,6,4,8,7,1,8,10,4,7,3,8,3,8 -X,3,3,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -G,5,9,4,4,3,7,8,3,3,8,6,6,3,9,8,7 -U,3,5,4,3,2,6,8,6,7,7,10,9,3,9,0,8 -Z,2,7,4,5,3,8,7,2,6,7,6,7,0,9,8,8 -U,6,8,7,6,3,3,9,6,7,11,11,9,3,9,1,6 -Q,4,7,5,8,5,8,6,7,5,9,6,9,3,8,5,7 -V,3,5,5,4,2,4,12,3,3,9,11,7,2,10,1,8 -K,3,4,4,3,2,5,7,4,7,7,6,11,3,8,5,9 -U,5,9,7,6,9,7,6,4,4,7,7,8,10,8,6,6 -C,6,10,6,8,4,5,8,6,8,12,9,13,2,9,4,7 -N,4,7,4,5,3,8,7,12,1,6,6,8,5,8,0,9 -H,4,4,6,3,3,7,6,3,6,10,5,9,4,6,4,7 -Y,6,10,6,5,3,6,8,4,3,10,8,5,3,10,4,4 -G,2,1,4,2,2,7,7,6,6,6,6,10,2,9,4,9 -T,4,6,6,6,5,5,8,4,8,8,8,9,3,9,7,6 -B,5,9,8,7,7,9,7,3,7,11,4,7,3,7,5,9 -B,3,5,6,4,4,9,6,3,6,10,5,7,2,8,5,9 -V,5,9,5,7,4,3,11,2,3,9,11,8,3,12,1,7 -Z,4,8,5,6,2,7,7,4,14,9,6,8,0,8,8,8 -X,3,9,5,6,4,7,7,3,8,5,6,8,2,8,6,7 -S,7,11,8,8,6,6,7,3,6,10,7,8,3,7,5,6 -V,7,9,6,7,3,4,11,3,4,9,11,7,3,10,1,7 -R,5,9,6,6,7,8,8,7,3,8,4,6,5,7,8,9 -U,2,1,3,2,1,6,8,6,6,6,9,9,3,9,0,8 -J,4,8,3,12,3,9,7,3,3,11,5,5,3,8,6,10 -Q,5,9,6,11,6,8,6,7,4,9,7,10,3,8,6,8 -V,11,14,8,8,4,9,10,6,5,6,10,6,6,13,3,6 -S,4,6,5,4,3,8,7,3,6,10,6,8,2,9,5,8 -S,3,8,4,6,2,7,7,6,9,5,7,10,0,8,9,8 -C,6,11,5,6,3,7,8,4,3,8,8,10,4,8,7,11 -Q,4,6,6,8,8,9,9,5,0,6,7,10,6,12,5,10 -H,1,0,1,0,0,7,7,10,2,7,6,8,2,8,0,8 -M,5,11,7,8,9,8,9,7,4,7,7,8,8,8,9,5 -V,3,7,4,5,2,8,9,3,1,7,12,8,2,10,0,8 -S,5,11,6,8,5,7,8,3,7,10,4,6,2,6,5,8 -E,4,10,4,8,4,3,8,5,9,7,6,14,0,8,6,8 -G,5,11,5,8,4,5,6,7,6,7,7,11,3,7,5,8 -T,2,1,3,2,0,7,15,1,4,7,11,8,0,8,0,8 -F,4,9,4,6,2,1,14,5,3,12,9,5,0,8,2,6 -J,5,11,7,8,4,8,6,3,6,15,4,9,0,7,0,7 -P,4,9,5,6,4,5,11,8,2,9,5,4,1,10,3,7 -D,3,7,5,5,3,10,6,4,7,10,3,6,3,8,3,9 -L,3,3,4,5,1,1,0,6,6,0,1,5,0,8,0,8 -G,5,10,6,7,5,6,6,6,6,10,7,13,3,9,5,9 -Q,2,2,3,3,2,8,7,6,3,6,6,9,2,9,3,10 -L,5,10,5,8,3,0,1,5,6,0,0,7,0,8,0,8 -T,6,9,6,7,3,4,14,5,6,12,9,3,1,11,2,4 -F,1,3,3,1,1,6,10,3,4,13,7,5,1,9,1,7 -N,5,7,7,5,4,4,10,3,4,10,10,9,5,8,1,8 -X,2,3,4,2,2,8,7,1,7,10,5,8,2,8,2,8 -I,0,3,0,2,0,7,7,1,7,7,6,8,0,8,2,8 -C,4,9,3,4,2,6,8,4,3,9,8,10,3,9,8,9 -L,4,10,6,7,4,8,4,0,8,10,3,10,0,7,3,9 -A,3,7,6,5,3,11,2,3,2,10,2,9,2,6,3,9 -T,2,8,3,5,1,8,13,0,6,6,11,8,0,8,0,8 -N,4,7,6,5,4,5,9,3,4,10,9,8,5,8,1,8 -V,3,1,5,3,1,7,12,2,3,7,11,9,2,10,1,8 -L,2,3,2,2,1,4,3,4,8,2,2,5,0,7,1,6 -H,5,9,8,7,7,5,9,3,6,10,9,9,3,9,4,6 -X,8,12,9,6,5,8,7,2,7,11,4,7,5,10,4,8 -S,4,8,5,6,5,8,6,7,5,6,8,9,3,9,9,8 -Z,3,7,4,5,3,6,8,5,9,7,7,9,1,9,7,7 -Y,5,8,7,11,11,8,8,4,2,7,8,9,4,11,8,8 -Y,2,2,3,3,1,7,10,1,6,7,11,9,1,11,1,8 -K,6,11,9,8,7,7,7,4,7,6,5,8,7,8,5,9 -E,3,3,3,4,2,3,7,6,10,7,6,14,0,8,7,7 -F,3,5,5,3,2,6,12,3,5,13,7,4,1,10,2,6 -K,5,9,7,7,9,8,7,3,4,6,7,8,10,8,8,7 -H,3,7,3,4,2,7,9,14,3,7,3,8,3,8,0,8 -O,3,6,5,4,3,8,8,8,4,7,6,7,3,8,3,8 -R,5,10,8,8,9,6,7,3,4,7,6,9,8,10,8,5 -C,2,5,3,3,2,6,8,7,7,8,8,13,1,9,4,10 -H,7,10,10,8,6,8,7,3,7,10,5,8,3,8,3,8 -X,6,9,8,8,9,6,8,2,5,7,7,10,4,5,8,7 -E,4,10,5,8,7,8,7,3,5,6,7,10,4,9,8,8 -A,3,6,5,8,2,7,5,3,1,7,0,8,3,7,2,8 -Z,3,5,5,4,3,7,8,2,9,12,6,8,1,9,5,7 -Y,5,7,6,5,3,4,9,1,8,10,10,6,1,10,3,4 -A,2,1,4,2,1,7,2,2,1,6,2,8,2,7,2,7 -A,3,9,6,6,4,11,3,1,2,8,2,9,2,6,2,7 -J,2,7,4,5,2,7,8,2,5,14,5,7,0,6,1,7 -C,4,5,5,3,2,4,8,4,8,11,9,12,1,9,3,7 -Q,6,8,6,9,6,7,7,7,4,9,9,9,4,8,7,9 -F,5,8,7,6,4,8,9,3,6,13,5,5,2,9,2,7 -U,5,10,6,8,4,3,9,5,7,11,10,9,3,9,2,7 -S,5,11,6,8,6,8,8,7,5,7,5,7,2,8,9,8 -E,3,9,4,6,4,3,8,5,9,7,7,14,0,8,6,9 -I,1,3,1,1,1,7,7,2,7,7,6,8,0,8,2,8 -E,4,9,6,7,5,7,7,2,7,11,7,9,3,8,4,8 -F,3,5,4,4,3,5,10,3,5,10,9,5,1,10,3,6 -U,3,2,4,4,2,6,8,6,6,7,9,9,3,9,1,8 -O,2,2,3,3,2,7,7,7,4,7,6,8,2,8,3,8 -H,10,12,9,7,5,7,7,5,5,8,9,8,7,11,5,9 -X,2,1,3,2,2,7,7,3,9,6,6,8,2,8,5,8 -Q,3,5,4,6,4,8,7,5,2,8,7,10,3,9,5,8 -L,4,9,5,7,3,3,4,3,9,2,0,7,0,7,1,5 -N,5,9,7,6,4,6,9,6,5,8,7,8,5,8,1,7 -S,4,10,5,8,5,8,9,8,6,7,4,5,2,6,8,8 -T,4,8,5,6,3,7,11,3,8,11,9,4,2,11,3,5 -E,5,9,8,7,8,6,7,3,7,5,6,11,4,10,11,8 -T,2,7,4,5,2,6,12,3,7,8,11,7,1,11,1,7 -J,2,7,2,5,1,12,2,9,4,13,5,12,1,6,0,8 -L,1,3,2,1,0,6,4,1,7,8,2,10,0,7,2,9 -X,5,10,6,7,2,7,7,5,4,7,6,8,3,8,4,8 -O,4,6,5,5,4,8,5,4,4,9,4,10,3,7,5,7 -P,3,5,5,7,6,8,11,3,1,8,8,6,6,10,4,6 -U,4,9,5,7,2,7,5,15,5,7,13,8,3,9,0,8 -U,7,11,9,8,8,7,6,9,6,7,6,9,6,8,7,2 -N,4,6,6,4,3,7,8,3,5,10,6,7,5,8,1,7 -Y,9,12,8,6,5,7,5,4,5,9,9,5,4,10,4,5 -M,4,2,5,4,4,8,6,6,4,6,7,8,8,6,2,7 -P,3,10,4,8,4,4,12,7,2,10,7,4,1,10,3,8 -A,2,3,4,2,1,6,2,2,2,5,2,8,2,6,2,6 -K,3,7,5,5,6,8,6,3,4,6,6,8,6,8,6,8 -S,3,4,5,3,2,9,6,3,8,11,4,7,1,9,4,9 -G,4,7,5,5,2,8,6,7,7,6,6,9,2,8,6,11 -B,4,10,5,7,4,6,8,9,7,7,5,7,2,8,9,9 -U,4,4,5,6,2,7,4,14,5,7,14,8,3,9,0,8 -Q,4,9,6,7,6,8,5,7,4,6,6,8,3,7,5,9 -Z,5,6,4,9,3,6,9,5,3,12,7,7,2,9,10,6 -N,6,9,8,7,4,6,8,3,4,10,8,8,5,8,1,7 -R,5,5,6,8,4,6,9,10,5,6,5,8,3,8,6,11 -V,2,3,3,2,1,7,12,2,2,6,10,9,2,11,0,8 -M,5,9,5,6,6,7,5,11,0,7,8,8,7,5,1,9 -L,3,4,4,6,1,0,0,6,6,0,1,5,0,8,0,8 -N,4,5,4,3,3,7,8,5,5,7,7,6,6,9,3,6 -E,4,9,6,7,5,9,6,2,7,11,5,9,3,7,6,10 -J,4,6,5,4,2,8,6,4,7,15,6,10,1,6,1,7 -V,4,11,5,8,4,6,9,4,1,8,12,8,3,9,1,8 -A,2,7,4,4,1,8,5,3,1,7,0,8,2,7,2,8 -P,1,1,2,1,1,5,11,7,2,10,6,4,1,9,3,8 -Y,9,11,9,8,6,5,8,0,9,8,9,5,4,13,7,3 -L,4,5,5,4,2,4,4,5,8,2,2,5,1,6,1,5 -Q,7,8,7,10,7,8,5,7,5,9,6,9,3,8,6,7 -U,5,11,5,8,4,7,5,12,4,7,13,8,3,9,0,7 -D,4,9,5,7,3,5,7,10,9,6,5,5,3,8,4,8 -B,4,11,5,8,4,6,8,9,8,7,5,7,3,8,9,10 -N,3,6,3,4,3,8,7,11,1,6,6,8,5,9,0,6 -L,4,9,5,8,6,7,6,5,4,7,7,8,2,9,7,10 -U,5,9,5,6,2,8,4,14,6,7,14,8,3,9,0,8 -V,4,10,5,8,3,6,9,4,1,8,12,8,4,9,1,8 -P,6,11,9,8,7,9,8,2,5,13,5,5,3,9,4,9 -E,6,8,8,6,6,7,7,2,8,11,5,9,3,8,4,9 -A,4,8,5,6,3,7,5,2,0,7,1,8,2,7,1,8 -Y,7,9,7,6,3,4,10,2,8,10,11,5,2,13,4,3 -W,5,9,8,6,6,7,10,2,3,7,9,8,8,11,1,8 -K,8,13,8,7,4,9,7,3,7,9,3,6,5,8,4,8 -D,5,9,7,8,7,6,7,6,7,7,6,9,5,5,7,4 -P,0,0,1,0,0,5,10,6,1,9,6,5,1,9,2,8 -C,2,2,3,3,2,6,8,7,7,8,7,13,1,9,4,10 -Y,3,7,5,4,1,8,11,2,2,5,12,8,1,11,0,8 -J,2,5,3,3,1,9,6,3,6,12,4,9,1,6,1,7 -C,6,11,8,9,6,7,7,8,6,6,6,13,6,8,5,7 -Q,5,9,5,10,6,8,6,7,5,9,6,9,3,8,6,8 -D,3,5,5,4,3,9,6,4,7,9,4,6,2,8,3,8 -I,5,12,4,6,2,11,5,3,6,12,3,7,2,9,4,11 -G,4,7,5,5,3,5,8,5,5,9,9,8,2,8,4,9 -M,6,9,8,7,8,7,7,5,5,6,7,8,9,7,3,7 -A,4,9,6,6,2,8,3,3,3,7,2,8,3,6,3,8 -I,2,8,2,6,2,7,7,0,7,7,6,8,0,8,3,8 -G,6,7,8,6,7,7,8,5,3,7,7,8,9,10,9,7 -Q,4,7,5,9,5,9,7,7,3,5,7,10,3,8,7,10 -D,4,8,4,6,4,6,7,9,7,7,7,6,2,8,3,8 -D,3,8,5,6,7,10,8,4,5,7,6,6,4,7,7,4 -D,4,9,6,7,6,7,7,8,6,6,5,5,3,9,4,8 -T,3,3,3,2,1,6,11,2,7,11,9,5,1,10,2,5 -Z,2,5,5,3,2,7,8,2,9,12,6,8,1,9,5,8 -D,3,9,4,6,3,6,7,11,9,7,6,6,3,8,4,8 -M,6,10,9,8,7,10,6,2,5,9,4,7,8,6,2,8 -Z,2,1,3,2,2,7,7,5,8,6,6,9,2,8,7,8 -G,5,8,6,6,3,5,7,6,6,10,8,10,2,8,5,9 -D,3,2,4,3,2,7,7,6,7,6,6,5,2,8,3,7 -K,5,10,7,8,6,10,6,1,6,10,3,8,4,9,4,11 -Z,6,10,8,8,6,8,7,2,9,12,5,8,1,8,6,8 -C,6,10,6,8,4,4,7,6,6,13,10,12,2,11,3,7 -K,6,11,9,8,7,6,6,1,6,9,6,10,5,7,5,8 -O,4,9,5,6,4,8,6,7,3,10,4,8,3,8,3,7 -M,5,5,7,4,5,8,6,6,5,7,7,8,8,6,2,8 -R,4,5,4,6,3,5,11,8,4,7,3,9,3,7,6,11 -U,4,10,6,7,4,5,8,7,7,8,10,10,3,9,1,8 -Q,7,13,6,7,4,10,3,4,7,10,4,9,3,9,6,13 -O,4,9,6,7,4,8,6,9,3,6,5,7,3,8,4,9 -U,3,5,4,3,2,5,8,4,7,10,8,9,3,9,2,6 -H,3,7,5,5,4,6,7,6,4,6,5,8,3,7,6,11 -A,2,3,4,4,1,7,5,3,1,6,1,8,2,7,2,7 -W,5,10,7,8,4,11,8,5,2,6,9,8,8,10,0,8 -F,2,3,4,2,1,5,11,3,5,13,7,4,1,9,1,7 -U,5,5,6,3,2,4,8,5,8,10,10,9,3,9,2,5 -U,1,0,1,0,0,7,6,10,4,7,11,8,3,10,0,8 -J,5,9,6,7,3,7,7,3,6,15,6,10,1,6,1,7 -S,3,3,4,5,2,8,6,5,9,5,6,8,0,9,9,8 -W,2,0,3,1,1,7,8,4,0,7,8,8,7,9,0,8 -Q,2,2,3,2,2,8,8,5,2,8,7,9,2,9,3,8 -A,3,9,5,7,3,13,2,4,4,12,1,9,3,6,3,10 -U,6,7,7,5,4,3,8,5,7,10,9,10,3,9,2,5 -G,3,3,4,5,2,8,7,8,7,6,6,10,2,7,5,11 -Q,4,7,5,6,3,8,7,8,6,6,7,9,3,8,5,9 -B,6,11,8,8,8,9,7,3,6,9,4,6,3,8,5,9 -E,5,8,7,6,4,5,9,4,10,12,10,8,2,8,5,3 -E,5,7,7,5,4,6,7,4,9,12,8,9,2,8,5,7 -M,6,10,6,8,4,7,7,12,2,7,9,8,9,6,0,8 -E,4,9,4,7,2,3,7,6,11,7,7,15,0,8,7,7 -I,4,11,6,8,3,7,7,0,8,14,6,8,0,8,1,8 -D,2,4,4,3,2,9,7,4,6,10,4,6,2,8,3,8 -W,4,5,5,4,3,7,11,3,2,6,9,8,7,11,0,8 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -F,8,12,7,6,4,9,7,4,7,12,4,6,2,8,8,8 -T,4,5,6,4,5,8,9,5,7,7,7,8,3,10,7,7 -G,7,11,8,8,6,6,6,7,7,9,8,11,2,11,5,9 -H,7,11,8,6,5,6,9,3,5,10,6,8,6,7,5,7 -H,4,10,6,8,7,8,7,5,6,7,6,6,3,8,4,7 -F,5,6,6,7,6,6,12,3,5,9,7,6,4,9,5,6 -N,4,10,5,8,3,7,7,14,2,4,6,8,6,8,0,8 -C,4,7,4,5,2,5,9,6,7,12,9,9,2,10,2,7 -X,4,5,6,3,3,7,7,1,9,10,6,8,2,8,3,7 -P,3,7,4,5,3,5,11,5,4,11,8,4,1,10,4,7 -N,3,8,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -D,4,8,5,6,5,8,8,6,5,9,5,5,3,8,3,7 -U,6,11,8,8,8,9,7,8,5,6,7,9,6,8,4,6 -P,6,6,8,8,9,7,9,3,3,8,8,6,6,11,6,5 -B,0,0,1,0,0,6,7,6,4,7,6,8,1,8,5,10 -X,4,7,7,5,3,5,9,2,8,10,10,8,3,8,4,6 -T,3,5,4,7,1,10,14,1,6,4,11,9,0,8,0,8 -O,3,10,5,8,5,8,6,8,4,6,5,6,3,8,3,7 -Z,4,7,5,5,4,9,9,6,4,7,5,8,3,9,10,7 -T,1,1,2,1,0,7,14,1,5,7,11,8,0,8,0,8 -W,3,4,4,2,2,6,11,3,2,8,7,7,6,11,1,6 -T,7,9,6,4,2,4,12,3,7,13,8,4,2,8,3,4 -T,2,6,3,4,1,7,12,0,5,7,10,8,0,8,0,8 -A,5,11,5,6,4,9,4,5,3,10,6,12,7,4,6,10 -R,5,10,6,8,6,5,8,6,6,6,5,9,4,8,6,10 -R,1,0,1,0,0,6,9,7,3,7,5,8,2,7,3,10 -T,3,2,4,4,3,7,11,3,6,7,11,8,2,11,1,8 -L,1,0,2,1,0,2,1,6,5,0,2,5,0,8,0,8 -T,4,8,5,6,3,7,10,1,8,11,9,5,1,10,3,5 -Y,2,3,3,5,0,7,10,1,3,7,12,8,1,11,0,8 -T,5,11,5,8,3,5,11,2,8,12,10,4,1,11,2,4 -S,2,6,3,4,1,6,5,5,8,5,6,11,0,9,8,8 -N,6,8,8,6,4,9,9,3,5,10,3,5,5,9,1,7 -F,4,7,6,5,5,5,9,2,4,10,8,7,5,10,3,4 -M,3,1,4,3,3,8,6,6,4,7,7,8,7,6,2,7 -H,9,11,12,8,8,5,7,4,7,10,9,10,3,8,4,6 -D,6,9,6,5,3,9,5,4,5,12,3,8,5,7,5,10 -J,4,9,6,6,5,9,8,3,4,8,4,6,4,8,5,4 -O,4,7,5,5,2,8,7,8,7,7,6,9,3,8,4,8 -P,2,4,4,3,2,8,9,3,4,12,4,3,1,10,3,8 -C,3,9,5,7,3,4,8,7,7,9,9,14,2,9,4,9 -B,3,5,5,3,3,9,7,3,6,10,5,6,2,8,5,9 -T,2,1,3,3,1,7,12,3,6,7,11,8,2,11,1,8 -F,4,4,4,6,2,1,13,5,4,12,10,7,0,8,2,6 -J,1,3,2,4,0,14,3,6,4,13,2,10,0,7,0,8 -L,3,7,5,5,3,7,3,2,7,8,2,9,2,5,3,8 -E,3,5,6,3,3,7,7,2,8,11,6,9,2,8,4,8 -S,4,7,5,5,6,8,8,4,3,8,5,7,3,8,10,8 -P,7,12,6,6,3,8,9,7,5,14,4,4,4,10,4,7 -A,2,6,4,4,2,8,2,2,2,7,2,8,2,6,3,6 -F,5,10,7,8,4,5,13,5,4,13,8,3,2,10,2,5 -H,6,9,6,4,3,8,8,4,4,8,6,6,6,10,4,8 -S,5,11,7,8,4,8,9,6,10,5,6,6,0,8,9,7 -B,3,7,4,5,3,6,7,8,6,7,6,6,2,8,9,10 -G,7,11,8,9,5,7,6,7,7,12,6,12,3,11,5,8 -Z,2,6,3,4,1,7,7,3,13,9,6,8,0,8,8,8 -S,2,1,2,2,1,8,7,6,5,7,6,7,2,8,8,8 -W,3,3,5,4,2,9,8,4,1,7,8,8,8,9,0,8 -Z,5,5,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -A,4,11,6,8,5,7,3,1,2,5,2,7,4,6,4,7 -R,7,9,10,8,10,8,8,4,4,8,4,7,8,6,7,6 -U,3,8,4,6,2,8,6,13,5,6,13,8,3,9,0,8 -O,5,9,6,7,3,8,8,9,8,6,8,9,3,8,4,8 -I,5,10,6,8,4,6,8,0,7,13,7,8,0,8,1,7 -Z,3,5,5,7,4,9,4,3,5,7,3,6,3,8,7,6 -V,6,11,5,6,3,9,10,5,4,7,10,5,4,11,3,6 -R,6,10,8,8,6,8,8,5,7,8,3,9,4,5,5,12 -N,7,9,9,8,9,8,7,5,4,7,5,7,7,9,6,5 -C,4,7,5,5,2,6,8,6,10,6,7,12,1,7,4,8 -F,3,8,6,6,6,11,6,1,5,9,5,6,4,10,4,7 -A,3,8,6,6,4,10,5,1,4,8,2,6,2,7,4,8 -X,3,6,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -A,3,5,5,5,4,9,8,2,4,7,7,7,4,8,4,5 -P,3,4,4,5,2,4,13,8,2,11,6,3,1,10,4,8 -W,6,9,6,6,6,3,11,2,3,10,10,8,6,11,2,7 -V,4,10,6,8,4,6,11,2,3,7,11,9,2,10,1,9 -Q,3,5,3,6,4,8,9,5,1,6,7,11,2,9,5,9 -B,5,10,5,8,4,6,8,9,7,7,6,7,2,8,9,10 -C,5,10,6,8,2,6,7,7,11,7,6,14,1,8,4,9 -L,4,8,4,6,2,0,1,5,5,0,1,6,0,8,0,8 -S,5,10,6,7,3,7,7,6,9,5,6,8,0,8,9,7 -V,2,2,4,3,1,7,12,2,3,7,11,9,2,10,1,8 -F,2,4,4,2,1,6,10,2,5,13,7,5,1,9,1,7 -E,4,9,4,6,2,3,8,6,10,7,6,14,0,8,7,7 -T,6,7,6,5,3,7,10,2,10,11,9,4,1,11,4,5 -Q,6,7,8,6,7,8,4,5,5,7,4,10,4,5,7,7 -Z,1,3,3,2,1,7,8,2,9,11,6,8,1,8,5,7 -K,1,0,1,0,0,5,7,7,1,7,6,11,2,8,2,11 -M,3,4,6,3,3,7,6,3,4,9,7,8,7,5,1,8 -E,1,3,2,2,2,7,7,5,6,7,6,8,2,8,5,10 -U,6,9,8,8,7,7,6,5,4,6,7,8,7,8,2,7 -D,3,8,3,6,2,5,7,10,8,6,6,5,3,8,4,8 -E,4,6,4,8,3,3,7,6,11,7,6,15,0,8,7,7 -W,9,11,9,9,7,7,11,4,3,8,6,6,11,13,4,4 -W,5,11,7,8,9,8,7,6,2,7,8,8,6,8,4,8 -H,4,4,5,3,4,6,7,6,6,7,6,10,3,8,3,9 -Q,3,4,4,5,4,8,7,7,3,6,6,9,2,8,5,9 -S,6,10,8,8,4,8,7,4,8,11,5,7,2,8,5,8 -G,3,2,5,4,3,6,6,6,6,6,6,9,2,9,4,9 -Z,4,10,5,7,4,6,8,6,10,7,7,10,1,9,8,8 -A,8,12,6,6,3,10,1,2,2,10,4,12,3,5,4,8 -R,4,9,5,6,3,5,12,8,4,7,3,9,3,7,6,11 -F,6,11,8,8,8,7,6,5,5,7,6,8,6,10,8,12 -Y,0,0,1,0,0,7,10,1,3,7,11,8,1,11,0,8 -L,4,10,6,7,7,6,7,3,6,7,7,11,5,11,6,5 -Z,5,8,6,6,5,9,11,6,6,6,5,9,3,8,8,5 -B,3,7,5,5,5,8,7,5,6,6,6,6,2,8,5,9 -V,3,3,4,2,1,3,12,4,3,11,11,7,2,11,1,8 -E,2,4,4,3,2,7,7,2,7,11,6,8,2,8,5,9 -E,7,13,5,7,4,9,5,4,5,11,4,9,3,9,7,11 -Y,3,4,4,3,1,4,11,2,7,11,10,5,1,11,2,5 -R,8,10,6,5,3,10,5,5,5,10,3,9,6,6,6,10 -P,1,1,2,1,1,5,11,7,1,9,6,4,1,9,3,8 -O,5,8,6,6,8,8,6,5,2,7,6,8,8,9,4,10 -Y,4,5,5,4,2,3,11,3,6,12,11,6,1,11,2,5 -Z,6,10,8,8,4,6,9,3,10,11,9,5,2,8,7,5 -H,3,8,5,6,6,8,7,4,2,6,6,7,6,8,8,7 -Y,7,10,7,8,4,4,10,2,8,10,11,6,2,10,4,3 -T,6,9,6,6,3,7,10,2,9,11,9,4,3,9,4,4 -P,2,4,3,2,2,5,10,4,4,9,8,5,3,10,3,7 -G,2,2,4,3,2,6,6,6,6,7,6,11,2,9,4,9 -W,7,8,7,6,6,4,12,3,2,9,8,7,6,12,2,6 -X,3,2,5,4,3,8,7,3,9,6,6,8,3,8,6,8 -D,5,9,8,6,5,10,6,5,8,10,3,5,3,8,4,9 -K,4,5,5,7,2,4,8,8,2,7,4,11,3,8,2,11 -J,3,9,5,6,3,7,7,3,6,15,5,9,1,7,1,7 -H,5,5,6,7,3,7,6,15,0,7,7,8,3,8,0,8 -T,2,5,4,7,1,5,14,1,6,9,11,7,0,8,0,8 -K,7,9,7,5,4,6,8,2,6,10,4,9,5,6,3,8 -X,4,8,6,6,3,5,8,2,8,10,10,9,3,8,3,6 -P,2,1,2,1,1,5,10,4,4,10,8,4,0,9,3,7 -S,3,6,4,4,3,8,7,7,5,7,6,8,2,8,9,8 -U,6,10,7,8,4,4,8,6,8,10,9,9,3,9,2,5 -S,3,8,4,6,2,8,7,5,9,5,6,7,0,8,9,8 -M,7,8,10,6,7,11,6,2,5,9,3,6,9,8,2,9 -Q,4,7,4,8,5,8,7,6,4,8,7,9,3,8,6,8 -D,6,14,6,8,5,8,6,4,6,9,5,7,5,9,7,6 -C,1,3,2,2,1,5,8,4,5,12,8,10,1,10,2,8 -N,4,2,5,4,3,7,8,5,5,7,7,7,5,9,2,6 -X,5,9,7,7,4,6,8,1,8,10,8,9,3,8,3,6 -P,7,10,9,8,5,9,8,3,7,13,3,3,2,10,4,9 -K,2,3,4,1,2,6,8,1,6,10,6,9,3,8,2,8 -T,3,6,4,4,2,9,11,2,9,5,11,8,1,10,1,8 -D,6,7,8,6,6,5,7,6,8,7,6,7,4,7,5,5 -U,8,10,8,8,5,3,8,5,7,10,10,9,3,9,2,6 -T,3,5,5,3,2,8,12,3,7,6,11,7,2,11,1,7 -I,1,10,2,8,3,7,7,0,7,7,6,8,0,8,3,8 -D,3,9,5,6,5,7,8,7,5,8,7,5,3,8,3,7 -T,2,4,3,5,1,7,14,0,6,7,11,8,0,8,0,8 -M,3,4,5,3,3,9,6,3,4,9,5,7,6,5,1,8 -H,3,8,4,5,2,7,8,15,1,7,5,8,3,8,0,8 -Z,5,11,7,8,5,8,7,2,9,12,6,7,1,7,6,7 -H,8,10,11,8,7,9,7,3,6,10,4,7,3,8,4,8 -I,1,5,3,4,1,7,7,0,8,13,6,8,0,8,1,7 -A,4,10,5,7,4,9,4,3,1,8,2,8,2,7,2,8 -G,3,4,4,3,2,6,7,5,5,9,7,10,2,9,4,9 -L,3,7,4,5,2,5,4,1,9,7,2,10,0,7,2,7 -O,3,5,4,3,2,8,7,8,5,7,7,8,2,8,3,8 -G,6,10,8,8,9,7,7,6,2,7,6,11,7,9,10,7 -W,3,6,4,4,3,9,10,2,2,6,9,8,6,11,1,8 -J,2,9,3,7,2,10,7,0,7,10,4,6,0,7,1,7 -N,10,12,8,6,4,4,8,4,6,3,2,12,6,11,2,7 -F,3,7,3,5,2,1,11,3,4,11,11,8,0,8,1,7 -S,3,2,3,3,2,8,8,6,5,7,6,7,2,8,9,8 -G,4,10,6,7,3,7,5,7,10,5,4,10,1,9,6,11 -H,5,9,7,7,5,9,7,3,6,10,5,7,3,8,3,9 -B,5,9,7,6,7,8,7,4,4,7,6,7,4,8,6,8 -W,5,7,7,5,4,5,8,5,1,8,10,9,8,11,0,8 -U,4,5,5,4,2,4,8,5,7,10,9,9,3,9,2,5 -S,8,15,6,9,3,8,4,4,5,8,2,8,4,6,6,9 -L,5,9,5,5,3,10,4,3,3,12,7,11,3,10,4,10 -W,4,9,6,6,3,6,8,4,2,7,8,8,8,10,0,8 -N,7,9,6,4,3,4,9,4,7,3,3,11,5,9,2,8 -O,2,1,2,2,1,7,7,7,4,7,6,8,2,8,2,7 -O,7,11,9,8,10,7,10,5,3,8,7,7,11,11,7,10 -L,7,14,7,8,4,6,5,4,5,12,9,11,3,9,7,8 -S,3,7,4,5,5,8,8,5,3,8,5,8,4,9,10,6 -B,6,9,9,7,6,10,6,3,7,11,3,7,6,8,7,11 -H,2,6,2,4,1,7,8,14,1,7,5,8,3,8,0,8 -G,3,1,4,2,2,7,7,6,6,6,6,9,2,9,4,9 -L,2,1,3,2,1,4,3,5,6,2,3,4,1,7,0,6 -Q,1,2,2,3,1,8,6,6,3,8,6,9,2,9,3,8 -M,4,5,5,7,4,8,7,12,2,6,9,8,8,6,0,8 -Z,2,4,3,3,1,8,6,2,9,11,5,8,1,8,5,8 -U,5,11,6,8,5,6,9,5,6,6,9,9,3,8,1,8 -V,3,5,4,4,5,8,8,5,4,7,6,8,6,8,7,4 -T,1,0,1,1,0,8,13,1,5,6,10,8,0,8,0,8 -T,4,10,6,7,7,7,8,5,5,6,7,9,6,8,8,6 -K,1,1,2,1,1,6,7,4,7,6,6,10,3,8,4,9 -O,2,4,3,3,2,7,7,7,4,9,6,8,2,8,3,8 -K,6,11,9,8,6,7,6,2,7,10,5,9,4,7,5,9 -U,3,6,5,4,3,6,9,5,7,7,9,9,3,9,1,8 -L,3,7,5,5,2,5,4,2,10,6,1,9,0,7,3,6 -R,10,15,8,8,5,9,7,7,5,10,2,9,7,5,6,10 -M,6,7,9,5,6,9,6,2,5,9,5,7,8,4,2,8 -A,2,2,4,3,2,6,2,2,2,5,2,8,2,6,2,6 -H,12,15,11,8,6,8,7,4,5,9,7,7,7,10,5,9 -J,5,9,6,7,3,10,6,1,7,14,3,7,0,7,0,8 -H,8,13,8,8,5,6,9,4,5,9,8,9,6,8,6,8 -M,7,11,11,8,8,7,6,3,5,9,8,9,8,6,2,8 -F,4,10,4,7,2,1,12,5,5,12,11,8,0,8,2,6 -S,4,8,5,6,4,7,9,7,7,8,4,6,2,7,9,9 -Y,8,7,6,10,4,9,7,6,6,4,10,7,5,10,3,7 -M,5,6,8,4,5,8,6,2,5,9,6,8,7,5,2,8 -O,2,5,3,4,2,8,7,7,4,9,4,8,2,8,2,8 -G,2,1,2,2,1,7,7,6,5,6,6,9,2,9,4,9 -L,1,4,3,3,1,6,5,1,6,8,3,10,1,7,2,9 -G,4,5,5,4,3,6,6,6,6,6,6,9,2,9,4,8 -X,2,3,3,4,1,7,7,4,4,7,6,8,3,8,4,8 -A,2,7,3,5,2,7,4,2,0,7,2,8,1,6,1,8 -S,4,6,5,8,2,8,7,6,9,4,6,7,0,8,9,8 -T,4,8,5,6,4,6,11,3,6,8,11,8,2,12,1,7 -T,9,13,8,7,4,8,6,4,10,13,5,7,2,9,6,6 -X,7,11,10,8,5,10,7,2,9,11,1,6,4,9,4,10 -C,2,4,3,3,1,4,9,4,7,11,9,12,1,9,2,7 -Z,4,6,5,4,3,7,8,2,9,11,8,6,1,8,6,6 -Z,4,11,5,9,6,7,7,5,10,7,5,9,3,10,9,8 -T,2,7,4,4,1,9,14,1,6,5,11,9,0,8,0,8 -V,3,2,5,4,2,6,12,3,4,8,12,8,3,10,1,8 -X,3,4,6,3,2,9,6,2,8,10,3,7,2,7,3,9 -L,3,3,3,5,1,0,1,6,6,0,1,5,0,8,0,8 -R,4,9,4,6,3,6,11,9,3,7,2,9,3,7,5,10 -H,7,11,10,8,8,9,7,3,6,10,4,7,6,8,5,8 -Q,5,8,7,9,7,9,7,7,2,5,8,9,5,9,7,11 -P,8,12,7,6,3,7,9,6,4,13,4,5,4,10,4,8 -J,2,7,4,5,2,7,7,3,5,15,6,9,1,6,1,7 -V,6,11,5,6,3,8,10,5,5,7,10,5,5,12,3,7 -Q,3,3,4,5,4,8,7,6,2,5,7,9,3,9,5,10 -S,4,5,6,4,5,10,8,5,5,6,8,9,4,11,6,10 -Y,3,5,5,7,1,9,10,3,2,6,13,8,2,11,0,8 -L,3,10,4,7,4,3,4,4,7,2,0,8,0,6,1,6 -L,5,11,6,8,4,3,4,4,9,2,0,7,0,7,1,5 -A,5,8,7,7,6,9,7,3,4,7,7,6,5,10,4,6 -X,8,13,8,7,5,7,6,2,8,11,4,8,4,5,4,7 -F,4,11,4,8,2,0,13,5,4,12,11,6,0,8,2,5 -M,4,10,5,8,6,7,5,11,1,7,9,8,8,6,1,9 -I,2,9,3,7,3,8,7,0,7,7,6,8,0,8,3,7 -H,3,4,6,3,3,8,8,3,6,10,6,7,3,8,3,8 -L,6,9,8,8,7,7,7,4,6,7,7,8,3,8,9,10 -E,2,1,3,3,2,7,7,5,7,7,6,9,2,8,5,10 -V,4,10,6,7,2,9,8,4,3,6,14,8,3,10,0,8 -G,4,9,5,6,2,7,6,8,8,6,5,10,2,8,5,11 -P,4,7,6,9,7,6,8,5,2,8,7,6,9,12,7,8 -G,5,9,7,8,8,7,9,5,2,7,7,8,6,11,7,9 -A,3,8,5,6,3,5,4,3,0,5,2,7,2,7,2,7 -S,5,10,6,8,3,8,8,6,10,5,6,6,0,8,9,7 -X,11,15,10,8,5,11,6,3,9,10,4,7,4,11,4,11 -I,2,9,3,6,2,6,8,0,7,14,7,8,0,8,1,7 -D,3,6,5,4,3,7,7,7,8,6,5,4,3,8,3,7 -L,2,2,3,4,2,4,4,4,7,2,1,6,0,7,1,6 -W,4,3,4,2,2,4,11,3,2,9,9,7,6,11,1,6 -A,3,2,6,4,3,8,1,2,2,7,2,8,2,7,3,7 -P,5,9,6,7,5,7,9,5,6,9,8,4,5,10,5,7 -A,4,6,6,6,5,7,8,2,4,7,7,9,5,7,3,7 -K,9,13,9,7,5,10,6,2,6,11,4,7,6,11,3,9 -N,3,7,5,5,3,5,10,6,4,7,7,9,5,9,1,8 -X,4,4,5,6,1,7,7,4,4,7,6,8,3,8,4,8 -T,5,10,7,8,6,7,7,7,6,5,10,10,5,6,9,7 -R,5,10,6,8,4,5,11,8,3,7,4,8,3,8,6,11 -P,6,10,9,8,5,7,12,7,3,11,4,2,2,11,4,8 -L,2,5,4,4,2,7,3,1,8,9,2,10,0,7,2,8 -X,5,9,8,7,5,4,8,1,8,10,11,10,3,9,3,5 -W,7,11,9,8,10,8,7,6,3,6,8,8,6,8,5,7 -P,5,11,8,8,6,8,9,3,5,13,5,4,4,10,4,8 -B,3,7,4,5,3,6,7,8,6,7,6,7,2,8,9,10 -C,2,1,3,2,1,6,7,6,7,8,7,13,1,9,4,10 -M,5,8,8,6,7,7,6,5,5,7,7,11,14,6,2,10 -S,8,13,6,7,3,9,1,2,5,8,2,8,3,7,5,11 -M,7,10,9,8,9,9,7,6,5,6,7,6,11,8,4,5 -H,3,7,5,5,6,8,7,4,3,6,6,7,7,8,8,8 -P,4,10,4,7,4,4,11,8,2,9,6,4,1,10,3,8 -W,6,6,6,4,4,5,11,3,2,9,7,7,7,12,2,6 -Z,3,5,4,7,2,7,7,4,13,10,6,8,0,8,8,8 -H,5,10,7,8,10,9,6,4,4,6,6,7,8,7,7,6 -U,4,9,6,7,4,7,9,5,7,5,9,9,3,9,1,8 -E,5,10,5,7,3,3,8,6,11,7,6,15,0,8,7,7 -Q,2,3,3,4,2,8,7,5,3,8,7,9,2,9,3,8 -O,3,5,4,4,3,8,7,7,4,9,5,8,2,8,2,8 -S,3,7,4,5,3,7,8,3,7,10,5,7,2,7,5,8 -M,4,5,6,4,6,6,8,5,3,6,5,8,9,7,4,8 -N,3,7,4,5,2,7,7,14,2,5,6,8,5,8,0,8 -E,2,3,3,2,2,8,7,1,7,11,5,8,2,8,4,10 -P,1,1,2,2,1,5,9,4,3,9,7,4,1,10,2,7 -H,6,9,9,7,8,6,8,3,6,10,7,8,3,8,3,7 -B,2,3,3,2,2,7,7,5,5,6,5,6,2,8,5,9 -W,6,11,10,8,6,5,10,2,3,8,9,9,8,11,1,8 -I,1,3,2,1,0,7,7,1,6,13,6,8,0,8,0,8 -R,5,11,6,8,4,6,9,10,5,7,5,8,3,8,6,10 -H,6,10,6,8,5,7,6,14,2,7,8,8,3,8,0,8 -W,6,5,8,7,4,4,8,5,2,7,9,8,9,9,0,8 -M,5,11,6,8,4,7,7,12,2,7,9,8,9,6,0,8 -X,1,0,1,0,0,8,7,3,5,7,6,8,2,8,3,7 -H,2,5,4,3,3,7,7,2,5,10,6,8,3,8,2,8 -G,5,5,7,8,3,7,5,7,10,5,5,9,1,9,7,11 -V,3,7,5,5,2,7,12,3,4,6,12,8,2,10,1,8 -V,6,11,6,8,3,2,12,5,4,11,12,8,3,9,1,8 -B,3,5,4,4,4,7,7,5,5,6,6,6,2,8,6,9 -E,3,7,5,5,3,10,6,2,7,11,4,9,2,8,5,12 -W,6,7,6,5,4,6,11,4,2,8,7,6,6,12,2,5 -W,7,7,10,6,10,8,8,5,5,7,5,8,9,8,9,6 -O,5,9,6,6,4,8,6,8,4,7,4,8,3,8,3,8 -Z,3,9,4,6,3,7,7,3,12,9,6,8,0,8,8,8 -Y,6,6,5,9,4,7,7,4,3,6,11,6,4,11,6,6 -Z,1,0,2,1,0,7,7,2,10,8,6,8,0,8,6,8 -W,5,11,8,8,4,4,8,5,2,7,9,8,8,10,0,8 -T,2,6,4,4,1,9,15,1,5,5,11,9,0,8,0,8 -H,3,5,4,4,3,7,7,6,6,7,6,8,3,8,3,8 -D,5,10,7,8,6,7,7,8,5,7,6,5,4,8,3,7 -Z,3,7,5,5,3,8,7,2,9,11,5,10,1,9,6,10 -X,6,11,9,8,6,5,8,1,8,10,10,10,3,8,4,6 -J,1,3,2,2,1,10,6,3,6,12,4,10,0,7,1,8 -V,1,0,2,0,0,8,9,3,2,7,12,8,2,10,0,8 -H,3,7,5,5,6,7,6,5,4,6,6,8,6,8,8,10 -H,6,11,6,8,6,7,8,14,1,7,5,8,3,8,0,8 -R,7,11,9,8,9,8,6,7,5,8,6,8,7,7,6,12 -B,5,9,7,7,5,9,7,4,6,10,5,6,2,8,6,10 -X,5,9,6,8,7,9,8,2,5,8,5,6,4,7,9,8 -J,4,11,6,8,2,9,6,2,7,15,4,9,0,6,1,7 -Q,5,9,6,10,6,8,11,6,2,5,8,12,3,11,7,6 -E,4,5,4,8,3,3,7,6,10,7,6,14,0,8,7,7 -T,3,3,4,2,1,6,11,3,6,11,9,4,2,11,2,5 -U,3,3,4,2,1,6,8,6,7,7,10,9,3,10,1,8 -Q,5,7,7,10,9,9,9,5,0,6,7,10,8,14,5,11 -Q,4,5,4,6,4,8,9,5,1,7,8,11,2,9,5,8 -E,5,12,4,6,3,8,7,4,4,10,6,8,3,9,8,10 -X,5,9,8,7,4,7,8,1,8,10,7,8,3,8,4,7 -P,4,10,6,8,5,4,10,3,6,11,10,6,3,10,3,7 -C,5,10,6,7,4,5,7,6,9,7,6,13,1,8,4,9 -S,1,0,1,0,0,8,7,3,5,5,6,7,0,8,6,8 -Y,4,4,5,6,6,9,8,5,3,7,8,7,6,10,6,4 -O,5,10,7,7,5,7,8,8,5,7,7,9,3,7,4,7 -U,11,14,9,8,4,4,3,5,5,4,7,7,6,6,2,6 -E,5,11,4,6,3,6,9,4,5,10,6,8,3,8,7,9 -D,4,10,6,8,10,9,8,5,5,7,6,6,5,6,7,6 -P,3,4,5,3,2,7,10,3,4,12,4,2,1,10,2,8 -D,5,4,5,6,3,5,8,10,9,7,7,5,3,8,4,8 -X,2,5,3,3,2,7,7,3,9,6,6,8,2,8,6,8 -F,6,11,6,6,4,6,10,3,4,11,6,4,4,10,8,6 -Y,1,0,2,1,0,7,10,3,1,7,13,8,1,11,0,8 -P,9,13,9,7,6,11,6,3,4,12,4,6,5,9,6,9 -J,6,11,8,8,3,8,6,4,6,15,6,11,1,6,1,6 -D,2,3,3,2,2,10,6,3,6,10,3,6,2,8,3,9 -Q,1,2,2,2,1,8,8,5,2,8,7,10,2,9,3,9 -S,7,10,5,5,2,9,3,4,4,9,2,9,3,6,5,10 -T,6,8,6,6,4,7,11,3,8,12,9,4,2,12,3,4 -D,6,9,9,8,8,6,6,5,7,7,6,8,5,6,6,4 -U,2,1,3,2,1,6,8,6,6,6,9,9,3,9,1,7 -N,3,4,5,2,2,9,7,3,4,10,3,5,5,9,1,7 -H,1,0,2,0,0,7,8,11,1,7,6,8,2,8,0,8 -U,3,3,4,2,1,7,9,6,7,7,10,9,3,10,1,8 -W,2,1,2,2,1,7,8,4,0,7,8,8,6,10,0,8 -F,2,3,2,2,1,5,10,3,5,10,9,5,1,10,3,6 -H,5,9,6,7,5,7,8,13,1,7,6,8,3,8,0,8 -R,5,11,7,8,6,8,8,5,6,9,4,8,3,7,5,11 -O,5,9,5,7,5,7,7,7,4,9,7,8,3,8,3,8 -S,7,10,8,8,4,9,7,4,9,11,6,7,2,10,5,8 -Y,10,9,8,13,5,7,9,2,2,7,10,4,4,10,7,7 -W,6,9,8,7,12,10,7,5,2,7,7,8,11,10,3,5 -O,2,4,2,3,1,7,7,6,4,9,6,8,2,8,2,8 -G,3,4,4,6,2,7,8,8,7,5,7,8,2,7,6,11 -T,5,10,5,7,4,4,12,3,5,11,10,5,2,13,2,4 -G,1,0,2,1,0,8,6,6,4,6,5,9,1,8,5,10 -S,3,4,3,3,2,8,6,6,5,7,6,9,2,10,9,8 -E,2,0,2,1,1,5,7,5,8,7,6,12,0,8,7,9 -A,4,10,6,8,3,10,3,2,3,9,1,8,2,7,4,9 -J,1,3,2,2,1,10,6,2,5,12,4,9,0,7,0,7 -N,5,7,7,5,4,7,9,2,5,10,5,6,5,9,1,7 -B,3,2,3,3,3,7,7,5,5,6,6,6,2,8,6,9 -R,4,9,6,6,6,6,7,3,5,6,5,9,6,10,7,5 -G,4,6,5,4,6,8,5,4,3,7,6,10,6,8,4,10 -T,2,5,3,3,1,8,12,2,7,6,11,7,1,11,1,7 -C,5,10,6,8,2,6,6,7,11,9,5,14,1,9,4,8 -E,4,8,6,6,6,7,7,5,8,7,7,9,3,8,6,9 -U,4,8,6,6,5,7,7,8,5,6,6,10,4,8,5,6 -I,4,10,7,8,8,10,6,2,4,8,4,4,3,8,5,7 -P,3,2,4,3,2,5,10,4,4,10,8,4,1,10,3,6 -C,7,10,7,7,5,4,8,5,7,12,9,12,2,10,4,6 -C,7,10,7,8,4,3,8,6,7,12,11,12,2,9,2,7 -P,3,6,5,4,3,6,11,3,5,13,6,4,0,10,2,8 -A,1,1,2,2,1,7,3,2,1,6,2,8,1,6,1,7 -G,3,5,4,7,2,7,6,8,9,8,4,13,1,9,5,10 -H,4,7,5,5,4,8,7,6,6,7,6,9,6,8,3,8 -N,4,5,5,4,3,7,8,5,5,8,7,7,7,9,3,5 -W,6,6,6,4,4,3,11,2,3,10,10,8,7,11,1,7 -W,5,9,7,7,8,8,8,6,3,6,8,8,6,7,4,7 -N,3,2,4,3,3,7,8,5,4,7,6,6,5,9,2,6 -S,5,8,6,6,3,9,7,4,8,11,4,8,2,8,5,9 -F,1,0,1,0,0,4,12,4,2,11,8,6,0,8,2,8 -K,2,3,3,2,1,6,7,2,6,10,7,10,3,8,2,8 -B,4,8,6,6,4,8,8,4,7,10,5,6,2,8,6,10 -Y,2,2,4,3,2,6,10,1,7,8,12,8,2,11,2,7 -E,7,9,9,8,9,7,8,5,5,7,7,10,8,9,10,9 -Z,6,11,8,8,8,10,9,5,4,7,5,7,3,8,9,5 -X,4,8,6,6,4,8,7,3,8,5,6,6,3,8,6,7 -O,5,11,5,9,6,8,7,8,3,9,6,7,3,8,3,8 -V,4,11,5,8,3,5,11,3,4,9,12,9,2,10,1,8 -R,3,6,4,4,3,10,7,3,5,10,3,7,3,7,3,11 -L,3,7,4,5,3,7,4,1,7,8,2,10,0,7,2,8 -V,6,8,6,6,3,3,12,4,4,10,12,7,2,10,1,8 -H,5,8,7,6,8,7,6,5,5,6,6,7,8,7,8,9 -P,2,4,3,3,2,9,8,3,4,12,4,3,1,10,3,9 -L,1,3,2,1,1,6,4,1,7,8,3,10,0,7,2,8 -Q,3,5,3,6,3,8,8,5,2,8,8,11,2,9,5,8 -D,3,2,4,3,3,7,7,7,7,7,6,5,2,8,3,7 -V,3,6,4,4,2,8,9,4,2,7,12,8,2,10,0,8 -H,5,9,6,7,6,7,5,13,2,7,9,8,3,9,0,8 -G,7,13,6,8,5,7,6,4,3,8,6,8,4,9,9,7 -V,2,3,3,1,1,6,12,3,2,8,11,8,2,11,1,8 -P,4,6,6,4,3,7,10,4,4,12,5,3,1,10,2,8 -K,4,5,5,8,2,4,8,8,2,7,4,11,4,8,2,11 -U,6,9,6,7,4,3,8,5,7,10,9,9,3,9,2,6 -U,4,7,6,5,5,9,6,7,5,7,7,8,5,8,4,6 -Y,5,10,6,7,6,9,5,7,5,6,9,7,3,9,9,4 -D,5,11,6,8,6,6,7,9,7,6,5,5,2,8,3,7 -F,5,11,7,8,4,6,11,2,6,13,7,4,1,10,2,7 -I,1,5,2,4,1,7,7,0,7,13,6,8,0,8,1,8 -N,2,1,2,2,1,7,9,5,4,7,6,7,4,8,1,6 -L,5,11,7,9,6,8,4,0,7,9,3,10,1,6,2,9 -N,6,10,9,8,4,3,9,4,4,11,11,10,6,7,1,8 -E,2,6,3,4,2,3,6,6,10,7,6,14,0,8,7,8 -N,5,10,7,5,3,8,7,2,4,12,8,8,5,8,0,8 -M,3,3,5,2,3,7,6,3,4,9,7,8,7,5,1,8 -B,5,7,7,5,5,8,8,4,6,10,5,6,3,8,6,10 -U,5,5,6,8,2,8,4,15,6,7,14,8,3,9,0,8 -B,5,8,7,6,5,10,5,3,7,10,4,7,3,7,6,11 -T,4,4,4,3,2,5,11,2,8,12,9,4,1,10,2,4 -G,6,8,8,7,8,8,6,6,4,7,6,10,10,10,8,9 -N,3,7,5,5,5,7,7,3,4,8,8,8,6,9,4,5 -S,3,9,4,7,4,7,7,7,5,7,7,9,2,9,8,8 -B,11,13,8,7,5,9,6,5,6,11,4,9,6,7,7,11 -O,9,13,6,7,4,5,7,7,4,10,7,8,5,9,5,7 -N,7,10,10,8,10,6,8,3,4,8,8,9,8,10,7,4 -F,4,11,6,8,4,3,11,2,7,11,10,6,1,10,3,5 -J,3,9,5,6,2,7,5,4,5,14,7,12,1,6,1,6 -L,1,4,2,3,1,7,3,1,6,8,2,10,0,7,2,8 -G,2,3,3,2,1,6,7,5,5,9,7,10,1,8,4,10 -P,5,11,6,8,7,6,7,5,4,8,7,8,8,8,6,11 -C,2,6,3,4,2,5,8,6,6,6,7,14,1,8,3,10 -E,3,5,4,3,3,7,7,5,8,6,5,8,2,8,6,9 -U,3,4,4,3,2,4,8,5,6,11,10,9,3,9,1,7 -M,5,9,8,7,6,4,7,3,4,10,10,10,8,6,3,7 -L,4,10,5,7,4,4,4,3,8,2,1,7,0,6,1,6 -A,5,12,5,6,4,11,2,4,2,11,4,11,5,4,5,10 -C,5,9,6,8,7,5,6,4,5,7,6,11,6,10,9,10 -M,5,8,6,6,3,7,7,12,2,7,9,8,8,6,0,8 -L,5,11,8,9,9,7,8,3,6,5,7,11,5,11,9,7 -M,8,10,11,7,9,5,7,3,5,9,9,9,9,7,3,8 -T,5,7,7,6,7,7,8,4,8,8,7,9,3,8,8,6 -F,2,5,4,4,1,5,13,3,5,13,7,3,0,9,2,6 -N,4,8,5,6,4,7,7,13,1,6,6,8,5,8,0,8 -J,5,9,7,7,6,7,7,5,5,8,6,7,6,7,4,7 -P,6,8,8,10,9,6,8,4,2,8,8,6,7,12,7,7 -B,8,14,7,8,6,10,7,3,6,10,4,7,6,6,7,9 -A,3,2,5,4,2,8,2,2,2,8,1,8,2,6,3,7 -G,7,12,6,6,4,8,3,4,3,7,4,4,4,7,5,8 -Z,4,9,4,6,3,7,10,3,11,8,6,7,0,8,7,7 -U,4,4,5,3,2,4,8,5,7,12,10,9,3,9,2,7 -P,9,15,7,8,4,5,11,6,2,11,6,4,5,10,4,7 -Y,4,11,5,8,3,8,11,1,3,7,12,8,1,11,0,8 -A,3,8,6,6,3,12,2,3,2,10,2,9,2,6,3,8 -T,6,11,8,8,7,7,7,7,7,5,9,10,6,7,9,4 -X,3,6,5,4,3,6,8,1,8,10,8,9,2,8,3,6 -S,4,7,4,5,3,7,8,4,7,10,5,7,2,7,4,8 -K,6,10,5,5,3,7,8,3,6,9,9,9,6,11,3,6 -Z,1,1,2,2,1,7,7,4,8,6,6,8,1,8,6,8 -P,5,9,5,6,3,5,12,9,2,9,5,4,1,10,4,8 -E,1,0,1,0,0,5,7,5,7,7,6,12,0,8,6,9 -Y,7,8,7,6,4,5,8,1,7,8,9,5,2,11,3,4 -X,3,3,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -Q,6,11,6,6,4,11,4,4,5,11,4,8,3,9,6,12 -Y,3,5,5,4,2,7,11,1,8,6,11,8,1,11,2,8 -X,3,5,5,4,2,10,7,1,8,11,3,7,2,8,3,9 -Z,7,9,7,5,4,9,4,3,8,12,5,10,3,8,6,8 -O,8,10,6,5,3,8,6,5,5,8,4,8,5,9,5,8 -Y,2,2,4,4,2,7,10,1,7,7,11,8,1,11,2,8 -G,4,8,5,6,2,7,6,7,8,6,6,9,1,8,6,11 -Z,5,9,7,7,6,10,9,6,4,7,5,8,3,8,10,7 -N,4,7,6,5,4,7,9,6,5,7,6,6,6,9,1,6 -W,7,9,7,4,3,5,10,2,2,9,10,8,8,12,0,7 -H,3,3,5,2,2,8,7,3,6,10,4,7,3,7,3,8 -X,2,0,2,1,0,7,7,6,2,7,6,8,3,8,3,8 -V,3,9,5,7,3,8,9,4,1,7,12,8,2,10,0,8 -S,4,9,6,6,7,5,8,3,1,7,6,5,3,8,9,1 -M,8,9,11,6,9,8,6,2,5,9,7,8,8,6,2,8 -Y,4,4,5,3,2,4,10,2,8,10,10,5,3,11,4,3 -S,3,4,4,6,2,9,9,6,10,5,5,5,0,7,9,7 -U,3,7,5,5,4,8,9,8,5,4,7,11,3,7,3,7 -Q,4,9,5,8,3,8,6,9,5,6,6,8,3,8,5,9 -X,4,7,6,5,3,7,8,1,8,10,7,8,2,8,3,7 -H,5,9,6,4,4,4,9,3,4,10,9,9,4,8,4,6 -V,2,1,4,2,1,6,12,2,3,8,11,8,2,11,1,8 -C,4,7,5,5,2,5,9,7,8,8,8,14,1,8,4,9 -L,1,3,2,2,1,7,4,1,7,8,2,9,0,7,2,8 -S,3,9,4,7,2,7,7,6,8,5,6,7,0,8,9,7 -L,2,7,2,5,1,0,1,5,6,0,0,7,0,8,0,8 -P,7,9,9,7,5,7,12,8,3,10,5,3,2,11,5,8 -J,0,0,1,0,0,12,4,5,3,12,4,10,0,7,0,8 -T,3,3,4,2,2,6,11,3,7,11,9,5,1,11,3,4 -T,1,0,2,0,0,7,15,2,4,7,10,8,0,8,0,8 -T,2,3,2,2,1,7,11,2,6,7,10,8,1,11,1,7 -B,4,5,5,4,4,7,7,5,6,7,6,6,2,8,6,10 -L,5,10,6,8,4,5,3,6,9,1,1,4,1,6,1,5 -I,1,4,2,3,1,7,7,0,7,13,6,8,0,8,1,8 -P,1,3,3,2,1,8,7,4,3,11,4,5,1,9,2,9 -I,6,8,8,9,7,7,8,4,7,6,8,7,4,8,11,9 -C,3,8,4,6,2,4,8,7,9,9,9,13,1,9,4,9 -I,3,10,4,8,2,7,7,0,8,14,6,8,0,8,1,8 -L,2,3,3,5,1,0,1,5,6,0,0,7,0,8,0,8 -N,2,1,3,2,2,7,9,6,5,8,7,6,5,9,1,6 -M,4,1,5,2,3,8,6,6,4,7,7,8,8,6,3,6 -X,2,1,2,1,0,7,7,4,4,7,6,8,2,8,4,8 -A,7,11,5,6,3,10,1,3,1,10,4,12,3,4,4,8 -Q,6,10,7,9,4,8,7,8,7,6,7,9,3,8,5,9 -M,4,7,5,5,5,8,7,5,5,6,6,5,8,7,2,6 -Z,3,4,5,6,4,9,7,5,5,9,3,6,2,6,6,7 -V,6,9,4,4,2,8,10,5,4,7,10,5,4,11,3,7 -A,3,11,5,8,3,13,3,4,3,12,1,9,2,6,3,9 -L,3,10,3,7,1,0,1,5,6,0,0,7,0,8,0,8 -Y,3,11,5,8,1,5,10,3,2,9,13,8,1,11,0,8 -Q,4,4,5,6,2,9,8,8,6,5,7,10,3,8,5,9 -C,4,8,6,6,6,7,7,4,4,6,7,10,7,9,5,7 -S,3,4,4,2,2,7,8,2,7,10,7,7,1,8,5,6 -C,3,6,4,4,1,6,7,7,10,8,6,13,1,9,4,9 -N,5,9,6,6,5,7,7,9,5,6,4,5,5,8,5,11 -K,3,6,5,4,4,6,6,3,8,6,6,9,3,8,5,9 -E,9,11,6,6,3,8,7,5,7,10,6,11,2,9,8,8 -S,4,8,6,6,3,9,7,5,8,11,2,8,2,7,5,11 -S,2,4,3,3,2,8,8,7,5,8,5,7,2,8,8,8 -X,6,10,9,7,5,7,8,1,9,10,6,8,3,8,4,7 -K,4,10,4,8,4,3,7,6,3,6,5,11,3,8,2,11 -B,2,3,4,2,2,7,7,3,5,10,6,6,2,8,5,8 -F,5,11,7,8,5,9,8,1,6,13,5,5,2,9,3,9 -M,3,4,5,2,3,9,6,3,4,8,5,7,7,5,1,8 -X,4,7,6,5,3,4,9,2,7,10,11,9,3,9,3,5 -C,3,1,4,3,2,6,8,7,7,8,8,13,1,10,4,10 -E,4,6,5,4,3,6,8,4,8,12,8,9,2,9,4,6 -U,4,5,5,4,2,4,8,5,7,11,10,9,3,9,2,6 -I,6,11,7,8,5,7,7,1,7,7,6,8,0,8,4,8 -T,4,9,4,4,2,4,11,2,6,12,8,5,2,8,4,3 -A,2,4,3,3,2,10,2,2,2,9,2,9,1,6,2,8 -H,2,6,3,4,1,7,9,14,2,7,4,8,3,8,0,8 -P,5,11,8,8,5,6,11,3,6,14,7,4,0,10,3,8 -E,3,5,5,3,3,6,8,2,8,11,8,9,2,9,4,7 -D,7,15,7,9,5,9,6,5,6,12,3,7,5,7,6,10 -I,5,11,7,8,4,9,6,2,7,7,6,6,0,9,4,7 -N,5,10,5,8,5,7,7,12,1,6,6,8,6,7,1,10 -P,2,7,4,5,2,5,11,3,6,11,9,5,0,9,3,6 -T,5,9,5,6,4,5,12,4,6,11,9,4,2,12,2,4 -D,3,9,5,7,8,10,7,5,5,7,5,6,4,6,10,6 -G,4,6,6,5,5,8,10,5,2,7,7,9,6,11,7,10 -C,4,6,5,4,2,4,9,5,7,11,10,12,1,9,3,7 -Y,4,6,6,8,8,9,8,4,2,6,8,9,4,11,7,8 -D,2,1,2,1,1,7,7,6,6,7,6,5,2,8,2,7 -P,2,3,2,2,1,6,10,5,4,9,7,3,1,9,3,6 -X,2,5,4,4,2,7,7,3,9,6,6,8,2,8,6,8 -B,4,7,6,5,4,8,8,4,6,10,5,6,2,8,6,8 -F,2,2,3,3,2,6,10,4,5,10,9,5,2,9,3,6 -Z,2,5,4,4,2,7,8,2,10,12,7,7,1,8,5,6 -P,6,9,9,7,4,5,15,6,2,12,5,1,0,9,4,7 -J,3,9,4,7,3,11,6,3,6,12,2,8,1,6,2,6 -B,3,9,4,7,3,6,7,10,6,7,6,7,2,8,9,10 -C,3,8,4,6,2,5,7,6,8,8,6,12,1,9,4,9 -B,4,9,4,4,3,9,6,3,4,9,5,8,6,8,7,9 -U,3,3,3,5,2,7,6,13,5,7,14,8,3,9,0,8 -O,6,9,7,7,6,7,8,7,5,9,7,9,3,8,4,7 -M,6,9,8,6,8,6,6,6,5,7,7,11,11,5,2,9 -D,3,10,5,8,7,8,9,5,4,8,7,5,4,9,11,6 -D,5,6,6,8,3,5,7,11,9,6,5,5,3,8,4,8 -P,2,3,4,1,1,8,9,3,4,12,4,3,1,9,2,9 -P,3,5,5,4,2,7,10,5,3,11,4,3,1,10,3,8 -Y,5,9,5,7,3,3,11,3,6,11,12,6,1,11,2,6 -F,2,5,3,3,2,5,10,3,5,10,9,6,2,10,3,6 -I,1,6,2,4,1,7,7,0,8,7,6,8,0,8,3,8 -B,3,2,4,4,4,7,7,5,5,7,6,6,2,8,6,10 -F,5,10,6,8,7,6,10,6,4,8,5,9,3,10,8,11 -U,3,7,5,5,4,7,8,8,5,5,6,11,3,8,5,6 -B,3,7,4,5,3,6,5,9,7,6,7,7,2,9,8,9 -A,9,15,9,8,6,11,2,5,2,11,4,11,7,2,5,11 -Z,4,8,6,6,6,8,8,2,8,7,6,7,0,8,9,8 -E,5,11,6,8,7,7,7,6,3,7,6,9,4,8,8,8 -E,1,0,1,1,1,5,7,5,8,7,6,12,0,8,6,9 -A,1,0,2,0,0,7,4,2,0,7,2,8,1,6,1,8 -M,6,7,9,5,5,8,6,2,5,9,6,7,8,6,2,8 -J,5,9,6,7,4,9,4,7,6,8,6,6,2,7,4,6 -T,4,4,4,3,2,6,12,3,7,11,9,4,1,11,2,4 -W,8,10,8,8,6,5,10,3,3,9,8,7,8,11,3,6 -K,4,7,6,5,5,6,6,4,6,6,5,8,7,7,7,9 -M,5,11,7,8,8,9,7,5,4,6,7,5,9,7,3,5 -N,5,8,7,7,7,8,8,5,5,8,5,6,6,10,7,2 -W,3,3,5,5,3,6,8,4,1,7,8,8,8,9,0,8 -D,3,9,5,7,4,8,7,7,7,7,7,4,3,8,3,7 -H,4,6,6,8,6,9,5,3,2,7,5,7,4,8,6,9 -H,3,4,4,3,3,7,7,6,6,7,6,8,3,8,3,8 -M,8,10,11,8,9,12,6,2,5,9,3,6,10,4,2,8 -R,5,9,5,4,4,7,8,3,5,8,4,9,5,7,6,7 -B,6,10,8,8,7,9,7,2,7,10,4,7,4,7,5,10 -O,6,10,7,8,6,8,6,8,4,9,5,6,5,8,4,9 -R,5,11,7,8,7,9,8,3,5,10,4,7,5,5,4,10 -F,5,9,8,7,5,9,8,1,6,13,5,5,3,9,3,9 -U,4,7,6,5,7,8,7,4,4,6,7,8,7,10,5,7 -Z,2,4,4,2,2,7,7,2,9,12,6,8,1,8,5,7 -H,5,11,7,8,10,8,7,4,3,6,6,7,7,8,9,8 -P,4,8,5,6,4,7,9,8,4,8,6,3,3,10,3,6 -H,2,3,4,1,2,7,7,3,5,10,6,8,3,8,3,8 -T,3,7,4,5,2,5,14,1,5,9,10,7,0,8,0,8 -B,1,0,1,0,1,7,8,6,4,7,6,7,1,8,6,9 -O,3,2,4,3,3,8,7,8,5,7,6,8,2,8,3,8 -D,4,8,6,6,8,9,7,4,7,7,6,5,5,5,7,7 -S,2,4,3,3,1,9,7,3,6,10,6,7,1,9,5,8 -C,3,8,4,6,2,6,8,7,10,6,7,12,1,7,4,9 -N,2,0,2,1,0,7,7,11,0,5,6,8,4,8,0,8 -D,2,4,3,3,2,9,6,3,5,10,4,6,3,7,2,8 -A,2,5,4,4,2,8,3,2,2,8,2,8,2,6,2,7 -S,4,8,5,6,4,8,6,7,7,7,8,8,2,10,9,8 -K,3,4,4,5,1,4,7,8,2,7,5,11,4,8,2,11 -W,4,7,5,5,3,5,8,5,1,7,8,8,8,9,0,8 -R,4,6,7,5,7,9,6,4,4,8,5,7,6,9,6,7 -H,4,5,5,7,3,7,7,15,0,7,6,8,3,8,0,8 -U,4,8,6,6,8,9,7,4,5,6,8,8,8,8,6,6 -N,5,9,7,6,5,9,8,6,6,6,5,4,7,11,3,5 -X,5,7,8,5,3,9,6,2,8,11,2,7,3,8,4,9 -O,5,8,6,6,4,8,6,8,5,10,5,8,3,8,3,8 -L,2,4,4,3,1,6,4,1,8,8,2,10,0,7,2,8 -B,3,5,4,4,5,7,7,5,4,7,6,8,6,9,6,9 -E,4,7,6,5,4,10,6,2,8,11,3,9,2,8,5,12 -B,4,9,5,6,4,6,8,9,7,7,6,7,2,8,9,9 -V,4,7,6,6,6,6,9,5,6,8,6,8,6,9,7,6 -N,4,6,5,4,3,7,9,2,4,9,7,7,5,8,1,8 -X,3,6,4,4,2,7,7,4,4,7,6,7,3,8,4,8 -X,2,3,3,2,1,9,7,3,8,6,6,6,2,8,5,8 -B,2,3,4,2,2,8,7,3,5,10,5,7,2,8,4,9 -O,4,7,5,5,3,7,8,8,5,10,6,6,3,8,3,8 -D,3,5,4,4,3,7,7,7,7,6,6,5,2,8,3,7 -S,6,11,7,8,4,8,7,4,8,11,5,7,2,8,5,8 -I,1,4,2,3,1,7,8,0,7,13,6,8,0,8,1,7 -N,5,10,8,8,5,5,10,3,4,9,9,8,5,9,1,7 -S,3,8,5,6,6,6,7,3,2,7,6,6,2,8,10,1 -U,6,11,8,8,5,8,9,4,6,5,8,9,6,9,2,8 -T,3,8,5,6,3,7,12,4,6,7,11,8,2,12,1,8 -G,4,8,5,6,4,7,6,7,7,7,4,11,1,8,5,11 -J,3,9,4,7,4,10,6,2,5,9,4,6,3,7,7,8 -W,3,2,5,3,3,5,11,3,2,8,9,9,7,11,0,8 -S,2,3,3,2,1,7,8,2,7,11,7,8,1,9,4,6 -S,5,11,6,9,5,8,7,8,6,8,6,7,2,8,9,8 -M,4,9,5,6,3,7,7,12,1,7,9,8,8,6,0,8 -I,2,7,3,5,2,6,8,0,7,13,7,8,0,8,1,7 -E,1,0,1,1,0,4,7,5,7,7,6,12,0,8,6,10 -H,4,10,4,7,3,7,6,15,2,7,8,8,3,8,0,8 -Q,4,10,5,9,3,8,7,8,6,6,7,8,3,8,6,9 -T,5,7,5,5,3,7,10,2,7,11,9,5,1,11,3,5 -H,3,5,6,4,4,8,8,3,6,10,6,8,3,8,3,8 -A,3,2,6,4,2,8,2,2,2,6,2,7,3,7,3,7 -Z,3,2,4,4,3,7,7,5,9,6,6,8,1,8,7,8 -R,4,6,6,4,4,10,7,3,6,11,2,7,3,6,3,10 -M,4,5,7,3,4,8,6,3,4,9,6,8,8,6,2,8 -I,2,5,3,4,1,7,7,0,7,13,6,8,0,8,1,8 -C,5,8,5,6,3,5,7,5,6,11,8,13,2,9,4,8 -M,4,4,5,6,3,7,7,12,1,7,9,8,8,6,0,8 -K,3,4,4,3,3,6,7,4,8,7,6,11,3,8,5,10 -R,4,8,6,6,5,9,7,3,5,10,3,7,3,6,4,10 -Y,4,10,5,7,1,7,11,2,3,7,12,8,1,11,0,8 -Q,4,8,5,7,3,8,7,8,6,6,7,8,3,8,5,9 -P,2,4,4,2,2,8,9,4,3,12,4,4,1,10,2,9 -W,8,12,8,6,5,2,9,2,3,9,11,9,8,11,1,5 -J,3,10,4,8,2,14,3,5,4,13,2,10,0,7,0,8 -E,6,10,9,8,7,10,6,2,7,11,5,8,6,8,6,11 -V,6,10,6,8,4,2,11,2,3,9,11,8,3,11,1,7 -F,4,7,5,5,3,5,11,4,6,11,10,5,2,10,3,5 -I,3,8,4,6,2,7,9,0,8,14,6,6,0,9,1,7 -N,4,8,4,6,2,7,7,14,2,4,6,8,6,8,0,8 -K,5,10,7,7,5,5,6,5,8,6,6,12,4,7,6,11 -I,3,10,4,7,3,8,7,0,7,13,6,8,0,8,1,8 -Z,3,4,4,6,2,7,7,4,14,9,6,8,0,8,8,8 -I,1,3,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -Y,6,9,5,5,3,7,7,3,5,9,7,6,3,10,4,5 -V,6,10,6,7,3,3,11,3,4,10,12,8,2,10,1,8 -L,3,7,4,5,2,4,4,3,8,2,1,7,0,7,1,6 -U,3,2,3,4,1,8,5,12,5,6,14,8,3,9,0,8 -C,4,10,5,8,2,5,7,7,10,6,6,13,1,7,4,9 -O,4,9,4,7,4,8,5,7,4,10,5,10,4,8,4,7 -L,6,15,6,8,4,5,7,4,6,12,9,12,3,8,7,7 -B,6,9,8,6,5,10,6,3,8,11,3,7,2,8,5,12 -A,4,7,7,5,4,6,5,2,3,4,2,6,4,6,4,5 -S,6,13,5,7,3,11,2,1,5,10,1,8,2,8,4,12 -J,4,11,6,8,3,8,5,5,6,14,7,12,1,6,1,7 -A,2,8,4,5,2,7,6,3,1,6,0,8,2,7,2,7 -I,1,2,1,3,1,7,7,1,8,7,6,8,0,8,3,8 -T,6,8,6,6,4,5,11,3,7,11,9,5,2,12,2,4 -P,4,7,5,5,3,5,12,5,5,11,9,3,0,9,4,6 -G,5,10,7,8,8,9,6,5,2,6,6,10,8,8,5,10 -J,3,6,4,4,1,10,4,6,5,15,5,12,0,7,1,6 -B,6,13,6,7,6,7,7,4,4,9,7,8,7,6,9,8 -B,2,4,3,3,2,8,7,3,5,9,6,7,2,8,4,9 -I,2,10,2,7,2,7,7,0,8,7,6,8,0,8,3,8 -N,3,8,5,6,4,7,8,6,5,7,6,7,5,9,1,6 -B,5,8,7,6,7,8,7,6,6,9,6,6,5,10,7,9 -X,5,11,7,8,6,7,6,3,9,5,7,10,4,7,8,8 -Z,3,9,4,6,3,7,7,3,12,9,6,8,0,8,7,8 -U,6,10,5,5,4,8,6,4,4,7,7,7,5,7,3,7 -P,3,4,5,3,2,8,9,3,5,13,4,3,2,8,3,7 -R,7,9,6,5,4,7,7,5,5,9,4,9,6,5,7,11 -K,3,3,3,4,1,3,6,7,3,7,7,11,3,8,2,10 -A,2,1,4,3,2,8,2,2,1,7,2,8,2,6,2,7 -N,5,7,6,6,6,8,9,4,4,7,4,7,6,8,5,5 -N,5,9,7,6,4,8,8,7,6,7,6,4,6,9,2,6 -P,4,11,4,8,2,3,14,8,2,12,7,3,0,10,4,8 -Q,3,5,5,5,4,7,4,4,4,5,3,7,3,7,4,8 -P,7,12,6,7,4,7,10,3,5,13,5,3,3,11,5,6 -U,7,8,7,6,5,4,8,5,7,9,8,9,5,9,4,4 -B,8,11,7,6,6,7,8,3,6,9,5,7,8,4,8,7 -M,4,4,5,6,3,7,7,12,1,7,9,8,8,6,0,8 -O,4,8,4,6,4,7,8,7,4,10,7,6,3,9,3,7 -T,1,1,2,1,0,7,14,1,5,7,11,8,0,8,0,8 -A,3,7,5,5,5,8,8,7,4,6,6,8,2,8,6,5 -D,4,10,4,8,3,5,6,10,8,5,4,5,3,8,4,8 -I,1,5,1,4,1,7,7,1,8,7,6,8,0,8,3,8 -S,8,9,10,8,12,7,8,5,5,7,7,7,5,10,11,10 -G,2,3,3,2,1,6,7,5,4,9,7,10,2,9,4,10 -C,6,10,5,5,3,7,8,4,3,9,8,9,4,9,9,11 -A,8,13,7,7,4,11,4,3,2,8,4,10,5,5,4,9 -E,3,5,4,4,3,7,7,5,8,7,6,9,2,8,6,9 -B,6,9,9,7,6,9,7,3,7,10,4,6,4,6,6,9 -R,4,10,6,8,5,7,9,5,6,7,6,9,4,6,6,9 -E,4,7,5,5,4,6,7,3,7,11,8,9,3,8,4,8 -P,4,12,4,8,3,4,11,10,3,9,6,4,2,10,4,8 -K,10,14,9,8,4,8,7,3,7,9,5,7,6,10,4,7 -R,3,8,4,5,2,6,10,9,4,7,4,8,3,7,5,11 -O,3,4,4,3,2,7,7,6,4,9,6,8,2,8,2,8 -Y,5,5,6,7,6,9,11,5,4,6,7,7,5,10,7,5 -O,2,1,2,1,1,8,7,7,5,7,6,8,2,8,3,8 -X,5,10,7,8,4,4,9,2,8,10,12,9,3,9,4,5 -Y,8,10,7,6,4,8,5,3,5,8,7,6,5,9,5,5 -X,4,9,6,7,5,7,7,3,8,5,6,8,3,8,6,7 -R,5,10,7,8,9,6,8,3,4,6,6,9,8,9,9,7 -E,2,3,4,2,2,7,8,2,8,11,6,9,2,9,4,8 -Z,6,9,8,7,5,7,7,2,9,12,6,8,1,9,6,8 -Z,5,10,6,8,4,9,5,3,10,11,3,10,1,8,6,10 -U,4,7,5,5,2,7,3,14,6,7,13,8,3,9,0,8 -G,3,5,4,4,2,7,6,6,5,6,6,9,2,9,4,9 -Z,6,10,9,7,5,7,8,3,10,12,7,6,1,8,6,7 -J,7,13,6,10,4,7,10,2,3,13,6,5,2,9,8,8 -D,9,14,8,8,7,9,6,3,7,10,4,7,6,6,9,7 -Q,8,10,11,9,10,7,4,4,5,6,4,8,5,3,7,7 -E,9,15,6,9,5,7,7,4,4,11,5,9,3,9,8,11 -I,2,7,2,5,1,7,7,0,7,13,6,8,0,8,1,8 -M,3,4,4,3,3,8,6,6,3,7,7,8,7,5,2,7 -W,3,6,5,4,2,10,8,5,1,7,9,8,7,10,0,8 -S,2,3,2,1,1,8,7,6,4,8,6,8,2,8,8,8 -P,2,6,3,4,2,3,14,6,2,12,7,3,0,9,3,8 -C,3,7,4,5,2,5,8,7,8,13,9,10,2,10,3,7 -T,6,7,6,5,3,4,13,4,6,12,9,4,1,11,2,4 -R,3,1,3,2,2,7,8,5,5,6,5,7,2,6,4,8 -H,5,9,7,7,6,5,8,3,6,10,9,9,3,8,3,5 -J,7,11,5,15,4,8,8,3,3,13,4,5,3,8,7,10 -E,3,4,5,3,2,7,8,2,8,11,6,9,2,8,4,8 -P,2,1,2,1,1,5,10,8,3,9,6,5,1,9,3,8 -Y,1,3,2,2,1,6,10,1,5,7,11,9,1,11,1,8 -K,7,11,9,8,10,7,7,5,4,7,6,7,5,5,10,11 -W,4,6,6,4,3,7,8,4,1,7,8,8,8,9,0,8 -U,2,5,4,4,3,7,7,3,3,6,6,9,4,8,1,8 -T,3,3,4,4,2,7,12,3,6,7,11,8,2,11,1,8 -E,3,2,3,3,3,7,7,5,7,7,6,9,2,8,5,10 -V,4,8,6,6,3,7,9,4,2,7,13,8,3,10,0,8 -N,6,9,8,7,5,8,9,2,5,9,5,6,6,9,1,7 -C,5,9,6,6,4,7,7,8,6,6,6,11,4,8,4,9 -N,5,8,8,6,7,6,8,3,4,8,7,9,7,8,5,5 -J,0,0,1,0,0,12,4,5,3,12,5,11,0,7,0,8 -U,4,8,5,6,2,8,5,13,5,6,15,8,3,9,0,8 -K,10,15,10,8,6,5,8,3,6,10,9,10,6,9,4,7 -X,4,6,7,4,4,7,7,1,8,10,6,8,2,8,3,8 -E,5,11,7,8,6,7,8,2,8,11,7,8,3,8,4,8 -A,2,3,3,2,1,9,2,2,1,8,2,10,1,6,2,8 -B,2,1,3,2,2,7,7,5,5,6,6,6,2,8,6,9 -X,5,10,8,8,5,7,7,4,9,6,6,10,3,8,7,8 -V,2,7,4,5,1,9,8,4,2,6,13,8,3,10,0,8 -I,1,9,1,6,1,7,7,0,8,7,6,8,0,8,3,8 -Y,1,0,2,1,0,7,10,2,2,7,12,8,1,11,0,8 -I,3,11,4,8,3,8,6,0,7,13,6,9,0,7,2,8 -K,5,9,7,7,6,9,6,1,6,9,3,8,3,7,4,10 -P,2,7,3,4,1,3,13,8,2,11,7,3,0,10,3,8 -P,7,10,9,8,7,6,8,8,5,8,7,9,3,9,8,9 -G,6,8,6,6,5,6,7,6,5,9,7,10,2,8,5,9 -K,3,5,6,4,3,6,7,1,7,10,7,10,3,8,3,8 -L,2,4,4,3,2,7,4,1,8,8,2,10,0,7,2,8 -M,10,14,11,8,5,13,1,5,3,13,1,9,6,3,1,9 -W,7,9,7,4,3,6,10,2,2,8,10,7,8,12,1,7 -W,2,1,3,2,1,8,8,4,0,7,8,8,6,10,0,8 -U,5,9,6,7,4,4,8,5,7,9,8,9,3,9,2,6 -L,2,6,3,4,2,5,4,3,7,6,2,8,1,6,2,7 -S,8,15,6,8,3,6,3,4,4,6,1,7,3,7,6,7 -X,2,1,2,1,0,7,7,4,4,7,6,8,2,8,4,8 -C,4,8,5,6,6,7,6,3,4,8,6,11,5,9,3,8 -O,3,6,4,4,2,7,8,8,7,7,7,8,3,8,4,8 -E,5,10,8,7,6,6,8,2,8,11,7,9,2,9,4,7 -F,4,7,6,5,5,8,7,6,4,7,6,8,4,10,8,11 -P,11,15,9,8,4,7,9,6,5,13,3,4,5,10,4,8 -J,1,2,2,4,1,11,6,1,6,11,3,7,0,7,1,7 -E,2,4,2,2,2,7,7,5,7,7,5,9,2,8,5,10 -F,4,6,6,4,3,5,12,4,5,13,7,4,2,10,2,6 -E,3,7,5,5,5,7,7,3,6,7,7,10,4,10,7,8 -R,3,5,5,4,3,9,7,4,5,10,4,6,3,7,4,10 -D,3,9,5,7,8,9,6,5,5,7,5,5,4,7,11,6 -V,3,6,5,4,2,7,9,4,2,6,13,8,3,10,0,8 -T,2,5,3,4,2,7,11,2,7,7,11,8,1,11,1,8 -S,2,6,4,4,4,6,6,3,2,7,5,7,2,8,9,3 -J,3,5,5,4,2,10,5,3,6,14,4,10,0,7,0,8 -K,4,5,4,7,2,3,7,7,2,7,5,11,3,8,3,10 -W,5,10,8,8,11,9,8,5,2,6,7,8,11,10,4,5 -H,3,7,5,5,4,8,7,6,6,7,6,6,3,8,3,7 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -W,8,9,8,7,8,7,11,4,3,8,6,6,10,12,4,5 -S,5,11,6,8,6,7,5,8,6,6,8,9,2,11,9,8 -K,4,4,7,3,3,8,7,2,7,10,4,8,5,9,4,9 -L,3,6,3,4,1,0,1,6,6,0,0,6,0,8,0,8 -B,4,8,6,6,5,7,9,5,5,9,6,5,3,7,8,7 -Y,3,9,5,6,1,8,10,2,3,7,12,8,1,11,0,8 -D,6,14,6,8,4,8,6,5,6,8,4,7,4,7,6,9 -B,2,1,3,1,2,7,7,4,5,7,6,6,1,8,5,9 -P,7,13,6,7,4,10,7,4,5,13,3,4,4,10,6,8 -G,3,4,4,3,2,7,6,5,5,9,7,10,2,9,4,9 -L,5,11,6,8,5,5,6,0,9,4,3,8,3,7,2,5 -V,10,14,8,8,5,8,8,7,5,6,10,7,7,13,3,7 -O,5,10,6,8,5,7,7,8,7,6,3,6,3,8,5,9 -W,5,6,7,6,8,6,8,6,5,6,6,8,7,8,8,10 -Q,5,8,7,6,6,8,5,7,4,6,7,7,4,6,7,8 -W,3,3,3,1,2,5,10,3,2,9,8,7,5,11,1,6 -U,6,10,9,8,5,4,9,7,9,9,11,10,3,9,1,7 -M,5,7,7,6,9,7,8,4,3,7,6,7,10,8,5,5 -V,4,10,6,8,4,8,11,2,3,4,10,9,3,11,1,8 -U,3,4,4,3,2,5,8,5,7,9,8,9,3,10,2,5 -F,3,10,3,7,1,0,13,4,4,12,10,6,0,8,2,6 -F,1,3,2,2,1,6,10,2,4,13,7,6,1,9,1,8 -W,3,7,6,5,4,7,11,2,2,6,9,8,7,11,1,8 -M,10,13,10,8,5,10,11,7,4,4,6,9,8,12,3,7 -R,3,7,3,4,2,5,10,8,4,7,4,8,3,7,5,11 -D,4,6,5,4,3,10,5,2,6,11,3,8,3,8,3,9 -D,4,5,5,4,4,8,7,4,6,6,4,8,3,7,5,6 -M,6,7,8,6,8,8,8,4,4,7,6,7,10,8,5,5 -P,5,11,6,8,3,3,14,8,1,11,7,3,1,10,4,8 -T,8,14,7,8,4,8,8,3,7,11,6,7,2,9,5,6 -C,2,3,3,1,1,5,9,4,6,12,8,10,1,9,2,7 -I,3,8,4,6,2,7,7,0,8,14,6,8,0,8,1,8 -L,2,5,3,4,2,6,5,1,8,7,2,10,0,7,3,8 -X,5,7,7,5,3,8,8,1,8,10,4,7,3,8,3,7 -P,3,5,5,4,3,8,9,3,4,12,4,4,3,8,4,8 -I,2,9,3,7,2,7,7,0,8,13,6,8,0,8,1,8 -U,3,3,4,2,1,7,9,6,7,7,10,9,3,10,1,8 -V,7,10,9,8,6,6,12,2,2,7,10,8,7,10,7,8 -W,11,13,11,7,5,10,11,6,3,4,10,7,10,12,1,6 -P,3,2,4,4,3,6,9,4,5,9,7,4,4,10,3,7 -K,5,8,7,6,5,6,7,1,6,10,7,10,3,8,3,8 -P,1,1,2,1,1,5,11,8,2,9,6,4,1,9,3,8 -I,1,1,1,1,0,7,7,2,7,7,6,9,0,8,2,8 -E,4,9,4,7,4,3,7,5,9,7,7,13,0,8,7,9 -Q,1,2,2,2,1,7,8,4,2,7,8,9,2,9,3,8 -O,4,5,5,4,3,7,7,8,5,7,6,8,2,8,3,8 -E,3,7,4,5,4,7,7,4,7,7,6,8,3,8,5,10 -P,5,5,7,8,8,9,8,3,3,5,8,7,6,11,7,5 -E,3,8,5,6,5,6,7,3,6,7,7,11,4,10,9,8 -K,5,9,6,6,6,6,7,4,7,6,6,10,3,8,5,9 -Q,3,3,4,5,4,8,8,6,2,5,7,9,3,8,5,10 -Q,8,14,7,8,4,8,6,4,10,10,3,10,3,6,9,9 -Y,7,10,7,8,4,3,10,2,7,11,11,7,1,11,3,5 -B,3,7,5,5,5,8,7,7,6,6,6,6,2,8,6,9 -Y,2,1,3,1,0,7,10,3,1,7,12,8,1,11,0,8 -B,5,11,6,8,7,7,9,6,5,7,5,6,3,8,6,8 -C,9,13,6,7,3,6,10,6,8,11,8,8,2,8,5,9 -G,4,9,5,7,3,5,7,6,5,10,8,10,2,8,5,9 -H,7,11,9,8,8,8,7,2,6,10,5,8,4,9,4,8 -F,5,11,5,8,4,1,13,4,3,12,10,6,0,8,2,6 -T,5,9,5,6,4,6,12,4,5,11,9,5,3,12,2,4 -V,6,7,8,6,8,8,7,4,4,7,6,8,7,9,8,4 -E,8,10,5,6,3,6,10,5,8,10,7,9,1,8,7,7 -D,5,11,6,8,5,9,7,5,7,10,4,5,3,8,3,8 -I,2,9,5,7,5,10,6,2,4,9,5,5,3,8,5,7 -X,4,10,6,8,4,7,8,3,9,6,5,6,4,10,8,6 -U,5,11,8,8,11,9,6,4,4,6,7,7,11,8,5,7 -R,3,3,3,4,2,5,10,8,3,7,4,8,2,7,6,11 -R,4,9,5,7,4,6,8,5,6,6,5,9,3,6,6,9 -S,1,1,2,2,0,8,8,4,7,5,6,7,0,8,7,8 -B,3,5,5,3,4,9,7,3,6,10,5,6,2,8,5,10 -Z,5,11,8,8,9,8,7,3,8,7,6,7,1,8,10,9 -C,6,6,7,8,3,5,6,7,11,7,5,14,1,9,4,8 -G,4,8,6,6,6,7,9,6,3,6,6,9,4,7,7,7 -L,2,3,4,2,1,7,3,1,6,8,2,10,1,6,3,8 -G,5,8,6,6,4,6,6,6,5,6,6,10,2,9,4,8 -Z,7,11,7,6,4,9,5,3,8,11,4,9,3,6,7,9 -M,4,10,5,8,4,7,7,12,2,7,9,8,8,6,0,8 -L,1,0,1,0,0,2,1,5,4,1,2,5,0,8,0,8 -T,5,10,5,7,3,5,13,3,7,12,9,3,1,11,2,4 -C,3,6,5,4,3,7,7,7,6,8,6,11,3,9,4,8 -R,3,8,5,6,4,6,8,6,6,6,4,8,3,7,5,8 -V,2,1,3,1,0,7,9,4,2,7,13,8,2,10,0,8 -W,10,10,9,8,9,4,11,3,3,9,8,7,8,12,2,6 -Y,3,4,5,5,1,7,11,2,2,9,12,7,1,10,0,8 -X,3,5,4,3,2,7,7,3,9,6,6,8,2,8,6,8 -X,7,9,6,5,3,6,8,2,9,10,9,9,4,8,4,6 -Y,7,11,8,8,6,5,8,1,7,8,9,5,5,12,6,3 -O,3,8,4,6,4,7,7,8,4,7,5,8,3,8,2,7 -C,7,10,7,7,4,3,8,5,7,11,10,13,1,9,3,7 -Z,4,3,4,5,2,7,7,4,14,9,6,8,0,8,8,8 -M,6,11,8,8,11,7,8,6,4,7,6,8,6,9,8,8 -E,3,6,4,4,3,6,7,6,8,6,4,9,3,8,6,9 -Z,4,9,6,7,6,7,8,3,7,7,6,8,1,9,12,5 -E,5,8,7,7,7,5,10,4,6,8,7,10,4,11,7,7 -Q,4,5,6,7,6,9,9,5,0,5,7,10,6,13,5,12 -R,4,9,5,6,3,5,12,8,4,7,2,9,3,7,6,11 -L,4,9,6,6,4,5,5,2,9,4,2,7,3,7,2,5 -O,1,3,2,2,1,8,7,5,3,9,6,8,2,8,2,8 -D,3,5,5,3,3,9,6,4,7,10,4,6,2,8,3,8 -S,4,11,5,8,3,7,7,6,10,5,6,10,0,9,9,8 -H,5,10,6,7,3,7,7,15,0,7,7,8,3,8,0,8 -G,4,8,4,6,3,6,6,6,7,11,7,12,2,10,3,10 -W,1,0,2,0,0,7,8,3,0,7,8,8,5,9,0,8 -R,6,10,9,8,10,8,8,7,3,8,5,6,5,8,7,11 -U,4,9,5,7,3,6,8,7,7,7,10,9,3,9,1,8 -E,1,1,1,2,1,4,7,5,8,7,6,13,0,8,6,9 -M,3,2,5,4,4,9,6,6,4,6,7,6,7,6,2,5 -I,1,3,2,2,0,7,7,0,7,13,6,8,0,8,1,8 -D,4,8,5,6,3,8,7,8,7,7,6,2,3,8,4,8 -Q,6,9,6,11,8,7,8,6,3,8,9,9,5,9,8,8 -O,5,10,6,8,4,8,7,8,5,10,6,8,3,8,3,8 -E,3,8,3,6,2,3,7,6,10,7,6,14,0,8,7,8 -M,4,8,4,6,3,8,7,12,1,6,9,8,8,6,0,8 -P,3,7,4,4,2,4,12,8,2,10,6,4,1,10,4,8 -T,2,7,3,5,1,6,14,0,6,8,11,8,0,8,0,8 -U,3,1,4,1,1,7,8,6,8,7,10,8,3,10,1,8 -W,5,10,8,8,7,4,11,2,2,9,9,9,8,12,2,8 -S,7,11,6,6,3,7,8,3,5,13,7,8,2,8,3,7 -E,2,3,3,2,2,7,7,2,8,11,7,9,1,8,4,8 -M,4,7,6,5,6,7,8,6,4,7,6,8,5,9,7,7 -R,2,4,3,2,2,7,8,4,5,6,5,7,2,6,5,8 -C,4,9,5,6,2,5,7,7,10,6,6,13,1,7,4,9 -G,5,11,7,8,5,5,6,6,7,6,6,8,4,7,4,7 -E,4,7,6,5,5,8,6,5,3,7,6,10,4,8,7,9 -E,2,3,4,2,2,7,7,2,8,11,6,9,2,8,4,8 -X,6,8,9,6,4,6,8,2,9,10,9,9,3,8,4,6 -Q,4,5,6,5,5,7,4,4,5,7,5,8,5,4,7,7 -R,4,5,5,7,3,5,10,9,4,7,4,8,3,7,6,11 -J,2,6,2,4,1,13,4,5,4,13,2,9,0,7,0,8 -O,7,11,10,8,12,8,8,6,2,7,7,8,10,9,7,11 -L,3,5,4,3,2,4,4,4,8,2,1,6,1,7,1,6 -Z,2,4,4,3,2,7,7,2,9,11,6,8,1,8,5,8 -E,5,9,4,4,2,7,8,4,7,10,5,11,1,8,7,8 -X,4,10,5,7,2,7,7,5,4,7,6,8,3,8,4,8 -U,4,7,6,6,6,7,7,5,3,6,7,8,4,7,2,7 -A,1,0,2,0,0,7,3,2,0,7,2,8,2,6,1,8 -R,3,3,3,4,2,6,11,8,3,7,3,9,2,7,5,11 -W,2,0,2,0,1,7,8,4,0,7,8,8,6,9,0,8 -H,6,10,6,5,4,7,8,3,5,10,5,8,6,6,5,7 -N,4,8,6,6,4,7,9,2,4,9,5,6,5,9,1,7 -V,6,11,5,8,3,4,11,2,4,9,11,7,3,9,1,8 -B,5,11,7,8,11,8,9,5,3,6,7,7,7,11,12,9 -L,2,4,4,3,2,7,4,1,8,8,2,10,0,7,2,8 -D,2,0,2,1,1,6,7,8,7,6,6,6,2,8,3,8 -E,3,5,6,3,3,8,7,2,9,11,5,9,3,7,5,8 -A,2,7,4,5,2,11,3,3,2,10,2,9,2,6,2,8 -L,2,5,3,4,2,4,4,4,7,2,1,6,0,7,1,6 -A,3,10,6,8,5,10,4,1,2,8,3,9,4,4,3,7 -C,3,10,5,7,3,4,9,6,6,6,8,14,1,8,4,10 -J,2,3,3,5,1,11,2,10,3,13,8,13,1,6,0,8 -X,5,9,8,6,5,7,7,0,8,10,7,8,2,8,3,7 -H,5,9,6,6,2,7,6,15,1,7,8,8,3,8,0,8 -B,4,9,6,7,5,8,7,5,6,10,6,6,3,8,7,9 -M,4,9,4,7,5,7,5,10,0,7,9,8,7,5,0,8 -N,4,8,4,6,2,7,7,14,2,4,6,8,6,8,0,8 -A,4,8,6,6,5,9,5,2,5,8,1,6,3,4,3,7 -F,5,6,7,7,6,7,9,4,5,8,6,8,4,10,7,6 -B,3,8,3,6,4,6,6,8,6,7,7,7,2,9,6,9 -Z,1,0,2,1,0,7,7,3,10,8,6,8,0,8,6,8 -N,6,10,8,8,6,4,10,2,3,9,9,9,6,7,1,7 -K,1,0,2,1,0,5,7,7,1,7,6,11,3,8,2,11 -K,4,10,5,8,4,3,6,7,4,7,7,12,3,8,3,11 -I,1,4,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -N,8,13,10,7,4,5,9,4,4,13,10,9,6,9,0,9 -Z,2,3,4,2,1,8,6,2,8,11,5,9,1,8,5,8 -O,2,7,3,5,2,7,6,8,7,7,4,8,3,8,4,8 -I,1,7,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -C,3,6,4,4,2,5,8,7,7,8,8,14,1,9,4,10 -M,6,5,8,4,7,7,8,4,4,7,5,8,11,8,5,6 -X,2,6,4,4,3,8,8,3,8,6,6,6,3,8,6,8 -F,3,4,5,3,2,6,10,2,5,13,7,5,1,10,2,7 -I,4,5,6,6,5,7,9,4,5,7,7,8,3,7,8,8 -Y,6,8,8,10,11,9,8,7,3,7,7,8,7,10,6,4 -X,4,6,5,6,5,7,8,2,5,8,6,8,3,6,7,7 -S,3,5,5,4,2,8,8,3,7,10,7,7,1,9,5,7 -R,5,5,5,6,3,5,12,9,4,7,3,9,3,7,6,11 -Z,5,5,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -F,2,3,4,2,1,6,10,3,5,13,7,5,1,9,1,7 -E,5,8,7,6,5,6,8,3,8,11,8,9,3,9,5,7 -E,4,9,6,6,5,7,7,6,9,7,6,10,3,8,6,8 -R,4,9,4,6,5,6,10,8,3,7,4,9,2,7,5,11 -W,5,8,5,6,4,2,10,2,3,10,11,9,6,10,1,7 -F,2,8,3,6,2,2,11,4,5,11,10,8,0,8,2,7 -J,3,8,5,6,5,9,7,3,3,8,4,6,4,8,6,4 -F,6,12,5,6,2,5,11,2,5,11,8,5,2,9,6,2 -A,2,7,4,4,1,5,4,3,2,5,1,7,2,6,2,7 -E,3,2,3,4,3,7,7,6,7,7,6,9,2,8,6,9 -A,2,7,4,4,1,8,4,3,2,7,2,8,3,6,2,8 -B,2,5,3,3,3,7,7,5,5,6,6,6,2,8,6,10 -K,3,5,6,4,3,5,7,2,8,11,9,11,4,7,4,7 -M,6,7,8,5,6,6,7,3,4,9,8,9,8,6,3,8 -J,3,8,4,6,2,8,7,1,7,11,5,7,1,6,2,6 -I,5,10,5,5,3,8,8,3,5,12,5,6,2,10,5,10 -S,3,5,5,4,4,8,9,4,5,7,7,8,4,11,7,10 -L,2,7,4,5,3,9,3,1,5,9,3,9,1,6,2,9 -K,5,10,8,8,9,6,6,3,4,6,5,10,8,6,8,8 -K,5,6,6,8,3,5,9,9,2,7,3,11,4,8,2,11 -Q,7,15,7,8,5,11,4,4,6,12,3,7,3,9,7,12 -C,4,8,5,7,5,5,7,4,4,7,6,11,4,9,8,10 -V,8,10,8,8,4,3,12,3,4,11,12,8,3,9,1,7 -T,6,9,6,6,3,5,12,4,8,12,10,4,2,12,3,4 -Q,7,9,10,8,7,5,4,4,5,4,3,7,4,7,7,6 -Q,4,8,6,7,4,8,7,8,5,6,5,9,2,8,4,9 -P,4,9,6,7,5,7,7,7,4,8,6,8,3,9,7,9 -Y,9,15,8,8,5,8,6,4,5,9,8,5,4,10,4,4 -K,5,7,7,5,5,8,7,1,6,10,5,9,3,8,2,9 -R,3,9,4,6,2,5,10,8,4,7,4,9,3,7,6,11 -J,4,8,6,6,2,6,8,3,7,15,6,9,1,6,1,7 -F,4,6,6,4,5,11,6,1,5,9,5,6,5,9,4,7 -G,2,5,3,3,2,6,7,5,5,9,7,10,2,8,4,9 -D,4,7,5,6,5,7,8,4,6,6,4,7,3,8,5,6 -U,7,11,9,8,5,4,9,7,8,9,11,11,3,9,1,8 -W,5,8,7,6,3,7,8,5,2,7,8,8,9,9,0,8 -E,3,8,5,6,6,7,7,3,5,6,7,10,4,10,8,8 -C,3,8,5,6,3,5,7,6,8,8,5,11,1,9,4,9 -F,2,3,3,2,1,6,10,2,5,13,7,5,1,9,1,7 -D,3,6,4,4,3,8,7,6,7,10,4,6,3,8,3,8 -O,2,0,2,1,1,8,7,7,6,7,6,8,2,8,3,8 -G,6,10,7,8,5,5,7,5,5,9,9,9,2,8,5,8 -M,3,3,4,2,3,7,6,6,4,6,7,8,7,5,2,8 -O,2,4,3,3,2,7,7,7,4,9,6,8,2,8,3,8 -Q,5,6,6,8,6,8,5,6,3,9,5,10,5,7,7,6 -Z,5,5,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -J,2,5,3,4,2,10,6,2,5,12,4,8,1,6,1,6 -X,3,3,5,2,2,6,8,2,8,11,9,9,2,8,3,6 -B,4,6,5,4,4,8,6,3,5,6,5,7,4,9,5,8 -O,4,7,6,5,4,7,9,8,5,6,8,10,3,8,3,8 -R,4,7,5,5,5,8,8,7,3,8,5,7,4,8,6,11 -C,2,3,2,1,1,4,10,5,6,12,9,9,1,9,2,7 -R,2,3,3,2,2,6,8,4,5,7,5,7,2,7,3,8 -R,4,9,6,6,6,7,8,5,5,7,5,7,3,7,5,9 -D,6,9,8,7,5,10,6,3,9,11,4,7,4,6,4,9 -X,6,10,9,8,4,8,7,1,9,10,5,8,3,8,4,8 -L,3,4,3,6,1,0,1,5,6,0,0,7,0,8,0,8 -C,4,6,5,6,5,7,8,5,4,6,7,11,6,9,9,11 -C,4,9,5,7,3,6,8,6,8,7,6,14,1,8,4,9 -F,4,7,6,5,3,8,9,3,6,13,6,5,2,10,3,8 -V,5,9,7,7,3,9,12,3,4,4,11,9,3,10,1,8 -R,3,8,4,6,4,6,10,7,3,7,4,9,2,7,5,11 -Z,9,13,9,7,5,6,8,2,10,12,8,8,4,4,8,4 -C,4,9,5,7,3,4,8,6,7,7,8,15,1,8,4,10 -I,2,6,3,4,1,6,8,1,8,14,7,8,0,8,1,7 -O,2,7,3,5,2,7,7,9,6,7,6,8,3,8,4,8 -L,5,11,7,8,5,6,5,0,9,9,3,11,0,7,3,8 -S,2,0,2,1,1,8,8,4,7,5,6,7,0,8,7,8 -I,4,8,5,6,3,6,6,2,7,7,6,10,0,9,4,8 -T,5,7,6,5,4,5,12,4,5,12,9,4,2,12,1,5 -E,6,10,8,7,7,10,6,2,7,11,4,8,5,6,5,11 -Y,3,4,5,5,1,8,10,3,2,6,13,8,2,11,0,8 -Y,4,5,5,4,2,4,12,3,7,12,10,4,1,11,2,5 -R,5,9,5,7,6,5,10,7,4,7,4,9,2,7,5,11 -S,3,7,5,5,6,7,7,3,2,8,6,7,2,7,12,3 -R,4,8,4,5,3,5,11,8,3,7,3,8,3,7,6,11 -O,4,9,5,7,4,7,7,9,5,7,5,8,3,8,3,8 -I,2,5,4,4,1,7,7,0,8,14,6,9,0,8,1,8 -T,3,8,4,6,2,7,13,0,6,7,10,8,0,8,0,8 -X,4,9,6,6,4,4,8,1,8,10,10,10,2,8,3,5 -C,5,10,4,5,3,8,5,5,3,9,9,11,4,9,7,11 -I,1,4,2,3,1,7,7,0,7,13,6,8,0,8,0,8 -J,3,7,4,5,2,8,6,3,6,15,5,9,0,7,0,7 -R,2,3,4,2,2,8,8,4,4,8,5,7,2,7,4,10 -E,5,10,4,6,2,8,7,5,7,11,6,9,2,10,7,9 -Q,5,9,5,5,3,9,4,4,7,10,4,9,3,8,8,11 -X,3,4,4,3,2,7,7,3,9,6,6,8,3,8,6,8 -O,4,8,5,6,4,7,7,8,4,7,6,8,3,8,3,8 -Q,3,7,4,7,4,8,9,6,4,6,9,9,2,8,5,9 -Y,2,3,3,1,1,4,12,3,5,12,10,5,1,11,1,5 -Q,5,12,5,6,3,10,5,4,7,12,4,9,3,8,8,12 -C,6,11,5,6,4,7,7,4,3,9,8,10,4,9,8,11 -K,7,9,9,6,7,9,5,1,7,10,3,9,8,5,7,10 -A,3,4,5,2,2,9,1,2,1,8,2,8,2,6,3,8 -E,5,10,6,8,7,6,8,6,8,6,5,11,3,8,6,9 -X,8,13,9,7,5,6,8,2,8,11,5,7,4,5,4,6 -M,4,5,7,3,4,8,7,3,4,9,6,7,8,6,2,7 -P,8,14,7,8,5,7,9,4,4,12,5,4,4,9,7,5 -R,4,7,5,5,3,9,8,4,6,9,3,7,3,6,4,11 -K,4,8,6,6,5,8,5,1,6,9,4,10,4,8,4,10 -G,3,6,5,4,2,8,6,7,8,6,5,10,2,8,5,10 -E,5,9,7,6,7,7,8,6,3,7,6,8,5,8,8,8 -T,2,2,3,3,2,7,11,2,7,7,11,8,1,11,1,8 -O,4,8,5,6,3,8,7,8,5,10,6,7,3,8,3,8 -B,1,0,2,1,1,7,7,7,4,7,6,7,1,8,6,8 -J,2,10,3,8,1,13,2,9,4,14,4,12,1,6,0,8 -Z,4,5,5,7,2,7,7,4,15,9,6,8,0,8,8,8 -F,4,7,4,5,1,1,14,5,3,12,9,5,0,8,2,6 -V,6,11,8,8,5,6,11,3,2,7,11,8,4,10,5,9 -H,3,4,4,3,3,7,7,6,6,7,6,8,3,8,3,8 -Q,3,4,4,5,3,7,8,5,2,7,9,10,3,9,5,8 -C,2,4,3,3,1,6,8,7,7,8,8,13,1,9,4,10 -L,3,6,4,4,2,7,3,2,9,7,1,9,0,7,2,8 -M,3,3,5,2,3,5,7,3,4,10,9,10,6,5,2,7 -N,1,1,2,2,1,7,8,5,3,8,7,7,4,8,1,7 -T,3,6,4,4,2,6,11,1,8,8,11,9,1,10,1,8 -O,5,8,6,7,5,6,6,5,5,8,5,7,3,6,5,7 -O,2,5,3,3,2,7,7,7,4,9,6,8,2,8,2,8 -C,3,7,4,5,2,5,8,6,8,12,9,11,1,10,3,7 -E,2,6,2,4,2,3,8,5,9,8,8,13,0,8,6,9 -Q,4,7,6,9,6,9,7,7,2,5,7,10,3,8,6,10 -T,3,9,4,6,1,7,15,0,6,7,11,8,0,8,0,8 -Z,2,3,3,2,1,7,8,2,9,11,6,8,1,8,5,7 -B,2,4,4,3,3,9,7,2,6,11,4,7,4,7,5,9 -J,1,1,1,1,0,12,3,6,4,13,4,11,0,7,0,8 -C,2,4,3,2,1,4,9,5,7,11,9,12,1,9,3,7 -P,4,8,6,6,4,8,8,2,5,13,5,5,1,10,3,9 -X,3,5,5,3,2,10,7,1,9,11,3,7,2,7,3,9 -W,3,1,3,2,1,7,8,4,1,7,8,8,7,10,0,8 -N,4,9,4,6,2,7,7,14,2,4,6,8,6,8,0,8 -B,6,10,9,8,12,8,8,5,3,6,7,7,7,10,11,10 -B,6,9,9,8,10,7,7,5,4,7,6,8,7,9,8,6 -Z,3,6,5,4,3,8,7,2,9,11,6,8,2,8,5,8 -M,6,9,9,8,11,7,7,4,3,6,6,8,10,9,5,5 -H,2,6,3,4,2,7,6,12,2,7,8,8,3,9,0,8 -B,1,0,1,1,1,7,7,7,4,6,6,7,1,8,6,9 -U,6,10,9,8,6,7,8,4,8,4,7,9,6,9,1,8 -I,0,3,1,1,0,7,7,1,6,13,6,8,0,8,0,7 -Q,3,6,4,5,4,8,7,7,5,6,6,7,2,8,4,9 -D,3,7,4,5,4,9,7,4,6,9,4,6,3,8,3,8 -H,6,11,6,8,6,8,5,14,2,7,9,8,3,9,0,8 -U,3,3,4,2,2,5,8,6,7,8,10,10,3,9,1,7 -G,2,4,3,3,2,6,6,5,4,8,7,10,2,8,4,10 -G,8,12,7,6,4,10,3,3,4,10,2,6,4,7,5,11 -R,5,10,8,8,5,9,8,4,6,9,3,7,3,6,5,11 -T,4,7,4,5,3,6,11,5,5,11,8,4,3,12,2,4 -G,3,8,4,6,2,7,6,7,7,6,6,10,1,8,6,11 -A,2,1,4,2,1,8,2,2,1,7,2,8,2,7,2,7 -J,3,7,5,5,4,9,8,3,4,9,4,7,4,8,6,5 -A,4,7,5,5,3,8,4,3,0,6,1,8,2,7,1,7 -Q,4,7,5,5,5,8,7,7,4,6,8,8,4,5,6,9 -H,4,7,6,5,5,6,6,7,4,6,5,8,3,7,6,10 -U,2,3,3,1,1,5,8,4,6,10,8,8,3,10,1,6 -W,5,10,7,7,4,6,8,5,2,7,8,8,9,9,0,8 -Z,2,5,3,3,2,7,7,5,9,6,6,8,2,8,7,8 -K,6,9,9,6,6,5,7,1,7,10,9,11,4,6,4,7 -Y,7,11,7,8,4,3,10,2,7,10,12,6,2,11,3,5 -F,2,7,2,4,1,1,12,4,5,12,11,8,0,8,2,6 -X,4,9,7,7,3,7,7,1,8,10,6,8,3,8,4,7 -K,3,6,4,4,5,7,8,3,4,6,6,8,7,8,6,8 -P,3,8,5,6,3,4,12,4,6,11,9,3,0,9,4,6 -N,3,5,6,3,2,6,9,3,5,10,7,7,5,8,1,8 -C,3,8,4,6,2,5,8,7,7,7,8,14,1,9,4,10 -W,6,11,9,8,4,11,7,5,2,6,9,8,9,9,0,8 -M,6,7,9,5,6,8,6,2,5,9,6,7,8,6,2,7 -T,5,10,6,8,5,4,12,5,5,12,9,4,2,12,1,5 -H,4,7,5,5,4,9,7,7,6,7,6,5,3,8,3,5 -L,3,8,4,6,3,5,4,2,9,3,2,7,3,7,2,5 -Y,9,11,9,8,4,5,9,1,10,10,10,4,2,13,5,3 -N,4,9,5,7,4,8,7,13,1,6,6,8,5,9,0,8 -Z,4,7,6,5,3,7,8,2,9,11,6,8,1,9,6,8 -H,3,7,4,5,4,8,7,6,6,7,6,7,3,8,3,7 -O,4,9,3,5,2,6,7,6,3,10,6,9,5,9,5,7 -P,3,8,3,6,3,3,12,6,1,11,7,4,0,9,3,8 -T,6,10,8,8,7,6,7,7,7,7,9,9,4,10,6,8 -D,6,10,9,8,8,8,8,5,6,10,5,5,4,8,5,10 -K,2,1,2,1,0,5,7,8,1,7,6,11,3,8,2,11 -U,2,1,3,1,1,7,8,6,6,7,9,8,3,10,1,8 -N,5,6,7,4,3,9,7,3,5,10,3,5,5,9,1,7 -D,6,11,6,6,4,10,6,3,6,9,4,7,5,10,6,8 -B,4,4,5,6,4,6,7,9,7,7,6,7,2,8,9,9 -P,5,10,7,7,4,7,11,4,5,13,5,3,1,10,3,8 -L,4,8,5,6,6,8,8,3,5,6,7,9,6,11,6,6 -L,2,3,3,5,1,0,1,5,6,0,0,7,0,8,0,8 -L,1,3,2,1,1,6,5,1,7,8,3,10,0,7,2,8 -V,7,13,7,7,4,8,9,4,4,8,8,5,6,14,2,8 -L,1,4,2,2,1,7,4,1,7,8,2,10,0,7,2,8 -P,5,6,6,8,7,6,9,3,2,8,8,6,5,10,5,5 -J,6,8,4,11,3,9,7,3,3,12,3,5,3,8,6,10 -R,5,5,5,7,3,5,11,9,4,7,3,9,3,7,6,11 -W,6,8,6,6,5,6,10,4,3,9,7,6,7,12,3,6 -Q,6,9,7,10,8,9,9,6,3,4,8,11,5,9,9,13 -T,7,15,6,8,4,6,10,2,6,12,7,6,3,9,5,5 -U,4,4,4,3,2,5,8,5,7,10,9,9,3,9,2,6 -K,3,5,6,4,3,5,8,2,7,10,9,10,3,8,3,7 -Y,1,0,2,0,0,7,10,3,1,7,12,8,1,11,0,8 -T,5,6,6,5,6,7,9,5,8,7,7,8,3,10,7,7 -B,5,11,8,9,9,8,6,5,6,9,5,7,3,8,6,10 -D,9,15,9,8,5,8,6,5,7,12,3,7,6,7,6,10 -S,2,7,3,5,2,8,8,7,6,8,6,8,2,8,9,8 -L,2,7,2,5,1,0,1,5,6,0,0,7,0,8,0,8 -W,1,0,2,0,0,8,8,3,0,6,8,8,5,9,0,8 -G,3,4,4,6,2,7,7,8,7,6,6,9,2,7,6,10 -P,8,15,8,9,5,8,9,4,4,12,5,3,5,10,6,6 -M,5,6,8,4,4,7,6,2,5,9,7,8,8,5,2,8 -O,5,8,6,6,4,8,9,8,4,7,7,8,3,8,3,8 -H,4,7,6,5,8,8,7,4,3,6,6,7,7,8,8,8 -O,2,4,3,3,2,7,7,6,3,9,6,8,2,8,2,8 -H,3,2,4,3,3,8,7,5,6,7,6,8,6,8,4,7 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -L,4,10,5,8,3,3,5,1,9,6,1,11,0,7,3,6 -S,5,11,5,6,3,6,8,4,3,13,8,8,3,10,3,8 -D,3,5,5,3,3,9,6,4,6,10,4,6,2,8,3,8 -X,6,12,6,6,4,7,8,2,7,11,7,7,4,12,3,7 -L,3,8,4,6,1,0,1,6,6,0,0,6,0,8,0,8 -D,2,1,3,1,2,6,7,6,6,7,6,5,2,8,2,7 -Z,9,10,6,14,6,8,4,5,4,12,7,9,3,8,12,7 -B,4,9,6,6,5,6,9,5,6,10,6,5,3,8,7,8 -D,1,1,2,1,1,7,7,6,6,7,6,5,2,8,2,7 -A,3,11,5,8,4,12,2,3,3,10,2,9,2,6,3,8 -X,4,9,7,7,6,8,7,3,6,7,4,6,5,5,8,7 -V,5,10,5,8,3,3,11,4,4,10,11,7,3,10,1,8 -B,5,9,5,7,4,6,7,9,7,7,6,7,2,8,9,9 -X,4,9,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -M,4,4,7,3,4,6,6,3,4,10,9,10,7,6,2,8 -O,4,3,5,4,2,7,7,8,8,7,6,8,3,8,4,8 -L,1,0,1,0,0,2,2,5,4,1,2,6,0,8,0,8 -K,4,8,6,6,5,3,8,2,6,10,10,11,3,8,3,6 -T,6,11,6,8,5,4,13,6,4,12,9,4,2,12,1,5 -M,3,6,4,4,4,8,5,10,0,6,8,8,6,5,0,7 -H,3,5,6,4,3,9,7,3,6,10,3,7,5,7,4,9 -Y,6,11,6,8,3,3,10,3,7,12,12,7,1,11,3,5 -C,3,4,4,6,2,6,7,7,9,5,6,14,1,7,4,8 -I,4,11,7,8,8,10,7,2,5,9,4,4,4,9,7,5 -U,5,8,7,6,4,5,9,6,7,8,10,10,3,9,1,8 -Z,3,9,5,7,5,8,8,3,7,8,7,7,1,9,10,9 -S,6,9,6,5,3,9,5,4,4,13,6,9,3,10,3,8 -N,5,8,8,6,3,11,6,3,5,10,1,4,5,9,1,7 -B,5,6,7,5,7,8,6,5,4,7,6,8,7,9,8,4 -F,4,7,6,5,2,7,10,2,7,14,5,4,1,10,2,8 -X,4,10,7,7,4,7,8,4,9,6,5,5,4,10,8,6 -C,1,3,2,2,1,6,8,4,6,11,8,12,1,10,3,8 -B,4,9,6,7,7,8,7,6,6,7,6,6,2,8,6,10 -J,2,9,3,7,1,13,3,8,5,14,2,11,0,6,0,8 -C,4,7,5,5,2,5,7,6,7,11,9,13,2,9,4,7 -M,4,9,5,6,5,8,6,11,1,7,8,8,7,5,0,8 -O,5,11,7,8,3,8,8,8,8,6,7,9,3,8,4,8 -W,5,5,8,8,4,5,8,5,2,7,8,8,9,9,0,8 -T,3,9,4,6,1,7,14,0,6,7,11,8,0,8,0,8 -A,3,6,5,4,2,8,4,3,0,7,1,8,2,7,1,8 -W,5,11,8,8,13,8,5,6,3,7,6,8,14,10,4,9 -B,3,3,3,5,3,6,6,9,6,6,6,7,2,8,9,10 -U,6,10,6,6,4,8,6,5,5,6,7,7,5,8,3,7 -A,3,4,5,5,1,8,6,3,1,7,0,8,2,7,1,8 -F,4,7,7,5,6,7,9,1,5,10,6,6,5,10,4,5 -L,3,3,3,5,1,0,1,6,6,0,1,6,0,8,0,8 -X,3,7,5,5,4,8,7,3,6,7,4,6,4,7,6,8 -Z,3,5,5,3,2,7,7,2,9,12,6,8,1,8,6,8 -W,7,10,7,8,5,1,10,2,3,11,11,9,7,10,1,7 -L,4,5,5,5,4,8,7,4,5,7,6,8,3,8,8,11 -N,3,6,5,4,3,7,8,6,5,7,7,6,5,9,1,6 -C,6,9,6,7,3,4,8,6,7,12,10,12,2,10,2,7 -D,6,9,5,4,3,9,5,5,6,12,3,8,5,7,5,10 -C,8,14,6,8,5,9,6,4,3,9,8,11,4,9,8,13 -V,8,10,7,5,3,8,8,7,5,7,10,6,7,12,4,8 -W,5,9,7,7,11,9,7,5,2,7,6,8,10,11,4,8 -X,2,2,3,3,2,7,7,3,9,6,6,10,2,8,6,8 -H,5,6,7,4,4,4,10,3,6,10,10,9,3,8,3,6 -B,5,9,5,4,4,9,7,3,5,9,5,7,6,6,7,9 -H,10,14,9,8,5,7,8,4,5,9,7,8,6,8,5,9 -G,3,7,4,5,2,7,6,7,8,6,5,11,1,8,6,11 -Y,5,10,7,8,3,8,9,3,2,6,12,8,2,11,0,8 -W,4,7,6,5,3,7,8,5,1,7,8,8,8,9,0,8 -T,4,10,6,8,5,7,11,2,7,7,11,8,1,12,1,7 -K,4,7,4,4,1,4,7,8,2,7,5,11,3,8,2,11 -V,3,6,5,4,2,9,9,4,1,6,12,8,2,10,0,8 -K,1,0,1,0,0,5,7,7,0,7,6,10,2,8,2,11 -Y,4,9,4,4,2,6,8,3,4,10,7,5,3,10,4,3 -T,5,10,7,8,5,7,11,1,8,7,11,8,1,11,1,8 -E,2,4,3,3,2,9,7,1,7,11,5,8,2,8,4,10 -D,4,6,5,4,4,10,5,3,6,10,3,7,3,7,3,8 -E,2,3,4,2,2,6,7,2,7,11,6,9,2,8,3,8 -L,2,6,2,4,1,0,2,5,6,0,0,7,0,8,0,8 -C,8,11,8,8,4,3,9,6,8,12,11,11,1,8,3,6 -G,6,9,8,7,8,7,8,6,2,6,5,11,6,8,10,6 -P,1,0,2,0,0,5,11,6,1,9,5,5,0,9,3,8 -Z,4,5,6,7,4,11,5,4,4,9,3,8,2,6,5,9 -N,9,12,11,6,4,5,8,3,4,13,9,9,7,8,0,7 -C,6,10,6,8,3,5,9,7,8,13,9,7,2,11,2,7 -I,4,10,6,8,4,6,9,0,7,13,7,7,0,8,1,7 -E,5,11,7,8,8,8,7,5,3,7,6,8,5,8,9,9 -E,6,11,4,6,2,7,8,5,8,9,5,12,1,8,7,9 -A,2,0,3,1,0,7,4,2,0,7,2,8,2,7,1,8 -A,3,7,5,5,3,11,3,2,2,9,2,9,3,5,2,8 -C,6,10,7,8,4,4,8,6,7,12,10,12,2,10,3,7 -F,3,5,4,4,2,5,10,3,5,10,9,5,1,10,3,6 -M,4,7,6,5,6,7,9,6,3,7,6,8,5,9,5,8 -M,7,8,9,7,10,8,7,5,4,7,6,7,10,9,6,4 -X,4,11,6,8,5,7,7,3,8,5,6,8,3,8,6,7 -K,4,6,6,4,4,5,6,4,7,6,6,10,3,8,5,9 -F,5,9,5,5,3,6,12,3,3,11,6,4,4,10,7,6 -S,4,6,5,4,6,8,10,5,4,8,5,6,4,9,8,7 -B,6,10,8,8,6,9,7,4,7,10,4,6,2,8,6,10 -L,3,7,5,5,2,6,3,2,8,7,2,7,1,6,2,7 -U,8,10,9,8,6,4,8,5,8,9,8,9,6,9,4,3 -B,3,4,5,3,3,8,7,3,5,10,5,7,2,8,4,10 -N,4,9,4,7,2,7,7,14,2,5,6,8,6,8,0,8 -Q,4,5,5,6,5,9,6,7,4,5,6,8,3,8,6,9 -P,2,2,3,3,2,6,9,5,4,9,7,4,1,10,3,7 -W,2,1,4,1,2,8,11,3,1,6,9,8,6,11,0,7 -W,4,8,6,6,7,7,8,5,3,7,9,8,6,8,3,8 -P,4,8,6,6,4,6,10,4,6,10,8,3,1,10,5,7 -M,10,14,12,8,7,9,3,3,2,9,3,10,11,0,2,8 -Y,3,3,4,2,1,5,10,2,7,11,10,4,1,11,2,5 -R,6,8,9,7,9,7,7,3,4,7,5,8,7,9,7,5 -O,5,11,4,6,3,4,9,6,4,9,9,8,3,9,4,8 -O,5,9,5,7,5,8,7,7,4,10,5,8,3,8,3,7 -V,7,11,7,8,4,2,11,4,4,11,12,8,3,10,1,8 -B,5,9,6,7,5,7,9,9,8,7,5,7,2,8,9,10 -L,6,12,5,6,3,10,2,2,5,11,4,11,2,9,4,11 -E,6,9,5,5,3,7,8,4,4,11,6,8,3,9,8,9 -T,3,3,3,2,1,5,12,3,7,11,9,4,1,10,2,5 -X,3,7,4,5,2,7,7,4,4,7,6,8,2,8,4,8 -U,3,7,5,5,3,7,8,6,6,5,9,9,3,9,1,8 -G,3,11,5,8,4,7,7,7,7,8,4,12,2,9,6,10 -I,5,9,6,7,4,7,6,2,7,7,6,9,0,9,4,8 -Q,2,2,2,2,2,8,7,5,3,8,6,8,2,9,2,7 -I,2,11,0,8,2,7,7,5,3,7,6,8,0,8,0,8 -W,6,6,6,4,4,1,12,3,2,11,10,8,6,11,1,7 -C,6,12,4,6,2,7,8,7,6,11,7,7,2,9,5,8 -B,3,5,5,3,3,7,8,3,5,10,6,6,2,8,5,8 -H,5,7,8,9,7,8,5,3,2,7,5,7,4,8,8,8 -X,2,1,3,1,1,7,7,4,9,6,6,9,2,8,5,7 -Q,7,13,6,7,5,10,4,4,6,11,4,8,3,8,8,11 -O,3,7,4,5,3,8,7,8,5,7,6,9,2,8,3,8 -O,1,0,2,0,0,7,7,6,4,7,6,8,2,8,3,8 -I,1,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -R,7,13,7,7,5,10,6,4,5,10,2,7,6,7,6,8 -N,3,7,5,5,4,7,7,8,5,7,5,7,3,7,3,8 -N,5,10,7,7,5,8,8,6,5,6,6,5,6,9,2,6 -C,3,7,4,5,3,5,8,6,6,8,8,14,2,9,4,10 -V,7,13,6,7,3,8,10,6,4,8,10,5,6,13,3,8 -X,7,11,11,8,5,6,8,1,9,10,9,9,3,8,4,6 -Q,4,4,6,6,6,9,11,5,0,5,7,10,5,12,4,10 -E,4,10,6,8,6,7,7,5,8,7,7,10,3,8,6,9 -V,4,11,6,8,3,7,11,3,5,8,12,8,3,10,1,8 -I,1,9,0,6,1,7,7,5,3,7,6,8,0,8,0,8 -U,5,5,6,4,3,4,8,5,8,10,9,9,3,9,2,6 -W,4,8,6,6,5,4,11,2,2,8,9,9,6,11,1,8 -D,6,9,8,8,7,6,7,5,8,7,5,8,5,5,7,4 -C,8,11,5,6,2,7,8,6,7,11,6,9,2,9,5,9 -L,4,8,5,6,3,6,4,3,7,6,1,8,1,6,3,7 -H,4,6,6,4,5,8,8,6,7,7,6,6,6,8,3,8 -N,5,10,6,7,5,9,8,6,5,6,5,4,6,10,3,5 -P,4,7,6,10,10,8,9,5,0,8,7,6,5,11,6,10 -J,2,6,2,4,1,9,7,2,6,11,3,7,0,7,1,6 -E,2,3,4,1,2,7,7,2,7,11,7,9,1,9,4,8 -C,3,8,4,6,2,5,8,8,8,9,8,13,2,10,4,10 -E,4,8,6,6,5,5,8,5,7,11,9,9,3,8,5,5 -K,2,3,2,2,2,5,7,4,7,6,6,10,3,8,4,10 -X,6,10,7,6,4,10,6,3,7,12,2,6,3,8,4,10 -Q,5,6,6,8,3,8,6,8,7,6,6,8,3,8,5,9 -R,6,8,9,7,9,9,6,4,4,8,5,7,7,9,7,6 -T,4,11,6,8,2,8,15,1,6,7,11,8,0,8,0,8 -Y,2,3,4,5,1,8,11,2,3,4,12,8,1,10,0,8 -W,5,10,8,7,7,4,11,2,3,8,9,9,7,11,1,8 -B,4,7,4,5,3,6,7,8,6,7,6,7,2,8,9,10 -A,3,7,6,5,4,12,3,2,2,9,2,8,4,5,2,8 -A,3,7,5,5,3,7,3,2,2,5,2,8,2,6,2,6 -J,5,9,4,7,3,7,11,3,3,13,5,4,2,8,7,8 -J,2,4,4,3,1,8,6,3,6,14,7,11,1,6,1,7 -C,2,3,3,2,1,5,8,5,6,11,9,10,1,10,2,7 -L,4,9,4,4,2,8,5,3,5,12,7,11,2,8,6,8 -J,2,6,4,4,3,9,6,2,4,8,5,6,3,7,5,6 -U,5,9,5,6,4,4,8,5,7,10,9,9,3,9,2,5 -V,3,6,5,4,1,7,8,4,2,7,13,8,3,9,0,8 -N,4,7,4,5,2,7,7,14,2,4,6,8,6,8,0,8 -H,3,8,5,6,6,8,7,4,3,6,6,7,7,8,7,6 -G,6,11,6,8,5,5,6,6,5,10,8,11,2,9,4,10 -G,3,7,5,5,3,7,6,6,6,6,6,10,2,9,4,8 -N,1,0,1,1,1,7,7,10,0,6,6,8,4,8,0,8 -T,4,10,6,8,5,10,11,2,7,5,11,7,1,11,1,8 -U,3,3,4,2,2,7,8,6,7,6,9,9,3,9,1,8 -U,4,5,5,3,2,4,8,5,8,9,8,9,4,11,3,4 -N,3,2,4,3,3,7,8,5,5,7,6,6,6,9,2,5 -U,5,6,5,4,2,4,9,5,7,12,11,9,3,9,1,7 -W,4,5,7,4,4,5,11,3,2,8,9,9,8,11,1,8 -C,3,5,4,4,2,4,8,5,7,12,9,11,1,10,2,7 -U,5,10,7,7,6,8,8,8,5,5,7,9,3,7,4,7 -J,2,5,4,4,2,10,6,2,6,12,4,8,1,6,1,7 -C,4,9,5,7,6,8,6,5,3,7,7,11,5,9,3,8 -O,6,9,8,8,6,6,5,5,5,9,6,10,5,5,7,4 -L,4,9,4,7,1,0,0,6,6,0,0,5,0,8,0,8 -C,6,10,6,8,3,3,9,6,8,12,11,11,1,8,2,6 -B,3,6,5,4,4,9,6,4,6,10,5,7,2,8,5,10 -T,3,8,4,6,2,9,14,0,5,6,10,8,0,8,0,8 -Z,3,7,4,5,2,7,7,4,13,9,6,8,0,8,8,8 -F,4,10,5,8,4,6,10,3,6,10,9,5,2,10,4,6 -Q,2,1,3,2,1,8,6,7,5,6,6,8,3,8,4,9 -P,4,9,6,6,4,7,9,4,4,12,5,3,1,10,3,8 -O,6,10,8,8,6,8,5,9,4,6,5,5,5,7,4,8 -T,4,5,4,3,2,5,11,2,8,11,9,4,1,11,2,4 -D,4,8,6,7,6,7,7,5,6,7,4,8,4,6,7,4 -A,3,10,5,7,3,7,3,2,2,5,2,7,2,6,2,7 -C,6,9,6,6,3,5,7,6,8,11,8,14,2,9,4,6 -E,2,3,3,2,2,7,7,5,7,7,6,9,2,8,5,10 -K,2,1,3,3,2,6,7,4,7,6,6,10,3,8,5,8 -R,6,11,8,8,7,9,8,4,5,9,4,7,3,7,4,11 -Y,3,7,4,5,1,8,11,1,3,6,12,8,1,11,0,8 -T,9,11,7,6,3,5,9,3,9,13,7,5,2,10,3,5 -E,6,11,9,8,8,8,7,7,3,7,6,11,6,8,9,8 -H,4,8,6,6,6,7,8,5,6,7,6,8,3,8,3,8 -R,3,5,5,3,3,9,6,3,5,10,4,7,3,6,4,9 -C,1,0,1,1,0,6,7,6,8,7,6,14,0,8,4,10 -U,4,7,6,6,5,7,7,4,4,6,6,9,4,8,2,9 -U,4,10,4,7,4,7,6,12,4,7,12,8,3,9,0,8 -Z,4,9,5,7,2,7,7,4,14,9,6,8,0,8,8,8 -T,4,5,5,4,3,8,12,3,7,6,11,8,2,11,1,7 -F,5,5,5,7,2,1,13,5,5,12,10,7,0,8,2,6 -C,3,6,4,4,1,3,9,5,7,11,11,10,2,9,2,6 -C,7,13,5,7,2,6,9,6,8,11,8,9,2,8,5,9 -H,3,7,5,5,4,7,7,7,6,7,6,8,3,8,3,8 -W,7,6,9,6,10,7,8,5,5,7,5,8,10,10,9,8 -S,2,1,2,1,1,8,7,4,7,5,6,7,0,8,8,8 -I,7,14,6,8,4,8,8,2,6,13,4,5,2,8,6,9 -L,2,1,2,2,1,5,3,5,7,2,2,4,1,7,1,6 -N,3,5,4,4,3,7,8,5,5,7,7,6,5,9,2,6 -E,3,8,3,6,2,3,6,6,11,7,7,15,0,8,6,7 -U,7,12,6,6,4,9,5,5,6,5,7,7,5,9,3,7 -P,4,6,6,4,3,8,9,5,5,12,4,3,2,9,4,8 -N,4,5,6,4,3,6,10,2,4,10,7,7,5,8,1,8 -C,2,5,3,3,1,4,9,5,6,11,10,11,1,9,2,7 -M,1,0,2,0,0,8,6,10,0,7,8,8,6,6,0,8 -Q,5,9,5,4,3,12,4,3,5,10,3,7,3,9,4,12 -Y,1,1,3,2,1,7,10,1,6,7,11,8,1,11,1,8 -X,6,9,9,6,5,5,8,1,8,10,10,9,3,8,3,6 -N,4,10,4,8,3,7,7,14,2,5,6,8,6,8,0,8 -S,5,9,6,7,5,8,7,7,5,7,6,7,2,8,9,8 -R,4,11,4,8,5,6,8,9,4,7,5,7,3,8,5,11 -R,3,4,4,2,3,7,8,5,5,6,5,6,2,7,4,9 -U,9,11,10,8,4,4,8,6,10,13,11,9,3,9,1,7 -S,4,5,5,5,5,8,8,4,4,7,6,8,5,10,9,11 -Z,9,13,9,7,6,7,6,2,9,12,7,9,4,6,8,6 -H,6,9,6,4,3,7,8,4,4,9,9,9,6,10,5,9 -P,1,0,2,1,0,5,11,7,1,9,6,4,1,9,3,8 -L,3,9,4,6,3,3,5,1,8,3,1,9,0,7,1,6 -V,1,0,2,1,0,8,9,3,2,7,12,8,2,10,0,8 -R,5,9,7,7,6,7,7,6,6,6,5,7,4,8,6,10 -U,5,9,7,8,7,8,6,4,4,6,7,7,4,8,1,7 -R,7,11,9,8,9,9,8,4,5,10,4,7,3,7,5,11 -F,4,7,6,5,3,7,10,3,6,13,6,5,2,9,3,7 -N,3,4,5,3,2,6,9,3,4,10,7,7,5,8,1,8 -B,6,10,8,7,7,7,9,7,5,7,5,5,5,9,7,6 -W,6,9,6,6,5,2,11,2,3,10,10,8,5,11,1,7 -X,5,6,6,6,6,7,6,2,5,8,7,9,3,11,7,8 -Y,3,2,5,4,2,5,10,1,7,9,11,9,1,11,2,7 -M,4,4,5,6,3,8,7,12,1,6,9,8,8,6,0,8 -P,4,8,6,6,3,6,11,5,4,12,5,3,1,10,3,8 -J,2,4,4,3,1,8,6,3,7,14,5,10,0,7,0,8 -X,4,8,6,7,6,9,9,2,6,7,5,6,2,5,7,7 -D,5,10,7,7,5,8,7,7,9,6,5,4,3,8,4,7 -T,5,9,4,4,2,6,10,2,6,12,7,6,2,9,4,4 -V,6,10,8,8,6,8,12,3,2,6,10,9,7,11,7,8 -F,4,10,4,7,2,1,15,5,3,12,9,4,0,8,3,6 -M,4,7,5,5,3,8,7,12,1,6,9,8,8,6,0,8 -R,6,9,9,8,10,5,9,4,4,6,4,10,10,5,9,9 -T,7,9,6,5,2,4,12,3,6,13,8,4,2,8,4,3 -K,5,8,7,6,6,7,7,1,6,10,5,9,3,7,4,8 -H,2,6,4,4,5,9,6,4,3,6,6,7,6,9,7,7 -Q,7,9,7,11,8,8,6,7,3,8,6,11,6,8,8,6 -P,3,7,3,4,2,4,11,9,3,9,6,4,1,10,3,8 -J,4,10,4,7,3,14,3,5,4,13,2,10,0,7,0,8 -L,3,9,5,6,3,8,3,0,8,10,3,11,0,7,2,9 -O,5,9,6,7,6,7,6,8,4,7,5,8,3,9,3,7 -L,1,3,2,2,1,7,4,1,7,8,2,10,0,7,2,8 -S,4,5,5,7,3,7,7,6,9,5,6,8,0,8,9,7 -N,8,11,12,8,7,3,11,3,4,10,11,9,8,7,2,7 -D,3,7,4,5,3,8,7,7,7,9,5,4,3,8,4,7 -N,4,7,7,5,6,7,8,3,5,7,6,7,6,8,7,4 -T,8,13,7,8,3,7,8,3,9,13,5,6,2,9,5,5 -C,4,8,4,6,2,4,8,6,7,11,10,12,2,9,3,7 -T,4,6,5,4,5,7,8,4,5,6,7,9,5,8,5,7 -J,4,6,5,4,2,10,6,2,8,15,4,8,0,8,0,8 -N,4,9,5,7,3,7,7,14,2,4,6,8,6,8,0,8 -S,3,9,4,7,4,8,7,7,5,7,6,7,2,8,8,8 -G,3,4,4,3,2,7,6,7,5,6,6,10,3,8,4,9 -Q,4,7,5,6,3,8,4,8,8,6,4,8,3,8,4,8 -G,4,9,5,7,4,7,6,7,6,6,7,9,2,8,4,8 -R,3,6,5,4,3,10,7,3,6,10,2,7,3,7,3,10 -N,11,13,9,8,5,4,8,5,6,3,2,13,7,11,2,7 -W,5,9,7,7,4,10,8,5,2,6,8,8,9,10,0,8 -V,2,7,4,5,2,6,11,2,3,8,11,8,2,11,1,9 -S,5,7,6,5,4,8,6,3,7,10,7,9,2,10,5,8 -O,5,5,7,4,4,7,6,5,5,9,5,9,3,6,5,6 -V,8,11,7,8,4,3,11,4,4,10,12,8,3,10,1,8 -U,2,3,2,1,1,6,8,5,6,9,8,8,3,10,2,6 -C,4,9,5,7,3,5,8,6,8,12,9,13,2,10,3,7 -O,6,11,6,8,6,7,7,8,4,10,6,9,4,9,5,5 -R,4,6,6,4,5,8,8,7,3,8,4,7,4,6,7,8 -E,5,10,3,5,2,6,9,5,8,9,5,10,1,7,6,8 -U,8,10,8,7,6,4,8,5,8,9,8,10,6,8,4,3 -M,5,8,7,6,7,7,7,6,5,6,7,7,9,8,3,6 -A,2,4,4,5,1,5,5,3,1,5,1,8,2,7,2,7 -H,5,9,8,7,5,9,8,3,6,10,4,7,3,8,3,9 -F,4,6,6,4,2,3,15,4,3,13,8,3,1,10,2,5 -V,4,9,6,7,2,7,12,3,5,8,12,8,3,10,1,8 -I,1,4,2,3,1,7,8,0,7,13,6,8,0,8,1,7 -W,5,9,8,6,5,9,8,4,1,6,9,8,7,11,0,8 -S,4,7,5,5,3,10,7,3,6,9,4,8,2,8,5,11 -N,2,1,3,2,2,6,8,5,4,8,7,7,5,9,1,6 -O,5,10,5,8,4,7,7,8,5,10,7,7,3,8,4,8 -G,5,8,6,6,5,8,7,7,6,6,7,9,2,6,6,10 -Y,6,9,6,4,3,6,7,4,3,10,9,6,3,10,4,4 -D,7,10,9,8,8,7,7,5,7,7,6,7,7,8,3,7 -H,1,0,1,0,0,7,7,10,2,7,6,8,2,8,0,8 -F,6,12,6,6,4,9,7,3,4,10,5,6,3,9,6,9 -Z,4,6,6,4,4,8,7,2,9,12,6,8,1,8,5,8 -N,5,7,7,5,4,8,8,2,5,10,4,6,5,9,1,7 -M,4,6,5,8,4,8,7,12,2,6,9,8,8,6,0,8 -R,4,10,6,8,6,7,7,4,6,7,6,6,6,8,4,8 -W,3,8,5,6,3,11,8,5,1,6,9,8,7,10,0,8 -F,8,15,7,8,6,8,7,3,5,10,5,7,5,7,7,8 -I,2,9,2,7,3,7,7,0,7,7,6,8,0,8,3,8 -V,3,10,6,7,2,8,8,4,3,6,14,8,3,9,0,8 -H,6,10,8,8,7,6,8,3,6,10,8,8,4,8,4,6 -W,10,12,9,6,4,5,9,2,2,7,10,7,9,12,1,6 -P,3,2,4,3,3,5,10,4,5,10,8,4,1,10,4,7 -N,6,10,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -A,5,13,5,7,4,12,2,4,1,11,3,11,4,3,4,11 -A,6,14,6,8,4,11,1,3,3,12,5,13,3,6,5,11 -T,5,7,5,5,3,6,11,2,7,11,9,5,1,11,2,4 -W,3,4,5,3,3,6,11,3,2,7,9,8,7,11,0,8 -P,3,6,5,4,3,8,9,4,4,11,4,4,1,10,3,8 -X,5,8,7,6,5,7,6,3,5,6,6,9,3,8,9,9 -W,5,9,7,7,4,8,8,5,2,7,8,8,9,9,0,8 -Y,3,5,5,3,2,7,10,1,7,7,11,8,1,11,2,8 -M,5,5,6,4,4,7,6,6,5,6,7,9,9,6,2,8 -Y,2,4,4,5,1,7,10,2,2,7,13,8,1,11,0,8 -L,4,9,6,7,3,6,3,2,9,7,1,9,0,6,2,7 -F,3,7,3,4,1,1,13,5,4,12,10,7,0,8,2,6 -J,2,3,3,5,1,12,2,9,4,13,5,13,1,6,0,8 -Y,7,7,7,5,4,3,10,1,8,11,10,6,1,9,2,4 -Q,3,4,4,7,3,7,6,9,6,5,6,7,3,8,5,9 -L,4,11,5,8,3,9,2,1,7,9,2,10,1,6,3,9 -N,1,1,1,1,1,7,7,10,1,5,6,8,4,8,0,8 -C,2,7,3,5,1,5,7,7,9,7,6,14,1,8,4,9 -M,8,10,8,5,4,7,10,5,6,4,5,10,9,8,2,8 -U,4,7,6,5,3,6,8,6,8,7,9,9,3,9,1,8 -X,3,6,6,4,3,7,7,1,9,10,7,9,2,8,3,8 -S,6,8,8,7,8,9,8,5,6,7,6,7,6,10,12,12 -W,6,11,8,8,9,8,6,6,3,6,7,8,8,8,5,5 -F,3,4,3,6,1,1,12,5,5,12,11,8,0,8,2,6 -V,4,6,4,4,2,3,11,4,3,10,11,7,2,10,1,8 -P,3,8,5,6,3,6,10,5,6,10,8,4,1,10,4,7 -C,1,0,2,0,0,7,7,6,8,7,6,13,0,8,4,10 -W,4,8,6,6,7,7,8,5,3,7,8,8,5,8,3,8 -P,2,4,4,3,2,7,9,4,4,12,5,3,1,10,3,8 -M,7,8,10,7,11,8,7,5,5,7,6,7,14,8,7,3 -J,5,7,7,8,6,8,8,4,6,6,7,7,4,9,10,11 -G,4,9,5,7,4,8,7,7,6,6,6,7,2,8,6,11 -T,7,11,7,8,5,5,12,3,6,12,10,5,2,12,1,5 -T,6,10,6,8,4,7,11,4,8,11,9,4,2,12,4,5 -Z,5,11,6,8,5,6,8,6,11,7,7,10,1,9,8,7 -D,7,9,9,8,8,6,7,5,8,7,6,9,6,4,8,3 -D,2,3,4,2,2,9,6,4,6,10,4,6,2,8,2,9 -K,6,9,9,7,7,10,5,1,5,9,3,8,7,6,6,11 -D,4,7,5,5,4,6,7,8,7,7,7,5,3,8,3,7 -W,5,8,8,6,11,8,7,5,2,7,6,8,13,11,3,9 -Q,3,4,4,5,3,7,8,5,2,8,8,10,3,8,5,8 -I,1,9,2,7,2,7,7,0,8,7,6,8,0,8,3,8 -Q,7,14,6,8,5,10,5,4,7,11,4,8,3,7,9,11 -C,2,5,3,4,2,6,8,7,7,8,8,14,1,9,4,10 -T,6,9,5,5,3,7,8,2,7,12,7,8,2,9,4,5 -R,2,2,3,3,2,7,7,5,5,6,5,6,2,7,5,8 -L,2,6,2,4,0,0,2,5,6,0,0,7,0,8,0,8 -Q,2,3,3,4,2,7,8,5,1,7,8,10,2,9,5,8 -X,3,4,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -U,5,5,6,7,2,7,3,15,6,7,13,8,3,9,0,8 -O,4,3,5,5,2,7,8,8,8,7,7,8,3,8,4,8 -J,1,3,2,2,1,11,6,1,6,11,3,7,0,7,0,8 -L,3,6,5,4,2,5,5,1,9,7,2,11,0,7,3,7 -X,3,5,5,4,3,7,7,3,10,6,6,8,3,8,6,8 -F,2,3,3,1,1,5,11,2,5,13,6,4,1,9,1,8 -W,8,8,11,7,12,7,6,5,5,7,5,8,10,9,8,9 -M,6,9,8,7,9,7,9,7,5,7,6,8,10,10,8,6 -Q,2,1,2,1,1,8,6,6,4,6,6,8,2,8,3,8 -K,7,9,7,4,3,7,8,3,7,9,6,8,6,8,3,7 -T,2,3,3,2,1,5,12,3,6,11,9,4,1,10,2,5 -J,1,4,3,3,1,9,6,3,6,14,5,9,0,7,0,8 -F,3,2,4,4,3,5,11,3,6,11,9,5,1,10,3,6 -I,2,6,2,4,1,6,8,0,6,13,7,8,0,8,1,7 -T,3,4,5,6,1,6,15,1,6,8,11,7,0,8,0,8 -A,3,9,6,7,4,10,2,1,2,8,3,9,4,5,3,7 -M,8,11,11,8,8,6,6,3,5,9,8,9,8,6,2,8 -M,4,9,7,6,9,8,6,3,1,7,4,8,10,7,2,6 -O,5,11,6,8,3,7,8,9,8,7,8,8,3,8,4,8 -Y,5,9,6,6,3,2,11,4,5,12,12,7,1,11,2,6 -P,3,9,4,6,2,4,11,9,3,10,6,4,1,10,4,8 -R,4,4,4,6,3,5,11,8,3,7,4,8,3,7,6,11 -O,3,8,4,6,2,7,6,9,7,6,5,7,3,8,4,8 -A,3,7,5,5,3,8,2,2,2,7,2,7,2,6,3,6 -M,3,2,5,3,4,8,6,6,4,7,7,9,9,5,2,8 -R,3,6,4,4,4,8,8,7,2,7,4,7,4,7,7,8 -Z,4,7,5,5,4,9,7,5,3,7,5,7,3,8,9,5 -C,2,5,3,4,2,5,8,7,8,8,8,14,1,9,4,10 -D,1,0,2,1,1,5,7,8,6,7,6,6,2,8,3,8 -P,2,4,4,3,2,8,9,4,3,12,5,4,1,10,2,9 -C,4,10,5,7,3,4,8,6,6,12,10,13,1,10,3,8 -E,5,10,5,8,5,3,8,5,9,7,6,14,0,8,6,8 -M,2,3,4,2,2,8,7,2,4,9,6,8,6,5,1,7 -Z,3,5,5,4,3,7,8,2,9,12,6,8,1,8,5,7 -C,5,10,3,5,2,7,8,7,5,11,6,9,2,9,5,9 -Q,6,9,8,8,7,6,4,5,6,6,5,8,6,1,8,6 -G,3,7,5,5,5,9,7,6,2,6,7,9,5,8,3,8 -Z,3,5,6,4,3,7,8,2,10,12,6,8,1,9,5,7 -S,5,6,7,6,7,8,8,4,5,7,7,8,4,10,9,10 -S,7,15,6,8,3,7,4,5,5,8,2,7,4,6,6,7 -H,6,9,7,4,4,7,8,3,5,10,6,8,6,9,5,8 -Q,4,5,5,7,3,8,9,8,5,5,9,9,3,7,6,10 -K,6,10,8,8,10,8,8,4,5,5,7,9,9,8,9,7 -J,8,12,6,9,5,7,11,3,3,13,5,4,3,9,9,9 -Y,5,7,7,10,10,7,6,4,2,8,8,9,8,11,9,7 -Q,3,9,4,8,3,8,6,9,6,6,5,8,3,8,4,8 -S,4,11,5,8,3,9,8,6,9,5,6,5,0,8,9,7 -J,0,0,1,0,0,12,4,6,3,12,5,11,0,7,0,8 -X,1,0,2,0,0,7,7,3,4,7,6,8,3,8,4,8 -G,1,0,2,1,1,8,7,6,5,6,5,9,1,7,5,10 -W,6,9,8,7,4,6,8,5,2,7,8,8,9,9,0,8 -M,5,7,9,5,10,9,7,3,3,8,4,7,11,6,3,5 -B,2,6,3,4,3,6,6,8,5,6,7,7,2,9,6,10 -M,4,8,6,6,6,8,6,5,5,6,7,8,8,5,2,7 -N,3,6,5,4,5,8,7,4,4,7,5,7,5,10,6,4 -A,4,7,6,5,3,10,1,3,3,9,2,8,3,6,4,9 -W,6,7,6,5,5,3,11,2,2,9,9,8,6,11,2,7 -J,2,4,3,3,1,8,6,3,6,14,5,9,0,7,0,8 -E,2,4,4,3,2,7,8,2,7,11,7,9,2,9,4,8 -Q,4,6,4,7,5,8,8,6,2,7,7,11,3,9,5,8 -P,6,6,8,8,9,6,9,5,3,8,8,6,6,12,5,7 -U,6,9,5,4,3,8,6,5,5,6,6,7,4,7,3,6 -B,3,2,4,3,3,8,7,5,6,7,6,6,5,8,5,10 -N,5,11,7,8,9,9,8,5,4,7,5,5,7,11,9,4 -I,1,8,1,6,2,7,7,0,7,7,6,8,0,8,3,8 -K,3,2,4,4,3,6,7,4,7,6,6,10,3,8,5,9 -D,3,5,5,4,3,9,6,4,6,10,4,6,2,8,3,8 -J,5,11,4,8,3,7,11,3,4,13,4,4,1,7,5,6 -T,8,11,7,6,3,6,9,3,8,13,6,6,2,8,4,5 -N,1,0,2,1,0,7,7,11,0,5,6,8,4,8,0,8 -S,5,10,6,8,4,7,7,3,6,10,6,8,2,8,5,8 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -N,5,7,7,5,4,10,8,4,6,10,1,4,5,9,1,7 -A,5,7,7,6,6,9,8,3,4,7,7,8,5,6,5,4 -T,3,3,4,2,1,5,11,3,7,11,9,4,1,10,2,5 -H,8,11,12,8,10,9,6,3,6,10,4,8,5,7,5,8 -L,1,0,1,0,0,2,1,6,4,0,3,4,0,8,0,8 -L,3,10,4,7,1,0,1,5,6,0,0,7,0,8,0,8 -Y,5,8,7,12,12,9,7,4,1,6,8,9,6,12,8,9 -L,2,7,4,5,4,7,7,3,4,7,6,10,5,10,6,5 -T,3,10,4,7,3,7,13,0,5,7,10,8,0,8,0,8 -K,4,5,5,7,2,3,7,8,2,7,5,11,4,8,2,11 -Q,3,2,4,4,3,8,8,6,2,5,7,10,3,8,5,10 -F,2,2,3,3,2,5,11,3,5,11,9,5,1,10,3,6 -K,6,8,9,6,4,5,7,3,7,10,9,11,3,8,3,7 -K,3,1,5,3,3,6,7,4,8,7,6,10,6,8,4,9 -I,0,6,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -Y,3,6,5,4,2,10,10,2,6,3,11,8,1,11,2,9 -X,3,8,4,6,3,7,7,4,4,7,6,8,2,8,4,8 -N,4,7,6,5,3,11,7,3,5,10,1,4,5,9,1,7 -D,3,8,5,6,5,7,7,4,6,7,6,5,3,8,3,7 -P,3,9,4,7,4,4,12,7,2,10,7,4,1,10,3,8 -K,7,10,6,5,3,5,8,3,6,9,8,9,5,9,3,7 -T,5,7,7,6,6,7,8,4,8,7,7,8,3,9,8,6 -U,5,8,5,6,2,7,4,13,5,7,15,8,3,9,0,8 -Z,2,4,2,3,2,7,8,5,8,6,6,9,2,8,7,8 -O,3,6,4,4,3,7,7,7,4,7,5,8,3,8,3,8 -H,5,8,6,6,5,7,7,7,6,7,7,8,3,8,3,8 -P,1,3,3,2,1,6,10,3,3,12,6,4,0,9,2,8 -T,5,9,7,7,7,7,8,5,5,6,8,9,7,7,8,7 -O,3,6,4,4,3,7,9,7,4,7,8,7,3,8,2,8 -I,2,5,4,4,2,7,7,0,8,14,6,8,0,8,1,7 -Y,3,6,5,4,2,7,11,1,7,7,11,8,1,11,2,8 -E,7,15,6,8,5,7,7,4,5,10,6,9,3,9,8,10 -G,6,8,8,7,8,7,10,6,2,7,7,8,6,11,7,8 -W,3,7,5,5,3,8,8,4,1,7,8,8,8,10,0,8 -R,3,4,3,3,2,7,8,4,5,6,5,6,3,6,5,8 -W,5,5,6,3,4,4,11,3,2,9,9,7,7,11,1,7 -Q,4,5,5,5,2,9,8,7,6,5,7,9,3,8,5,9 -Y,8,14,7,8,4,5,9,4,3,10,8,5,4,10,4,4 -G,4,7,4,5,3,6,7,6,6,10,7,10,2,9,4,9 -W,4,5,6,3,3,7,11,2,2,7,9,8,8,11,0,8 -R,6,9,9,8,10,7,6,3,4,7,5,8,8,9,6,7 -Y,2,3,3,2,1,8,10,1,6,5,11,9,1,11,1,8 -O,3,7,4,5,3,7,8,7,5,10,8,7,3,8,3,8 -R,4,6,5,4,4,6,8,5,6,7,5,7,3,7,5,8 -E,4,9,4,6,2,3,7,6,11,7,6,15,0,8,7,7 -L,4,9,4,7,3,0,2,4,6,1,0,8,0,8,0,8 -L,4,10,4,8,1,0,1,6,6,0,0,6,0,8,0,8 -F,4,9,6,7,3,4,13,3,4,13,8,4,1,10,2,6 -C,3,6,4,4,2,6,8,8,8,8,8,13,2,10,4,9 -X,3,7,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -F,4,5,5,4,3,5,10,4,6,10,9,5,2,10,3,6 -H,6,11,6,8,3,7,7,15,0,7,6,8,3,8,0,8 -W,3,3,4,2,2,3,10,3,2,10,10,8,5,11,1,6 -C,3,9,4,7,2,5,8,7,9,6,7,13,1,8,4,9 -P,6,9,9,7,5,8,11,8,5,10,4,3,2,10,5,7 -S,4,11,5,8,4,7,7,8,7,8,5,7,2,7,9,8 -K,5,10,8,8,8,5,6,4,7,6,6,12,5,7,7,10 -F,3,7,5,5,5,10,7,1,5,9,5,6,4,10,5,7 -Q,5,5,6,7,6,10,11,6,0,4,7,11,6,14,4,9 -R,6,10,9,9,10,8,8,4,4,7,4,7,7,9,6,4 -S,3,5,6,3,2,7,8,3,7,11,8,7,1,9,4,6 -U,7,8,8,6,3,4,9,6,9,12,11,8,3,9,1,6 -J,6,11,8,8,4,8,6,4,6,15,6,11,1,6,1,7 -F,5,8,7,10,8,7,9,5,5,7,5,7,4,8,9,7 -M,6,10,8,7,6,11,5,3,4,9,3,6,8,6,2,9 -M,5,9,7,6,7,9,7,5,5,6,7,5,8,7,3,5 -B,5,8,7,6,6,10,6,3,6,10,4,7,2,8,5,10 -X,1,0,1,0,0,7,7,3,5,7,6,8,2,8,4,7 -G,5,8,5,6,3,6,7,7,6,10,7,11,2,9,4,9 -H,3,8,4,6,4,7,8,12,1,7,5,8,3,8,0,8 -J,6,10,8,7,4,9,7,2,7,14,4,7,0,7,0,8 -F,2,3,4,2,2,8,9,2,6,13,5,4,1,9,2,8 -L,1,3,3,2,1,6,4,1,7,7,2,9,0,7,2,8 -X,9,13,9,7,5,8,7,2,8,11,4,7,4,9,4,7 -G,6,11,5,6,4,8,7,4,3,9,6,7,4,9,9,8 -I,2,10,2,8,2,8,7,0,9,7,6,7,0,8,3,7 -Z,5,7,7,9,5,11,4,3,4,9,3,8,2,7,6,9 -M,4,7,6,5,5,11,6,3,4,9,3,6,7,6,2,8 -L,4,7,5,5,3,7,4,1,8,8,2,10,0,6,2,8 -E,3,7,3,5,3,3,8,5,8,7,7,13,0,8,6,9 -W,4,4,5,3,3,7,11,3,2,6,9,8,7,11,0,8 -J,6,9,8,7,5,9,4,7,7,8,6,6,2,7,5,6 -W,4,11,7,8,11,8,6,7,3,7,6,8,14,10,5,9 -V,5,6,5,4,2,3,12,3,3,10,11,7,2,11,1,8 -J,2,2,3,3,1,9,6,3,6,12,4,10,1,6,1,6 -N,6,9,9,7,4,6,8,3,5,10,8,8,6,8,1,7 -S,4,4,5,6,3,8,8,6,9,5,6,7,0,8,9,8 -V,2,2,3,3,1,6,12,2,3,8,11,8,2,10,1,9 -A,2,2,4,3,2,7,2,2,2,6,1,8,2,6,2,7 -T,7,11,7,8,5,5,10,0,8,11,9,6,1,9,3,4 -K,6,7,8,5,6,9,6,1,6,10,3,8,7,7,6,10 -E,4,7,5,5,3,7,7,3,8,11,7,9,2,9,5,8 -H,4,7,5,4,2,7,7,14,0,7,6,8,3,8,0,8 -J,5,9,7,7,5,8,7,7,7,8,7,8,3,6,5,5 -A,3,9,6,7,5,7,5,2,3,5,2,6,4,5,5,5 -F,3,7,3,5,1,1,14,5,3,12,9,5,0,8,2,6 -D,2,6,4,4,5,9,8,4,4,7,6,6,3,8,7,4 -F,3,2,4,4,3,5,10,3,5,10,9,5,1,10,3,6 -U,7,11,7,8,4,3,8,5,8,11,10,10,3,9,2,6 -C,6,13,5,8,4,6,8,5,4,9,8,10,4,9,10,8 -E,3,5,4,7,2,3,8,6,11,7,5,15,0,8,7,7 -S,7,10,9,8,6,9,7,3,7,10,4,7,3,9,5,9 -C,1,3,2,2,1,7,8,6,5,9,7,11,2,10,3,10 -C,5,8,5,6,3,4,8,5,7,11,10,13,1,9,3,8 -S,2,2,3,4,2,8,7,7,5,7,7,8,2,9,9,8 -J,3,10,4,7,1,12,2,10,4,14,5,13,1,6,0,8 -K,3,5,5,4,3,6,7,1,7,10,7,10,3,8,2,8 -R,5,11,8,8,7,10,7,3,6,10,3,7,4,5,5,11 -J,1,1,2,1,0,11,6,2,6,12,3,8,0,7,0,8 -L,2,7,2,5,1,0,1,5,6,0,0,7,0,8,0,8 -U,5,8,5,6,4,6,7,6,8,8,6,8,6,10,4,3 -F,0,0,1,0,0,3,11,4,2,11,8,6,0,8,2,8 -R,3,7,5,5,3,8,8,4,6,9,3,8,3,7,4,11 -R,4,9,6,7,4,9,8,3,6,9,3,8,3,6,4,11 -K,4,9,5,7,7,6,7,3,3,6,5,9,6,8,8,7 -O,4,5,6,4,4,7,6,5,5,8,5,8,3,7,5,6 -E,5,8,6,6,6,8,5,6,3,7,7,9,4,8,8,10 -S,2,7,3,5,2,8,8,5,7,5,6,8,0,8,8,8 -L,5,11,4,6,2,10,2,3,4,13,4,11,2,8,5,9 -K,6,11,7,6,4,4,9,3,6,10,10,11,5,8,3,6 -P,3,5,5,4,2,8,9,4,4,11,4,3,1,10,3,8 -K,5,7,7,6,7,7,9,3,5,7,3,9,6,2,7,10 -A,3,8,5,6,3,12,2,3,2,10,2,9,2,6,3,8 -F,3,8,4,6,3,1,12,4,4,12,10,7,0,8,2,7 -J,3,11,4,8,3,8,6,3,6,11,5,10,1,6,2,5 -M,10,9,10,4,4,7,11,5,5,4,5,10,10,12,2,7 -Y,2,3,4,5,1,9,10,3,2,6,13,8,2,11,0,8 -B,3,8,4,6,4,8,8,8,7,7,5,5,2,8,8,9 -F,5,11,8,8,9,5,10,0,4,9,7,6,6,9,5,2 -H,5,10,5,7,3,7,5,15,2,7,9,8,3,8,0,8 -T,1,6,2,4,1,7,13,0,6,7,10,8,0,8,0,8 -E,4,6,6,4,5,7,9,6,3,6,6,9,4,7,7,8 -G,4,7,5,5,3,6,7,7,6,8,7,11,2,7,4,10 -J,3,9,5,7,2,8,7,2,8,15,4,7,0,7,0,8 -D,4,7,4,5,2,6,7,10,9,7,7,6,3,8,4,8 -E,5,8,7,6,5,7,7,2,7,11,6,9,3,7,5,9 -F,4,8,5,6,3,6,10,2,5,13,7,5,2,10,2,8 -K,7,10,9,8,9,8,8,6,5,8,5,6,5,7,8,11 -P,2,7,3,4,2,5,10,9,3,9,6,5,2,10,3,8 -E,5,10,7,8,7,8,7,6,3,7,6,9,4,8,8,10 -Y,3,9,5,7,3,9,10,1,6,4,11,8,2,12,2,8 -G,5,7,6,5,6,7,8,6,2,6,6,9,5,7,7,7 -A,3,7,5,5,3,10,2,2,2,9,1,8,2,6,3,8 -Q,3,6,4,5,2,8,9,7,6,5,8,9,3,8,5,10 -Z,6,10,8,7,6,7,7,2,9,12,6,8,1,8,6,8 -P,6,9,6,4,4,8,8,5,3,10,5,6,5,10,5,6 -H,2,4,4,2,2,7,8,3,6,10,6,8,3,8,2,8 -R,2,1,3,2,2,7,8,4,5,6,5,7,2,6,5,8 -S,1,0,1,0,0,8,7,3,6,5,6,7,0,8,7,8 -J,3,9,4,7,4,8,6,2,5,11,4,9,4,6,2,6 -A,2,8,4,6,2,8,4,3,2,7,1,8,3,7,2,8 -P,3,6,4,9,8,8,8,4,0,8,7,7,5,9,4,7 -L,5,9,7,7,3,6,4,1,9,8,2,10,0,7,2,8 -U,4,9,6,8,6,7,7,4,3,6,6,9,5,6,2,8 -R,2,1,2,2,1,6,9,8,3,7,5,8,2,7,5,11 -V,5,6,6,4,2,4,13,4,4,10,11,6,3,10,1,8 -C,1,0,2,1,0,6,7,6,9,7,6,14,0,8,4,10 -N,5,9,7,7,4,3,9,4,4,11,11,10,5,7,1,8 -D,5,10,6,8,7,8,7,4,8,6,5,6,6,8,3,7 -Q,6,6,7,9,4,8,10,8,6,5,9,9,3,8,6,10 -P,1,3,3,2,1,7,9,4,3,11,5,4,1,9,2,8 -B,3,6,4,4,3,10,6,3,6,10,3,7,2,8,4,11 -X,4,9,6,7,3,10,7,2,8,10,1,7,3,8,4,9 -W,6,11,10,8,7,4,11,2,3,8,9,9,8,11,1,8 -H,7,12,6,6,4,8,8,3,4,9,6,7,6,9,5,9 -K,2,3,4,2,2,4,7,2,6,10,9,11,3,8,2,7 -I,3,10,4,8,2,7,7,0,8,13,6,8,0,8,1,8 -Z,4,9,6,7,6,7,7,3,7,7,6,9,0,8,9,7 -R,5,9,5,7,6,6,9,8,3,7,5,8,3,8,6,12 -A,2,6,4,4,3,7,2,1,2,6,2,7,2,6,3,6 -M,3,1,4,2,1,7,7,11,1,7,9,8,7,6,0,8 -J,1,0,1,1,0,12,3,6,3,13,5,11,0,7,0,8 -H,3,8,4,5,2,7,7,15,1,7,6,8,3,8,0,8 -W,3,7,5,5,4,7,11,2,2,7,8,8,6,11,1,8 -R,5,11,6,8,6,6,7,5,6,7,6,7,6,8,5,8 -V,4,9,6,7,3,4,11,3,4,9,12,9,2,10,1,8 -F,3,5,4,3,2,5,10,3,6,10,9,6,1,10,3,6 -A,3,3,5,5,2,6,3,3,3,6,2,7,3,6,3,7 -X,1,1,2,1,0,7,7,4,4,7,6,8,2,8,4,7 -K,4,6,5,4,3,6,8,2,7,10,7,9,3,8,3,7 -F,3,6,4,4,2,6,11,4,5,12,7,4,2,10,2,6 -C,5,10,6,8,7,5,6,3,4,7,6,11,6,9,4,7 -T,3,6,5,4,3,6,11,3,7,8,11,7,4,11,1,7 -N,7,9,9,7,9,6,8,3,4,8,7,8,8,8,7,4 -R,1,0,2,1,1,6,9,7,3,7,5,8,2,7,4,11 -K,6,9,9,7,6,5,7,2,8,10,8,10,4,7,4,7 -N,7,9,8,4,3,10,6,3,4,13,3,7,6,8,0,8 -Y,5,11,7,8,1,8,11,2,2,7,13,8,1,11,0,8 -M,5,10,6,7,6,8,5,11,0,6,9,8,9,6,2,6 -X,3,5,4,4,2,8,7,3,9,6,6,8,2,8,6,8 -Q,5,5,7,8,9,8,7,5,1,6,6,9,9,12,7,13 -V,4,9,5,7,3,7,11,2,4,7,12,9,3,10,1,8 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -V,2,3,4,4,1,7,8,4,2,7,13,8,3,10,0,8 -B,4,9,6,7,6,9,6,4,5,9,5,7,2,8,5,9 -Y,6,11,9,8,5,6,9,0,8,8,12,9,1,11,2,7 -C,5,10,6,8,2,4,7,7,11,7,6,12,1,8,4,9 -A,2,5,4,4,2,11,2,2,2,9,2,9,2,6,2,8 -K,5,10,8,8,4,3,8,4,7,10,12,12,4,8,4,6 -G,3,8,4,6,2,7,6,8,7,6,6,9,2,7,6,11 -T,2,6,4,4,2,9,11,1,7,5,11,7,1,10,1,8 -H,4,11,5,8,3,7,7,15,1,7,6,8,3,8,0,8 -T,4,6,4,4,2,5,11,2,7,11,9,5,1,10,2,5 -R,3,7,5,5,3,9,7,4,6,10,4,7,3,7,4,10 -Z,4,10,4,8,4,7,8,3,12,9,6,8,0,8,7,7 -E,3,8,4,6,4,6,7,7,9,7,7,11,3,8,6,8 -H,5,8,8,6,6,7,6,3,6,10,7,8,3,8,3,7 -E,4,10,6,8,5,8,7,5,9,7,6,8,3,8,6,9 -X,4,7,7,5,4,9,7,1,8,10,3,7,3,8,3,9 -R,2,1,2,2,2,6,7,4,4,6,5,7,2,7,3,8 -P,3,6,4,4,2,4,12,8,2,10,6,4,1,10,4,8 -A,4,11,6,8,4,12,3,3,3,9,1,9,2,6,3,8 -B,4,9,4,7,3,6,8,9,7,7,6,7,2,8,9,10 -Q,5,7,5,8,5,8,5,7,5,9,5,9,3,8,5,7 -W,3,9,5,6,5,7,11,2,2,6,8,8,7,11,0,8 -G,3,5,4,4,2,6,7,5,6,9,7,11,2,9,4,10 -N,3,3,3,5,2,7,7,13,2,5,6,8,5,8,0,8 -W,6,10,8,8,9,7,9,6,4,7,9,7,7,7,5,10 -Q,2,1,3,2,1,8,6,7,5,6,6,8,3,8,4,8 -P,7,11,9,8,8,6,7,7,4,8,7,8,2,10,7,9 -Q,6,9,7,11,7,7,10,5,3,6,9,12,3,9,7,8 -D,3,2,4,3,3,7,7,6,6,6,6,5,5,8,3,7 -L,5,10,7,8,9,7,7,3,5,7,7,10,6,11,6,6 -L,2,7,4,5,2,9,4,1,6,9,3,10,0,6,2,10 -I,5,10,6,8,4,7,8,1,7,7,6,8,0,8,4,8 -V,3,9,5,7,1,9,8,4,3,6,14,8,3,10,0,8 -E,3,5,5,4,3,6,8,2,8,11,8,9,2,8,4,8 -D,4,9,6,7,5,7,7,7,8,6,5,4,3,8,3,7 -O,4,8,5,6,2,7,8,8,8,7,7,8,3,8,4,8 -J,6,8,4,11,3,6,10,3,4,13,5,5,3,8,7,8 -D,2,5,4,4,3,10,6,3,6,10,3,6,2,8,3,8 -M,5,10,7,6,4,13,2,5,2,12,1,9,6,3,1,8 -E,5,10,7,8,7,7,8,7,9,7,6,11,3,8,6,8 -G,3,4,4,3,2,6,7,5,5,9,7,10,2,9,4,10 -A,2,3,4,1,1,10,2,3,1,9,2,9,1,6,1,8 -R,3,6,4,4,3,10,6,3,6,10,3,7,3,7,3,10 -Q,4,9,5,8,5,8,8,7,5,6,8,9,3,8,5,10 -D,3,6,4,4,3,9,7,4,5,10,4,5,3,8,2,8 -I,3,11,4,9,2,7,8,0,8,13,6,7,0,8,1,7 -A,3,9,5,7,3,12,3,4,3,10,1,9,2,7,3,9 -L,3,6,3,4,1,0,1,6,6,0,1,5,0,8,0,8 -K,4,5,5,4,4,5,7,4,7,6,6,11,3,8,5,9 -V,7,10,7,8,3,2,11,6,5,13,12,7,3,9,1,8 -T,3,5,4,4,2,5,12,3,6,11,10,5,1,11,1,5 -P,4,6,4,8,3,5,9,10,5,8,6,5,2,10,4,8 -P,1,1,1,1,0,5,11,7,2,9,6,4,1,9,3,8 -R,1,0,1,0,0,6,9,6,3,7,5,8,2,6,3,10 -X,4,10,6,8,4,7,7,4,9,6,6,8,3,8,7,7 -F,4,9,4,7,3,1,13,4,4,12,10,7,0,8,2,6 -Q,1,2,2,3,1,7,8,4,1,7,8,10,2,9,3,8 -F,4,6,5,7,6,7,9,5,4,8,6,7,4,10,9,7 -T,5,10,7,7,6,6,7,7,7,7,10,9,4,6,8,7 -Q,4,5,6,4,4,7,4,4,5,7,4,9,4,5,6,7 -O,2,4,3,2,2,8,7,6,4,9,6,8,2,8,2,8 -O,5,8,6,6,5,8,7,7,4,10,6,7,3,8,3,8 -J,2,7,3,5,2,9,6,2,6,11,4,8,1,6,1,6 -O,7,11,5,6,3,7,9,6,5,9,5,6,4,9,5,8 -L,1,0,1,0,0,3,1,6,4,1,3,4,0,8,0,8 -C,2,4,3,3,1,4,8,4,6,11,9,12,1,9,2,8 -E,4,8,6,6,7,6,7,3,6,6,7,11,3,10,8,7 -M,9,14,11,8,7,5,4,4,3,7,4,10,10,1,2,8 -R,5,7,7,5,4,9,7,4,6,10,3,7,4,5,5,10 -I,3,10,4,8,2,6,9,0,8,13,7,7,0,8,1,7 -J,2,4,3,3,1,11,6,1,6,11,3,7,0,7,0,7 -R,3,7,3,5,3,6,10,7,3,7,4,8,2,7,5,11 -Z,2,4,4,3,2,7,7,2,9,11,6,9,1,9,6,7 -Y,3,5,5,6,1,9,12,2,3,5,12,8,1,10,0,8 -T,2,1,2,1,0,8,15,1,4,6,10,8,0,8,0,8 -T,5,7,6,5,4,6,10,1,8,11,9,5,1,10,3,4 -R,4,7,5,5,5,8,6,6,3,8,5,7,4,7,7,10 -I,1,8,1,6,1,7,7,0,8,7,6,8,0,8,3,8 -T,5,8,7,6,7,8,8,6,7,8,6,8,5,7,5,6 -I,0,0,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -Z,4,8,4,6,4,8,7,5,9,7,5,7,2,8,8,8 -Y,3,4,5,6,1,7,10,2,2,7,13,8,1,11,0,8 -U,6,10,8,8,5,5,8,6,8,7,10,10,3,9,1,8 -C,5,10,6,8,4,4,9,6,7,7,8,15,1,8,4,10 -T,3,9,4,6,1,6,15,1,6,8,11,7,0,8,0,8 -K,5,7,8,5,4,7,8,2,7,10,6,8,3,8,3,7 -Q,4,7,4,9,4,8,5,8,5,9,6,9,3,7,5,8 -Y,3,8,5,5,1,9,11,3,2,5,12,8,1,11,0,8 -H,2,4,3,3,2,7,7,6,5,7,6,9,3,8,3,8 -J,2,6,3,4,3,9,6,2,5,11,4,9,1,6,1,6 -K,4,7,5,5,6,7,9,5,4,8,5,8,4,6,6,10 -O,4,8,5,6,3,7,7,7,5,10,7,8,3,8,3,8 -Q,2,2,3,2,2,7,8,4,2,8,7,9,2,9,4,8 -B,2,3,3,1,2,7,7,4,5,7,6,6,1,8,5,9 -M,4,7,6,5,5,7,6,6,5,7,7,9,8,5,2,9 -Y,3,6,4,4,0,8,10,3,2,6,13,8,1,11,0,8 -Y,3,7,5,4,1,7,10,2,2,6,13,8,1,11,0,8 -T,2,3,3,2,1,6,11,2,6,11,9,5,1,11,2,5 -V,3,10,5,7,4,7,11,2,3,5,11,9,2,11,1,8 -S,4,8,5,6,3,7,8,4,8,11,7,7,2,8,5,6 -B,5,9,7,6,10,8,6,5,3,7,7,8,6,9,8,9 -S,2,2,3,3,2,7,7,6,5,8,6,8,2,9,9,8 -M,4,5,8,4,4,9,6,3,5,9,5,7,8,7,2,8 -Y,2,0,2,0,0,7,10,3,1,7,12,8,1,11,0,8 -N,2,1,3,1,2,7,8,6,4,7,6,6,5,9,2,6 -D,4,8,6,6,4,8,7,5,7,11,5,5,3,8,3,8 -M,3,4,6,3,3,5,6,4,4,10,10,11,8,7,3,8 -Z,4,9,6,7,4,7,9,2,9,11,7,6,1,7,6,6 -R,3,8,5,6,6,8,8,3,4,6,6,8,6,10,7,6 -V,7,11,7,8,3,4,11,3,4,9,11,7,3,10,1,8 -S,4,6,6,4,6,9,6,4,3,9,6,9,4,8,10,10 -Z,1,4,2,3,2,7,7,5,8,6,6,9,2,8,7,8 -G,4,6,4,4,2,6,7,6,6,10,8,10,2,9,4,9 -J,5,7,7,5,4,9,5,5,6,8,6,6,2,7,4,6 -L,2,2,3,3,2,4,4,4,7,2,1,6,1,7,1,6 -Z,3,6,4,4,2,7,7,3,14,9,6,8,0,8,8,8 -R,7,10,9,8,8,9,8,3,6,9,3,8,3,6,4,11 -J,2,11,3,8,2,13,3,6,4,13,2,10,0,7,0,8 -N,4,5,7,4,3,6,9,2,5,10,7,7,5,8,1,8 -X,1,1,2,1,1,8,7,3,8,7,6,8,2,8,5,8 -L,4,9,6,7,7,7,7,3,6,8,7,10,7,10,7,5 -H,7,11,9,9,9,6,7,7,4,6,5,7,3,7,7,10 -O,4,9,3,4,2,6,7,6,3,9,6,8,4,10,4,7 -M,6,10,9,8,9,7,6,5,5,7,7,11,14,6,2,9 -V,2,3,4,5,1,8,8,4,2,6,13,8,3,10,0,8 -Y,8,11,8,8,4,2,11,4,5,13,13,8,1,11,2,6 -Q,6,6,8,9,4,8,6,8,8,6,5,8,3,8,4,8 -M,4,8,6,6,5,10,6,6,4,6,7,5,7,5,2,5 -Q,3,6,5,8,7,9,7,5,1,6,6,9,7,9,4,9 -A,3,6,5,4,2,10,3,2,2,8,3,10,2,6,2,7 -U,5,7,7,5,5,8,7,8,5,6,7,9,3,8,4,6 -B,4,7,6,5,5,7,8,5,5,9,7,6,3,7,6,7 -S,7,15,5,8,3,10,3,4,4,10,3,10,4,6,5,11 -B,6,10,8,7,8,8,8,4,6,10,6,6,5,7,7,9 -K,4,7,7,5,4,3,8,3,7,11,11,11,3,8,3,5 -R,4,8,7,7,8,7,8,3,4,7,4,8,6,8,5,6 -W,5,8,7,6,4,3,11,3,3,9,10,10,7,11,1,8 -H,4,7,5,5,5,6,7,5,7,7,6,10,6,8,3,9 -H,2,1,2,1,1,7,7,12,1,7,6,8,3,8,0,8 -X,4,11,5,8,2,7,7,5,4,7,6,8,3,8,4,8 -C,2,4,3,3,1,4,8,4,7,10,9,13,1,8,2,7 -I,5,8,7,6,3,9,4,3,6,6,7,4,1,10,4,7 -G,3,3,4,4,2,7,6,7,8,6,5,10,1,8,6,11 -X,2,3,3,4,1,7,7,4,4,7,6,8,3,8,4,8 -Y,4,7,6,9,7,10,9,5,2,6,7,8,7,11,7,5 -M,5,10,8,8,6,12,6,2,4,9,3,6,8,6,2,8 -X,10,14,9,8,5,7,7,2,10,9,6,8,4,6,4,8 -M,5,7,7,6,9,5,8,5,3,6,5,8,11,7,6,8 -C,4,8,4,6,3,4,8,6,6,12,10,12,2,9,3,8 -U,8,10,9,8,4,3,9,6,8,12,11,9,3,9,1,7 -R,5,11,7,8,7,9,8,4,5,9,4,7,3,7,4,11 -I,0,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -O,4,4,5,7,2,7,8,8,8,6,8,9,3,8,4,8 -B,2,1,3,2,2,8,7,5,6,7,6,5,2,8,6,9 -E,4,6,6,4,4,6,8,2,9,11,7,10,2,9,4,8 -N,5,10,5,8,3,7,7,15,2,4,6,8,6,8,0,8 -M,4,5,8,4,4,7,6,3,4,9,7,8,7,5,2,8 -F,1,3,2,1,1,6,10,3,4,13,7,5,1,9,1,8 -R,3,6,4,4,2,5,10,8,2,7,4,8,2,7,6,11 -D,4,10,4,7,3,6,7,11,9,6,5,6,3,8,4,8 -U,4,7,5,5,2,7,5,12,5,7,15,8,3,9,0,8 -V,3,11,5,8,4,7,11,2,3,6,11,9,2,10,1,8 -U,5,9,5,6,4,8,5,12,4,7,12,8,3,9,0,8 -I,0,1,1,2,0,7,7,2,6,7,6,8,0,8,2,8 -V,5,11,8,8,9,7,6,4,2,7,8,8,5,9,4,7 -D,4,7,4,5,2,5,7,10,8,6,5,5,3,8,4,8 -V,4,7,5,5,3,9,12,2,3,3,10,9,3,11,2,8 -O,6,10,4,5,3,6,9,7,4,9,7,10,5,10,5,7 -E,3,6,4,4,3,5,8,3,7,11,8,9,2,8,5,7 -Z,8,8,5,12,5,10,3,4,5,12,5,9,3,8,9,11 -S,6,10,7,8,4,8,7,5,9,11,4,7,2,7,5,9 -C,4,7,5,5,3,8,7,8,6,6,7,10,3,8,3,9 -W,7,11,7,8,6,3,10,2,3,10,10,8,8,10,2,6 -J,2,6,4,4,2,9,5,4,5,14,4,10,0,7,0,8 -T,3,3,4,2,1,5,11,2,7,11,9,5,1,10,2,5 -N,8,15,10,9,5,4,9,4,4,13,11,9,6,9,0,9 -X,4,9,6,6,4,3,9,2,8,11,12,10,3,8,4,4 -R,4,9,6,6,5,9,7,5,5,9,4,7,3,7,4,11 -K,6,11,9,8,6,2,9,3,7,11,12,12,3,8,4,5 -A,3,7,6,5,4,5,5,3,3,3,2,6,4,6,4,4 -S,4,9,5,7,5,7,7,7,5,7,6,7,2,8,8,8 -Z,2,1,2,1,1,7,7,5,8,6,6,8,1,8,6,8 -G,6,6,8,6,7,7,9,5,3,7,7,8,8,11,8,7 -K,5,10,6,7,2,3,8,8,2,7,5,11,4,8,3,10 -G,4,5,5,4,3,6,6,6,6,6,6,10,2,9,4,8 -W,3,6,5,4,6,10,7,4,2,7,6,8,5,10,1,5 -G,7,11,8,8,7,5,5,6,6,6,5,11,4,10,4,9 -T,4,5,5,4,2,6,11,2,8,11,9,5,1,10,3,4 -B,4,8,6,6,8,8,8,4,3,6,7,7,6,11,8,8 -X,4,7,5,6,5,6,7,2,4,7,7,10,3,10,7,8 -M,4,7,8,5,8,10,4,2,1,9,4,9,8,6,2,6 -V,4,9,6,7,1,6,8,5,3,8,14,8,3,9,0,8 -T,7,8,7,6,5,7,10,3,7,10,9,5,4,11,5,5 -A,6,10,8,8,8,7,7,8,4,7,6,8,4,8,11,2 -P,6,6,6,8,3,4,13,8,2,10,6,3,1,10,4,8 -L,3,6,3,4,1,1,0,6,6,0,1,5,0,8,0,8 -O,7,11,8,8,7,8,7,8,5,9,5,7,5,8,5,10 -T,4,11,6,8,5,9,11,1,8,6,11,8,1,11,1,8 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -J,4,8,5,6,2,7,6,4,6,15,6,11,1,6,1,7 -K,4,7,4,4,2,4,9,8,2,7,4,11,4,8,3,10 -Y,4,7,4,5,1,3,12,4,5,13,11,5,1,11,1,6 -E,6,9,8,7,6,9,6,1,8,11,4,9,4,8,5,10 -C,4,9,5,7,3,4,8,6,8,12,10,12,1,9,3,7 -W,9,10,8,7,8,4,11,3,2,9,8,7,7,12,3,6 -L,4,10,4,7,1,0,1,5,6,0,0,6,0,8,0,8 -P,9,15,8,8,4,6,10,6,5,14,5,4,4,10,4,8 -G,4,8,5,6,3,7,7,7,7,10,7,12,2,9,4,9 -X,4,9,5,6,3,7,7,4,4,7,6,7,3,8,4,8 -I,3,10,5,7,6,9,6,3,4,8,5,5,6,7,5,5 -F,3,6,6,4,5,5,9,2,3,10,8,7,5,9,3,4 -W,3,2,5,4,3,7,10,2,2,6,9,8,7,11,0,7 -D,5,9,5,4,3,7,7,4,6,10,6,7,5,9,6,5 -F,4,11,5,8,4,3,11,3,7,11,10,6,1,10,3,5 -I,0,3,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -J,4,6,2,9,2,12,5,2,4,9,5,7,2,9,4,11 -B,5,10,8,7,8,9,6,4,6,9,5,7,2,8,6,10 -W,5,10,8,7,6,5,8,4,1,7,9,8,7,11,0,8 -U,3,9,4,6,3,7,6,13,4,6,10,8,3,9,0,8 -F,10,15,9,8,6,6,9,3,5,10,6,7,5,7,9,6 -A,4,9,6,7,5,8,2,1,2,6,2,7,5,6,6,7 -Z,1,3,2,1,1,8,7,5,8,6,6,8,1,8,6,8 -X,6,11,10,8,5,10,7,2,9,11,1,6,4,9,4,10 -N,7,13,8,7,4,4,9,4,4,13,11,10,5,9,0,8 -U,4,8,6,7,5,8,8,5,4,5,7,8,7,8,2,7 -N,4,8,6,6,4,4,10,3,4,10,10,9,5,8,1,8 -Z,3,7,5,5,3,7,8,2,9,11,8,6,1,8,6,5 -D,5,10,6,7,3,6,7,10,10,6,5,6,3,8,4,8 -C,1,0,2,1,0,6,7,6,8,7,6,14,0,8,4,10 -Q,2,3,3,4,2,8,8,5,2,8,8,10,2,9,4,8 -M,4,9,5,7,6,7,6,10,1,7,8,8,8,5,0,8 -T,3,4,4,5,1,7,15,1,5,7,11,8,0,8,0,8 -Q,4,6,5,7,5,9,9,7,2,4,7,11,3,9,5,10 -T,8,10,8,8,5,5,11,2,7,11,10,5,2,12,2,4 -G,3,4,4,3,2,7,6,6,6,6,6,10,2,9,4,9 -O,5,8,6,6,5,8,7,7,4,9,6,7,3,7,4,9 -C,4,7,4,5,2,3,8,5,7,11,11,12,1,8,2,7 -B,6,11,8,8,7,9,7,4,6,10,5,6,3,8,6,10 -C,5,6,6,5,5,5,6,3,6,7,7,11,5,11,7,8 -Q,4,7,6,5,4,8,4,7,4,6,6,11,3,8,5,9 -U,4,5,5,4,2,5,8,5,8,9,7,8,3,9,3,5 -W,11,15,11,8,5,2,9,3,2,9,11,9,9,12,0,6 -O,2,4,3,2,2,7,7,7,5,9,6,8,2,8,3,8 -K,3,4,5,3,3,9,7,2,7,10,3,8,3,8,3,9 -C,2,5,3,4,2,6,8,7,8,9,8,13,1,10,4,10 -S,5,10,7,7,4,8,7,4,9,11,5,7,2,8,5,8 -A,3,6,5,4,3,8,5,3,0,7,1,8,2,6,1,8 -J,4,9,6,7,3,5,9,2,6,15,7,8,1,7,1,7 -N,2,4,4,3,2,7,9,2,4,10,6,6,5,8,1,7 -E,2,7,4,5,3,7,7,5,8,6,5,8,3,8,6,9 -T,5,12,5,6,3,7,9,2,6,11,6,6,2,9,5,5 -A,2,8,4,5,2,9,5,3,1,8,1,8,2,7,2,8 -T,2,8,3,5,1,9,14,1,6,5,11,9,0,8,0,8 -O,4,6,4,4,3,7,7,7,5,10,7,9,3,8,3,8 -V,1,0,2,0,0,8,9,3,1,6,12,8,2,11,0,8 -E,3,7,3,5,2,3,8,6,10,7,6,14,0,8,7,8 -F,4,7,6,5,3,7,10,3,6,13,5,4,2,10,2,7 -F,5,12,6,8,2,1,13,5,4,12,10,7,0,8,3,6 -Q,8,12,7,6,4,12,3,3,7,11,2,9,3,8,5,14 -H,6,7,8,5,5,7,7,3,7,10,7,9,3,8,3,7 -Q,3,3,4,5,3,8,8,6,2,5,7,9,3,8,5,9 -O,7,11,9,8,6,8,7,9,5,7,6,6,4,8,5,10 -Z,6,11,8,8,7,10,5,5,5,8,5,7,4,7,10,5 -L,3,3,3,5,1,0,1,6,6,0,0,6,0,8,0,8 -Y,6,8,6,6,3,2,11,3,6,12,12,6,1,11,2,5 -C,3,5,4,4,2,6,8,7,7,9,8,12,2,10,4,10 -J,2,7,2,5,1,13,4,5,4,13,2,9,0,7,0,8 -Z,3,8,4,6,2,7,7,4,14,9,6,8,0,8,8,8 -L,2,2,3,3,1,4,4,3,7,2,1,7,0,7,1,6 -U,3,7,4,5,3,7,6,11,4,7,12,8,3,9,0,8 -R,3,8,4,5,2,5,10,9,4,7,4,8,3,7,6,11 -C,5,8,5,6,3,4,8,6,7,12,10,11,1,9,2,7 -I,2,9,2,7,3,7,7,0,7,7,6,8,0,8,3,8 -S,3,2,3,3,2,8,7,6,5,7,6,8,2,9,9,8 -R,4,5,5,4,4,7,8,5,6,7,5,6,6,7,4,8 -X,6,10,9,8,4,8,8,1,9,10,4,7,3,9,4,8 -F,3,5,5,4,2,7,9,2,6,13,6,6,3,8,3,7 -U,7,10,8,8,4,3,9,6,7,12,11,9,3,9,2,7 -K,2,3,3,2,2,5,7,4,7,7,6,11,3,8,4,9 -R,4,11,6,8,8,7,7,3,4,7,6,8,6,8,7,5 -E,3,9,4,7,4,6,7,7,8,7,6,11,3,8,6,8 -Y,9,10,9,8,5,3,10,3,6,12,12,7,2,11,2,5 -D,3,5,5,4,3,9,7,5,7,9,5,5,3,7,4,8 -G,4,10,5,8,5,5,6,6,4,8,7,12,4,8,6,7 -R,5,11,7,8,6,7,8,5,7,6,5,8,4,6,7,9 -P,4,6,6,8,8,10,8,3,3,6,8,7,6,10,6,4 -D,3,6,5,4,6,9,8,4,4,7,6,6,4,8,8,5 -T,3,5,4,4,2,6,11,2,7,11,9,5,1,11,3,4 -I,7,14,5,8,3,10,5,6,5,13,3,7,3,8,5,10 -Z,5,7,6,5,5,9,6,5,4,7,5,7,3,8,10,6 -H,5,10,8,8,7,7,8,2,6,10,7,8,3,8,3,7 -T,2,1,2,2,0,7,14,1,5,7,11,8,0,8,0,8 -H,6,9,9,6,7,10,6,3,6,10,3,7,5,6,4,9 -I,5,10,6,8,3,9,6,2,7,7,6,5,0,8,4,7 -J,3,6,5,7,4,8,8,4,5,7,7,7,3,9,9,11 -D,6,12,6,6,4,10,3,4,4,11,2,8,4,6,4,10 -I,1,1,1,2,1,8,7,1,7,7,6,7,0,8,2,7 -P,5,9,7,6,5,9,8,2,5,13,5,5,2,9,3,9 -A,5,7,7,6,6,5,8,3,5,7,8,11,7,9,3,8 -A,6,9,9,8,8,7,8,2,4,7,7,8,6,5,5,6 -V,4,7,5,5,2,6,11,3,2,8,11,8,2,9,3,8 -D,5,11,7,8,6,6,7,8,7,6,6,5,3,9,4,9 -Q,2,2,3,3,2,8,8,5,1,5,7,9,2,9,5,10 -B,2,6,3,4,2,6,7,9,6,7,6,7,2,8,8,10 -J,8,10,5,14,4,7,8,3,4,11,6,5,3,8,8,9 -E,2,2,3,4,3,7,7,6,7,7,6,9,2,8,6,10 -V,1,0,2,0,0,7,9,3,2,7,12,8,2,10,0,8 -T,2,10,4,7,1,10,14,1,6,4,11,9,0,8,0,8 -F,5,7,7,5,3,5,12,2,6,13,7,4,1,10,2,7 -R,4,9,5,6,3,5,12,8,3,7,3,9,3,7,6,11 -R,1,0,2,1,1,6,9,7,2,7,5,8,2,7,4,10 -L,8,13,7,7,3,6,4,3,7,10,4,13,3,5,6,8 -O,5,8,7,6,4,8,5,8,5,6,4,5,4,8,4,8 -I,3,10,4,7,3,9,5,0,7,13,5,9,0,7,2,9 -Y,5,7,5,5,2,3,11,3,6,12,11,5,0,10,2,5 -Z,2,1,2,2,1,7,7,3,12,8,6,8,0,8,7,8 -F,2,4,3,3,1,6,10,3,5,13,7,5,1,9,2,7 -D,3,9,4,6,7,9,8,5,4,7,6,6,4,7,7,5 -Q,5,8,6,9,7,8,5,8,4,6,5,9,3,7,6,10 -G,3,7,4,5,3,6,6,6,5,10,7,13,2,9,4,10 -L,2,7,3,5,1,0,1,4,5,1,1,7,0,8,0,8 -T,2,3,3,2,1,9,12,3,6,6,11,9,2,11,1,8 -R,2,1,3,2,2,7,7,5,5,6,5,6,5,7,3,8 -I,1,8,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -I,1,6,1,4,2,7,7,0,7,7,6,8,0,8,3,8 -R,3,5,5,4,5,8,8,4,4,8,4,7,6,7,5,4 -H,4,8,6,6,6,7,7,6,6,7,6,9,3,8,3,8 -O,2,3,3,2,1,8,7,7,4,7,6,8,2,8,2,8 -X,10,15,11,8,6,7,8,2,8,11,8,8,5,12,4,7 -W,4,6,6,4,3,8,8,4,1,7,9,8,7,10,0,8 -S,6,9,8,7,5,7,7,3,7,10,8,9,2,10,5,6 -F,2,6,3,4,2,1,11,3,4,11,10,8,0,8,2,7 -E,5,11,7,8,7,10,6,2,7,11,4,8,4,8,6,12 -P,6,5,6,7,3,4,13,9,2,10,6,4,1,10,4,8 -K,3,3,5,2,2,7,7,2,7,10,5,10,3,8,3,8 -A,6,9,6,5,3,12,3,5,2,12,3,10,5,3,3,10 -Q,3,3,4,4,3,8,8,6,2,5,7,10,3,9,6,10 -S,4,4,5,7,3,7,5,6,10,5,6,10,0,9,9,8 -F,5,9,4,5,3,8,10,3,4,11,5,4,3,10,7,7 -G,6,11,8,9,9,7,9,6,3,6,6,9,6,7,8,7 -U,3,5,4,3,2,5,8,5,7,10,9,9,3,9,2,6 -R,9,15,9,8,7,7,8,3,5,8,4,9,7,7,7,6 -X,3,8,5,6,5,9,7,2,5,7,5,6,3,9,6,8 -X,6,9,9,7,5,6,8,1,8,10,9,9,3,9,3,6 -H,5,10,8,8,7,7,7,3,6,10,7,9,3,8,3,8 -L,3,6,4,4,3,6,7,9,5,6,6,9,3,8,5,11 -D,6,9,5,5,4,7,7,4,6,10,5,7,5,9,6,6 -H,6,8,9,6,5,7,7,3,7,10,6,8,3,8,3,8 -V,5,9,6,7,4,8,11,3,2,5,10,9,2,10,3,9 -E,6,11,9,9,6,10,6,2,9,11,4,9,3,8,5,11 -F,5,9,7,7,4,6,10,2,5,13,7,5,1,10,2,7 -O,5,8,7,6,5,7,8,8,5,6,7,11,4,8,4,8 -V,3,9,5,7,3,7,9,4,2,7,13,8,2,10,0,8 -K,2,5,3,3,2,7,7,4,6,6,6,9,3,8,5,10 -P,2,2,3,3,2,6,11,5,4,10,7,2,1,10,4,6 -V,1,1,2,1,0,7,9,4,2,7,13,8,2,10,0,8 -V,4,11,6,8,5,8,11,2,3,4,10,9,4,12,2,8 -J,2,8,3,6,2,9,6,3,6,12,4,9,1,6,2,6 -I,1,4,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -K,5,9,6,7,4,4,7,7,3,7,7,12,3,8,3,11 -R,4,10,6,8,6,8,8,4,6,8,3,8,4,5,5,12 -P,4,7,6,5,4,9,8,2,6,13,5,6,1,10,3,9 -Y,2,3,4,2,1,8,11,1,6,6,11,9,1,11,1,8 -E,4,10,6,8,6,7,7,5,8,7,7,9,3,8,6,9 -K,4,7,5,5,5,5,7,5,3,7,5,9,3,5,9,8 -S,4,6,6,6,6,8,8,5,5,7,7,8,4,10,8,9 -H,4,8,6,6,4,10,5,3,6,10,2,7,3,8,3,10 -K,3,4,6,3,3,6,7,1,7,10,7,10,3,8,3,7 -Y,2,5,4,7,6,9,8,4,1,6,7,9,3,11,7,7 -S,3,5,4,4,2,8,7,3,7,10,7,7,1,9,5,8 -B,3,6,4,4,5,7,7,6,5,7,6,6,2,8,6,10 -T,4,5,5,3,2,6,11,2,8,11,9,5,3,9,3,4 -O,2,1,3,2,2,7,7,7,5,7,6,8,2,8,3,8 -A,2,2,4,3,2,8,2,2,2,8,1,8,2,6,2,7 -F,2,1,3,2,1,5,11,3,5,11,9,5,1,9,3,6 -H,6,9,9,7,7,8,6,2,6,10,5,8,4,7,4,8 -W,9,10,9,7,6,3,11,2,3,9,9,8,8,11,2,6 -L,5,11,5,8,2,0,0,6,6,0,1,5,0,8,0,8 -T,2,5,4,7,1,8,14,0,6,6,11,8,0,8,0,8 -H,4,4,5,6,2,7,6,15,1,7,7,8,3,8,0,8 -Y,1,1,2,1,0,8,9,2,2,7,12,8,1,10,0,8 -S,2,3,3,4,2,8,7,5,8,4,6,8,0,8,8,8 -S,4,7,5,5,3,7,7,4,8,11,5,7,2,8,5,8 -Q,4,5,5,6,4,8,7,5,2,8,8,10,2,9,5,7 -V,2,1,4,1,1,9,12,2,2,5,10,9,2,10,1,8 -W,5,5,7,7,4,9,8,5,2,7,8,8,9,9,0,8 -T,2,6,4,4,2,5,13,0,5,9,10,7,0,8,0,8 -D,2,1,2,1,1,6,7,8,7,6,6,6,2,8,3,8 -A,4,9,7,7,3,12,2,4,2,11,1,9,3,7,3,9 -F,6,9,8,7,3,4,14,3,5,13,7,2,1,10,2,6 -D,5,10,8,8,11,9,9,5,5,7,6,6,5,8,11,6 -J,3,6,5,4,2,7,7,3,5,15,6,9,1,6,1,7 -S,3,1,3,2,2,8,7,6,5,7,7,8,2,9,9,8 -L,5,5,5,7,1,0,0,7,6,0,1,4,0,8,0,8 -E,3,3,4,5,2,3,7,6,10,7,6,14,0,8,7,7 -M,4,8,5,6,3,7,7,12,1,7,9,8,8,6,0,8 -L,1,3,2,2,1,7,4,2,7,7,2,9,0,7,2,8 -A,3,7,5,5,3,8,2,2,2,7,2,7,2,6,3,7 -R,5,10,6,8,7,6,7,5,6,6,4,8,3,6,5,8 -S,4,9,5,6,5,8,7,5,8,5,5,8,0,8,8,7 -E,1,3,3,2,1,7,7,2,6,11,7,9,2,9,4,9 -O,5,8,6,6,4,7,9,8,5,6,7,9,3,8,3,7 -R,3,7,5,5,3,10,7,3,6,10,3,7,3,7,3,10 -O,1,0,1,1,0,7,7,7,5,7,6,8,2,8,3,8 -F,4,6,6,4,2,8,10,2,6,13,5,3,2,10,2,8 -A,4,9,6,7,5,7,5,2,4,5,1,6,3,6,4,5 -R,3,10,4,7,5,6,9,8,4,7,6,8,2,7,5,11 -T,5,8,6,6,3,4,13,4,6,12,10,4,2,11,2,4 -W,5,6,7,4,4,5,11,3,2,9,8,7,9,13,2,5 -N,5,10,7,7,5,7,8,6,6,6,6,6,6,8,1,6 -S,5,5,6,7,3,8,8,6,9,5,6,7,0,8,9,7 -A,6,11,5,6,3,8,4,3,3,7,4,11,5,6,4,7 -Y,2,6,4,4,2,8,9,1,6,5,11,8,1,11,1,8 -V,5,10,8,7,5,7,12,2,3,5,10,9,4,12,2,7 -B,1,0,2,1,1,7,8,7,5,7,6,7,1,8,6,8 -N,5,10,8,8,5,5,9,5,5,8,8,9,7,9,2,5 -R,6,10,8,7,6,8,9,4,6,8,4,8,3,6,6,11 -Y,3,5,5,7,7,9,6,4,1,6,7,8,6,10,8,9 -W,1,0,2,1,1,8,8,4,0,7,8,8,6,10,0,8 -B,3,8,3,6,4,7,6,8,5,7,6,7,2,9,7,9 -C,2,1,3,3,1,6,8,7,7,8,8,13,1,10,4,10 -Y,5,9,8,7,4,5,9,1,7,9,12,9,1,11,2,7 -I,6,15,4,8,3,12,4,3,6,11,2,7,3,8,3,12 -D,5,10,6,7,6,8,9,5,5,11,6,5,5,8,5,9 -A,3,4,5,3,2,10,1,3,2,9,2,9,3,6,2,8 -A,3,7,5,5,3,12,3,2,2,9,2,9,2,5,2,8 -X,2,7,3,4,1,7,7,4,4,7,6,8,3,8,4,8 -R,3,6,4,4,3,6,8,8,4,6,5,7,2,7,5,11 -G,1,0,2,0,0,8,7,5,5,6,5,9,1,8,5,10 -Z,4,10,5,7,4,7,8,3,12,9,6,8,0,8,8,7 -X,2,2,4,3,2,8,7,3,9,6,6,9,3,8,6,8 -J,6,7,8,9,7,8,10,4,5,7,7,8,5,6,9,7 -A,5,9,5,5,3,12,2,5,1,12,3,10,3,3,2,10 -Q,2,2,3,3,2,8,7,7,3,6,5,9,2,9,3,9 -F,6,9,8,7,5,8,9,1,7,14,5,5,2,9,3,9 -A,4,7,6,6,5,8,8,2,4,7,7,8,5,7,4,5 -M,5,10,6,8,4,7,7,12,2,8,9,8,8,6,0,8 -Y,6,9,6,6,3,3,10,3,7,11,11,6,1,11,3,5 -M,5,2,6,4,4,8,6,7,5,7,7,8,8,6,2,7 -O,5,9,5,6,5,8,8,7,4,9,6,6,4,8,4,8 -V,2,4,3,3,1,3,12,4,3,11,11,7,2,11,1,7 -T,2,1,3,3,1,6,12,3,6,8,11,7,1,11,1,7 -B,3,5,4,7,3,6,8,9,7,7,5,7,2,8,9,10 -P,4,7,5,5,3,8,9,3,5,13,4,3,1,10,3,9 -H,4,5,6,4,4,7,7,3,6,10,6,8,3,8,3,7 -N,1,0,2,0,0,7,7,11,0,5,6,8,4,8,0,8 -B,8,15,7,8,6,10,6,3,5,10,4,7,7,6,8,9 -B,4,9,4,4,3,10,6,3,4,9,4,8,6,7,7,10 -T,2,4,2,3,1,7,11,2,6,7,11,8,1,11,1,7 -P,2,1,2,1,1,5,11,8,2,9,6,4,1,9,3,8 -R,3,4,4,2,2,7,8,5,5,7,5,7,2,6,4,8 -K,2,3,4,1,2,6,8,2,6,10,7,10,3,8,2,8 -E,3,5,5,4,3,6,7,2,8,11,7,9,2,8,4,8 -J,1,1,2,2,1,10,6,3,5,12,5,9,1,7,1,7 -M,7,6,10,6,10,7,8,4,4,7,5,7,11,8,5,5 -M,5,10,7,8,8,6,6,6,5,7,7,11,11,5,2,9 -S,3,7,4,5,3,8,7,7,7,8,6,7,2,8,9,8 -Y,7,8,6,6,3,3,10,3,7,11,12,6,2,11,3,5 -P,6,10,5,5,3,6,9,6,3,10,5,6,4,9,4,7 -J,5,9,6,7,3,9,5,4,6,15,4,10,0,7,1,7 -T,3,6,4,4,2,6,12,2,7,11,9,4,1,11,2,5 -D,1,0,1,1,1,6,7,8,5,6,6,6,2,8,3,8 -J,3,7,5,5,2,8,5,4,6,14,7,12,1,6,0,7 -V,3,7,5,5,1,7,8,4,3,7,13,8,3,9,0,8 -J,3,11,4,8,4,10,7,0,7,11,3,6,0,7,1,7 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -Z,3,7,5,5,2,9,6,3,9,11,3,9,1,7,6,9 -M,3,3,6,2,3,8,5,3,4,10,7,9,7,5,2,8 -Y,7,8,6,12,4,5,8,4,1,8,10,5,4,10,6,5 -A,3,8,5,6,3,8,3,2,2,7,1,8,2,6,3,7 -R,4,9,5,6,5,9,7,4,5,9,4,8,3,7,4,11 -W,6,5,9,8,4,11,8,5,2,6,9,8,9,9,0,8 -G,10,15,9,8,5,7,6,6,6,10,6,7,5,8,6,6 -I,1,4,0,2,0,7,7,1,7,7,6,8,0,8,2,8 -T,2,2,3,3,2,7,12,3,6,7,11,8,2,11,1,7 -B,7,14,5,8,4,7,6,4,5,10,6,9,5,7,7,9 -J,0,0,1,0,0,12,4,6,3,12,5,11,0,7,0,8 -U,3,6,4,4,2,7,4,14,5,7,13,8,3,9,0,8 -P,7,10,6,5,4,7,10,4,4,12,5,3,4,10,5,6 -H,3,3,5,2,3,7,8,2,6,10,7,7,4,10,3,7 -I,1,2,1,3,1,7,7,1,7,7,6,9,0,8,3,8 -S,2,6,3,4,2,7,6,5,8,4,6,8,0,9,8,8 -Y,5,6,5,4,2,3,11,3,7,12,12,6,2,11,2,5 -B,2,7,3,5,3,6,7,7,5,6,6,7,2,8,7,9 -M,5,8,8,6,6,8,6,6,5,6,7,8,8,6,2,7 -E,3,6,3,4,2,3,8,6,10,7,6,14,0,8,7,8 -G,3,7,4,5,2,7,7,8,7,5,6,10,2,7,5,10 -B,4,9,5,7,6,7,7,9,5,7,5,6,2,8,8,10 -V,5,10,5,5,3,10,9,4,5,8,8,5,3,10,2,8 -Y,5,6,5,4,2,3,12,4,5,12,11,5,1,11,1,5 -U,4,9,5,6,2,7,4,15,6,7,13,8,3,9,0,8 -D,4,4,4,6,2,5,7,10,8,6,6,5,3,8,4,8 -V,2,1,3,2,1,7,12,2,2,7,11,8,2,10,1,8 -A,2,4,4,6,2,7,5,3,1,7,1,8,2,7,2,8 -L,4,9,6,7,4,9,4,1,7,9,2,10,3,6,4,9 -O,3,7,4,5,3,6,7,7,4,7,6,10,4,8,3,8 -Z,6,10,8,8,6,8,7,2,9,12,5,8,1,7,6,8 -C,5,9,6,6,3,3,8,5,7,11,10,14,1,8,3,7 -E,3,7,3,5,2,3,6,6,10,7,7,14,0,8,7,8 -G,6,10,7,8,5,6,6,6,6,11,6,12,4,9,5,8 -J,4,6,6,7,5,7,8,4,6,6,8,7,3,9,9,10 -O,1,1,2,1,1,8,7,7,5,7,6,8,2,8,3,8 -J,5,9,6,7,3,9,7,2,6,15,4,8,0,7,1,7 -X,4,7,6,5,5,6,7,2,6,7,6,9,4,5,7,9 -U,4,7,6,5,8,8,8,4,4,6,7,8,7,8,5,8 -J,2,4,3,3,1,9,7,2,6,14,4,8,0,7,0,8 -V,4,11,6,8,2,7,8,4,3,7,14,8,3,9,0,8 -O,5,10,6,8,5,8,8,8,4,7,7,6,5,7,4,9 -R,4,8,6,6,4,8,8,4,6,9,3,8,3,6,4,11 -R,4,6,6,4,3,9,7,5,6,9,4,7,3,7,4,11 -O,5,11,6,8,5,8,7,9,6,6,7,9,3,8,3,8 -D,5,11,7,8,6,7,8,8,7,7,7,4,4,7,5,9 -R,3,6,4,4,3,6,7,5,5,6,5,7,3,7,5,9 -F,5,8,7,6,5,7,9,3,5,13,7,6,2,10,2,7 -K,6,7,8,5,4,6,7,2,7,10,6,10,4,7,4,8 -U,4,6,5,5,5,7,6,5,4,6,7,8,4,8,1,7 -E,2,4,3,3,2,8,7,6,8,7,7,8,2,8,6,8 -G,4,6,5,4,3,7,6,6,6,10,6,11,2,10,4,10 -F,4,6,5,4,3,6,11,3,5,13,6,4,2,10,2,7 -P,4,8,4,6,2,4,12,8,2,10,6,3,1,10,4,8 -K,4,7,6,5,4,6,7,5,7,6,5,10,3,8,5,9 -P,3,5,5,3,2,8,9,4,4,12,4,3,1,10,3,8 -Y,4,9,5,6,5,9,4,7,5,8,8,7,5,8,5,5 -P,5,8,7,6,5,8,10,5,4,11,4,3,1,10,3,8 -K,3,6,5,5,4,8,7,2,4,9,3,8,4,6,4,10 -D,3,4,4,3,3,7,7,7,7,6,6,5,2,8,3,7 -M,6,10,7,8,4,8,7,13,2,6,9,8,9,6,0,8 -A,3,4,6,6,2,7,6,3,0,7,0,8,2,7,1,8 -Q,4,9,5,8,5,8,8,7,4,6,8,9,2,8,4,9 -G,5,9,6,7,5,5,6,6,7,6,5,11,2,10,4,8 -B,4,8,5,6,6,8,8,6,6,7,6,6,5,8,5,10 -R,2,3,4,2,2,8,7,4,4,9,4,6,2,7,3,9 -J,3,6,4,4,2,8,7,3,5,14,6,10,1,6,1,7 -U,7,13,7,7,3,6,5,5,6,3,9,8,5,9,2,7 -T,5,5,5,4,3,6,11,2,8,11,9,4,3,10,4,4 -W,3,1,5,2,2,7,11,3,2,7,9,8,6,11,0,8 -Y,1,0,2,0,0,7,9,3,1,7,12,8,1,11,0,8 -A,3,7,4,5,2,9,3,3,3,9,1,8,2,6,2,7 -F,4,10,5,8,6,5,9,4,6,9,10,7,2,9,3,6 -C,6,9,7,7,8,5,6,4,5,7,6,11,6,9,4,8 -O,2,0,2,1,0,7,7,6,5,7,6,8,2,8,3,8 -F,3,5,5,3,2,6,11,2,6,14,7,4,1,9,2,7 -T,7,13,6,7,4,9,7,2,7,10,5,8,3,8,5,8 -P,4,9,4,6,2,4,11,9,3,9,6,4,1,10,4,8 -C,3,7,4,5,2,4,9,6,7,12,10,11,1,10,2,7 -X,7,10,10,8,6,7,8,0,8,9,6,8,3,8,3,7 -T,7,10,6,5,3,5,11,2,7,12,7,5,2,8,4,4 -M,4,4,6,3,3,6,6,3,4,10,9,10,8,4,3,8 -K,5,10,8,8,6,4,9,1,6,10,9,10,3,8,3,6 -G,3,6,4,4,2,6,8,5,5,9,7,10,2,8,4,9 -Z,1,4,2,2,1,7,8,5,8,6,6,9,1,8,7,7 -V,6,7,6,5,2,3,12,5,4,12,12,7,3,10,1,8 -M,3,4,4,2,3,8,6,6,4,7,7,9,9,5,1,8 -O,3,6,3,4,3,7,8,7,4,9,7,10,3,8,2,9 -O,6,8,8,6,9,7,9,5,2,7,6,7,10,10,6,9 -H,4,5,6,4,4,7,8,3,6,10,7,7,5,9,4,8 -M,7,10,12,8,15,10,6,3,3,9,4,7,12,6,5,5 -B,5,10,6,8,7,9,8,3,5,7,6,7,7,7,6,9 -V,5,6,5,4,2,4,11,2,3,9,11,7,2,10,1,7 -R,2,1,2,2,2,6,8,4,5,6,5,7,2,7,4,8 -E,2,4,4,3,2,6,8,3,9,11,8,9,2,8,4,6 -G,5,11,6,8,6,8,8,8,6,5,7,9,3,5,7,11 -W,6,10,8,8,9,8,7,6,3,7,8,8,10,6,6,11 -C,2,5,3,4,2,6,8,7,7,9,8,13,1,9,4,10 -Q,2,1,2,1,1,8,7,7,4,6,6,8,2,8,3,8 -A,4,9,7,6,3,12,2,4,3,11,1,9,3,7,3,9 -V,5,8,5,6,2,3,11,3,4,10,12,7,2,10,1,8 -Z,2,4,5,3,2,7,8,2,9,11,7,7,1,8,5,6 -F,4,9,6,7,4,4,11,3,7,11,10,5,1,10,3,5 -L,6,9,8,7,6,6,6,8,6,6,6,9,6,7,5,11 -X,4,10,7,8,4,9,7,0,8,9,5,7,2,8,3,8 -V,2,3,4,4,1,9,8,4,2,6,13,8,3,10,0,8 -M,5,11,8,8,12,9,5,2,1,8,4,8,11,7,3,6 -J,2,3,2,5,1,13,3,8,4,13,4,12,1,6,0,8 -B,3,7,5,5,5,7,8,6,4,7,5,6,2,8,5,7 -O,2,4,3,3,2,7,8,6,4,9,6,8,2,8,2,7 -Y,6,9,6,6,4,5,9,1,7,8,9,5,2,11,3,4 -U,4,8,6,6,7,7,6,4,3,7,7,8,10,8,5,7 -U,6,9,6,7,4,3,8,5,7,11,10,9,3,9,2,6 -Y,3,5,5,7,6,8,8,3,2,7,8,9,3,11,7,6 -K,4,9,6,6,7,5,6,4,5,7,5,9,7,7,8,10 -A,4,5,6,7,2,7,4,3,1,7,1,8,3,7,2,8 -E,2,3,4,2,2,7,7,2,7,11,6,9,2,8,4,8 -K,5,9,7,7,4,3,8,3,7,11,10,12,3,8,4,6 -D,3,6,4,4,3,7,9,6,5,10,6,4,3,8,3,6 -M,3,5,6,3,4,5,6,3,4,10,9,10,7,6,2,8 -C,2,4,3,3,1,6,8,7,8,7,8,13,1,8,4,10 -U,4,9,5,7,2,7,5,14,5,7,14,7,3,9,0,8 -X,6,8,8,6,6,7,6,3,5,7,6,11,4,6,10,8 -F,3,9,3,6,2,1,14,4,3,12,10,5,0,8,1,6 -V,4,4,5,3,2,4,12,3,3,10,11,7,2,10,0,8 -Y,5,6,5,4,2,5,9,2,8,10,10,5,2,10,4,3 -K,6,10,9,8,5,3,7,3,7,10,11,12,4,7,4,7 -M,5,5,6,8,4,8,7,12,2,6,9,8,8,6,0,8 -V,4,9,6,7,8,7,5,5,2,8,7,8,8,8,5,8 -V,4,11,6,8,4,8,9,4,1,6,12,8,4,9,2,7 -W,3,3,4,1,2,4,10,3,2,9,9,7,5,10,1,6 -N,4,10,4,7,5,7,7,12,1,6,6,8,5,8,0,8 -V,6,11,9,8,11,8,5,5,3,8,7,8,6,9,5,9 -L,4,6,6,4,4,6,6,7,6,6,6,9,2,8,5,10 -G,2,1,2,2,1,7,7,6,5,6,6,10,2,9,4,9 -U,5,11,7,8,5,6,9,5,7,6,9,9,3,9,1,8 -X,4,9,5,6,1,7,7,5,4,7,6,8,3,8,4,8 -U,4,9,4,7,2,7,4,15,6,7,13,8,3,9,0,8 -X,8,12,9,6,5,6,9,2,8,11,8,8,4,9,4,5 -E,5,10,8,8,9,7,8,3,6,6,7,11,4,11,8,7 -J,3,6,5,4,2,10,5,3,6,14,3,9,0,7,0,8 -A,2,2,4,3,1,6,2,2,2,5,2,8,2,6,2,6 -M,4,2,5,4,4,8,6,6,4,6,7,8,8,6,2,7 -R,5,11,7,8,5,11,7,3,7,11,1,6,6,7,4,10 -G,2,3,3,2,1,7,6,5,5,7,6,9,2,9,4,9 -A,2,5,4,4,2,11,3,3,2,10,2,9,2,6,2,8 -H,5,7,7,5,5,8,7,3,6,10,6,9,3,8,3,8 -H,4,8,6,10,7,8,4,4,2,7,4,6,5,7,8,8 -L,3,8,5,6,4,4,4,4,7,2,1,6,1,6,1,6 -B,5,9,7,7,7,8,7,5,5,9,6,6,3,9,6,9 -K,7,9,10,7,6,5,8,2,7,10,8,10,3,8,4,7 -Z,7,12,7,6,4,10,3,4,7,12,4,10,3,8,6,10 -B,6,11,8,8,11,8,6,5,4,7,7,7,9,11,11,10 -S,5,6,6,5,6,9,8,4,5,7,6,8,5,10,8,11 -Q,2,2,3,2,2,8,7,6,3,6,6,10,2,9,3,10 -F,4,7,6,5,3,5,11,4,5,13,7,4,2,10,2,7 -X,4,8,6,6,4,7,8,3,9,5,6,7,4,9,7,7 -I,2,7,3,5,2,7,7,0,6,13,6,8,0,8,1,8 -B,4,8,6,6,8,8,7,5,3,7,7,7,6,10,8,9 -H,7,11,9,8,10,8,8,6,7,7,6,6,6,8,4,7 -E,2,5,3,4,3,7,7,5,7,7,6,9,2,8,5,10 -F,3,7,4,5,3,6,10,3,5,10,9,6,2,10,3,6 -T,5,7,5,5,3,6,11,3,7,11,9,4,2,12,2,4 -O,3,8,4,6,3,7,8,7,5,9,8,8,3,8,3,8 -T,3,8,4,6,2,9,13,0,6,6,10,8,0,8,0,8 -M,6,9,9,7,7,8,7,2,4,9,7,8,8,7,2,8 -N,2,3,4,2,1,7,8,3,4,10,6,6,5,8,0,7 -E,2,3,4,2,2,7,7,2,7,11,7,9,2,8,4,8 -F,2,1,2,2,1,5,10,3,5,10,9,5,1,10,2,7 -B,3,7,3,5,3,6,8,9,7,7,5,7,2,8,8,9 -E,3,6,3,4,3,3,8,5,9,7,6,14,0,8,6,9 -R,5,7,7,5,4,9,8,4,6,9,4,7,3,7,5,11 -O,3,6,4,4,2,7,8,8,7,6,7,8,3,8,4,8 -Y,4,5,5,4,2,4,11,3,6,12,11,5,1,11,2,5 -A,4,9,6,7,4,8,2,1,2,6,2,8,2,7,3,6 -N,2,4,4,2,2,8,8,2,4,10,4,6,5,10,1,7 -U,3,3,3,1,1,5,8,5,7,10,9,8,3,10,2,6 -N,7,10,10,8,6,9,9,2,5,10,4,5,7,9,2,8 -H,6,7,9,5,4,9,6,3,6,10,3,7,6,8,5,9 -W,2,4,4,3,2,7,11,2,2,7,9,8,6,11,0,8 -J,2,6,3,4,3,9,9,4,3,8,4,6,4,8,5,4 -M,4,4,6,3,3,7,6,3,4,10,8,9,9,5,3,9 -I,1,4,2,2,0,7,8,0,7,13,6,8,0,8,0,8 -T,2,3,3,2,1,6,11,2,7,11,9,5,1,10,2,5 -Y,2,7,4,5,2,7,10,1,6,6,11,8,1,11,1,8 -Q,4,6,5,8,5,7,9,5,2,6,9,11,3,9,6,7 -O,2,1,3,2,2,7,7,7,5,7,6,8,2,8,3,8 -M,7,8,10,7,11,8,8,5,4,7,6,7,11,10,6,3 -J,5,11,4,8,4,6,11,2,3,12,6,5,2,9,8,8 -H,4,10,6,7,6,6,7,5,5,7,5,8,6,6,6,11 -A,2,3,4,2,1,10,2,3,2,10,2,10,2,6,2,8 -C,5,9,6,6,4,6,7,6,9,5,6,12,1,7,4,9 -E,1,0,2,1,1,5,7,5,7,7,6,12,0,8,7,9 -O,3,5,4,3,2,8,6,6,4,9,5,8,2,8,3,8 -X,4,7,7,5,3,7,8,1,8,10,8,8,3,8,3,7 -J,1,3,2,1,1,11,6,2,5,11,4,8,0,7,1,8 -V,7,9,10,8,11,7,6,5,5,7,6,8,7,10,8,8 -G,4,9,5,7,4,5,7,5,4,9,8,9,2,8,5,9 -P,2,7,3,5,2,4,12,8,2,10,6,4,1,10,3,8 -T,8,13,7,7,3,6,9,3,8,13,6,6,2,8,5,4 -U,2,1,3,2,2,7,9,5,6,7,9,9,3,9,1,8 -T,3,11,5,8,2,7,14,0,6,7,11,8,0,8,0,8 -T,7,10,6,5,2,5,10,3,8,13,7,5,2,8,4,4 -X,6,10,9,8,7,8,8,3,6,7,7,8,7,13,9,9 -K,4,10,6,7,6,5,7,5,7,6,6,12,3,8,6,9 -G,2,3,3,2,2,6,7,5,5,9,7,10,2,9,4,9 -V,3,7,5,5,1,7,8,4,2,7,14,8,3,10,0,8 -E,5,9,7,7,8,7,6,3,6,7,7,11,4,9,8,7 -G,2,5,3,4,2,6,7,5,5,9,7,10,2,9,4,9 -H,4,4,5,5,2,7,7,15,0,7,6,8,3,8,0,8 -N,5,6,7,4,4,11,7,3,5,10,1,4,5,9,1,7 -N,4,7,6,5,5,6,7,3,3,8,8,8,6,9,5,4 -O,5,10,6,7,4,7,7,8,5,10,6,9,3,9,4,6 -K,2,4,4,3,2,5,8,2,7,10,8,10,3,8,3,6 -Z,6,9,8,7,5,7,7,2,9,12,6,8,1,8,6,7 -L,1,3,2,1,1,6,4,1,8,8,3,10,0,7,2,8 -G,2,3,3,2,2,6,6,5,6,7,5,10,2,9,4,9 -C,6,12,5,6,4,7,9,4,5,8,7,9,4,8,8,10 -R,4,5,5,3,3,7,7,5,6,7,5,6,5,7,4,8 -Q,4,6,5,8,5,8,9,5,2,6,8,11,3,9,6,8 -P,8,12,7,6,4,9,8,4,6,13,4,4,3,10,6,7 -G,3,9,4,6,2,7,7,8,7,5,6,11,2,7,5,10 -B,4,9,4,6,3,6,7,9,7,7,6,7,2,8,9,10 -I,4,11,6,8,4,7,9,0,8,13,6,6,1,9,2,7 -A,4,7,6,5,3,9,3,2,2,8,1,8,2,6,3,7 -F,1,3,2,2,1,5,11,4,4,11,8,4,1,9,3,6 -A,3,5,6,4,2,7,1,2,2,6,2,7,4,6,4,7 -G,2,1,2,1,1,8,6,6,6,6,5,9,1,7,5,10 -B,3,3,4,4,3,6,8,8,7,7,5,7,2,8,8,9 -A,2,3,3,1,1,7,2,2,1,6,2,7,1,6,1,7 -B,3,5,3,4,3,7,7,5,5,6,6,6,2,8,6,10 -Q,4,8,6,7,3,8,6,8,7,6,5,8,3,8,4,8 -R,6,8,9,7,9,7,8,3,4,7,5,8,7,7,6,7 -X,9,13,8,8,4,6,7,3,9,9,9,9,4,8,4,6 -C,4,9,6,7,6,5,7,4,4,7,6,9,6,9,5,7 -W,7,8,7,6,5,4,11,3,3,9,9,7,7,11,2,6 -W,6,9,8,7,4,5,7,5,2,7,8,8,9,9,0,8 -Y,4,6,4,4,2,3,10,3,6,11,11,6,2,11,2,5 -G,3,2,5,3,3,7,6,6,6,6,6,10,2,9,4,9 -O,2,5,3,3,2,7,7,7,4,9,6,8,2,8,3,8 -I,1,4,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -E,2,3,2,1,2,7,7,5,6,7,6,8,2,8,5,10 -F,4,8,7,6,7,8,8,1,4,9,7,7,6,11,4,6 -Y,3,10,5,7,1,7,12,1,4,7,12,8,0,10,0,8 -Q,5,8,5,9,6,7,10,4,3,6,9,11,3,9,6,8 -O,5,9,7,8,6,6,6,5,5,7,4,7,4,8,6,7 -K,4,5,7,4,4,8,7,1,7,10,5,8,3,8,4,8 -Q,2,6,3,5,2,8,8,8,5,6,7,8,3,7,5,9 -L,4,8,5,7,5,8,5,4,4,6,7,7,3,8,8,11 -T,5,9,7,6,8,6,7,3,6,7,6,10,5,9,5,7 -W,4,7,6,5,4,5,11,2,3,8,9,9,7,11,1,8 -D,7,13,7,7,4,9,5,4,6,10,3,7,5,6,5,11 -Z,5,7,6,5,5,9,11,5,4,6,5,7,3,8,8,5 -R,3,4,5,3,3,8,7,3,5,10,4,7,2,7,4,10 -Y,4,8,6,6,3,5,10,2,8,10,12,9,1,11,2,7 -I,8,14,5,8,3,10,4,4,7,11,2,7,3,7,5,11 -Z,5,9,7,7,5,8,6,2,9,12,5,8,1,7,6,8 -N,5,7,7,5,4,10,8,3,5,10,2,4,5,9,1,7 -V,5,7,5,5,3,3,11,2,3,9,11,8,3,12,1,7 -L,4,11,6,8,4,7,4,2,7,8,2,9,2,5,3,7 -Q,5,10,6,8,6,8,4,8,4,7,5,9,4,9,4,7 -Y,3,4,5,3,2,9,11,1,7,5,11,7,1,11,2,8 -L,4,8,6,6,3,5,4,1,10,7,2,11,0,7,3,7 -B,9,15,6,8,4,9,5,6,6,10,3,9,6,6,7,11 -U,3,3,4,4,2,6,9,5,7,7,9,9,3,9,1,8 -R,5,7,7,5,5,9,7,3,5,10,3,7,3,6,4,10 -P,3,6,4,4,2,9,9,3,5,13,4,3,1,10,3,9 -O,4,6,5,4,3,8,7,8,4,7,6,5,3,8,3,7 -T,7,12,6,7,4,6,10,2,6,12,7,6,2,9,4,4 -Z,5,9,6,7,4,8,6,6,11,7,5,6,1,7,8,8 -P,2,4,3,2,1,5,11,4,4,10,8,3,1,9,3,6 -N,6,8,9,6,4,8,8,3,5,10,5,6,6,9,2,7 -T,3,10,4,8,3,9,13,0,5,6,10,8,0,8,0,8 -Z,5,9,5,4,3,5,8,2,8,11,9,9,3,9,5,5 -N,4,8,7,6,3,4,10,4,4,10,11,10,5,7,1,7 -Z,4,7,6,5,5,9,9,5,4,6,5,7,3,9,9,4 -G,3,7,4,5,3,6,7,7,6,8,7,11,2,8,4,9 -O,4,5,6,7,3,9,8,9,8,6,7,10,3,8,4,8 -Q,3,6,4,6,2,7,6,8,5,6,7,7,3,8,5,9 -A,1,1,2,1,1,7,4,2,1,7,1,8,2,6,1,7 -Z,4,9,4,7,2,7,7,4,14,9,6,8,0,8,8,8 -D,3,4,5,3,3,7,7,5,6,10,6,6,3,8,3,9 -A,2,4,4,3,1,8,2,2,2,7,2,8,2,6,2,7 -N,4,7,6,5,4,7,9,5,5,7,6,6,6,10,2,5 -W,4,10,6,8,7,7,7,6,2,7,8,7,10,7,5,9 -A,4,10,6,8,4,13,2,4,3,11,1,9,3,7,4,10 -N,8,11,12,8,6,7,9,2,5,9,6,6,6,9,1,8 -N,5,8,7,6,4,4,9,4,4,10,9,9,5,7,1,7 -H,4,8,5,6,7,8,8,5,3,7,6,6,7,9,8,8 -U,6,7,7,5,3,4,9,6,7,12,11,8,3,9,2,6 -Y,7,7,6,10,4,7,9,2,2,7,10,5,4,10,6,6 -G,7,15,6,8,4,9,3,3,3,7,3,5,4,7,4,9 -Q,1,0,2,1,0,8,7,6,3,6,6,9,2,8,3,8 -G,4,6,6,4,5,7,8,5,4,6,6,8,4,7,7,7 -H,2,3,3,2,2,7,7,5,6,7,6,8,3,8,3,8 -C,4,6,4,4,2,3,9,5,8,11,10,11,1,8,3,7 -E,1,0,1,0,0,5,7,5,7,7,6,11,0,8,6,10 -B,4,11,5,8,4,6,6,10,7,6,6,7,2,8,9,10 -S,4,7,5,5,2,8,7,4,8,11,6,7,2,8,5,8 -Z,5,11,7,9,5,8,6,6,11,7,5,6,2,7,8,8 -Y,2,3,2,2,1,4,11,3,6,11,10,4,1,11,2,5 -G,4,9,6,7,7,9,6,5,2,7,6,10,8,8,4,11 -D,6,10,8,8,6,7,7,7,8,7,7,4,3,8,3,7 -B,5,9,8,8,9,7,8,5,4,7,6,8,7,9,8,6 -G,5,11,6,8,5,5,5,6,7,7,5,12,2,10,4,9 -O,4,10,5,8,3,7,6,9,8,6,4,7,3,8,4,8 -Q,5,7,6,9,6,9,10,6,3,4,8,12,3,10,8,12 -K,2,3,3,1,1,6,7,1,6,10,7,10,3,8,2,8 -Y,4,6,4,4,2,3,11,5,5,12,12,6,2,11,1,6 -F,5,7,6,8,7,7,9,5,5,7,6,8,4,8,8,7 -S,4,6,5,4,2,6,8,4,8,11,5,7,2,6,5,8 -G,4,7,5,5,4,6,6,6,5,9,7,12,3,8,4,9 -L,2,1,3,2,1,4,4,4,8,2,1,6,0,7,1,6 -V,5,10,5,8,3,3,11,4,4,10,12,8,2,10,1,8 -D,4,7,5,5,4,7,8,8,4,8,6,4,3,8,3,7 -H,7,10,9,8,6,10,5,3,6,10,2,7,5,7,5,9 -P,4,8,6,6,4,5,13,6,2,12,6,2,0,10,3,7 -T,6,11,5,6,2,5,10,2,7,13,7,5,2,8,4,4 -P,2,7,3,4,2,4,12,8,2,10,6,4,1,10,3,8 -H,6,7,9,5,5,8,7,3,7,10,4,7,5,6,4,8 -E,6,9,8,7,7,10,6,2,7,11,4,8,4,6,6,11 -J,2,9,3,6,1,11,3,10,3,12,7,13,1,6,0,8 -B,2,1,2,2,1,7,7,8,5,6,6,7,2,8,7,10 -Y,4,11,6,8,1,6,10,2,2,7,13,8,1,11,0,8 -E,4,11,4,8,5,3,9,5,10,7,6,14,0,8,6,8 -E,4,6,5,4,4,10,6,2,6,11,4,9,2,8,4,12 -E,4,9,6,6,5,7,7,2,7,11,7,9,3,8,4,8 -X,1,0,1,0,0,7,7,4,4,7,6,8,2,8,3,8 -U,5,10,6,7,6,8,8,8,5,6,7,10,3,8,4,6 -E,3,4,3,3,3,7,8,6,8,7,5,9,2,8,6,9 -V,5,10,7,8,5,5,12,3,2,9,10,8,5,10,6,8 -G,3,7,4,5,2,8,7,7,7,6,6,10,2,7,5,11 -I,1,5,1,4,1,7,7,1,7,7,6,8,0,8,2,8 -U,6,8,7,6,5,4,8,5,7,9,7,9,4,8,3,4 -D,4,9,6,7,5,7,7,9,4,8,7,4,4,8,4,8 -Y,4,5,6,7,1,7,12,2,3,7,12,8,1,10,0,8 -P,5,8,7,11,10,9,8,4,3,6,8,7,6,10,6,4 -T,3,9,4,7,4,6,11,4,6,8,11,7,2,12,1,7 -S,5,8,7,6,4,6,8,3,7,10,6,7,3,7,5,6 -Y,6,8,6,6,3,4,10,2,8,11,11,5,1,10,3,4 -J,2,7,2,5,1,11,3,9,3,13,7,13,1,6,0,8 -E,3,8,4,6,2,3,6,6,11,7,7,14,0,8,7,7 -T,6,14,6,8,4,9,7,3,7,12,5,6,2,8,6,6 -X,3,9,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -F,2,3,2,1,1,5,10,4,5,10,9,6,1,9,3,7 -K,4,8,4,6,2,4,7,8,2,7,7,11,3,8,3,11 -D,4,9,4,4,2,9,6,5,5,11,4,7,5,7,5,11 -A,4,9,7,7,4,12,3,2,2,9,2,9,2,6,2,8 -O,5,6,7,5,5,6,6,6,5,7,5,6,3,6,5,6 -H,4,7,6,5,4,11,6,4,6,10,2,6,3,8,3,9 -X,3,7,4,5,3,7,6,3,5,6,6,9,2,9,8,8 -B,4,10,4,8,4,6,6,9,6,6,6,7,2,8,9,11 -X,2,1,3,2,1,8,7,3,8,6,6,8,2,8,5,8 -P,2,4,3,3,1,5,11,4,4,10,8,3,0,10,3,6 -W,8,15,8,8,6,1,7,2,3,9,10,9,9,10,1,5 -U,4,4,5,6,2,7,3,14,6,7,13,8,3,9,0,8 -J,2,6,3,4,3,10,7,3,3,9,4,7,2,8,7,8 -W,3,8,5,6,8,7,5,6,2,7,6,8,8,12,3,10 -P,9,14,7,8,4,7,9,6,4,13,4,4,5,10,4,8 -P,3,1,3,2,2,6,9,5,4,9,7,4,1,9,3,7 -Q,6,8,8,7,6,7,4,4,5,6,4,8,4,5,6,7 -D,5,9,6,6,5,9,7,4,5,10,5,6,3,8,3,8 -J,4,8,6,6,2,8,5,5,5,14,8,13,1,6,1,7 -H,6,9,8,7,8,8,8,5,7,7,6,9,6,8,4,8 -S,3,4,3,3,2,8,8,6,5,7,6,7,2,8,9,8 -N,2,0,2,1,1,7,7,12,1,5,6,8,5,8,0,8 -Z,2,4,3,6,2,7,7,3,13,10,6,8,0,8,8,8 -D,4,6,6,4,5,8,7,5,6,9,4,5,3,8,3,8 -N,1,1,2,1,1,7,7,11,1,5,6,8,4,8,0,8 -J,6,13,5,10,4,7,11,3,3,13,5,4,2,9,8,9 -X,3,9,5,6,4,8,8,3,8,6,6,6,3,9,6,7 -J,2,5,3,7,1,12,3,9,4,13,5,12,1,6,0,8 -D,3,4,5,3,3,9,6,4,6,10,4,6,2,8,3,8 -E,3,4,3,6,2,3,7,6,10,7,6,14,0,8,7,8 -T,2,5,3,3,2,7,12,3,5,7,11,8,2,11,1,8 -S,3,2,3,3,2,8,8,7,5,7,5,7,2,8,9,8 -W,3,3,4,2,2,6,11,3,2,8,8,7,5,11,1,6 -M,2,1,3,2,2,6,6,6,4,7,7,10,6,5,2,9 -W,3,2,5,3,3,8,11,2,2,6,9,8,6,11,1,7 -D,5,8,7,6,6,8,8,6,6,9,5,4,5,8,4,9 -C,4,8,5,6,4,7,7,8,5,8,6,12,4,9,4,8 -E,2,3,4,2,2,6,9,2,8,11,7,8,2,8,4,7 -I,1,3,2,1,0,7,8,1,7,13,6,7,0,8,0,7 -E,4,8,5,6,6,6,7,5,7,7,6,10,3,8,5,9 -R,2,4,4,2,2,8,7,3,5,10,4,7,2,7,3,10 -U,3,4,4,3,2,6,8,6,7,7,9,9,3,9,1,8 -A,3,5,6,6,2,6,5,3,1,6,0,8,2,7,2,7 -A,4,9,6,6,2,6,3,3,3,6,2,7,3,6,3,7 -J,2,1,3,3,1,10,6,2,6,12,4,8,0,7,0,7 -O,5,9,7,7,5,7,5,9,5,8,5,11,4,8,4,8 -D,5,6,6,5,5,6,7,5,7,6,4,7,3,7,5,6 -K,3,5,4,3,3,5,7,4,7,7,6,10,6,8,4,9 -S,3,9,4,7,2,8,7,6,9,4,6,7,0,8,9,8 -Z,4,9,4,7,4,7,8,3,12,9,6,8,0,8,7,7 -U,9,11,10,8,7,4,8,5,9,9,7,9,8,10,6,1 -D,5,8,6,6,4,10,6,3,8,11,4,6,3,8,3,9 -Z,2,5,4,4,2,7,7,2,9,11,6,8,1,8,5,8 -K,5,10,7,7,9,8,8,3,4,6,6,9,10,10,7,7 -X,2,2,4,3,2,8,7,3,9,6,6,8,2,8,6,8 -O,6,11,7,8,7,7,8,8,4,9,8,8,3,8,3,8 -S,3,2,3,3,2,8,7,6,5,7,6,8,2,8,9,8 -F,2,3,2,1,1,5,10,4,4,10,9,5,1,9,3,6 -L,1,3,3,2,1,7,4,1,7,8,2,10,0,7,2,8 -M,4,6,5,4,4,8,6,6,5,7,7,8,7,5,2,8 -V,6,9,8,8,9,8,7,5,5,7,6,8,8,8,10,3 -X,3,7,4,5,2,7,7,4,4,7,6,8,3,8,4,8 -T,2,1,3,2,1,6,12,3,6,8,11,7,2,11,1,7 -H,5,8,7,6,4,7,8,3,6,10,7,8,3,8,3,7 -W,5,10,7,8,7,10,11,2,2,5,8,8,8,13,2,7 -Q,6,10,8,7,7,8,3,8,4,6,6,9,3,8,4,9 -I,2,6,3,4,1,7,7,0,8,14,6,8,0,8,1,8 -G,4,9,5,7,3,8,8,8,8,5,7,9,2,7,6,11 -P,4,7,5,5,3,6,11,8,2,10,5,3,1,10,4,7 -U,3,8,5,6,3,4,9,7,7,8,10,10,3,9,1,8 -P,4,10,5,8,5,7,9,6,6,9,7,3,2,10,4,7 -B,1,3,3,2,2,8,7,3,5,9,6,7,2,8,4,8 -U,3,3,4,1,1,5,8,4,6,10,9,9,3,10,1,6 -I,2,5,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -F,5,9,7,7,4,6,10,2,6,13,7,5,1,10,2,7 -Y,3,4,5,3,2,4,10,2,8,11,10,5,2,11,3,3 -F,3,5,4,4,3,4,11,3,6,11,9,6,1,10,3,6 -M,6,10,8,8,7,11,5,2,5,9,3,6,8,6,2,9 -J,2,1,3,3,1,9,6,2,6,12,4,9,1,7,1,7 -K,6,9,8,6,8,6,9,5,4,8,5,8,4,7,8,10 -Z,4,9,4,6,3,6,8,6,10,7,7,10,1,9,8,8 -U,5,11,5,6,3,6,5,5,4,7,9,10,5,6,2,9 -N,3,6,4,4,2,7,7,14,2,5,6,8,6,8,0,8 -V,4,7,6,6,6,7,8,6,4,7,6,8,6,9,7,7 -B,4,7,5,5,4,6,7,9,6,7,5,7,2,8,9,9 -J,4,6,3,8,2,9,7,3,4,10,5,5,2,9,5,9 -F,5,11,6,8,5,4,10,4,6,11,10,6,2,10,3,5 -A,1,3,2,1,1,7,2,2,1,7,2,8,1,6,1,7 -Z,3,6,5,4,4,6,7,3,7,7,6,9,0,8,8,7 -F,4,8,5,6,5,7,9,6,3,8,6,9,4,11,8,11 -M,6,10,9,8,8,11,6,2,4,9,4,6,9,6,2,8 -B,4,7,5,5,4,8,6,7,7,6,7,5,2,9,8,9 -C,3,7,4,5,2,5,9,6,7,12,9,9,2,10,3,7 -B,7,10,9,8,8,8,7,5,6,10,6,6,3,9,7,10 -V,6,9,6,7,3,1,12,4,4,12,12,8,2,10,1,7 -G,5,7,7,5,6,7,7,5,2,7,6,11,5,8,8,8 -Q,5,6,5,8,5,8,9,5,2,8,9,10,3,9,6,8 -K,4,5,6,3,3,4,8,2,7,10,9,11,3,8,3,7 -K,5,8,7,6,5,3,9,2,6,10,11,11,3,8,3,6 -V,5,11,8,8,2,6,8,5,3,8,14,8,3,9,0,8 -K,6,8,8,6,6,8,6,1,6,10,4,9,5,7,5,11 -Q,6,10,8,7,7,8,5,8,5,7,6,5,5,7,8,8 -O,7,13,5,7,4,6,6,5,5,6,4,8,5,7,5,7 -D,3,3,4,2,2,7,7,6,7,7,6,5,2,8,3,7 -K,3,3,5,2,2,6,8,2,7,10,7,9,3,8,2,7 -L,2,3,2,4,1,0,2,5,6,0,0,7,0,8,0,8 -D,3,6,4,4,4,7,7,6,6,6,6,5,3,8,3,7 -V,3,10,5,8,2,7,8,4,3,7,14,8,3,9,0,8 -B,4,6,6,6,7,7,8,5,5,8,6,9,6,9,8,8 -V,4,8,6,6,1,7,8,4,3,7,14,8,3,9,0,8 -V,2,1,4,2,1,7,12,3,3,7,11,8,2,10,1,8 -T,10,15,9,8,5,6,10,3,7,12,7,6,3,9,6,5 -L,1,3,2,1,1,6,4,0,6,8,3,10,0,7,1,8 -S,6,9,7,6,4,8,7,4,8,11,6,8,2,9,5,8 -Z,4,8,6,6,3,7,8,2,10,12,6,8,1,9,6,8 -K,4,6,4,4,1,4,7,9,1,7,6,11,3,8,2,11 -S,5,12,5,6,3,8,6,4,5,13,6,8,2,9,3,7 -L,2,7,3,5,3,4,4,4,6,3,1,7,1,6,1,6 -G,4,6,6,4,5,7,9,6,3,6,6,10,4,7,7,7 -M,5,4,6,6,3,7,7,12,2,7,9,8,9,6,0,8 -A,6,13,5,7,3,8,1,2,2,9,4,12,3,5,4,6 -C,1,1,2,2,1,6,8,6,7,8,8,12,1,9,4,10 -E,3,6,5,4,3,10,6,2,7,11,4,9,2,8,5,12 -U,8,10,9,8,5,3,9,5,7,10,10,9,3,9,2,6 -P,3,1,4,3,2,5,10,3,5,9,8,4,3,10,3,7 -J,2,8,2,6,1,14,3,5,4,13,3,9,0,7,0,8 -A,2,7,5,5,4,8,5,2,3,7,2,6,2,5,3,7 -G,5,11,6,8,5,5,6,6,6,6,6,11,2,9,4,8 -T,3,3,4,4,2,7,12,3,6,7,11,8,2,11,1,8 -K,5,9,6,7,4,6,7,4,8,7,6,9,3,8,5,9 -B,1,3,3,1,2,8,7,2,5,10,5,7,1,8,4,9 -J,2,10,3,8,1,11,3,10,3,13,7,13,1,6,0,8 -X,4,8,6,7,6,9,8,2,5,7,5,6,3,8,7,8 -D,3,8,4,6,4,8,8,6,5,9,6,4,3,8,3,6 -Z,2,2,3,3,2,7,7,5,9,6,6,8,1,8,7,8 -S,6,9,7,6,4,6,7,4,7,11,9,9,3,9,5,4 -U,5,10,6,8,3,7,4,15,6,7,14,8,3,9,0,8 -O,4,7,5,5,2,7,8,8,8,7,7,7,3,8,4,8 -K,4,5,7,4,4,6,7,1,7,10,6,9,3,8,3,7 -X,4,10,5,7,2,7,7,5,4,7,6,8,3,8,4,8 -B,3,5,5,3,3,8,7,2,6,10,5,7,2,8,4,10 -U,5,9,7,6,4,6,8,6,7,7,10,10,3,9,1,8 -B,4,9,6,6,8,9,6,4,4,7,7,8,8,8,8,7 -P,2,3,3,2,2,5,10,3,4,10,8,4,1,9,3,7 -B,7,15,7,8,8,6,8,3,6,9,6,7,8,5,8,6 -S,5,9,6,7,3,7,5,6,10,5,6,10,0,9,9,8 -O,7,12,5,7,3,8,7,6,5,9,4,7,5,9,5,8 -W,3,3,4,2,2,9,11,3,2,5,9,8,6,11,0,8 -W,4,3,6,5,3,5,8,5,1,7,8,8,8,9,0,8 -M,8,10,12,7,9,10,6,2,5,9,4,6,13,8,3,9 -H,5,8,7,6,6,8,8,7,7,7,6,7,3,8,4,7 -V,4,11,6,8,4,5,11,2,3,8,11,9,2,10,1,8 -P,7,11,8,8,7,6,9,8,6,8,7,9,3,10,8,9 -T,7,9,6,4,2,6,9,3,8,13,6,7,2,8,5,5 -S,3,7,5,5,7,8,9,4,4,7,6,7,2,7,8,1 -O,5,10,5,8,4,8,6,8,5,10,4,8,3,8,3,8 -V,2,6,4,4,1,8,8,4,2,6,13,8,3,10,0,8 -O,4,7,5,5,3,8,6,7,4,10,5,9,3,8,3,7 -K,4,3,4,5,1,4,8,9,1,7,6,11,3,8,2,11 -Z,2,3,2,1,1,7,7,5,8,6,6,8,1,8,6,8 -R,4,5,7,4,6,5,9,4,3,6,4,9,8,5,7,9 -G,1,0,2,0,0,8,6,5,5,6,6,9,1,7,5,10 -F,3,3,3,4,1,1,14,5,3,12,9,5,0,8,2,6 -M,2,1,2,2,1,7,6,10,0,7,8,8,6,6,0,8 -K,5,9,6,7,6,5,6,5,7,6,6,13,5,7,8,9 -T,3,6,4,4,3,6,11,3,5,11,8,5,3,12,2,5 -S,5,5,6,8,3,7,6,6,9,5,6,10,0,9,9,8 -H,2,4,4,3,3,7,7,3,5,10,6,8,3,8,3,8 -F,3,3,3,4,1,1,11,5,7,11,11,9,0,8,2,6 -Y,2,3,3,1,1,4,10,2,7,11,10,5,0,10,2,4 -T,6,9,5,4,3,7,9,2,6,12,7,6,2,9,4,6 -N,3,9,4,6,2,7,7,14,2,5,6,8,5,8,0,8 -G,5,11,7,8,5,5,6,6,7,6,5,9,4,9,4,7 -P,2,4,4,3,2,8,8,2,5,13,4,4,1,10,2,9 -P,8,9,6,5,3,7,10,6,5,14,5,4,4,10,4,7 -B,3,8,5,6,4,8,7,7,6,7,6,6,2,8,8,10 -W,5,11,8,8,7,10,8,5,1,6,10,7,9,13,1,5 -Z,3,7,5,5,4,7,7,2,7,7,6,8,0,9,9,7 -S,6,8,7,6,4,7,8,4,8,11,8,7,2,9,5,6 -F,6,10,9,8,4,4,14,3,4,13,7,3,1,10,2,6 -J,2,6,2,4,1,9,7,0,8,11,5,6,0,7,1,7 -O,7,11,9,8,11,8,9,6,2,7,7,8,9,9,6,12 -Q,7,8,7,9,6,8,7,6,3,8,8,11,3,8,6,8 -Y,7,9,7,6,5,5,9,1,8,10,10,6,3,11,5,3 -K,6,8,8,6,4,7,8,1,7,10,5,8,3,8,3,8 -Z,2,7,3,5,1,7,7,3,13,9,6,8,0,8,8,8 -G,5,11,6,8,3,8,7,8,8,6,6,9,2,7,5,10 -B,11,14,8,8,5,9,6,5,6,11,4,9,6,6,7,10 -M,5,10,6,8,6,7,6,6,5,7,7,9,8,5,2,9 -H,3,9,4,6,4,7,7,12,1,7,6,8,3,8,0,8 -A,1,3,2,1,1,11,3,3,2,10,2,9,1,6,1,8 -A,5,8,6,6,6,8,9,7,4,6,6,8,3,7,7,5 -W,7,9,9,8,11,9,8,6,5,7,5,8,11,10,9,4 -L,2,5,3,4,2,4,4,4,7,2,1,6,0,7,1,6 -T,5,10,6,8,6,6,6,7,7,7,6,8,4,11,7,7 -P,3,4,5,3,2,6,11,5,2,12,5,2,1,10,3,9 -J,0,0,1,1,0,12,4,5,3,12,4,11,0,7,0,8 -Y,8,11,8,8,4,4,9,1,9,10,10,5,2,9,4,3 -N,4,7,6,5,4,4,9,3,3,9,9,9,6,7,1,7 -E,3,5,5,3,2,7,7,2,8,11,5,9,2,8,4,9 -W,5,9,5,4,4,9,8,3,3,6,8,6,9,10,2,6 -Z,2,4,4,3,2,8,7,2,9,12,5,9,1,8,5,9 -V,6,9,6,7,3,2,11,3,3,10,11,8,2,10,1,8 -W,4,8,6,6,9,9,7,5,1,7,6,8,10,11,2,7 -U,8,10,8,8,7,5,7,5,8,8,6,9,8,8,6,1 -L,6,10,5,5,3,9,2,3,3,11,8,11,3,10,4,10 -A,3,11,6,8,4,12,3,3,3,10,1,9,2,6,3,8 -I,2,10,3,8,4,7,7,0,7,7,6,8,0,8,3,8 -V,5,11,8,8,9,8,8,4,2,7,8,8,8,10,6,8 -O,6,10,8,8,10,8,8,6,2,7,7,8,10,9,5,8 -W,5,10,7,8,9,8,8,5,3,7,9,8,6,8,3,7 -M,3,3,5,1,2,5,7,4,4,10,10,10,6,6,2,8 -B,4,10,5,7,7,8,8,6,6,7,6,6,6,8,6,10 -N,7,12,8,6,4,12,4,5,3,13,0,7,5,7,0,7 -P,4,8,5,6,4,5,11,4,6,11,9,4,4,10,4,7 -S,3,7,4,5,3,8,8,5,7,5,5,5,0,7,8,8 -F,4,9,6,7,4,2,12,3,6,12,11,6,1,10,2,5 -Q,4,6,6,9,3,8,7,9,6,6,6,9,3,8,5,9 -A,2,4,3,3,1,8,2,2,1,7,2,8,2,7,2,7 -B,7,11,9,8,9,9,7,4,6,9,5,6,3,8,6,9 -E,5,9,6,7,7,7,7,4,8,7,6,8,6,8,6,10 -H,5,9,8,7,5,7,7,3,6,10,6,8,3,8,3,7 -W,3,3,3,2,2,5,10,3,2,9,8,7,5,11,1,6 -B,3,9,4,6,5,8,7,6,6,7,6,5,2,8,7,9 -V,7,8,6,6,4,3,11,1,3,9,10,8,4,9,1,8 -Q,5,7,6,9,6,7,10,5,2,5,8,12,3,10,6,8 -Q,5,6,6,8,5,8,7,6,3,8,8,11,3,9,6,7 -G,5,9,5,7,4,5,7,6,6,10,8,9,2,9,5,9 -B,3,6,4,4,4,8,7,3,4,7,6,7,3,8,5,8 -F,1,3,3,1,1,8,10,2,5,13,5,4,1,9,1,8 -E,2,6,3,4,3,6,7,6,8,6,5,10,2,8,5,9 -U,5,9,6,7,4,3,8,5,6,9,8,10,3,9,2,5 -A,4,8,6,6,6,8,9,7,5,6,6,8,3,7,7,4 -Z,4,8,5,6,2,7,7,4,14,9,6,8,0,8,8,8 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -F,4,11,4,8,2,1,14,5,3,12,10,5,0,8,3,6 -T,4,8,5,6,3,6,11,3,7,9,11,7,5,12,1,7 -N,4,4,4,6,2,7,7,14,2,4,6,8,6,8,0,8 -V,4,9,5,7,2,5,9,5,2,8,13,8,3,10,0,8 -N,3,4,5,3,2,7,9,3,4,10,6,6,5,9,0,7 -Y,7,9,7,7,5,6,8,1,8,8,9,5,4,11,6,4 -N,4,8,5,6,2,7,7,14,2,4,6,8,6,8,0,8 -L,4,9,4,4,2,10,4,3,3,11,6,10,3,10,4,10 -S,4,11,5,8,5,8,8,8,6,7,4,6,2,7,8,8 -V,4,10,6,8,3,7,9,4,2,6,13,8,3,10,0,8 -K,4,5,4,8,2,3,7,8,2,7,5,11,4,8,2,11 -L,2,6,4,4,2,9,4,1,7,10,3,10,0,7,2,10 -B,5,10,5,8,4,6,8,10,7,7,5,7,2,8,9,10 -U,4,6,6,4,3,5,8,7,8,9,10,10,3,9,1,8 -O,4,9,6,7,8,8,8,5,1,7,7,8,8,9,4,9 -E,7,10,5,5,3,8,6,4,7,10,6,9,2,10,8,8 -J,0,0,1,1,0,12,4,5,3,12,4,11,0,7,0,8 -M,8,10,8,5,4,5,9,5,5,4,4,11,9,11,2,7 -G,3,9,4,7,2,7,6,8,8,6,5,10,2,8,6,11 -B,4,2,4,3,4,7,7,5,6,6,6,6,2,8,6,9 -S,3,7,4,5,3,8,8,5,7,5,6,8,0,8,8,8 -C,5,8,6,6,3,4,8,5,7,11,10,12,2,9,3,7 -K,4,4,4,6,2,3,7,8,2,7,6,11,4,8,2,11 -T,9,15,8,8,3,7,8,3,9,13,5,6,2,8,5,5 -A,2,4,4,3,2,8,2,2,2,7,2,8,2,6,2,7 -W,4,5,5,3,3,4,10,2,2,10,9,8,6,11,1,7 -Y,6,7,6,5,3,2,11,4,5,12,12,7,2,11,2,6 -O,3,8,5,6,2,7,8,8,7,7,7,8,3,8,4,8 -O,4,9,5,6,2,8,8,9,7,6,7,9,3,8,4,8 -X,2,2,4,3,2,8,7,3,9,6,6,8,2,8,6,8 -H,2,2,3,3,2,8,7,6,6,7,6,7,3,8,3,7 -X,2,3,4,2,1,6,8,1,8,10,8,9,2,8,3,7 -X,2,3,3,1,1,8,7,2,8,10,5,7,2,8,3,8 -H,2,1,2,2,2,7,7,6,5,7,6,8,3,8,3,8 -B,6,11,8,8,12,8,7,5,4,7,7,7,8,10,10,10 -R,3,7,5,5,5,6,7,3,3,6,6,9,5,9,7,5 -V,2,2,4,3,1,7,12,2,3,6,11,9,2,11,1,8 -E,4,10,5,8,5,7,7,6,9,7,6,10,3,8,6,8 -Y,3,5,4,8,6,9,10,3,3,6,8,9,3,12,6,6 -W,10,10,9,5,4,5,9,3,2,7,10,8,10,11,1,6 -W,9,12,9,6,5,4,7,2,4,7,10,8,10,10,2,5 -O,6,9,8,8,7,7,5,4,5,9,4,8,3,7,5,6 -D,4,4,5,6,3,5,7,10,9,7,6,5,3,8,4,8 -N,2,4,4,3,2,7,8,3,4,10,6,7,5,8,1,7 -W,4,3,4,2,2,4,10,2,2,9,9,7,5,11,1,6 -V,3,7,4,5,2,8,9,3,1,6,12,8,2,10,0,8 -O,5,10,6,8,5,8,6,9,4,7,5,8,3,8,3,8 -W,5,11,8,8,4,6,8,5,2,7,8,8,9,9,0,8 -S,4,5,6,5,6,8,7,5,5,7,6,7,5,8,9,10 -B,5,11,5,8,5,7,9,10,7,8,5,6,2,8,10,11 -X,6,11,9,8,4,4,9,3,9,11,12,10,3,9,4,5 -Q,4,5,5,7,4,9,9,6,3,4,8,11,3,9,6,10 -Q,3,6,4,5,2,8,5,8,7,7,4,8,3,8,4,8 -B,2,0,2,1,1,7,7,7,5,7,6,7,1,8,7,8 -H,9,13,8,7,5,5,8,5,4,9,10,10,7,11,5,9 -C,3,5,4,3,1,4,9,5,7,12,10,11,1,9,2,7 -J,7,11,6,8,4,8,9,3,3,13,4,5,2,9,8,9 -E,2,1,2,2,1,4,7,5,8,7,6,13,0,8,7,9 -Q,5,8,6,8,3,8,7,8,6,6,6,8,3,8,5,9 -J,5,6,4,9,3,10,5,2,6,9,5,7,3,8,4,11 -W,6,10,9,8,8,6,12,2,2,7,8,8,7,12,1,8 -U,3,7,4,5,1,8,5,13,5,7,13,8,3,9,0,8 -F,5,11,6,8,5,4,10,5,6,11,11,6,2,10,3,5 -G,3,7,4,5,2,7,6,8,9,8,4,12,1,9,5,10 -D,7,10,6,6,4,8,5,5,5,11,4,7,5,6,6,10 -N,5,10,7,7,8,7,8,3,5,7,6,7,7,8,8,2 -G,6,11,6,6,3,7,7,6,5,9,6,6,4,7,5,6 -A,3,8,4,6,3,6,4,2,0,6,2,8,2,6,1,7 -H,6,8,9,6,5,10,7,4,6,11,2,6,4,9,4,10 -O,2,3,3,2,2,8,7,6,4,9,5,8,2,8,2,8 -X,4,9,5,4,3,9,6,2,7,11,3,7,3,8,4,9 -P,6,11,6,8,3,4,14,8,1,11,6,3,1,10,4,8 -A,3,5,6,3,2,9,2,2,2,8,2,10,3,7,2,8 -B,4,9,4,7,6,7,9,8,6,7,5,7,2,7,7,10 -R,3,5,5,3,3,8,8,4,5,9,5,6,3,7,4,9 -C,5,11,7,8,8,6,7,4,4,6,7,10,7,8,7,7 -Z,5,9,7,7,5,9,11,6,5,6,5,8,3,8,10,7 -B,5,10,7,8,8,8,7,5,7,7,6,5,2,8,6,10 -M,6,4,6,7,4,7,7,13,2,7,9,8,9,6,0,8 -G,3,5,4,4,2,6,6,5,5,9,7,10,2,8,4,10 -X,2,2,4,4,2,7,7,3,9,6,6,8,2,8,6,8 -M,6,11,9,8,12,10,5,3,2,9,4,8,11,8,4,6 -Z,1,0,2,1,0,7,7,3,11,8,6,8,0,8,6,8 -R,10,14,8,8,5,8,8,6,5,9,4,9,7,5,6,11 -M,7,11,9,8,10,7,10,7,5,7,7,9,8,10,7,12 -H,6,10,8,8,11,8,9,5,3,6,7,7,8,7,11,9 -W,7,8,7,6,5,2,12,2,2,10,10,8,6,11,1,7 -N,4,6,6,4,4,8,8,6,6,6,5,4,6,10,3,5 -V,3,4,4,3,1,5,12,3,3,9,11,7,2,10,1,8 -J,1,2,2,3,1,10,6,2,6,12,4,8,1,6,1,7 -T,4,11,6,9,6,9,11,3,6,6,11,8,2,12,1,8 -N,6,9,8,7,5,6,10,2,4,9,8,8,5,8,1,8 -B,4,6,5,4,5,8,7,4,5,7,5,7,3,8,6,8 -V,3,9,5,7,1,10,8,4,3,5,14,8,3,10,0,8 -C,3,8,4,6,1,6,7,7,9,8,6,13,1,9,4,9 -A,2,1,3,2,1,9,3,2,2,8,2,8,2,6,2,8 -F,10,15,9,8,6,9,7,2,7,10,6,8,4,7,7,8 -O,5,8,6,6,4,7,6,8,5,7,5,7,3,9,3,8 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -L,2,6,3,4,2,4,5,1,9,3,2,8,0,7,2,5 -E,4,6,6,4,3,7,8,1,9,11,6,8,2,8,4,8 -A,4,9,6,6,2,7,4,3,1,6,1,8,3,7,2,7 -O,6,8,8,6,9,7,6,5,2,7,5,7,11,9,7,11 -Z,7,13,7,7,4,8,5,2,8,11,5,9,3,9,5,9 -E,4,11,4,8,3,3,8,6,10,7,6,15,0,8,7,7 -G,5,10,6,8,4,7,6,7,7,11,6,12,3,10,5,8 -Y,3,8,5,5,1,8,12,2,3,6,12,8,1,10,0,8 -M,6,6,8,5,8,8,9,4,5,6,6,6,9,6,6,4 -J,5,9,4,12,4,7,8,3,3,13,5,5,3,8,7,10 -G,1,3,2,1,1,7,7,5,4,9,7,9,2,8,3,10 -E,4,9,6,6,4,5,8,4,8,11,9,9,2,9,5,6 -O,5,7,6,6,5,8,4,4,4,9,3,8,3,7,5,7 -S,7,10,8,7,4,8,8,5,10,11,2,8,2,5,5,10 -J,2,2,4,4,2,10,6,2,6,12,3,8,1,6,1,7 -C,5,7,5,5,2,5,9,6,8,12,9,10,2,10,3,7 -D,4,6,6,4,4,9,7,4,6,10,4,5,3,8,3,8 -W,4,7,6,5,3,4,8,5,1,7,9,8,8,9,0,8 -G,7,11,7,8,6,6,6,6,6,10,6,14,5,8,6,7 -U,5,8,5,6,3,3,10,5,6,13,12,9,3,9,1,7 -A,2,7,3,4,1,7,6,3,1,7,0,8,2,7,1,8 -Y,5,11,7,8,4,7,10,2,7,6,12,8,2,11,2,8 -T,3,8,4,5,1,10,15,1,6,4,11,9,0,8,0,8 -S,4,9,5,6,4,9,8,5,9,6,6,5,0,7,8,8 -S,1,0,2,1,1,8,7,4,7,5,6,7,0,8,7,8 -P,4,7,6,10,9,8,9,4,0,8,7,6,5,11,5,7 -I,1,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -H,4,9,4,7,4,7,9,13,2,7,4,8,3,8,0,8 -X,3,2,5,3,2,8,7,3,9,6,6,8,3,8,6,8 -K,5,7,8,5,5,7,6,1,7,10,6,10,4,7,4,9 -M,5,9,6,5,3,11,3,2,2,10,3,9,7,2,1,9 -M,2,1,3,1,2,8,6,6,4,7,7,8,6,5,1,7 -M,1,0,2,0,0,8,6,9,0,7,8,8,5,6,0,8 -N,5,10,7,7,5,6,9,6,5,7,7,8,6,9,2,6 -P,5,10,7,7,6,7,7,8,4,7,6,7,3,9,8,9 -W,3,3,4,2,2,5,10,3,2,9,9,7,5,11,1,7 -N,6,8,9,6,4,7,9,3,5,10,7,7,6,8,1,8 -J,5,10,7,8,7,9,10,4,4,9,4,6,4,8,6,4 -Y,6,11,9,8,5,9,10,0,8,4,11,7,1,10,2,9 -Z,3,9,4,7,3,7,8,3,12,8,6,8,0,8,7,7 -Y,6,8,7,10,8,10,12,5,4,6,7,7,5,11,8,5 -X,7,10,8,6,4,5,9,3,7,12,9,8,4,9,3,6 -D,6,9,8,7,5,9,6,4,7,10,5,6,3,8,3,9 -L,4,11,4,8,3,0,2,4,6,1,0,8,0,8,0,8 -Z,3,8,4,6,4,8,6,2,7,8,6,8,0,9,8,8 -W,4,4,5,3,3,5,11,3,2,9,8,7,6,11,2,6 -I,0,3,1,2,0,7,7,1,6,13,6,8,0,8,0,7 -B,2,0,2,1,1,7,8,7,5,7,5,7,1,8,7,8 -D,4,5,6,4,4,5,7,6,7,7,6,8,4,7,5,5 -M,4,5,5,8,4,8,7,12,2,6,9,8,8,6,0,8 -L,3,8,4,6,3,5,5,2,8,6,2,10,0,7,3,7 -O,5,10,4,5,3,6,7,6,3,9,7,9,5,10,5,8 -L,4,11,6,8,4,6,5,1,9,7,2,10,0,7,3,8 -E,4,8,4,6,2,3,7,6,11,7,7,14,0,8,7,7 -T,5,11,5,8,3,7,10,2,9,11,9,4,1,11,3,5 -A,2,3,3,2,1,10,2,3,1,10,2,9,2,6,2,8 -V,7,12,6,6,3,8,10,5,4,7,10,5,5,12,3,7 -V,3,2,6,4,2,7,12,2,3,7,11,9,3,10,1,8 -N,3,4,5,3,2,7,9,3,5,10,7,7,5,8,1,8 -B,8,13,7,8,7,9,7,4,5,9,5,7,7,6,9,8 -P,4,5,5,4,3,5,10,4,5,10,8,3,1,10,4,6 -Z,2,4,4,3,1,7,8,2,9,11,6,8,1,8,5,7 -K,1,0,1,0,0,5,7,7,0,7,6,10,2,8,2,11 -X,4,10,7,8,5,12,6,2,7,10,1,6,2,7,3,10 -S,4,7,5,5,3,6,8,3,6,10,8,8,2,8,5,5 -O,4,9,5,7,4,7,7,8,5,7,6,8,3,8,3,8 -G,2,4,3,3,2,6,8,5,5,9,8,9,2,8,4,9 -A,3,9,5,7,4,9,3,1,2,7,2,8,2,6,4,7 -P,5,5,6,7,3,4,12,9,2,10,6,4,1,10,4,8 -O,9,13,6,7,4,6,5,6,4,10,6,10,6,8,5,7 -B,5,10,7,7,8,8,7,6,6,6,6,6,2,8,6,10 -R,6,9,6,4,4,6,8,3,5,7,4,10,5,8,6,7 -W,5,8,7,6,5,4,11,2,3,8,9,9,8,10,1,8 -L,3,9,5,7,2,7,3,2,8,7,2,9,1,6,2,8 -L,3,6,4,4,2,5,5,1,9,6,2,10,0,7,2,7 -C,3,6,4,5,4,5,6,3,5,7,6,11,4,10,6,9 -P,3,5,5,3,2,8,9,3,4,12,4,3,1,10,3,8 -D,3,3,3,5,2,5,7,10,7,7,6,5,3,8,3,8 -A,3,11,5,8,2,9,6,3,1,8,0,8,2,7,2,8 -N,3,6,5,4,3,5,9,6,4,8,7,9,5,9,1,7 -T,4,5,5,5,5,7,8,4,7,7,6,9,3,7,7,6 -Y,3,5,5,8,7,10,10,4,2,4,8,9,4,13,6,8 -I,1,7,2,5,2,7,7,0,7,7,6,8,0,8,2,8 -V,5,10,5,8,3,3,11,3,4,10,12,8,2,10,1,8 -U,3,2,4,4,2,7,8,6,6,6,9,9,3,9,1,8 -C,4,8,4,6,2,5,7,6,7,11,9,14,1,9,3,8 -R,8,12,8,6,6,7,8,3,6,9,3,8,6,6,6,6 -C,3,5,4,4,1,3,9,5,7,12,10,11,1,9,2,7 -P,3,5,4,8,6,8,9,3,1,8,7,6,4,10,5,8 -E,4,8,4,6,4,3,8,5,9,7,6,14,0,8,6,8 -Q,2,1,3,2,1,8,6,7,5,6,6,8,3,8,4,8 -V,2,1,4,3,1,7,12,2,3,7,11,9,2,10,1,8 -T,3,6,4,4,3,8,11,2,6,6,11,8,2,11,1,8 -E,4,6,6,4,6,7,8,3,5,6,7,11,3,10,7,8 -M,6,11,9,8,12,9,7,3,3,8,4,7,12,5,4,5 -V,8,12,6,6,3,8,11,4,5,5,10,6,4,10,3,5 -R,4,7,5,5,4,10,7,3,6,10,3,7,3,7,3,10 -J,1,5,3,4,1,9,6,2,6,14,5,10,0,7,0,7 -Z,1,1,2,3,1,8,7,5,8,6,6,7,1,8,7,8 -B,6,12,6,7,5,9,7,3,5,9,5,7,6,7,8,9 -R,4,8,6,6,5,9,7,4,5,9,3,8,3,7,4,11 -V,2,1,4,3,1,5,12,3,3,9,11,8,2,10,1,8 -K,1,1,1,1,0,4,7,6,3,7,6,11,3,8,2,11 -A,3,3,5,5,2,7,5,3,1,6,1,8,2,7,2,7 -M,4,4,6,3,4,5,6,4,4,10,10,10,6,5,2,7 -Y,2,0,2,0,0,7,10,3,1,7,12,8,1,11,0,8 -X,7,10,9,8,8,8,6,3,5,6,7,7,4,10,11,8 -A,3,9,5,6,2,9,6,3,1,8,0,8,2,7,1,8 -R,4,7,4,5,4,6,10,7,3,7,4,9,2,7,5,11 -J,3,7,4,5,2,10,7,1,6,13,3,7,0,8,0,8 -A,4,10,7,8,4,13,2,4,4,12,1,9,3,7,4,10 -F,1,0,1,0,0,3,12,4,2,11,9,6,0,8,2,7 -Y,2,2,4,4,2,7,10,1,7,7,11,8,1,11,2,8 -X,4,3,5,5,1,7,7,5,4,7,6,8,3,8,4,8 -K,3,6,4,4,4,6,7,3,6,6,5,9,3,8,4,9 -D,3,7,4,5,4,7,7,7,7,7,7,5,3,8,3,7 -Y,5,7,6,5,5,8,5,6,5,5,8,8,3,9,9,6 -F,3,4,4,6,2,1,12,5,6,11,11,9,0,8,2,6 -X,5,8,7,6,3,7,8,1,8,10,6,8,3,8,4,7 -L,5,9,7,7,5,8,4,1,8,9,2,10,1,6,3,9 -W,8,11,8,8,9,6,10,4,3,9,6,6,11,10,4,5 -A,5,8,9,6,6,7,5,2,4,6,1,6,5,7,5,6 -X,3,6,4,4,3,8,5,2,5,6,7,8,2,9,8,9 -W,6,9,8,7,4,10,8,5,2,6,8,8,9,9,0,8 -A,2,3,3,2,1,8,2,2,1,8,2,8,2,6,3,8 -I,1,3,2,2,1,7,8,1,7,13,6,8,0,8,1,7 -U,4,9,6,7,8,8,6,4,4,6,7,8,8,9,5,6 -L,2,2,3,4,2,5,4,5,7,2,2,5,1,6,1,6 -X,4,6,7,4,3,5,9,3,8,11,12,9,3,9,4,5 -D,1,0,1,1,1,6,7,8,5,6,6,6,2,8,2,8 -T,3,4,3,3,2,5,11,2,7,11,9,5,1,11,2,5 -A,2,4,4,3,1,6,3,2,2,5,2,8,2,6,2,6 -D,5,11,7,9,11,9,8,5,5,7,6,6,5,7,12,6 -E,2,3,4,2,2,7,7,2,8,11,6,8,1,8,4,8 -W,4,5,5,3,3,3,10,2,2,10,10,8,6,11,1,7 -X,3,9,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -C,2,1,2,1,0,6,7,6,9,7,6,14,0,8,4,10 -G,2,4,4,3,2,6,7,6,6,6,6,10,2,8,4,9 -H,6,8,8,6,6,10,6,3,6,10,3,7,6,7,5,11 -A,4,9,7,7,5,10,3,1,2,8,3,9,4,5,3,7 -J,1,1,2,2,1,10,6,2,6,12,4,8,1,7,1,7 -F,6,10,8,7,4,6,11,2,6,14,6,3,1,10,2,7 -Y,2,3,2,1,1,5,10,2,6,10,9,6,1,11,2,5 -U,6,9,8,7,5,4,9,6,7,7,10,11,3,9,1,8 -W,5,4,6,3,3,5,11,3,2,9,8,7,7,12,1,6 -Z,4,9,5,7,3,7,7,3,12,9,6,8,0,8,8,8 -E,5,11,7,8,5,7,7,2,9,11,6,9,3,8,5,8 -B,5,10,7,7,6,9,6,4,7,9,5,7,2,8,6,10 -V,6,9,8,8,10,7,6,5,5,7,6,8,7,10,8,9 -B,4,3,5,5,3,6,9,8,7,7,6,6,2,8,9,10 -V,7,13,7,7,4,9,8,4,4,8,8,5,6,13,3,7 -L,4,4,4,6,1,0,0,6,6,0,1,5,0,8,0,8 -K,4,9,4,6,2,3,7,7,2,7,6,11,3,8,3,10 -U,5,8,5,6,2,7,4,14,6,7,14,8,3,9,0,8 -P,1,3,3,1,1,7,10,3,3,12,5,4,1,9,2,8 -N,3,7,3,5,2,7,7,13,2,5,6,8,5,8,0,8 -D,4,8,5,6,5,7,7,5,7,7,6,5,6,8,3,7 -Q,3,7,4,6,2,10,9,8,6,4,8,10,3,8,5,9 -M,3,3,5,1,2,9,6,3,4,9,5,8,7,5,1,8 -Y,3,4,5,6,1,7,10,1,3,7,12,8,1,11,0,8 -Z,4,9,6,7,7,8,7,2,8,7,6,8,0,8,9,8 -Z,1,3,3,2,1,7,8,2,9,11,6,8,1,8,5,7 -Q,6,12,5,7,3,7,6,4,9,10,5,9,3,7,9,8 -B,4,7,5,5,4,8,6,4,6,9,5,6,2,8,6,10 -L,3,7,5,6,4,6,8,4,6,7,6,9,2,8,8,9 -P,2,6,2,4,2,4,11,8,1,10,6,4,1,10,3,8 -H,3,3,6,2,3,8,7,3,6,10,5,8,3,8,3,8 -K,1,1,1,1,0,4,6,6,2,7,6,10,3,8,2,10 -A,9,13,7,7,4,8,2,3,2,8,4,12,5,4,5,6 -G,2,3,3,5,2,8,8,8,6,5,7,9,2,7,5,11 -I,3,9,5,6,2,7,9,0,8,14,6,5,0,9,2,7 -Y,5,8,5,6,2,3,11,2,7,12,11,6,1,10,2,5 -V,2,8,4,6,1,8,8,4,2,7,13,8,3,10,0,8 -O,2,4,2,2,1,7,7,6,4,9,6,8,2,8,2,7 -J,2,7,3,5,2,8,7,1,6,11,5,8,1,6,1,6 -A,3,7,5,4,2,7,5,3,0,6,1,8,2,7,2,7 -M,6,9,7,4,4,5,9,4,5,5,4,10,8,9,2,8 -W,6,10,8,8,9,7,8,6,3,7,8,8,6,8,4,8 -C,3,7,4,5,2,6,6,6,10,8,5,12,1,9,4,8 -F,3,7,3,5,2,1,12,4,5,12,11,7,0,8,1,6 -K,4,6,6,6,5,6,7,2,4,6,4,9,4,5,8,8 -C,4,5,5,5,5,5,8,3,4,7,6,11,4,10,7,9 -T,5,8,7,6,7,7,8,4,7,8,6,9,5,8,5,6 -P,6,8,8,6,4,9,8,4,7,12,4,5,4,8,5,8 -B,3,8,3,6,4,6,7,8,5,7,6,7,2,8,7,8 -U,2,1,3,2,1,7,8,6,6,7,9,9,3,10,0,9 -X,2,5,4,4,2,8,7,3,9,6,6,8,2,8,6,9 -D,4,9,4,4,2,13,3,3,4,12,1,8,3,7,1,10 -T,6,10,5,5,2,5,9,2,7,12,7,5,2,10,4,4 -K,4,8,4,6,3,3,6,6,3,7,7,11,3,8,3,11 -P,5,7,7,5,4,7,11,4,5,13,5,3,1,10,3,8 -P,2,4,4,3,2,7,9,4,3,12,5,3,1,10,2,8 -L,4,9,6,7,3,8,4,1,8,9,2,10,0,6,2,9 -B,2,4,4,3,3,8,7,3,5,10,6,6,2,8,5,8 -N,5,5,7,5,6,8,6,5,5,8,5,7,7,9,5,4 -F,2,7,3,4,1,1,12,5,4,11,10,7,0,8,3,7 -A,2,3,3,2,1,11,2,2,1,9,2,9,1,6,2,8 -E,7,15,5,8,3,7,8,5,8,10,6,10,1,9,7,8 -P,4,6,5,4,3,7,11,5,3,12,5,2,1,10,3,8 -J,5,10,7,8,3,10,6,2,8,14,3,8,0,7,0,8 -P,5,11,6,8,6,6,6,6,4,8,6,9,5,9,7,10 -X,2,3,3,4,1,7,7,4,4,7,6,8,3,8,4,8 -S,6,8,8,6,8,8,6,4,3,9,5,8,5,9,11,10 -P,4,9,6,7,5,8,9,3,4,12,5,4,2,9,3,8 -F,5,11,7,8,5,4,11,5,4,13,9,5,2,10,2,5 -B,5,11,7,8,7,8,7,7,7,7,6,5,3,8,8,10 -Z,4,8,6,6,4,7,9,2,9,11,7,6,1,8,6,6 -P,3,5,3,4,2,6,9,5,4,9,7,4,1,10,3,7 -X,5,8,8,6,4,6,8,1,8,10,9,9,3,8,3,7 -E,5,10,5,7,3,3,7,6,11,7,6,14,0,8,8,7 -R,4,6,6,4,4,6,8,5,6,7,5,7,3,7,5,8 -E,5,11,7,9,9,7,7,3,5,6,7,10,5,9,8,8 -O,7,10,9,7,11,7,8,5,2,7,6,8,12,11,9,12 -X,6,10,9,8,5,8,7,0,8,10,5,8,3,8,3,8 -C,3,5,4,4,2,3,9,4,7,11,10,12,1,9,2,6 -K,4,7,4,5,3,3,8,7,2,7,6,11,3,8,2,11 -P,5,7,7,5,3,7,11,3,6,14,5,2,0,10,3,8 -N,6,9,9,6,5,7,9,2,5,10,6,6,6,9,1,7 -C,4,8,4,6,2,4,9,6,7,12,10,12,2,9,3,7 -B,6,11,8,8,8,8,7,7,7,7,6,6,3,8,8,11 -N,7,11,9,8,7,7,9,6,6,7,6,6,6,9,2,6 -X,3,7,5,5,4,8,6,3,5,6,7,8,2,9,8,9 -I,7,10,9,8,5,6,8,2,8,7,6,10,0,7,4,8 -N,4,7,4,5,2,7,7,14,2,5,6,8,6,8,0,8 -V,5,11,7,8,9,7,9,4,2,8,8,8,5,9,7,6 -M,6,9,7,4,3,4,8,5,5,4,2,11,8,9,2,8 -K,4,7,6,5,4,7,6,1,6,9,5,9,3,8,3,8 -P,4,2,5,4,3,5,10,5,4,10,8,4,1,10,3,7 -G,3,7,4,5,3,7,6,6,6,6,5,9,2,9,6,11 -W,4,6,6,4,5,7,7,6,3,8,7,7,6,8,4,10 -O,6,10,6,7,6,8,7,8,4,8,5,6,5,8,5,9 -V,2,0,3,1,0,7,9,4,2,7,13,8,2,10,0,8 -B,7,11,10,8,7,10,6,3,7,10,4,7,2,8,7,11 -A,2,3,4,4,1,9,5,3,1,8,1,8,2,7,2,8 -G,7,10,9,8,9,7,5,6,3,7,6,10,5,8,7,8 -U,5,4,5,6,2,7,4,14,5,7,14,8,3,9,0,8 -T,5,8,5,6,3,7,10,2,9,11,9,5,1,11,3,4 -P,4,8,4,5,2,3,14,7,1,11,6,3,0,10,4,8 -J,3,8,4,6,1,11,3,11,3,12,9,14,1,6,0,8 -F,7,10,9,8,9,7,8,6,4,8,6,7,4,11,8,11 -E,3,8,3,6,3,3,7,5,8,7,6,13,0,8,6,9 -O,5,10,7,8,8,8,10,6,3,8,7,6,10,10,6,10 -K,4,5,6,4,3,4,8,2,7,10,10,11,3,8,3,6 -M,4,6,5,4,4,6,6,6,5,6,8,10,7,5,2,9 -F,4,7,5,5,4,5,9,5,7,10,10,6,2,9,3,5 -Z,6,10,8,8,5,8,6,2,9,12,4,11,3,7,8,9 -F,2,3,4,1,1,6,10,3,5,13,7,5,1,9,1,7 -G,3,7,4,5,3,8,7,7,5,6,7,9,2,7,5,11 -V,5,9,8,6,8,8,7,4,2,7,8,8,5,10,4,8 -H,2,3,3,2,2,9,7,6,6,7,6,6,3,9,2,7 -J,6,9,9,7,6,8,5,3,6,8,6,8,4,7,4,7 -O,5,5,7,8,3,8,5,8,9,7,4,8,3,8,4,8 -D,8,12,8,6,5,7,5,4,7,8,4,6,5,7,6,9 -J,1,2,2,3,1,10,6,1,7,12,3,8,0,7,1,8 -T,4,11,5,8,4,6,11,1,8,8,11,8,1,11,1,7 -A,1,0,2,1,0,7,4,2,0,7,2,8,2,7,1,8 -S,4,7,6,5,3,8,7,4,8,11,5,7,2,8,5,8 -L,5,10,5,7,2,0,1,5,6,0,0,7,0,8,0,8 -J,4,8,5,6,3,8,4,6,3,14,8,14,1,6,1,6 -G,4,7,6,5,3,6,7,5,5,6,6,8,3,8,4,8 -P,3,3,4,4,2,4,13,8,1,11,6,3,1,10,4,8 -S,1,0,2,1,1,8,7,4,6,5,6,7,0,8,7,8 -D,2,5,4,4,3,9,6,4,6,10,4,6,2,8,3,8 -R,2,5,4,3,3,9,7,4,5,9,4,7,3,7,4,9 -T,2,4,3,2,2,7,12,3,6,7,11,8,2,11,1,8 -O,1,3,2,2,1,8,7,7,4,7,6,8,2,8,2,8 -Q,4,6,5,5,4,8,7,7,5,6,7,8,2,8,4,9 -L,3,7,4,5,1,0,0,6,6,0,1,5,0,8,0,8 -P,2,3,4,2,1,7,9,4,3,11,4,4,1,9,2,8 -W,6,10,6,5,4,2,9,2,3,10,11,9,8,10,1,6 -D,3,8,5,6,5,7,7,6,5,6,5,5,3,8,2,7 -P,3,4,4,3,2,5,10,4,4,10,8,4,1,10,4,7 -H,3,4,4,3,3,7,7,6,6,7,6,8,3,8,3,8 -R,3,5,5,4,3,9,7,4,5,9,4,6,3,7,4,10 -U,9,10,9,8,7,5,7,5,8,8,5,9,7,9,6,2 -T,5,8,6,7,6,6,8,4,8,7,7,8,3,10,7,7 -I,0,6,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -W,4,4,6,3,3,8,11,2,2,6,9,8,7,11,0,7 -L,4,7,5,5,3,7,4,1,8,8,2,10,0,7,2,8 -P,4,6,5,4,3,5,11,5,5,11,8,3,0,10,4,6 -N,3,3,5,2,2,7,9,3,4,10,6,6,5,8,1,7 -O,3,4,4,3,2,7,7,7,4,9,7,8,2,8,3,8 -A,4,9,6,8,6,7,8,2,6,7,8,9,5,11,3,7 -A,2,4,4,3,2,11,2,3,1,9,2,9,2,6,2,9 -G,4,10,6,7,4,7,7,7,6,5,7,8,2,7,4,8 -D,4,7,4,5,4,6,7,9,7,6,4,6,2,8,3,8 -Z,3,8,4,6,4,6,8,5,9,7,7,10,2,9,7,7 -F,4,5,6,6,5,7,9,4,5,8,6,7,4,9,8,7 -Q,8,13,7,7,5,9,5,4,7,11,5,8,4,8,10,11 -C,4,11,6,8,2,6,6,7,10,8,6,14,1,9,4,9 -H,3,4,4,3,3,8,7,6,6,7,6,7,3,8,3,6 -H,4,7,6,9,7,8,10,4,1,8,6,6,4,10,9,5 -L,3,8,5,6,3,7,4,0,7,8,3,10,0,7,2,8 -T,4,5,6,8,2,7,15,1,6,7,11,8,0,8,0,8 -D,3,6,5,4,3,10,6,4,7,11,3,6,3,8,3,9 -X,3,3,5,2,2,8,7,1,8,11,5,8,2,8,3,8 -Y,2,5,4,4,2,6,10,1,7,8,11,9,1,11,2,7 -K,6,9,8,6,5,5,9,2,7,10,8,10,3,8,3,7 -P,5,8,6,10,8,9,9,2,3,6,9,6,9,11,7,5 -I,2,8,2,6,3,7,7,0,7,7,6,8,0,8,3,8 -Y,3,5,5,4,2,7,10,1,7,7,11,8,1,11,2,8 -R,4,8,5,6,6,8,6,6,3,8,6,8,4,7,6,11 -W,7,8,9,7,10,6,9,6,7,7,7,8,8,9,8,10 -L,6,15,6,8,3,7,3,3,5,12,4,13,2,7,6,8 -J,3,8,4,6,2,8,5,4,8,13,5,12,1,6,1,7 -D,5,10,7,7,5,9,7,5,7,10,4,5,3,8,3,8 -H,3,7,3,5,2,7,7,14,1,7,7,8,3,8,0,8 -P,6,7,8,9,9,6,8,4,3,9,8,6,6,11,6,6 -V,6,8,5,6,3,4,11,3,4,9,11,7,2,10,1,8 -B,5,11,6,8,8,8,7,4,6,7,6,6,6,8,6,10 -E,5,7,7,6,7,7,6,6,4,7,6,9,8,10,10,10 -Y,1,0,2,0,0,8,10,3,1,6,12,8,1,11,0,8 -O,4,6,5,4,6,8,6,6,2,7,6,8,7,9,3,8 -R,1,0,2,0,1,6,10,7,2,7,5,8,2,7,4,9 -G,5,5,6,8,3,7,6,8,8,6,5,10,2,8,6,11 -T,2,10,4,7,1,6,14,0,6,8,11,8,0,8,0,8 -P,5,9,5,6,3,4,12,9,2,10,6,4,1,10,4,8 -K,4,6,6,4,3,3,9,3,6,10,11,11,3,8,3,6 -D,6,11,7,8,4,6,7,11,11,6,5,6,3,8,4,8 -I,1,6,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -C,3,2,4,4,2,6,8,7,8,9,8,13,1,9,4,10 -O,4,9,5,7,2,7,7,9,7,7,6,8,3,8,4,8 -F,4,7,6,5,3,5,12,3,6,14,7,4,1,10,1,7 -U,9,15,8,8,6,8,6,5,5,7,7,6,7,5,5,4 -H,5,9,5,4,3,5,9,3,6,9,8,9,5,7,3,7 -Y,4,9,5,7,2,8,11,0,4,6,11,8,0,10,0,8 -K,2,3,3,2,2,5,7,4,7,7,6,11,3,8,4,10 -M,2,6,3,4,2,7,6,11,1,7,9,8,7,5,0,8 -Y,3,5,4,4,2,4,11,2,7,11,10,6,1,11,2,5 -K,7,14,7,8,5,7,7,2,6,10,5,8,6,7,4,7 -X,7,13,8,7,4,7,8,2,8,11,6,8,4,8,4,7 -G,4,8,5,6,3,7,6,7,7,8,5,12,3,10,5,8 -Y,7,10,7,7,3,2,12,5,5,12,12,6,2,11,2,6 -T,6,15,6,8,4,6,10,2,6,12,7,6,2,8,5,4 -F,4,5,4,8,2,1,14,5,4,12,10,6,0,8,2,6 -L,2,4,3,3,1,8,3,1,7,9,2,10,0,7,2,9 -K,11,14,10,8,4,6,8,3,8,9,7,8,5,8,4,7 -P,6,10,8,8,6,8,9,3,5,13,5,3,1,10,3,9 -K,6,8,8,6,7,8,7,1,6,9,4,8,4,8,4,8 -N,2,4,2,2,2,7,8,5,4,7,6,7,4,8,1,6 -Q,4,7,5,9,5,8,6,6,2,8,6,11,3,9,6,9 -B,3,6,5,4,4,10,5,3,5,10,4,7,2,8,4,10 -T,4,6,6,4,5,7,8,4,5,6,7,9,5,9,5,7 -T,5,11,7,8,6,6,7,7,7,6,10,10,5,5,9,6 -Q,5,8,6,8,5,8,7,8,6,5,5,8,3,10,5,10 -B,4,4,4,6,4,7,5,9,7,6,7,7,2,8,9,10 -I,7,14,6,8,4,10,7,2,5,11,5,6,2,9,5,12 -D,1,0,2,1,1,6,7,8,6,6,6,6,2,8,3,8 -U,3,3,3,4,2,7,4,14,5,7,12,8,3,9,0,8 -M,6,10,8,7,9,7,6,7,5,6,5,8,9,8,9,11 -J,6,9,4,13,4,7,9,3,3,13,4,5,3,8,6,9 -Q,2,3,2,4,2,7,7,5,2,8,8,9,2,9,4,8 -T,5,8,7,7,6,5,8,4,9,8,7,9,3,9,7,6 -Y,5,7,5,5,3,6,9,1,8,9,9,5,1,9,4,4 -D,3,4,5,3,2,10,6,3,7,10,3,6,2,8,3,9 -V,3,4,4,3,1,4,12,3,3,9,11,7,2,11,0,8 -N,10,13,9,7,4,9,11,5,5,3,6,11,6,10,3,6 -J,1,1,1,1,0,13,3,6,4,12,4,11,0,7,0,8 -W,6,9,9,7,7,7,12,2,2,7,8,8,7,12,1,8 -J,1,0,1,0,0,12,4,6,3,13,5,11,0,7,0,8 -B,2,3,4,2,2,8,7,3,5,10,6,6,2,8,4,9 -N,6,9,9,8,9,7,9,5,4,7,4,7,7,7,6,5 -H,2,6,3,4,2,7,6,12,2,7,8,8,3,9,0,8 -C,5,8,5,6,2,4,9,6,8,12,9,12,1,9,3,7 -U,4,8,5,6,3,7,5,13,4,7,12,8,3,9,0,8 -X,3,3,5,2,2,9,6,2,8,10,3,7,2,7,3,8 -U,3,3,4,2,1,7,8,6,8,8,10,7,3,9,1,8 -I,4,7,5,5,3,9,5,2,6,6,7,5,0,9,4,7 -N,6,9,8,7,5,6,9,6,5,7,7,7,8,8,3,7 -S,3,10,4,8,2,8,6,6,9,5,6,10,0,9,9,8 -P,3,9,5,6,4,6,9,3,6,10,9,4,4,10,4,7 -E,5,9,7,8,8,5,9,4,4,8,7,9,5,11,9,11 -Q,5,9,7,7,6,8,5,8,4,6,7,9,4,6,7,9 -K,7,10,10,8,7,5,6,1,7,9,8,11,3,8,3,8 -N,3,5,6,4,3,7,9,2,5,10,6,6,5,9,1,7 -K,5,10,7,8,7,6,6,3,7,6,6,8,7,8,5,9 -Q,3,4,4,5,3,8,8,7,3,5,7,10,3,9,5,10 -D,5,9,5,6,5,5,7,8,6,5,4,6,3,8,4,9 -L,3,4,3,7,1,0,1,5,6,0,0,7,0,8,0,8 -K,3,2,4,4,3,6,7,4,7,6,6,11,3,8,5,10 -N,3,8,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -R,2,1,2,2,2,6,8,4,5,6,5,7,2,7,4,9 -S,4,8,6,6,7,8,8,5,3,8,5,7,4,8,10,7 -H,6,10,8,7,5,9,6,3,6,10,4,8,4,7,4,8 -B,3,5,5,4,3,10,6,2,6,10,4,7,2,8,4,10 -L,2,4,3,3,1,6,4,1,8,8,2,10,0,7,2,8 -Z,2,5,3,4,2,7,7,5,9,6,6,8,2,8,7,8 -M,5,5,8,4,5,8,6,3,5,9,7,8,9,6,2,8 -O,7,9,9,8,8,8,4,4,5,10,4,10,5,7,7,6 -B,3,4,4,3,3,7,7,4,6,6,6,6,5,8,6,10 -I,5,7,6,5,3,7,6,2,7,7,6,8,0,9,4,8 -L,5,10,7,8,3,5,3,2,10,6,1,10,0,7,3,6 -Q,3,5,4,6,4,9,10,6,2,4,8,11,3,10,5,10 -P,6,11,9,8,5,6,12,5,4,12,5,2,1,10,3,9 -M,6,8,8,6,6,11,6,2,4,9,3,6,8,6,2,8 -R,2,5,4,4,3,7,8,5,5,8,6,7,3,7,5,10 -P,2,3,3,2,1,7,10,4,4,12,5,3,1,10,2,8 -W,4,8,5,6,4,5,8,4,1,7,9,8,6,11,0,8 -E,2,3,3,5,2,3,6,6,10,7,7,14,0,8,7,8 -T,6,10,6,7,4,4,13,4,6,12,10,4,2,12,2,4 -R,2,1,2,1,1,6,10,8,2,7,5,8,2,7,4,10 -D,6,9,8,6,7,9,7,5,6,9,4,6,3,8,3,8 -K,6,9,9,8,8,8,6,2,4,7,4,9,7,4,9,12 -D,3,7,3,5,3,5,7,8,6,6,5,7,2,8,3,8 -U,4,10,4,8,4,7,6,13,4,7,12,8,3,9,0,8 -Q,5,7,5,9,6,7,10,4,3,7,10,10,3,10,6,7 -X,5,6,6,6,6,7,8,2,5,7,6,8,3,7,7,8 -L,4,10,6,7,8,7,8,3,6,5,6,10,5,11,8,8 -I,5,9,7,6,4,7,6,2,7,7,6,9,0,9,4,8 -F,3,6,4,4,3,5,11,4,4,12,8,5,2,10,2,6 -W,4,8,6,6,8,10,9,5,2,6,7,7,8,9,4,5 -Z,2,1,3,2,2,7,7,5,9,6,6,8,2,8,7,8 -N,2,1,2,1,1,7,9,5,3,7,6,7,4,8,1,7 -E,7,10,5,5,2,7,7,4,7,10,6,11,1,9,7,9 -H,5,7,8,5,6,5,9,3,6,10,9,9,3,9,3,6 -M,5,7,7,5,6,7,6,6,5,7,7,11,10,6,2,9 -P,4,8,6,6,4,9,8,2,6,13,5,6,1,10,2,9 -E,3,3,4,5,2,3,8,6,11,7,5,14,0,8,7,7 -V,2,8,4,6,1,9,8,4,3,5,13,8,3,10,0,8 -W,4,6,6,4,3,9,8,4,1,7,8,8,8,9,0,8 -V,4,4,6,7,1,9,8,4,3,6,14,8,3,9,0,8 -Y,7,9,7,6,3,3,12,5,5,13,11,5,1,11,2,6 -S,1,0,2,1,0,8,7,4,7,5,6,8,0,8,7,8 -U,2,0,3,1,1,7,5,11,5,7,14,8,3,10,0,8 -X,8,12,7,6,4,6,7,2,8,9,6,9,4,5,4,7 -O,5,10,6,7,5,7,7,8,4,9,6,8,3,8,3,8 -F,3,3,3,5,1,1,14,5,3,12,10,5,0,8,2,6 -V,5,7,5,5,2,3,11,3,3,10,11,8,3,10,1,7 -Q,7,8,7,10,7,7,8,6,3,7,9,11,4,8,7,8 -M,6,9,8,5,4,9,3,3,2,9,3,9,8,2,1,9 -A,1,0,2,0,0,7,4,2,0,7,2,8,1,7,1,8 -N,5,11,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -Z,5,10,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -M,9,12,11,7,5,13,2,5,2,12,1,9,7,3,1,9 -H,11,13,10,8,5,8,8,4,5,9,6,7,6,9,5,9 -X,4,9,5,6,1,7,7,5,4,7,6,8,3,8,4,8 -A,2,4,4,2,1,11,2,3,2,9,2,9,1,6,2,8 -G,3,5,4,4,2,6,7,6,6,10,7,11,2,9,4,9 -F,2,1,2,3,2,5,10,4,5,10,9,6,1,10,3,7 -H,3,4,6,3,3,9,7,3,6,10,3,7,4,6,4,8 -M,5,9,6,4,3,12,3,4,2,11,2,9,6,3,1,9 -T,7,12,6,6,3,5,11,2,6,11,8,6,2,9,5,3 -W,10,15,10,9,7,5,8,2,4,7,9,7,11,10,2,5 -E,3,6,4,4,3,7,8,7,10,5,4,9,3,8,6,7 -J,3,7,4,5,4,10,5,2,5,8,5,5,3,7,5,7 -G,5,9,6,7,8,8,8,5,2,6,6,9,7,9,6,13 -H,4,4,7,3,3,8,7,3,6,10,5,8,3,8,3,8 -L,7,13,6,7,3,5,5,3,8,10,4,13,2,5,6,7 -Y,2,3,4,4,1,9,10,3,2,5,13,8,2,11,0,8 -H,1,0,2,0,0,7,7,11,1,7,6,8,2,8,0,8 -P,4,5,4,8,2,3,12,9,2,10,6,3,1,10,4,8 -Z,5,8,7,6,5,9,8,6,4,7,5,8,3,8,10,7 -T,3,4,4,6,1,7,15,1,6,7,11,8,0,8,0,8 -D,5,9,5,4,3,12,3,3,5,12,1,8,4,7,2,11 -U,1,0,2,0,0,7,6,10,4,7,12,8,2,10,0,8 -G,5,11,6,8,8,8,7,5,2,6,6,10,7,8,6,12 -E,5,10,8,7,6,6,8,3,8,11,8,9,3,8,5,6 -H,8,10,8,5,5,5,9,3,4,10,7,9,5,7,3,6 -F,2,3,2,2,1,6,10,4,5,10,9,5,1,10,3,6 -J,1,4,2,3,1,10,6,2,5,12,4,9,1,6,1,7 -A,6,11,6,6,4,11,2,4,2,11,4,12,5,3,5,11 -L,4,6,5,5,4,7,5,5,5,7,6,7,3,8,8,11 -Y,2,8,4,5,1,6,11,2,3,9,12,8,1,10,0,8 -G,5,9,4,5,3,7,7,3,2,8,6,7,4,10,8,7 -M,2,3,3,1,2,6,6,7,4,7,7,10,7,5,2,9 -K,2,4,4,3,3,6,7,1,6,10,7,10,3,8,2,8 -S,4,8,5,6,3,7,7,5,9,5,6,8,0,8,9,8 -E,0,0,1,0,0,5,7,5,7,7,6,12,0,8,6,10 -G,4,9,5,6,4,6,7,6,5,9,7,11,2,9,4,10 -T,2,4,3,5,1,5,14,1,6,9,11,7,0,8,0,8 -V,8,10,7,6,3,8,10,5,5,5,10,7,4,11,3,5 -K,3,7,5,5,3,6,7,5,7,6,6,10,3,8,5,9 -Z,3,8,4,6,3,8,7,6,10,6,6,8,1,8,8,7 -D,7,10,7,5,4,8,4,4,6,8,4,7,4,6,6,10 -Q,2,3,3,4,3,8,8,5,2,8,8,9,2,9,5,8 -H,3,4,5,3,3,6,9,3,6,10,8,8,3,8,3,7 -V,5,11,7,8,5,9,11,3,2,5,10,8,5,10,5,7 -G,2,3,3,1,1,7,7,6,5,7,6,9,2,9,4,10 -T,8,10,8,8,6,7,10,2,8,11,9,5,3,10,5,4 -J,7,11,9,9,5,7,8,3,6,15,6,10,1,6,1,6 -Q,2,3,3,4,3,8,7,6,3,8,6,9,2,9,3,9 -Y,2,4,3,3,1,6,10,1,7,8,11,8,1,11,2,7 -I,2,9,3,7,3,7,7,0,7,7,6,8,0,8,3,8 -A,3,8,5,6,5,8,8,6,4,6,6,8,5,7,6,4 -T,8,15,7,8,3,6,9,3,8,13,6,6,2,8,5,5 -Q,3,5,4,6,4,8,7,7,2,5,5,10,3,9,4,10 -N,6,10,8,8,7,6,7,9,5,6,4,6,5,7,4,10 -W,4,9,6,7,5,10,10,3,3,5,9,7,7,11,1,8 -U,6,9,6,6,4,4,8,5,7,11,10,9,3,9,2,6 -R,3,1,4,2,2,7,8,5,5,7,5,6,2,7,4,8 -H,4,9,5,7,5,8,8,6,6,7,6,9,3,8,3,8 -E,4,9,6,7,6,8,7,6,3,7,6,10,4,8,7,9 -Y,2,1,3,1,0,7,11,3,1,7,12,8,1,11,0,8 -N,2,4,3,3,2,7,8,5,4,7,7,7,4,8,1,6 -N,4,8,6,6,3,7,8,3,4,10,6,7,5,8,1,7 -S,5,10,8,7,10,7,5,3,2,7,5,7,3,7,11,3 -G,5,5,6,8,3,6,6,8,9,6,6,9,1,8,6,11 -O,5,7,7,6,5,7,6,5,6,9,5,9,4,7,5,6 -F,3,5,5,6,4,7,10,4,4,8,7,7,3,9,6,5 -M,5,11,7,8,9,6,6,5,5,7,7,11,11,6,2,9 -K,3,4,6,3,3,7,8,2,7,10,4,8,5,7,4,7 -S,6,12,6,7,3,8,6,3,4,13,6,8,2,9,3,8 -C,2,3,3,2,1,5,8,5,6,12,9,10,1,10,2,7 -F,9,15,8,8,6,7,11,3,5,12,6,3,5,9,9,6 -N,4,10,5,7,3,7,7,14,2,4,6,8,6,8,0,8 -T,5,9,5,7,4,5,11,2,7,11,10,5,1,12,2,4 -K,4,7,6,5,6,8,8,5,5,8,5,7,7,6,6,11 -R,4,7,6,5,5,7,7,4,6,7,6,6,3,7,5,9 -N,4,3,4,4,3,7,8,5,5,7,6,6,6,9,3,6 -K,8,12,8,7,4,9,7,3,7,9,2,5,5,7,4,8 -W,2,0,2,1,1,7,8,3,0,7,8,8,6,10,0,8 -M,5,10,6,8,4,7,7,12,2,7,9,8,9,6,0,8 -F,4,6,6,4,6,7,7,5,3,7,6,9,3,9,8,11 -H,5,9,7,7,6,7,7,7,7,7,6,8,3,8,4,8 -Z,4,10,4,8,4,7,8,3,12,9,6,8,0,8,7,7 -Z,4,10,5,8,3,7,7,4,15,9,6,8,0,8,8,8 -H,3,6,5,4,4,5,9,3,5,10,9,9,3,8,3,6 -L,4,10,5,8,4,6,4,4,9,2,2,5,1,6,2,5 -S,2,7,3,5,3,8,7,5,7,5,6,6,0,8,8,8 -N,3,7,4,5,4,9,8,6,5,6,5,4,5,9,2,5 -A,2,1,4,2,2,7,2,2,2,7,2,8,2,7,3,7 -P,3,5,5,4,2,7,10,4,4,13,5,2,1,10,2,8 -C,5,8,6,6,4,7,8,8,6,5,7,12,5,8,4,8 -A,3,4,5,3,2,10,2,2,1,9,2,9,2,6,2,8 -P,4,5,5,4,3,5,10,4,5,10,8,3,1,10,3,7 -N,2,4,4,3,2,7,9,2,4,10,6,6,5,9,0,7 -J,3,9,4,7,3,9,6,2,5,11,4,9,1,6,2,5 -O,5,10,6,7,4,8,7,8,5,10,6,8,3,8,3,7 -H,2,3,3,2,2,6,7,7,5,7,6,10,3,8,3,9 -P,3,9,4,6,2,4,12,9,2,10,6,4,1,10,4,8 -G,3,7,4,5,3,6,6,5,5,6,6,10,2,9,4,8 -J,1,3,2,1,0,9,5,3,5,14,6,11,0,7,0,8 -K,4,8,6,6,4,8,6,1,7,10,4,9,4,7,5,10 -P,2,6,3,4,1,4,13,8,2,11,6,3,1,10,3,8 -L,2,3,3,2,1,4,4,4,7,2,2,6,0,7,1,6 -G,3,4,4,3,2,6,7,5,5,10,7,10,2,9,4,9 -Z,4,6,5,4,3,6,9,3,8,11,9,6,2,9,6,5 -Z,4,7,5,5,5,7,6,2,7,7,6,9,1,7,10,8 -L,3,10,4,7,1,0,1,5,6,0,0,7,0,8,0,8 -R,2,4,4,2,2,8,8,4,4,9,5,7,2,7,3,10 -D,2,4,3,3,2,9,7,4,5,10,4,5,2,8,2,8 -Z,2,4,4,3,2,8,7,2,9,11,5,9,1,8,5,8 -Q,3,4,4,5,3,8,8,6,2,5,7,10,3,9,5,10 -A,3,5,5,8,2,7,6,3,1,7,0,8,3,7,1,8 -F,2,3,3,4,1,1,11,5,6,11,10,9,0,8,3,7 -L,4,9,5,6,2,7,4,0,9,9,2,10,0,7,2,8 -N,4,6,4,4,2,7,7,14,1,5,6,8,6,8,0,8 -Y,5,8,5,6,2,3,10,2,7,11,11,6,1,11,2,4 -T,2,4,3,2,1,5,11,2,7,11,9,5,1,10,2,5 -O,3,7,3,5,2,8,7,7,5,9,5,8,3,8,3,8 -G,6,10,7,8,3,8,7,8,8,6,6,9,2,7,6,11 -G,6,8,6,6,5,6,7,6,6,9,7,11,2,9,4,9 -E,6,10,9,8,7,7,7,2,8,11,7,9,3,9,4,8 -Z,2,5,4,4,2,7,7,2,9,11,6,8,1,8,5,8 -K,6,9,9,7,5,9,6,2,7,10,3,8,4,7,5,10 -T,3,5,4,4,2,5,13,4,6,12,9,3,1,11,2,4 -C,4,9,5,7,2,6,6,7,10,8,5,13,1,10,4,9 -F,4,7,5,8,6,6,9,4,4,7,7,6,4,9,9,8 -D,6,10,6,6,5,9,6,3,6,10,4,7,5,7,8,7 -N,3,9,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -Q,3,6,4,4,2,9,7,7,6,6,6,10,3,8,5,9 -E,7,10,9,7,6,6,8,4,9,12,9,9,3,8,5,6 -H,3,5,6,4,3,7,7,2,6,10,5,8,6,8,4,7 -M,3,4,4,3,3,7,6,6,4,6,7,8,7,5,2,7 -F,4,8,6,6,3,5,11,5,5,13,8,5,2,9,2,6 -Z,3,8,4,6,4,6,7,3,7,8,6,9,0,9,9,7 -D,6,11,6,6,4,5,9,5,7,10,7,6,5,8,6,5 -W,10,11,10,8,7,4,10,3,3,9,8,7,8,11,2,6 -E,3,8,4,6,3,6,8,8,10,5,4,10,2,8,6,7 -G,3,8,5,6,3,7,6,7,6,6,5,10,1,8,5,11 -Y,5,5,7,7,8,9,7,6,3,7,7,8,6,10,6,5 -Q,4,7,6,5,5,8,6,7,4,7,7,7,5,7,6,7 -J,2,3,3,5,1,14,1,7,5,14,2,11,0,7,0,8 -F,3,8,5,6,4,6,10,3,6,10,9,5,5,10,3,6 -H,2,1,3,3,3,7,7,5,5,7,6,8,3,8,2,8 -C,6,11,7,8,4,2,8,5,9,10,10,14,1,7,3,7 -F,2,0,2,1,0,3,13,5,2,11,8,5,0,8,2,7 -O,4,8,5,6,4,8,7,7,4,7,6,6,4,8,3,8 -Z,2,7,3,5,2,6,8,5,9,7,7,10,2,9,8,7 -B,5,9,8,6,5,9,8,4,7,9,4,5,3,7,7,10 -P,4,7,6,10,9,7,12,4,0,9,7,6,5,10,6,8 -A,2,8,4,5,1,8,6,3,1,7,0,8,2,7,1,8 -Z,4,8,5,6,2,7,7,4,14,9,6,8,0,8,8,8 -Y,4,7,6,11,9,8,9,3,2,6,8,9,6,13,10,6 -O,3,4,4,3,2,7,7,7,5,9,6,8,2,8,3,8 -T,2,8,4,6,2,8,11,2,9,6,11,7,1,11,1,7 -Y,4,5,5,4,2,4,11,2,7,11,10,5,1,11,3,4 -F,9,13,8,7,5,9,7,3,5,11,4,5,4,9,7,9 -S,5,7,6,5,3,9,6,4,8,11,4,8,2,8,5,11 -J,3,6,5,4,2,10,6,1,7,14,3,7,0,8,0,8 -K,2,3,4,1,2,4,8,2,6,10,9,10,2,8,2,7 -H,1,0,1,0,0,7,7,10,2,7,6,8,2,8,0,8 -K,3,7,4,5,2,3,6,7,3,7,7,12,3,8,3,11 -W,3,2,4,3,3,5,11,2,2,8,9,9,6,11,0,8 -W,3,1,5,2,3,8,11,3,2,6,9,8,7,11,0,7 -I,7,13,6,8,4,8,9,3,6,14,5,5,2,7,6,8 -R,8,15,8,8,7,5,8,2,5,7,3,9,6,6,6,5 -I,1,5,2,4,1,7,8,0,7,13,6,7,0,8,1,7 -Q,3,5,4,5,3,8,6,7,6,7,3,9,2,8,3,8 -Q,3,7,4,6,2,8,7,8,6,6,5,9,3,8,4,8 -V,5,11,8,8,2,8,8,5,3,6,14,8,3,9,0,8 -Y,3,8,5,6,1,9,10,3,2,5,13,8,1,11,0,8 -F,3,5,5,4,2,7,9,1,6,13,5,5,1,10,2,8 -V,4,8,6,6,3,6,12,2,4,6,11,9,2,10,1,8 -W,5,8,7,6,7,8,7,6,2,6,8,8,7,8,5,4 -L,3,8,5,6,3,8,4,1,8,9,3,10,0,7,2,9 -W,8,8,8,6,5,3,11,2,3,10,10,8,7,10,2,6 -A,3,10,5,7,2,8,6,3,1,7,0,8,3,7,1,8 -T,7,10,6,5,2,4,12,3,6,13,8,4,2,9,3,4 -U,3,4,4,3,2,6,8,6,7,7,10,9,3,9,0,8 -H,6,11,8,8,7,7,7,7,7,7,6,8,3,8,4,7 -J,5,8,7,9,7,8,9,4,5,7,7,8,5,7,10,10 -F,2,4,2,3,1,6,10,4,5,10,9,5,1,9,3,7 -W,6,7,6,5,4,3,10,3,3,10,10,8,7,10,2,7 -U,4,9,4,7,2,8,5,14,5,6,14,8,3,9,0,8 -P,5,9,5,6,2,4,15,8,1,12,6,2,0,9,4,8 -L,4,7,5,5,3,6,4,5,9,2,2,4,1,6,2,5 -S,5,10,4,5,2,9,3,1,5,8,1,7,2,7,4,10 -M,5,5,7,4,7,9,8,4,4,7,6,7,8,6,6,5 -G,4,9,5,6,3,6,7,7,6,10,7,11,2,9,4,9 -O,3,7,5,5,2,7,7,8,8,7,6,7,3,8,4,8 -S,5,11,6,8,5,9,6,4,6,10,3,7,2,8,5,10 -V,2,3,3,2,1,4,12,3,3,10,11,7,2,11,0,8 -Q,5,5,7,8,10,7,5,6,2,6,6,8,11,10,9,13 -Q,2,2,3,3,2,8,7,7,3,6,6,10,2,9,3,9 -K,3,5,5,4,3,6,6,1,7,10,8,11,3,7,3,8 -M,3,6,3,4,3,8,6,9,0,6,8,8,6,5,0,8 -P,4,9,6,7,4,7,10,4,5,12,5,3,1,10,4,8 -U,2,3,2,1,1,7,9,5,5,6,9,9,3,10,1,8 -E,8,12,5,6,3,7,6,5,7,10,6,9,2,10,8,9 -F,2,7,2,5,2,1,11,3,4,11,11,8,0,8,1,7 -X,4,9,6,7,5,8,7,3,5,6,6,7,3,9,9,9 -U,5,5,5,7,2,7,5,14,5,7,15,8,3,9,0,8 -K,3,5,6,4,3,7,7,2,7,10,5,9,6,8,5,8 -L,3,9,5,7,3,7,5,1,7,8,2,10,0,6,2,8 -Q,5,9,6,11,6,9,7,8,3,5,6,11,5,8,8,8 -I,1,2,1,3,1,7,7,1,7,7,6,9,0,8,3,8 -W,6,9,8,7,8,8,6,6,2,6,7,8,6,8,5,6 -M,7,8,10,6,6,4,7,4,5,11,11,11,9,6,4,7 -Y,3,5,4,4,2,4,10,2,7,11,10,6,1,11,2,5 -K,5,9,5,5,3,3,9,4,5,10,10,11,4,9,3,6 -H,5,11,7,8,10,8,6,4,4,6,6,7,8,6,8,6 -N,1,3,2,2,1,7,8,5,4,7,6,6,4,9,1,5 -Y,1,0,2,0,0,7,9,2,1,6,12,8,1,10,0,8 -B,3,2,4,3,3,8,7,5,6,7,6,6,2,8,6,10 -C,3,10,4,8,3,5,7,6,7,7,6,13,1,8,4,10 -N,3,6,4,4,3,7,7,6,6,7,6,8,3,7,3,8 -D,4,7,5,5,3,9,7,4,7,11,5,5,3,8,3,8 -E,2,7,3,5,2,3,8,6,11,7,5,15,0,8,6,8 -V,1,0,2,0,0,7,9,3,2,7,12,8,2,10,0,8 -T,2,8,4,5,1,9,15,1,6,5,11,9,0,8,0,8 -Q,6,8,6,9,7,8,7,7,2,8,7,10,3,8,6,7 -U,6,7,7,5,4,4,8,5,7,9,8,9,3,9,3,5 -B,3,6,5,4,6,9,7,4,3,6,7,7,7,9,7,7 -Y,1,1,2,1,0,7,10,2,2,7,12,8,1,11,0,8 -E,3,5,5,3,3,6,9,2,9,11,8,8,2,8,4,6 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -K,4,7,5,5,4,5,7,6,7,6,6,13,3,8,5,10 -O,4,7,4,5,3,7,7,8,5,10,6,8,3,8,3,7 -T,2,1,3,2,1,7,12,3,6,7,11,8,2,11,1,8 -M,3,6,4,4,4,8,6,6,4,7,7,8,7,5,2,7 -A,4,9,6,6,4,10,2,1,2,8,3,9,5,5,3,7 -H,3,6,3,4,1,7,8,14,1,7,5,8,3,8,0,8 -F,3,5,5,3,2,6,10,3,6,13,7,5,1,10,2,7 -W,8,11,8,8,6,4,10,2,3,10,9,8,8,11,2,6 -D,3,7,3,5,2,5,7,10,8,7,6,5,3,8,4,8 -X,4,8,5,5,1,7,7,4,4,7,6,8,3,8,4,8 -J,3,9,5,7,6,9,8,3,3,8,4,6,4,8,6,4 -K,7,11,7,6,4,7,7,3,6,10,6,9,6,10,3,8 -U,10,13,9,7,4,6,4,5,5,4,8,7,6,7,2,7 -H,5,9,8,7,5,7,7,6,7,7,6,5,6,8,4,7 -B,4,8,4,6,4,6,9,9,7,7,5,7,2,8,9,10 -R,4,11,6,8,8,7,7,3,4,7,6,8,7,10,8,6 -E,1,1,1,1,1,4,7,5,8,7,6,13,0,8,6,9 -P,5,8,7,6,6,8,9,6,4,10,4,4,3,11,4,9 -W,10,11,10,8,7,5,11,3,3,9,8,7,8,11,3,5 -N,4,5,5,8,3,7,7,14,2,4,6,8,6,8,0,8 -T,6,10,6,5,3,7,9,2,7,12,6,6,2,9,4,6 -B,4,8,6,6,5,9,7,4,6,10,5,6,2,8,6,10 -O,5,8,6,6,4,7,8,7,5,10,7,8,3,8,3,8 -A,3,8,5,6,3,12,3,2,2,10,2,9,2,6,2,8 -Y,5,9,7,6,6,9,5,7,5,6,9,7,3,9,9,4 -L,3,7,4,5,3,5,5,2,8,3,2,7,0,7,1,5 -H,3,4,5,3,3,7,7,3,6,10,6,8,3,8,3,8 -Q,2,2,2,4,2,8,7,7,3,6,6,9,2,8,5,10 -D,4,6,5,4,4,9,6,4,6,9,4,6,3,8,3,8 -L,4,10,5,8,3,5,3,6,8,1,2,4,1,6,1,5 -R,6,11,9,8,8,9,8,4,6,9,3,7,3,6,4,11 -P,2,3,3,1,1,8,9,3,3,12,4,4,1,9,2,9 -L,3,8,4,6,3,7,3,4,6,6,2,7,1,6,2,7 -P,5,11,7,8,6,6,10,6,5,10,8,3,1,10,4,7 -M,4,10,6,7,6,8,6,5,5,7,7,8,11,5,2,8 -Q,5,9,5,11,6,8,7,7,3,8,8,10,3,8,6,8 -L,4,9,6,6,3,5,4,3,9,6,1,7,1,6,3,6 -F,3,5,5,3,2,6,11,3,5,13,7,4,1,10,1,7 -Z,4,10,4,7,5,6,8,5,9,8,7,10,1,9,7,8 -V,6,8,8,6,5,6,11,3,2,8,11,8,4,9,5,9 -K,4,5,5,4,3,6,7,4,7,6,6,10,3,8,5,9 -U,3,6,3,4,1,8,5,13,5,6,13,8,3,9,0,8 -J,2,8,3,6,1,13,2,8,4,14,4,12,1,6,0,8 -V,4,6,4,4,2,3,11,2,3,9,10,8,2,11,0,8 -N,2,2,3,3,2,7,8,5,4,7,7,7,4,9,1,6 -J,5,12,4,9,4,7,10,3,2,13,5,5,2,8,7,10 -Q,5,10,6,9,6,8,8,7,5,5,8,9,3,8,5,8 -D,3,9,4,6,4,7,7,6,7,6,5,6,3,8,3,7 -P,3,4,5,3,2,7,9,4,4,12,4,3,1,10,3,8 -N,3,5,4,7,3,7,7,14,2,5,6,8,6,8,0,8 -G,5,10,6,8,6,7,6,7,8,6,4,10,2,9,6,11 -C,2,1,2,1,0,6,7,6,9,7,6,14,0,8,4,10 -V,1,0,2,1,0,8,9,3,2,7,12,8,2,10,0,8 -F,3,7,5,5,3,6,10,5,6,10,10,5,2,9,3,5 -U,7,9,7,7,4,2,8,5,7,11,11,10,3,9,2,6 -H,7,11,10,8,7,7,8,3,7,10,6,7,3,8,3,8 -A,5,10,9,8,7,11,5,1,5,9,1,5,3,7,5,9 -I,1,4,2,3,1,7,7,0,6,13,6,8,0,8,0,8 -Z,2,5,4,3,2,7,8,2,9,11,7,7,1,8,5,7 -G,4,8,5,6,2,7,6,7,8,6,6,9,1,8,6,11 -U,4,5,5,8,2,7,5,14,5,7,14,8,3,9,0,8 -X,3,4,5,2,2,7,8,1,8,10,7,8,2,8,3,7 -V,5,9,5,4,3,10,7,4,5,7,9,5,4,11,2,7 -L,7,12,7,6,4,6,6,4,6,12,9,11,3,8,7,8 -H,7,11,9,8,8,7,6,5,5,6,5,7,9,6,7,10 -D,5,9,7,7,6,10,6,3,7,10,3,6,5,7,4,9 -H,6,10,7,5,4,7,8,3,5,10,7,8,6,9,5,7 -E,4,9,3,4,2,10,5,3,4,11,4,9,2,8,6,12 -Y,2,3,3,2,1,4,10,2,7,10,10,6,1,11,2,4 -J,4,8,5,6,2,8,5,4,6,15,6,11,1,6,0,7 -R,6,9,8,6,7,8,6,6,4,8,5,7,4,7,7,11 -M,7,12,8,6,5,7,3,3,2,8,4,10,8,2,2,8 -S,3,7,4,5,2,9,7,4,8,11,4,8,2,8,5,9 -J,4,6,5,4,2,8,6,4,6,15,7,12,1,6,1,7 -Z,2,6,4,4,3,7,7,2,7,7,6,8,0,8,8,8 -E,4,11,4,8,4,2,8,5,9,7,6,14,0,8,6,8 -G,5,11,6,8,4,6,7,7,7,11,7,11,2,10,4,9 -V,3,9,5,7,1,7,8,4,2,7,14,8,3,9,0,8 -U,4,5,5,4,3,6,9,5,7,7,10,9,3,9,1,8 -J,3,9,4,7,1,13,2,9,4,14,5,13,1,6,0,8 -S,2,6,4,4,4,6,9,3,2,7,7,6,2,8,8,1 -H,3,2,4,3,3,7,8,6,6,7,6,8,3,8,3,7 -D,3,8,3,6,2,6,7,11,8,6,6,6,3,8,3,8 -D,6,10,5,5,4,8,7,4,7,10,5,7,5,9,6,6 -I,3,6,4,4,2,7,7,0,7,13,6,8,0,8,1,7 -X,5,7,8,5,4,7,7,1,8,10,6,8,2,8,3,8 -U,4,7,4,5,2,7,4,14,5,7,13,8,3,9,0,8 -H,5,9,5,6,2,7,7,15,0,7,6,8,3,8,0,8 -X,4,6,5,5,5,9,7,2,5,8,6,6,2,8,7,7 -E,3,8,5,6,3,5,8,4,8,11,9,9,2,8,5,6 -O,4,7,6,5,4,8,9,8,4,7,7,7,3,8,3,8 -U,4,4,5,3,2,4,9,5,7,11,10,9,3,9,2,7 -S,2,7,3,5,3,7,8,7,6,7,5,6,2,8,8,8 -Y,7,10,7,8,3,4,10,3,8,11,11,5,1,11,3,4 -J,3,7,4,5,2,9,6,4,7,15,5,10,0,7,1,7 -X,2,7,3,5,3,7,7,3,7,6,7,10,2,8,6,8 -M,4,4,7,3,4,7,7,3,4,9,8,9,9,7,2,9 -Q,2,0,2,1,1,9,7,6,4,6,6,9,2,8,3,8 -U,10,15,9,8,6,7,6,5,5,6,7,8,5,5,3,7 -C,9,13,6,7,3,8,7,7,7,11,5,8,2,9,5,9 -Z,7,10,9,8,5,7,8,2,10,12,6,8,1,9,6,8 -C,3,6,4,4,1,5,8,6,10,6,7,12,1,7,4,8 -T,2,7,3,4,1,5,14,1,6,9,11,7,0,8,0,8 -Q,3,6,4,5,2,8,6,8,7,6,5,8,3,8,4,8 -K,6,9,8,6,8,8,8,5,5,7,6,6,8,7,8,13 -W,6,6,6,4,4,3,11,2,3,10,10,8,7,11,2,6 -M,3,4,4,3,3,8,6,6,4,6,7,8,7,6,2,7 -F,5,11,7,8,6,9,8,1,6,13,5,5,3,8,3,9 -H,4,10,4,7,2,7,6,15,1,7,8,8,3,8,0,8 -V,6,11,4,6,2,7,10,6,3,8,10,5,5,12,3,8 -V,2,0,3,1,0,7,9,4,2,7,13,8,2,10,0,8 -X,4,8,6,6,3,5,8,2,8,10,11,9,3,8,4,6 -Q,6,7,8,10,10,8,9,5,2,5,7,9,8,15,8,14 -W,3,6,4,4,4,8,7,6,2,6,7,8,5,9,4,6 -Q,4,6,4,7,4,8,5,6,4,9,5,8,3,8,3,8 -C,4,10,5,8,3,5,8,8,8,9,8,13,2,9,4,10 -I,3,8,4,6,2,7,8,0,8,14,6,7,0,8,1,7 -Z,6,11,8,9,5,7,8,3,11,12,7,8,2,9,7,8 -N,1,1,2,2,1,7,7,11,1,5,6,8,4,8,0,8 -I,1,1,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -M,4,4,4,6,3,8,7,12,1,6,9,8,8,6,0,8 -R,1,0,2,1,1,6,10,7,2,7,5,8,2,7,4,10 -W,7,8,7,6,5,6,11,5,3,8,6,6,10,13,3,4 -M,5,9,6,6,6,7,6,6,5,7,7,10,8,5,2,8 -R,8,15,6,8,5,7,5,6,5,8,6,9,6,6,8,10 -D,4,8,4,6,2,5,7,11,8,7,6,5,3,8,4,8 -Y,4,6,6,4,3,4,11,2,7,11,10,5,1,11,3,5 -C,3,7,4,5,2,3,9,5,8,11,11,11,1,8,3,7 -S,7,11,10,8,12,8,9,5,4,8,5,7,7,8,13,9 -P,4,6,4,8,2,3,13,8,2,11,7,3,1,10,4,8 -O,3,5,4,4,3,8,7,7,5,9,6,8,2,8,3,8 -F,5,11,7,8,4,7,10,2,7,14,5,4,1,10,2,8 -E,3,7,5,5,3,4,9,3,7,11,9,9,2,9,4,6 -T,4,5,5,5,5,7,9,4,7,7,8,8,3,10,6,7 -Q,6,8,6,9,7,8,8,6,2,7,8,11,3,8,6,8 -C,5,7,6,6,5,4,8,3,6,7,6,10,3,9,7,8 -W,4,4,5,3,3,3,11,3,2,10,10,8,6,11,1,7 -O,2,3,3,2,2,8,7,7,4,9,6,9,2,8,3,8 -H,5,9,6,6,6,7,7,5,5,7,5,8,6,6,6,11 -P,12,14,10,8,4,8,9,6,5,14,3,4,5,10,5,8 -Y,6,9,6,7,4,5,9,1,7,9,9,6,3,10,5,4 -L,4,9,6,7,4,7,4,1,8,8,2,10,0,7,3,8 -X,2,3,3,2,1,7,7,3,9,6,6,8,2,8,5,7 -G,5,6,7,5,7,7,8,6,3,7,7,8,6,11,7,8 -O,6,9,8,6,9,8,9,5,2,7,7,8,9,9,6,12 -H,8,14,8,8,6,10,7,5,5,11,1,6,7,4,5,7 -V,9,15,8,9,4,9,10,6,4,6,10,6,6,13,3,6 -K,2,3,3,2,2,5,7,4,7,7,6,10,3,8,4,10 -U,3,5,4,4,2,6,8,5,6,6,8,9,6,10,0,7 -I,2,7,3,5,1,7,6,0,8,14,7,10,0,8,1,8 -Y,5,6,5,4,2,3,10,2,7,11,11,6,1,11,2,4 -R,3,6,4,4,4,8,7,7,3,8,5,7,4,7,7,8 -R,4,9,4,7,3,6,8,9,5,6,6,7,3,8,6,11 -O,8,12,6,6,3,7,8,6,5,9,5,7,4,9,5,9 -S,6,11,7,8,7,9,8,5,8,5,5,6,1,6,10,6 -L,6,12,6,7,3,7,4,3,6,11,4,13,3,6,6,8 -N,3,5,4,3,3,7,8,5,5,7,7,6,5,9,2,6 -E,7,11,10,8,6,8,7,2,9,11,6,9,5,7,6,8 -H,2,4,3,2,2,6,7,5,6,7,6,8,3,8,3,8 -A,2,7,4,5,2,11,2,3,3,10,2,9,2,6,2,8 -P,10,13,9,8,6,9,8,4,5,13,4,4,5,10,6,7 -M,6,9,7,4,3,8,10,4,5,5,5,8,8,8,2,7 -F,3,7,4,5,1,1,12,5,5,12,11,8,0,8,2,6 -O,3,6,4,4,3,7,8,6,4,9,7,8,3,8,3,8 -Y,3,5,5,7,1,9,10,2,2,5,12,8,1,11,0,8 -S,2,2,2,3,2,8,8,7,5,8,5,7,2,8,8,8 -V,4,5,5,4,2,4,12,2,3,9,11,7,3,10,1,7 -R,4,8,6,6,7,9,9,3,5,5,7,8,7,10,7,7 -N,6,11,8,6,3,8,7,2,4,13,6,8,6,8,0,8 -Q,3,4,4,4,3,7,8,5,3,8,8,9,3,8,5,8 -R,4,9,4,4,3,9,7,3,5,9,3,8,5,7,5,8 -Y,6,8,8,11,11,7,10,4,2,7,8,9,6,13,9,8 -K,5,9,7,6,5,4,7,2,7,10,10,12,3,8,3,6 -U,3,2,4,3,2,6,8,5,7,7,10,9,3,9,1,8 -F,6,10,7,8,7,6,10,6,5,9,6,8,2,10,8,10 -A,2,3,3,2,1,10,2,2,1,9,2,9,1,6,2,8 -Q,5,6,6,8,3,9,9,8,7,5,8,10,3,8,5,10 -N,2,1,3,3,2,7,8,5,4,8,7,8,4,8,1,7 -U,4,8,6,6,5,8,8,8,5,6,7,9,3,8,4,6 -M,2,3,4,2,3,7,6,3,3,9,7,8,6,5,1,8 -U,3,7,5,6,5,8,7,3,3,6,6,8,4,8,2,8 -T,2,10,4,7,1,7,14,0,6,7,11,8,0,8,0,8 -A,4,9,4,4,2,10,2,4,2,11,5,12,4,4,5,10 -R,9,13,7,8,5,8,7,5,5,9,4,9,7,5,7,11 -K,3,4,4,7,2,3,7,7,3,7,7,11,3,8,3,10 -Q,7,8,7,10,8,8,9,5,2,7,9,11,3,8,6,8 -Y,2,5,4,4,2,8,11,1,7,6,11,8,1,11,2,9 -X,3,1,4,2,2,8,7,4,9,6,6,8,3,8,6,8 -Y,5,9,5,7,3,4,9,1,7,9,10,6,1,10,3,4 -Q,5,11,5,6,4,7,7,4,8,11,5,8,3,7,9,10 -D,5,9,6,7,6,8,8,7,6,8,7,3,5,8,4,9 -T,6,7,6,5,4,6,12,5,6,10,9,4,3,13,3,4 -V,4,10,6,8,3,5,11,3,5,10,12,9,3,10,1,8 -T,2,8,4,5,1,8,15,1,6,6,11,8,0,8,0,8 -G,2,6,3,4,2,8,8,6,5,6,7,9,2,7,5,11 -A,6,10,6,5,3,12,3,6,2,12,2,10,4,3,3,10 -W,2,3,3,1,2,10,11,3,2,5,9,7,5,10,0,8 -I,1,4,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -U,4,6,6,4,4,7,8,8,6,6,6,10,3,8,5,6 -E,4,8,6,6,5,7,7,2,7,11,7,9,3,8,5,8 -T,5,9,7,7,8,7,8,4,6,7,6,9,6,8,6,6 -I,1,7,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -Y,7,11,8,8,4,5,9,1,9,10,10,5,3,10,5,3 -A,5,10,7,8,4,10,3,2,3,8,1,7,2,7,3,8 -Z,5,11,7,9,4,8,7,2,10,11,5,9,2,8,6,8 -Z,5,5,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -Z,5,8,7,10,6,11,4,3,5,9,2,7,2,7,6,9 -T,3,3,3,2,1,5,12,2,7,11,9,5,1,10,1,5 -Y,2,1,2,1,0,7,10,3,1,7,12,8,1,11,0,8 -N,3,5,5,4,2,7,8,2,4,10,6,6,5,9,0,7 -Q,4,3,5,5,4,8,7,7,3,5,6,9,3,8,5,8 -U,4,9,5,7,3,8,8,7,7,6,10,8,3,9,1,8 -H,3,7,3,4,2,7,8,14,1,7,5,8,3,8,0,8 -E,4,9,6,8,7,6,8,4,3,8,7,9,5,11,8,11 -S,4,8,5,6,3,9,6,5,9,11,3,8,2,7,5,10 -P,4,6,6,4,3,7,10,5,3,11,4,3,1,10,3,9 -M,5,6,7,6,8,7,7,4,4,7,6,8,10,7,5,5 -O,7,10,7,8,5,7,7,8,6,9,7,10,4,7,5,5 -K,3,2,4,4,2,6,7,4,8,6,6,11,3,8,6,9 -Z,5,11,7,8,4,7,7,2,10,12,5,9,1,9,7,8 -T,5,7,5,5,3,5,12,2,7,12,9,4,1,11,2,4 -C,4,9,5,6,3,5,8,7,7,8,8,14,2,9,4,10 -D,6,11,7,8,4,5,7,10,10,7,6,5,3,8,4,8 -I,4,8,6,9,6,8,9,4,5,7,7,8,3,7,8,7 -A,3,2,5,3,2,6,2,2,1,5,2,8,2,7,3,5 -Z,4,10,6,7,4,9,5,3,10,11,4,9,1,7,6,9 -I,3,8,5,6,3,8,6,2,7,7,6,7,0,9,4,7 -M,4,2,5,3,4,8,6,6,4,7,7,8,7,5,2,8 -M,5,10,8,7,11,9,6,2,2,8,4,8,10,5,3,6 -Z,1,0,1,0,0,8,7,2,9,8,6,8,0,8,5,8 -Y,3,5,5,4,2,8,11,1,7,5,11,9,1,11,2,9 -I,1,6,0,4,1,7,7,5,3,7,6,8,0,8,0,8 -Y,3,10,6,7,4,7,10,0,7,6,11,8,1,10,1,8 -Y,7,11,7,8,4,6,8,2,8,8,10,5,5,11,6,3 -N,2,6,2,4,2,7,7,11,1,6,6,8,4,8,0,8 -L,1,0,1,1,0,2,1,5,5,0,2,5,0,8,0,8 -Y,6,7,6,5,3,3,10,2,7,10,11,6,1,11,2,5 -D,4,9,6,6,5,7,8,7,5,8,7,6,3,8,3,7 -K,7,9,10,7,7,7,7,1,6,10,5,9,3,8,4,9 -Y,7,8,9,10,11,9,8,6,3,7,7,8,6,10,7,4 -Q,4,7,6,5,5,8,4,7,4,6,7,10,4,7,6,9 -I,3,4,4,5,3,9,9,5,4,6,6,10,3,7,7,5 -J,4,5,6,6,5,8,8,4,6,6,7,7,3,10,8,10 -R,4,11,6,8,6,8,8,4,6,9,4,8,3,6,5,11 -I,3,7,4,5,2,6,8,0,7,13,7,8,0,8,1,7 -K,2,1,3,2,2,6,7,4,7,7,6,11,3,8,4,9 -Y,4,10,7,8,4,4,9,1,8,10,12,10,1,11,2,7 -T,3,3,4,2,2,8,12,3,6,6,11,8,2,11,1,7 -W,6,9,8,7,9,7,9,6,4,7,9,8,7,7,5,10 -C,4,7,5,5,2,6,8,7,11,6,6,13,1,7,4,8 -X,4,7,5,5,3,7,7,4,9,6,6,10,3,8,6,8 -X,4,7,6,5,4,9,8,3,6,7,7,7,6,11,7,7 -S,4,9,5,6,4,8,7,5,7,5,6,8,0,8,8,8 -F,4,4,4,6,2,1,15,5,3,12,9,4,0,8,2,6 -B,2,1,2,1,2,7,7,7,5,6,6,7,1,8,7,8 -V,1,1,2,2,1,6,12,3,2,9,11,8,2,11,1,8 -V,3,10,5,7,2,9,8,4,3,6,14,8,3,10,0,8 -P,6,10,9,8,5,7,10,2,7,14,6,4,0,10,2,9 -A,4,9,6,6,2,7,7,3,0,7,0,8,3,7,1,8 -X,4,9,6,6,4,8,7,0,7,9,5,7,2,8,3,8 -G,4,7,4,5,3,6,6,6,5,10,7,13,2,9,4,10 -A,3,5,5,3,2,6,2,2,2,5,2,8,2,6,3,6 -T,2,2,3,3,2,6,12,3,6,8,11,8,2,11,1,7 -A,3,10,5,8,4,6,3,1,2,5,2,8,2,5,3,6 -M,6,6,8,4,5,10,6,2,5,9,4,7,8,6,2,8 -Q,3,4,4,5,3,7,8,5,3,7,9,10,3,8,5,8 -R,3,3,4,4,2,5,11,7,3,7,4,8,3,7,6,11 -X,3,1,4,2,2,8,7,3,9,6,6,9,2,8,6,8 -O,4,9,5,7,5,7,7,8,4,7,6,8,3,8,3,8 -J,3,8,5,6,4,9,8,3,3,8,4,6,4,9,6,4 -T,2,3,2,2,1,9,11,3,5,6,10,8,2,11,1,8 -F,2,7,3,5,2,1,12,3,4,11,10,8,0,8,2,7 -Y,4,10,7,7,1,7,10,2,2,7,13,8,2,11,0,8 -W,6,8,6,6,4,3,10,3,3,11,10,8,7,10,2,7 -D,3,2,4,4,3,7,7,7,6,6,6,5,2,8,3,7 -Q,5,11,7,8,7,8,4,8,5,6,6,6,5,7,7,10 -Z,6,7,5,11,4,7,7,5,3,11,7,7,3,9,11,6 -I,2,2,1,4,1,7,7,1,7,7,6,8,0,8,3,8 -S,1,0,2,1,0,8,7,4,6,5,6,7,0,8,7,8 -K,3,6,5,5,5,6,8,3,3,7,4,9,4,6,6,9 -L,2,4,3,3,1,7,4,1,8,8,2,10,0,7,2,8 -A,2,2,4,3,1,7,3,2,2,6,1,8,2,6,2,7 -H,5,6,6,8,3,7,8,15,0,7,5,8,3,8,0,8 -V,2,4,4,2,1,9,12,2,3,5,11,9,2,11,1,8 -O,3,3,4,4,2,7,8,8,6,7,7,8,3,8,4,8 -P,4,9,4,7,4,4,12,7,1,11,7,4,1,10,3,8 -O,3,3,4,4,2,8,7,8,8,7,6,8,3,8,4,8 -G,5,5,6,7,3,7,4,7,9,5,5,9,1,9,7,11 -W,5,7,5,5,4,4,11,2,2,9,8,7,6,11,2,6 -C,5,9,6,7,2,6,8,7,11,6,7,13,1,7,4,8 -X,3,8,4,5,1,8,7,4,4,7,6,8,3,8,4,8 -G,2,6,3,4,2,7,6,6,6,6,5,10,1,8,5,11 -S,5,9,5,5,2,5,9,4,4,13,9,7,2,9,3,7 -V,4,7,4,5,3,4,12,2,2,9,11,8,3,11,1,7 -R,3,5,5,4,3,9,7,4,5,10,3,7,5,6,4,9 -A,4,9,7,7,5,11,3,1,2,8,3,9,6,5,3,8 -U,3,3,4,1,1,5,8,4,6,10,9,9,3,10,1,6 -S,5,7,6,5,3,8,7,3,8,11,6,8,2,10,5,8 -T,2,7,3,5,2,9,12,0,5,6,10,8,0,8,0,8 -B,3,5,5,4,3,8,8,3,5,10,5,6,3,7,5,9 -D,3,8,5,6,4,7,7,7,7,7,7,5,3,8,3,7 -U,5,8,6,6,4,4,8,5,7,9,7,9,4,8,4,4 -D,5,11,7,8,8,7,7,6,6,6,6,5,6,8,3,7 -B,4,9,4,4,4,8,7,3,4,9,6,8,5,7,6,8 -X,3,9,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -F,6,8,7,9,8,6,9,4,4,7,7,6,5,9,9,8 -Z,4,8,5,6,5,8,8,3,8,7,7,7,0,8,11,8 -B,9,11,6,6,4,8,6,5,6,11,4,9,6,7,6,10 -E,4,11,6,8,5,8,7,2,8,11,6,8,2,8,5,9 -V,2,3,3,2,1,4,12,3,2,9,11,7,2,11,0,7 -Y,1,1,3,2,1,8,11,1,5,5,11,9,1,11,1,8 -Y,5,8,5,6,3,3,10,1,7,11,11,6,1,10,3,4 -C,3,6,5,4,4,7,7,4,3,7,7,10,5,10,3,8 -B,3,1,3,2,3,7,7,5,5,7,6,6,2,8,6,10 -J,3,10,4,7,1,14,1,7,5,14,1,10,0,7,0,8 -X,3,5,4,4,2,7,7,3,9,6,6,8,2,8,6,8 -D,6,10,8,8,8,7,7,5,7,7,6,5,6,8,3,7 -W,6,9,6,7,5,4,10,3,3,9,8,7,7,11,2,5 -K,2,3,4,2,2,6,7,1,6,10,7,10,3,8,2,8 -R,5,5,6,7,3,6,11,9,4,7,3,8,3,7,6,11 -U,3,8,5,6,2,5,8,7,8,10,10,9,3,9,1,8 -Z,2,4,2,3,2,8,7,5,9,6,6,7,1,8,7,8 -N,2,1,2,2,1,7,8,5,4,7,6,6,5,9,1,5 -J,6,7,7,8,6,9,9,5,5,6,6,10,3,7,8,5 -K,2,3,3,1,1,5,7,1,6,10,8,10,3,8,2,6 -T,3,11,4,8,1,6,14,0,6,8,11,8,0,8,0,8 -F,3,3,3,4,1,1,12,4,4,12,10,7,0,8,2,6 -D,4,9,6,7,6,9,7,6,6,9,4,6,3,8,3,9 -G,3,7,4,5,2,8,8,8,7,5,7,9,2,7,5,10 -J,4,10,5,7,2,8,7,2,7,15,5,8,0,7,1,7 -B,1,3,3,2,2,8,7,2,5,10,5,7,2,8,3,9 -P,2,3,4,2,1,7,11,4,3,11,4,2,0,9,3,8 -W,6,10,9,8,7,5,8,4,1,7,9,8,7,11,0,8 -N,6,10,5,5,3,5,9,4,5,3,3,12,6,11,2,7 -U,2,3,3,1,1,5,8,5,6,10,9,9,3,10,1,6 -C,3,6,4,4,2,6,8,7,7,9,8,12,2,10,4,10 -S,5,8,6,6,3,5,9,3,9,11,6,7,2,7,5,6 -H,3,3,4,4,2,7,7,14,1,7,7,8,3,8,0,8 -A,6,10,9,8,9,8,7,7,4,7,6,9,6,8,7,4 -K,4,5,7,4,4,3,8,2,7,10,10,11,3,8,3,6 -Z,4,10,5,8,2,7,7,4,14,10,6,8,0,8,8,8 -T,6,9,7,7,8,5,8,4,7,7,6,10,5,7,5,7 -P,3,6,4,4,2,4,13,8,1,10,6,3,1,10,4,8 -O,4,8,6,6,4,7,7,8,5,7,5,8,3,8,3,8 -S,8,15,8,8,4,9,5,5,5,13,5,9,2,8,3,7 -X,6,10,9,8,8,8,7,3,7,7,7,8,6,13,8,8 -A,5,11,7,9,5,10,2,2,3,9,1,7,3,7,4,8 -I,1,4,1,3,1,7,7,1,7,7,6,8,0,8,2,8 -D,5,4,5,7,3,5,6,10,9,5,4,5,3,8,4,8 -P,2,1,2,1,1,5,11,7,2,9,6,4,1,9,3,8 -F,4,9,4,6,2,1,13,5,4,12,11,6,0,8,2,6 -E,4,8,6,6,4,9,6,2,7,11,5,9,3,7,6,10 -H,4,3,4,4,2,7,8,14,0,7,6,8,3,8,0,8 -T,4,5,5,4,3,5,12,4,6,11,9,4,2,11,1,5 -M,1,0,2,0,0,7,6,9,0,7,8,8,5,6,0,8 -G,3,6,4,4,2,6,6,5,7,7,5,10,2,10,4,8 -V,2,8,4,6,1,8,8,4,2,7,13,8,3,9,0,8 -D,5,10,5,8,3,5,7,10,9,7,6,5,3,8,4,8 -T,5,11,7,8,7,8,11,3,6,6,11,8,3,12,1,8 -D,5,10,6,8,3,5,7,10,9,7,6,5,3,8,4,8 -H,7,13,7,8,6,7,7,3,4,10,5,8,6,9,5,8 -W,6,7,9,6,10,7,8,5,5,7,5,8,10,10,8,8 -Z,5,10,7,8,4,7,7,3,11,12,7,8,2,8,7,7 -F,4,7,6,5,4,8,8,2,6,13,5,6,2,10,2,8 -B,2,3,4,2,2,8,8,3,5,10,5,6,2,8,5,9 -R,3,7,5,5,4,6,8,5,6,6,5,7,3,7,5,9 -Z,1,0,1,1,0,7,7,2,10,8,6,8,0,8,6,8 -U,6,10,6,5,4,7,5,6,5,6,8,8,5,10,3,9 -N,10,15,9,8,4,7,10,5,5,4,5,11,6,11,3,7 -B,1,3,2,2,1,7,7,4,4,6,6,5,2,8,5,9 -I,0,7,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -A,4,7,6,5,2,8,3,3,3,9,1,8,2,7,3,7 -K,5,7,8,5,4,3,7,2,7,10,11,12,3,8,4,5 -Z,3,7,4,5,3,6,8,5,10,7,7,10,2,9,8,8 -R,5,11,7,8,8,6,7,5,6,6,5,7,3,7,5,8 -R,4,2,5,4,4,7,8,4,6,7,5,7,3,7,4,8 -F,4,6,5,4,3,7,10,4,5,13,7,5,2,9,2,7 -I,4,10,5,8,2,7,9,0,8,14,6,6,0,10,2,7 -A,7,11,9,8,9,7,6,8,4,7,5,8,5,8,11,2 -I,1,3,1,2,0,7,8,0,6,12,6,8,0,8,0,7 -J,2,6,2,4,2,8,7,0,6,10,5,7,0,7,1,7 -K,5,9,5,4,3,9,7,2,6,10,4,7,5,9,3,9 -U,2,1,3,2,1,5,8,6,6,8,10,10,3,9,1,7 -T,1,0,1,0,0,7,13,1,4,7,10,8,0,8,0,8 -Y,1,3,2,2,1,5,10,2,7,10,9,5,1,11,2,4 -W,2,1,2,2,1,7,8,4,0,7,8,8,6,10,0,8 -J,4,7,6,5,4,8,6,5,5,8,7,7,3,7,4,6 -U,4,2,5,4,2,6,8,5,8,6,9,9,3,9,1,7 -N,8,15,10,8,5,5,9,3,4,13,10,9,6,9,0,8 -J,1,3,2,2,1,11,6,2,6,12,3,8,0,7,0,8 -U,1,0,2,1,0,8,6,11,4,7,12,8,3,10,0,8 -W,4,4,6,6,3,4,8,5,1,7,8,8,8,9,0,8 -F,4,7,7,5,6,8,7,1,4,10,7,7,6,9,3,6 -K,5,9,8,6,6,7,7,1,6,10,5,9,3,7,3,8 -U,7,14,6,8,5,8,6,4,5,7,7,8,6,5,4,6 -P,4,11,5,8,6,6,9,6,4,9,8,4,1,10,3,7 -A,3,6,5,4,2,8,2,2,2,7,1,8,2,6,3,7 -J,4,10,6,8,6,9,8,4,4,9,3,7,4,8,7,5 -W,6,6,6,4,5,4,11,2,2,9,8,7,7,12,2,6 -T,5,6,6,5,6,8,9,5,7,7,7,8,3,10,7,7 -M,4,6,7,4,4,6,6,3,4,9,9,9,9,6,3,9 -P,3,9,4,6,2,5,9,10,5,8,6,5,2,9,4,8 -Z,4,9,5,7,5,9,9,6,4,7,5,8,4,9,10,6 -L,3,7,4,5,3,5,5,4,7,3,2,6,4,6,1,6 -M,5,11,7,8,9,7,6,7,4,7,5,8,6,10,7,8 -I,2,8,2,6,2,7,7,0,8,7,6,8,0,8,3,8 -B,3,6,5,4,6,8,7,4,3,6,7,8,6,10,7,7 -M,3,7,5,5,5,10,6,6,4,6,7,5,7,5,1,5 -M,6,8,9,7,10,8,7,4,5,7,6,7,12,8,6,4 -C,2,5,3,3,1,4,8,5,7,11,9,13,1,9,2,7 -G,5,11,7,8,6,6,6,6,7,6,6,9,4,9,4,8 -Z,5,5,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -O,4,7,5,5,2,8,6,8,8,7,5,8,3,8,4,8 -Z,3,4,4,6,2,7,7,4,13,10,6,8,0,8,8,8 -U,5,8,7,6,6,7,8,8,5,5,7,10,4,9,4,5 -M,9,13,11,7,6,13,2,6,2,12,1,9,7,2,1,8 -M,5,5,6,8,4,7,7,12,2,7,9,8,8,6,0,8 -U,5,11,5,8,4,8,5,12,4,7,13,8,3,9,0,8 -U,7,8,8,6,4,4,8,6,8,9,9,10,3,9,3,5 -X,3,3,5,2,2,9,7,2,8,11,4,7,2,8,3,8 -Z,3,6,4,4,1,7,7,3,13,9,6,8,0,8,8,8 -V,2,3,2,1,1,5,12,3,2,9,10,7,2,11,1,8 -U,6,11,9,8,12,8,8,4,4,6,7,8,10,6,8,8 -C,4,7,5,5,2,6,6,6,10,7,6,13,1,9,4,9 -N,5,7,6,5,4,8,8,6,6,6,5,3,8,9,5,7 -H,4,2,5,4,3,9,7,6,6,7,6,8,6,8,3,7 -W,6,8,6,6,4,2,10,3,3,11,11,9,7,10,1,6 -J,6,7,4,10,3,10,6,3,4,11,3,5,3,8,7,10 -Y,8,7,6,11,5,9,7,5,5,4,12,5,4,11,5,7 -R,3,7,4,5,2,5,11,8,4,7,3,9,3,7,6,11 -Q,4,7,6,8,6,8,5,8,4,6,5,9,4,9,6,8 -O,3,6,4,4,2,7,7,7,4,9,6,8,3,8,3,8 -S,7,15,5,8,3,10,2,2,5,10,1,9,3,7,4,9 -V,4,5,6,4,2,4,12,3,3,10,11,7,2,10,1,8 -A,3,8,5,6,3,6,4,3,0,6,2,7,2,7,2,7 -A,4,7,7,5,5,7,6,2,4,6,1,6,3,5,3,7 -F,5,7,6,5,6,7,10,5,4,8,6,8,2,9,7,11 -S,4,10,6,8,7,8,8,5,3,8,5,7,4,9,11,8 -T,4,6,6,4,5,5,8,4,5,6,7,8,5,10,4,8 -I,1,3,2,2,1,7,7,1,6,13,6,8,0,8,0,8 -J,1,1,2,2,1,10,7,2,5,11,4,8,0,7,0,7 -W,6,7,6,5,4,4,11,3,3,9,9,7,7,11,2,6 -N,1,0,2,1,0,7,7,11,0,5,6,8,4,8,0,8 -N,5,10,5,8,3,7,7,15,2,4,6,8,6,8,0,8 -O,5,9,6,7,8,8,9,5,2,7,7,8,8,9,4,8 -V,5,9,4,4,2,7,10,4,4,8,9,6,3,10,2,7 -X,5,8,8,6,4,8,8,1,8,11,4,7,4,9,4,8 -L,3,11,5,8,3,4,4,4,8,2,0,6,0,6,1,5 -L,2,6,3,4,1,0,1,5,6,0,0,6,0,8,0,8 -B,6,11,8,8,8,9,6,4,5,7,6,7,4,8,6,10 -H,3,3,5,2,2,7,8,3,6,10,7,8,3,8,3,8 -O,5,8,6,6,5,6,8,7,4,9,8,8,3,8,3,8 -T,6,8,6,6,3,5,12,2,8,12,9,4,1,11,2,4 -V,3,4,5,3,2,6,12,2,3,7,11,8,2,10,1,8 -F,6,11,9,8,9,7,7,6,4,8,6,8,5,12,10,12 -Q,2,3,3,4,3,9,8,6,1,5,7,10,2,10,5,10 -N,6,5,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -R,7,13,7,7,6,8,7,3,5,9,4,8,6,6,7,6 -N,3,7,3,5,2,7,7,13,2,5,6,8,5,8,0,8 -F,4,7,6,5,6,8,8,1,4,10,6,6,5,10,4,5 -E,4,9,5,7,3,3,7,6,11,7,6,15,0,8,7,7 -T,3,3,4,2,1,5,13,3,7,12,9,3,1,10,1,5 -N,5,6,6,6,6,6,7,5,3,6,5,8,7,9,4,8 -R,6,12,6,6,5,5,9,2,5,7,5,10,4,7,6,7 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -U,4,7,6,6,5,7,7,4,4,6,6,9,4,9,1,8 -P,3,7,3,5,3,5,10,8,3,9,6,5,1,10,3,8 -F,5,7,7,5,3,5,13,5,5,13,7,3,2,10,2,6 -Q,5,5,5,6,5,8,7,6,2,8,6,11,3,9,6,8 -Z,2,3,3,4,1,7,7,3,13,9,6,8,0,8,7,8 -S,5,11,5,6,2,8,7,4,3,13,7,8,3,10,3,8 -N,4,8,4,6,2,7,7,14,2,4,6,8,6,8,0,8 -W,1,0,2,0,1,7,8,3,0,7,8,8,5,10,0,8 -M,9,12,11,6,6,6,3,3,2,7,4,11,10,1,2,8 -Q,2,3,3,4,2,7,8,5,2,7,8,10,2,9,4,8 -D,4,8,5,6,4,7,7,7,7,7,6,4,3,8,3,7 -B,1,3,3,2,2,8,7,3,5,10,5,7,2,8,4,9 -Q,5,11,5,6,3,10,4,4,7,11,3,9,3,7,8,11 -W,7,8,7,6,5,4,11,3,3,9,9,7,7,11,2,6 -Q,2,2,3,3,2,7,9,4,1,8,8,10,2,9,4,8 -N,7,10,10,7,6,4,9,3,4,10,10,9,8,7,2,7 -E,4,9,5,6,4,7,7,3,8,11,7,9,3,8,5,8 -M,5,8,8,6,9,8,6,3,2,8,4,8,12,5,2,7 -Q,3,7,4,6,2,8,7,8,5,6,7,8,3,8,5,9 -J,1,4,2,2,1,9,6,3,5,12,5,9,1,7,1,7 -U,6,6,6,4,4,5,8,5,7,8,6,9,5,9,5,3 -L,8,13,8,7,5,8,4,3,5,11,6,11,3,7,7,8 -H,5,9,7,7,6,6,6,6,4,6,5,8,6,7,6,10 -R,3,2,4,4,3,6,7,5,5,6,5,7,3,7,4,8 -X,6,10,9,8,4,5,9,2,9,10,10,9,3,8,4,6 -B,2,1,3,2,2,7,8,8,5,7,6,7,2,8,8,9 -V,6,10,6,8,3,4,11,2,4,9,11,7,3,9,1,7 -X,3,5,4,5,4,7,6,2,5,7,6,9,2,11,7,8 -R,4,9,6,7,8,8,9,3,5,5,7,8,5,9,8,7 -T,3,9,5,6,4,8,11,2,7,6,11,7,2,12,1,7 -S,3,8,4,6,4,8,7,7,5,7,7,9,2,9,8,8 -O,5,10,7,8,3,8,7,9,8,7,6,9,3,8,4,8 -K,6,9,9,7,5,9,6,2,7,10,3,9,7,7,6,9 -U,4,9,6,8,6,7,7,5,4,6,7,8,6,8,1,7 -L,2,5,4,4,2,7,4,1,8,8,2,10,0,7,2,8 -U,5,9,8,7,10,8,6,4,4,6,7,8,11,9,6,8 -Z,5,6,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -X,5,7,6,6,6,6,7,2,5,7,7,10,3,8,7,8 -I,4,9,3,5,2,6,10,2,5,13,6,4,1,9,4,8 -T,4,6,4,4,2,6,11,2,9,11,9,4,0,10,3,5 -P,5,5,6,7,8,8,6,4,3,6,7,7,6,9,4,5 -M,5,6,8,4,4,5,7,3,5,10,10,10,8,5,2,7 -Y,3,5,5,7,7,8,4,4,3,7,8,8,5,9,5,8 -W,3,1,3,2,1,8,8,4,0,7,8,8,7,10,0,8 -Z,3,2,3,3,2,7,8,5,10,6,6,9,1,8,7,8 -J,6,7,8,9,7,7,8,4,7,6,7,7,3,10,9,9 -D,2,1,2,1,1,7,7,6,6,7,6,5,2,8,2,7 -K,3,7,3,4,1,3,7,7,2,7,5,11,3,8,2,11 -O,5,9,7,8,5,6,6,6,5,8,5,8,4,6,5,6 -X,3,7,5,5,2,10,5,2,8,10,1,7,3,7,3,10 -C,6,11,4,6,2,6,8,7,6,11,7,7,2,9,5,8 -G,5,9,6,7,5,7,7,8,5,5,7,9,3,6,5,9 -B,3,4,5,3,3,8,7,3,5,10,5,7,2,8,4,9 -B,2,3,2,2,2,7,7,5,5,7,6,6,2,8,5,9 -W,5,7,7,5,3,8,8,5,1,7,8,8,8,9,0,8 -I,2,8,3,6,2,8,7,0,7,13,6,9,0,8,1,8 -C,1,0,2,1,0,7,7,6,8,7,6,13,0,8,4,10 -X,6,10,8,8,7,7,7,3,6,6,6,8,6,7,13,10 -X,4,11,6,8,5,7,7,3,8,5,6,8,2,8,6,8 -M,3,3,4,4,2,7,6,11,1,8,9,8,7,6,0,8 -P,3,6,4,9,8,7,6,6,1,7,6,7,4,10,7,11 -M,6,10,8,8,8,6,6,6,5,7,8,11,8,6,2,9 -F,4,8,6,6,4,9,8,1,6,13,5,5,2,9,3,9 -M,6,7,8,5,6,8,6,2,5,9,8,8,8,4,2,7 -S,2,3,4,2,2,8,8,2,7,10,5,7,1,9,4,8 -P,3,5,5,3,2,7,11,4,3,12,5,2,1,10,2,8 -C,3,6,4,4,2,6,7,6,7,6,7,12,1,8,4,10 -Q,3,4,4,5,3,8,7,7,2,5,7,9,2,9,5,10 -O,2,3,3,1,1,8,7,7,5,7,6,8,2,8,3,8 -G,2,1,3,2,1,8,6,6,6,6,5,9,1,7,6,10 -C,2,4,3,6,1,5,7,7,9,8,6,14,1,9,4,9 -A,4,11,8,8,6,9,5,1,4,7,2,6,3,8,6,6 -Z,3,7,5,5,3,8,7,2,9,11,5,7,1,7,6,8 -V,4,5,6,4,6,7,7,5,4,7,6,8,6,9,7,7 -E,4,7,6,6,6,6,8,3,3,8,7,8,5,12,9,9 -T,1,0,2,0,0,7,14,1,4,7,10,8,0,8,0,8 -N,5,8,6,6,5,7,6,9,5,5,4,5,5,7,4,10 -E,5,9,8,6,5,10,6,2,9,11,4,8,2,8,5,11 -A,4,9,6,7,4,8,2,2,3,7,1,8,2,7,3,6 -R,4,6,5,4,3,9,7,4,5,10,3,7,3,7,4,10 -U,2,1,3,1,1,6,9,6,6,7,10,9,3,10,1,8 -E,4,10,4,7,4,3,8,5,9,7,6,14,0,8,6,8 -V,7,10,7,8,4,2,12,2,3,10,11,8,2,10,1,8 -B,5,10,6,8,8,8,8,6,6,7,6,6,6,8,6,10 -Z,4,6,6,4,4,7,8,2,8,12,7,8,1,9,6,7 -K,4,7,6,5,3,6,7,2,7,10,7,10,3,8,3,8 -D,4,9,5,6,5,7,7,6,6,7,6,5,3,8,3,7 -X,3,5,5,4,4,9,8,2,6,8,5,6,2,6,7,7 -P,5,5,7,6,7,7,8,4,3,8,8,6,6,11,5,5 -H,7,9,10,7,8,8,7,2,6,10,6,8,3,8,3,7 -C,4,8,5,6,6,6,7,4,4,6,7,10,6,10,4,8 -D,5,11,7,8,7,9,7,4,5,9,4,6,3,8,3,8 -Q,5,7,6,9,7,9,7,7,2,5,6,10,3,9,6,9 -Y,6,10,6,7,3,4,10,1,8,10,10,5,2,12,4,3 -R,5,9,6,7,5,7,9,4,6,6,4,8,4,5,6,9 -G,3,7,4,5,2,7,8,8,7,6,7,8,2,7,6,11 -R,4,7,5,5,4,7,8,5,7,7,4,6,6,7,5,8 -F,2,4,4,3,2,6,11,2,6,13,6,4,1,10,1,7 -Q,5,9,5,5,3,10,5,4,6,12,3,8,3,8,7,11 -F,4,10,4,7,2,0,13,4,4,12,11,7,0,8,2,6 -Q,7,9,7,11,7,8,6,7,5,9,8,9,5,9,8,9 -T,2,3,3,2,1,5,12,3,6,11,9,4,1,10,2,5 -C,3,8,4,6,2,6,8,7,9,5,7,12,1,7,4,9 -N,4,10,6,7,4,7,9,6,5,7,6,7,6,8,2,6 -J,1,2,2,3,1,10,6,2,6,12,4,8,0,7,1,7 -O,2,1,3,2,1,7,7,7,6,7,6,8,2,8,3,8 -Z,2,5,3,4,3,8,7,5,9,6,6,7,2,8,7,8 -M,3,7,4,5,4,8,5,11,1,6,8,8,6,5,0,7 -V,1,0,2,0,0,8,9,3,1,6,12,8,2,11,0,8 -X,3,6,5,4,3,7,7,1,7,10,6,8,3,8,3,7 -H,4,8,4,5,2,7,5,15,1,7,8,8,3,8,0,8 -Z,3,7,5,5,3,7,8,2,9,11,6,9,1,9,6,8 -G,5,9,5,6,3,6,7,6,7,10,8,10,2,9,4,9 -V,4,5,6,4,5,7,8,5,5,7,6,8,6,9,7,6 -U,4,10,6,8,10,9,8,4,4,6,7,8,9,7,8,8 -F,0,0,1,0,0,3,12,4,2,11,9,6,0,8,2,8 -X,4,5,6,4,3,7,7,1,9,10,6,8,2,8,3,7 -A,5,11,8,8,6,6,3,2,3,4,2,7,5,5,5,5 -Y,2,1,2,1,0,8,10,3,1,6,13,8,1,11,0,8 -U,2,3,3,2,1,5,8,5,6,11,9,9,3,9,1,6 -O,2,4,3,3,2,8,6,6,3,9,5,8,2,8,2,8 -O,5,11,6,8,6,7,6,7,4,10,6,10,5,8,4,6 -C,4,8,5,6,3,4,8,5,6,9,8,14,3,7,4,8 -C,5,10,6,8,4,4,8,7,9,8,9,13,1,8,4,9 -W,5,10,7,8,8,8,9,6,4,5,9,9,7,8,4,5 -J,4,7,5,5,2,7,7,3,6,15,5,9,0,7,0,7 -T,3,10,5,7,1,7,15,0,6,7,11,8,0,8,0,8 -A,4,10,7,8,5,11,2,2,2,9,2,9,4,5,4,8 -H,4,7,5,5,5,7,7,6,6,7,6,8,6,8,3,8 -Q,3,4,4,5,3,8,8,6,2,5,7,9,3,9,5,10 -M,5,6,7,4,5,10,6,2,4,9,4,7,7,6,2,8 -O,3,4,4,6,2,7,7,9,7,7,6,8,3,8,4,8 -B,3,1,3,2,3,7,7,5,5,7,6,6,2,8,6,9 -I,2,9,5,7,5,10,7,2,5,9,4,5,3,8,6,5 -Q,7,9,10,8,8,5,4,4,5,4,4,7,4,8,6,6 -D,4,8,5,6,4,7,8,7,8,8,7,5,3,8,3,7 -M,4,7,5,5,3,7,7,12,1,7,9,8,8,6,0,8 -N,5,7,7,5,3,7,9,2,4,10,6,6,5,9,1,7 -O,4,11,5,8,5,8,7,8,4,7,7,7,3,7,3,8 -U,3,2,5,3,2,6,8,6,8,7,10,9,3,9,1,8 -N,3,5,5,4,3,7,9,2,4,10,6,6,5,9,1,7 -H,4,9,5,7,5,8,7,6,6,7,6,6,6,8,3,6 -A,2,2,4,3,2,8,2,1,1,7,2,8,2,7,3,7 -A,2,4,4,2,2,10,2,2,2,9,2,8,2,6,2,8 -N,9,12,7,7,3,9,11,5,6,3,5,9,5,8,2,7 -N,3,4,5,3,2,7,9,3,4,10,6,6,5,9,0,7 -X,2,2,3,3,2,8,7,3,8,6,6,8,2,8,6,8 -G,5,5,6,7,3,8,6,8,9,6,5,11,1,8,6,11 -G,3,3,4,5,2,7,8,8,7,6,7,8,2,7,6,11 -H,4,8,4,5,2,7,5,15,1,7,8,8,3,8,0,8 -B,4,5,4,3,4,7,7,6,6,7,6,6,2,8,6,10 -J,3,8,3,6,2,14,3,4,4,13,1,8,0,7,0,8 -H,4,5,6,7,6,7,8,4,1,8,6,6,4,10,8,5 -C,4,5,5,4,2,4,8,5,7,11,10,12,1,9,3,7 -N,5,10,5,8,3,7,7,15,2,4,6,8,6,8,0,8 -S,3,6,4,4,3,8,6,6,5,7,7,10,2,10,8,8 -K,3,7,4,5,3,5,7,5,7,6,5,10,3,8,4,9 -Y,6,11,6,8,2,3,12,5,6,13,12,6,2,11,2,6 -X,4,9,7,7,3,7,7,1,9,10,6,8,3,8,4,7 -Y,2,4,3,2,1,4,11,2,7,11,10,5,1,11,2,5 -O,2,5,3,4,2,8,7,7,4,9,6,8,2,8,2,8 -Z,4,4,6,6,3,12,4,4,4,11,2,9,2,7,4,11 -C,2,4,3,3,1,6,8,7,7,9,7,12,1,10,4,10 -R,3,5,6,4,4,8,7,3,5,10,4,6,3,7,4,10 -Q,6,9,8,8,7,7,4,5,6,7,4,9,5,5,7,7 -Y,2,5,4,4,2,6,10,1,6,8,11,8,1,11,2,7 -A,2,4,3,3,1,11,3,3,2,11,2,9,1,6,2,9 -U,7,10,7,7,5,3,8,5,7,10,9,9,3,9,2,6 -C,3,7,4,5,1,6,8,6,9,5,6,14,1,7,4,9 -M,5,5,6,4,5,8,6,6,5,7,7,8,9,6,3,7 -B,7,11,9,8,7,10,6,4,7,10,4,7,3,8,6,11 -N,2,3,3,5,2,7,7,13,1,5,6,8,5,8,0,8 -F,2,4,4,3,1,6,12,3,5,13,7,4,1,9,2,6 -C,2,4,3,3,1,4,8,5,7,11,9,12,1,9,2,7 -G,2,4,3,3,2,6,7,5,4,9,8,10,2,9,4,9 -J,1,3,2,4,1,13,3,7,4,13,4,11,1,6,0,8 -A,5,11,5,6,4,10,3,4,2,10,5,11,5,3,5,10 -U,7,10,8,8,5,3,8,5,7,10,10,10,3,9,2,6 -C,5,10,3,5,2,5,9,6,6,11,8,8,2,9,5,8 -S,4,7,6,6,7,8,7,5,4,7,7,7,5,9,10,12 -I,0,3,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -S,3,8,4,6,3,8,8,8,8,7,4,7,2,6,9,8 -H,2,2,3,3,3,8,8,6,6,7,6,7,3,8,3,7 -B,3,5,4,3,4,7,7,5,5,6,6,6,2,8,6,10 -Z,1,0,2,1,0,7,7,2,10,8,6,8,0,8,6,8 -F,5,8,7,6,4,7,10,2,6,13,6,5,2,10,2,8 -D,5,9,7,7,6,10,7,5,6,9,3,6,3,8,3,8 -F,2,3,2,1,1,6,10,4,5,10,9,4,1,10,3,6 -K,3,4,5,3,2,7,6,1,6,10,6,10,3,8,3,8 -W,6,8,8,7,9,8,8,5,6,7,6,8,9,8,8,7 -T,0,0,1,0,0,7,13,1,4,7,10,8,0,8,0,8 -E,3,11,5,8,5,7,7,6,8,6,5,9,3,8,6,9 -L,2,3,2,2,1,4,3,5,7,2,2,5,0,7,1,6 -I,3,7,4,5,2,7,7,0,7,13,6,8,0,8,1,8 -V,6,11,6,8,3,3,12,5,4,11,12,7,3,9,1,8 -P,4,5,5,7,6,8,9,3,2,7,8,6,5,11,5,4 -H,4,6,6,4,4,7,7,3,6,10,7,8,3,9,3,7 -O,2,4,3,3,2,7,7,7,5,7,6,8,2,8,3,8 -N,5,9,8,7,4,9,7,3,5,10,3,5,6,9,1,7 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -Y,1,0,2,0,0,7,9,2,2,6,12,8,1,10,0,8 -I,1,2,1,3,1,7,7,1,7,7,6,8,0,8,3,8 -R,1,0,2,1,1,6,9,7,3,7,5,7,2,7,4,10 -J,3,10,4,7,2,10,6,0,8,11,3,6,0,7,1,7 -N,10,15,9,8,4,8,10,5,4,4,6,10,6,11,3,6 -Y,4,7,6,9,9,9,6,6,3,7,7,8,7,9,6,5 -B,1,1,2,1,1,7,7,7,5,7,6,7,1,8,6,8 -S,5,5,6,4,6,9,8,4,5,7,7,8,5,10,9,11 -H,1,0,1,0,0,7,7,10,1,7,6,8,2,8,0,8 -G,2,4,2,2,1,6,7,5,5,9,7,10,2,8,4,9 -G,6,9,5,4,3,10,6,4,6,11,3,8,4,7,5,9 -C,8,11,5,6,2,7,9,6,7,12,7,8,2,9,5,9 -N,2,1,2,1,1,7,7,12,1,5,6,8,5,8,0,8 -T,4,11,5,8,3,7,14,0,5,7,10,8,0,8,0,8 -K,4,5,7,3,3,6,8,2,8,10,8,10,4,7,3,6 -F,6,11,9,8,9,5,8,2,4,10,9,8,6,11,6,6 -X,2,3,3,2,2,8,7,3,9,6,6,8,2,8,5,8 -F,3,7,5,5,3,5,10,4,6,11,10,5,2,9,3,5 -O,6,8,8,7,6,8,4,3,4,9,3,8,4,7,5,8 -W,1,0,2,0,0,7,8,3,0,7,8,8,5,9,0,8 -Y,5,9,8,6,4,8,10,1,7,5,11,8,2,12,3,8 -J,2,6,3,4,1,10,7,1,6,12,3,7,0,7,0,7 -U,12,15,10,8,4,5,3,5,5,4,7,7,5,8,2,6 -V,3,5,4,3,1,3,12,4,3,11,11,7,2,10,1,8 -Z,7,10,9,8,5,7,8,3,10,12,7,7,1,8,6,7 -T,4,9,6,8,6,7,9,4,7,7,8,8,3,12,10,7 -E,6,11,4,6,2,7,8,5,7,8,4,12,1,7,7,8 -J,2,9,3,7,1,15,2,6,5,14,1,9,0,7,0,8 -W,10,10,10,8,6,2,10,2,3,10,11,9,8,10,1,7 -D,4,10,5,7,3,6,7,11,9,7,6,6,3,8,4,8 -M,6,9,7,4,4,10,10,6,3,5,7,9,10,13,2,6 -S,3,8,4,6,3,7,8,8,7,8,5,7,2,7,9,8 -T,3,5,4,4,4,6,8,4,7,7,7,9,3,10,6,7 -V,4,10,6,8,4,8,11,2,3,4,10,9,3,11,2,8 -O,7,10,7,8,5,8,6,8,6,10,5,9,5,9,6,5 -D,5,11,7,9,6,9,7,5,7,10,5,5,3,8,3,8 -B,2,5,4,4,3,8,8,3,5,10,6,6,3,7,6,9 -Q,2,4,3,4,3,8,8,6,3,8,6,9,2,9,4,9 -L,3,7,4,5,1,0,0,6,6,0,1,5,0,8,0,8 -S,2,1,2,2,1,8,7,4,7,5,6,7,0,8,8,8 -U,3,2,4,3,2,8,9,5,7,5,9,8,3,9,1,8 -L,3,7,3,5,1,1,1,5,5,0,1,6,0,8,0,8 -J,2,3,3,2,1,8,6,3,6,14,6,10,0,7,0,8 -Y,4,6,7,8,1,6,10,3,2,8,13,8,1,11,0,8 -E,4,7,5,5,4,9,6,2,6,11,5,8,3,8,4,11 -W,3,7,5,5,3,10,8,4,1,7,8,8,8,9,0,8 -H,6,11,9,8,7,9,7,3,6,10,5,8,3,8,3,8 -H,2,1,3,2,2,7,8,6,6,7,6,8,3,8,3,8 -G,4,8,5,6,3,8,6,6,7,11,6,11,2,10,4,9 -M,3,6,4,4,2,8,7,11,1,7,9,8,7,5,0,8 -M,15,15,15,8,8,3,9,6,6,3,2,13,10,12,2,8 -Z,3,8,4,6,3,7,7,5,9,7,6,8,2,8,7,8 -D,2,4,4,2,2,8,7,4,6,10,5,6,2,8,3,8 -Q,5,10,7,9,3,8,5,9,8,6,4,8,3,8,4,8 -O,1,0,1,0,0,7,7,6,3,7,6,8,2,8,3,8 -B,5,10,8,8,12,8,8,5,3,7,7,7,8,11,12,9 -C,4,8,5,6,3,4,9,6,7,7,8,14,1,8,4,10 -I,4,7,5,5,3,8,4,2,6,7,7,7,1,10,4,7 -N,7,11,8,6,3,9,7,2,4,13,5,8,6,8,0,8 -Y,9,10,7,14,5,9,11,2,3,7,10,5,4,10,6,9 -G,3,4,4,3,2,7,6,6,5,6,6,9,2,9,4,9 -Q,4,9,4,5,3,10,5,4,6,11,4,8,3,8,8,12 -F,2,3,3,2,1,7,9,2,5,13,6,5,1,9,1,8 -V,7,13,6,7,3,7,11,5,5,8,11,5,4,11,4,8 -F,4,6,4,8,2,0,14,4,4,12,10,6,0,8,2,6 -X,2,1,2,1,0,7,7,4,4,7,6,8,2,8,4,8 -Y,1,0,2,1,0,7,9,1,2,6,12,8,1,10,0,8 -P,7,11,10,8,6,9,8,4,6,12,3,3,2,10,4,9 -L,3,9,4,7,2,0,2,4,6,1,0,8,0,8,0,8 -U,9,12,8,7,5,7,6,5,5,6,7,8,6,8,3,7 -N,11,13,9,7,4,5,9,5,6,3,3,12,6,12,2,7 -Y,3,8,4,6,2,8,10,1,3,7,12,8,1,11,0,8 -A,2,8,4,6,2,12,2,4,3,11,2,10,2,6,4,9 -Y,2,9,4,6,1,8,10,2,3,6,12,8,1,10,0,8 -H,3,3,3,4,1,7,9,14,1,7,4,8,3,8,0,8 -U,5,9,6,6,6,8,6,8,5,7,6,9,3,8,4,5 -S,3,5,4,7,2,9,9,6,10,5,6,5,0,7,9,7 -N,3,3,5,1,1,8,8,3,5,11,5,6,5,9,0,6 -Q,5,7,7,6,6,7,4,5,5,6,5,9,5,4,7,7 -Q,3,3,4,4,3,8,8,6,2,5,7,10,2,9,5,9 -I,1,1,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -H,3,5,6,4,3,9,6,3,6,10,3,7,4,7,4,9 -O,6,12,4,6,3,7,8,5,4,8,4,7,5,8,5,8 -T,2,3,3,2,1,6,11,2,7,10,9,5,1,10,2,5 -D,6,11,8,8,8,8,7,7,6,8,5,4,8,11,7,10 -W,5,10,7,8,4,6,8,4,2,7,8,8,9,9,0,8 -R,6,10,5,5,3,7,6,5,4,9,5,9,6,5,6,11 -Z,2,4,5,3,2,7,7,2,9,12,6,8,1,8,5,8 -U,2,6,2,4,1,7,6,12,4,7,13,8,3,9,0,8 -E,1,0,2,1,1,5,7,5,8,7,6,12,0,8,6,9 -H,5,10,7,7,9,8,7,4,3,6,7,8,8,8,8,8 -K,2,3,4,2,2,6,8,2,6,10,6,9,3,8,2,8 -G,1,3,2,1,1,6,7,5,4,9,7,10,2,8,4,9 -A,2,4,3,3,1,11,3,2,2,9,2,9,1,6,2,8 -Y,6,11,6,8,4,3,9,1,7,10,10,6,1,11,3,4 -N,3,8,4,6,3,8,8,6,5,6,6,5,6,9,2,5 -E,4,7,6,6,7,7,6,4,3,7,6,9,6,11,8,12 -I,5,13,4,7,2,9,7,5,4,12,3,6,3,8,5,10 -X,1,0,1,0,0,7,7,3,5,7,6,8,2,8,4,8 -N,7,9,6,5,3,8,10,5,4,4,6,10,6,11,3,7 -H,5,5,6,6,3,7,5,15,1,7,8,8,3,8,0,8 -E,3,5,5,3,3,7,8,2,8,11,7,9,2,9,4,8 -H,4,7,6,5,4,8,7,6,7,7,6,5,6,8,3,7 -D,5,10,5,5,4,9,6,3,6,10,4,7,5,8,7,7 -M,4,7,5,5,3,6,7,12,1,8,9,8,8,6,0,8 -J,1,3,2,2,1,11,6,2,5,11,4,8,0,7,0,7 -A,3,9,6,7,4,12,3,2,2,9,2,9,2,6,2,8 -C,8,14,6,8,3,6,9,6,9,11,8,10,2,8,5,8 -K,5,8,6,6,6,5,7,5,7,6,6,13,3,8,6,9 -C,4,9,5,6,3,6,7,6,8,6,5,12,1,8,4,9 -I,1,6,2,4,1,9,7,0,7,13,5,8,0,8,1,8 -Q,4,7,5,8,5,9,9,6,2,4,7,11,3,9,5,10 -H,4,8,5,6,4,7,8,6,6,7,6,7,3,8,3,7 -A,9,13,8,8,4,10,0,3,2,10,4,12,3,5,4,8 -M,1,0,2,0,1,7,6,9,0,7,8,8,5,6,0,8 -M,1,0,2,0,0,7,6,9,0,7,8,8,5,6,0,8 -Z,9,15,9,8,6,8,5,2,9,12,6,10,3,8,6,8 -H,4,10,5,7,3,7,8,15,1,7,5,8,3,8,0,8 -Q,3,6,4,8,4,7,9,5,3,8,9,10,3,8,6,8 -U,3,3,4,2,2,5,8,5,7,10,8,9,3,10,2,5 -C,4,7,4,5,3,4,7,5,6,11,9,14,1,9,3,9 -I,1,9,0,7,1,7,7,5,3,7,6,8,0,8,0,8 -X,1,3,2,1,1,8,7,3,8,7,6,8,2,8,5,8 -S,3,9,4,7,3,8,8,5,8,5,5,6,0,8,8,8 -T,5,10,7,8,7,9,11,4,6,5,11,8,3,12,1,8 -F,4,5,4,7,2,1,12,5,6,12,11,8,0,8,2,5 -A,2,9,4,6,2,7,4,3,2,6,1,8,2,7,2,8 -R,4,8,5,6,3,6,10,9,4,7,4,8,3,8,5,10 -G,4,7,5,5,3,6,7,6,7,10,7,11,2,9,4,9 -Y,6,6,5,8,4,9,8,4,4,5,11,5,4,11,5,6 -S,8,15,8,8,4,7,7,4,3,13,8,9,3,10,3,8 -R,4,9,6,7,8,7,9,3,5,5,6,9,5,8,8,7 -F,2,3,2,2,1,5,11,4,4,11,9,5,1,9,3,7 -L,2,7,4,5,5,8,8,3,4,6,6,9,5,11,6,5 -W,4,7,6,5,4,7,11,2,2,6,9,8,8,11,1,8 -W,5,9,5,4,3,6,9,1,3,8,9,7,7,12,1,6 -P,2,6,3,4,1,4,11,8,2,10,6,4,1,10,3,8 -H,5,9,6,7,7,7,7,6,6,7,6,8,3,8,3,8 -K,3,7,4,5,3,3,7,6,3,7,6,11,3,8,3,11 -L,2,7,3,5,1,0,1,5,6,0,0,7,0,8,0,8 -S,4,7,6,5,6,8,6,4,3,8,6,8,4,8,10,10 -D,5,9,7,6,6,9,7,3,6,11,5,6,4,7,4,8 -E,4,7,5,5,3,6,8,3,8,11,7,8,2,8,4,7 -S,2,6,3,4,2,8,8,7,5,7,5,6,2,8,8,8 -L,4,7,5,5,4,7,6,8,6,5,6,8,3,7,5,11 -Z,4,8,6,6,4,8,6,2,9,11,4,10,2,7,7,10 -Y,5,9,5,4,2,5,8,3,3,10,9,6,4,9,3,4 -M,3,7,4,5,4,7,6,5,4,7,7,11,6,5,1,10 -W,4,8,6,6,6,10,12,2,2,5,8,8,6,11,0,8 -D,3,8,4,6,2,5,6,10,8,5,5,5,3,8,4,8 -A,3,3,5,5,2,6,4,3,1,6,1,8,3,7,2,7 -Q,3,3,4,4,3,8,8,7,3,5,7,10,2,9,5,10 -Y,6,10,8,8,8,8,5,6,5,8,7,8,6,9,7,3 -X,3,5,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -V,4,7,6,5,6,8,5,4,2,7,7,8,7,8,5,8 -Y,3,3,5,4,1,8,11,2,2,5,12,8,1,10,0,8 -Q,5,9,6,8,3,8,5,9,7,5,4,8,3,8,4,8 -E,4,11,4,8,3,3,8,6,11,7,5,14,0,8,7,7 -U,5,4,5,7,2,7,4,15,6,7,14,8,3,9,0,8 -H,6,10,8,8,7,10,6,2,6,10,3,7,4,8,4,10 -G,3,4,4,3,2,6,7,5,5,9,8,9,2,9,4,9 -O,3,7,4,5,2,8,6,9,6,7,5,8,3,8,4,8 -N,4,9,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -V,1,0,2,0,0,8,9,3,1,6,12,8,2,11,0,8 -U,8,10,9,8,5,4,8,6,9,10,9,9,3,9,3,5 -I,3,8,4,6,2,5,9,0,7,13,7,7,0,8,1,7 -F,7,8,8,9,9,6,9,4,5,7,7,6,5,8,11,8 -V,3,4,4,3,1,5,12,2,2,9,11,7,3,12,1,7 -Y,4,8,6,6,5,9,5,7,5,6,9,7,3,9,9,4 -H,6,10,9,8,7,6,7,5,5,6,5,8,3,7,7,10 -L,4,11,5,8,4,7,4,0,7,9,3,10,1,6,3,8 -H,4,4,5,6,2,7,8,15,1,7,5,8,3,8,0,8 -X,4,4,5,6,1,7,7,5,4,7,6,8,3,8,4,8 -B,2,6,4,4,3,7,7,7,6,7,6,6,2,8,7,9 -X,11,13,10,8,5,6,8,2,9,9,7,9,5,7,5,7 -H,4,4,6,3,3,9,7,3,6,10,3,7,3,7,3,9 -A,3,9,4,6,3,7,4,3,1,6,2,8,2,7,3,8 -N,5,8,6,6,4,6,9,6,5,8,7,9,6,9,1,7 -P,4,11,6,8,6,6,10,4,5,10,9,4,4,10,4,7 -Z,1,1,2,1,0,8,7,2,10,9,6,8,0,8,6,8 -V,4,7,6,5,6,7,6,4,2,8,8,8,5,10,4,7 -O,5,8,5,6,4,7,9,7,4,10,8,6,4,9,4,9 -J,2,5,4,3,1,9,6,3,6,14,5,10,1,6,1,7 -Q,4,5,5,6,5,8,4,7,4,6,5,8,3,8,4,9 -J,2,4,4,3,1,8,6,3,6,14,6,11,1,6,1,7 -Z,4,7,6,5,3,7,8,2,10,12,6,8,1,9,6,8 -M,6,9,8,7,8,8,7,2,4,9,7,8,8,6,2,8 -B,5,11,6,8,5,6,8,9,8,7,5,7,2,8,9,10 -U,3,6,5,4,3,7,9,6,6,5,9,9,3,9,1,8 -X,3,7,4,5,2,7,7,4,4,7,6,8,2,8,4,8 -L,4,11,4,8,3,0,2,4,6,1,0,7,0,8,0,8 -D,3,8,4,6,4,6,7,9,6,7,7,5,3,8,3,8 -Y,3,7,5,5,2,7,11,1,3,8,11,8,1,10,0,8 -B,4,8,6,7,7,8,7,5,5,7,6,8,6,9,8,4 -L,4,10,4,5,2,10,3,2,5,12,3,11,2,9,4,10 -S,4,4,4,6,2,8,8,5,9,5,6,6,0,8,9,7 -R,5,10,6,7,7,8,7,7,4,8,5,7,4,7,7,10 -O,3,8,5,6,3,7,8,9,5,7,7,6,3,8,3,8 -L,4,8,6,7,5,7,7,4,5,6,7,9,4,8,8,8 -Q,3,6,4,5,3,8,8,7,5,6,6,9,2,8,4,8 -Y,5,8,5,6,3,6,9,1,8,8,9,4,1,11,4,5 -Y,4,5,5,4,2,4,10,1,8,10,10,5,4,11,4,3 -B,1,0,1,0,1,7,8,6,4,7,6,7,1,8,6,9 -F,4,7,5,5,3,4,12,2,5,13,7,5,1,10,1,7 -L,6,12,6,6,4,9,4,3,4,12,7,11,3,10,5,11 -I,0,3,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -J,4,10,5,8,2,6,8,2,7,15,7,9,1,6,1,7 -R,2,3,4,2,2,8,8,3,5,10,4,7,2,7,3,9 -F,5,9,8,6,4,6,11,3,6,14,6,4,2,10,2,7 -X,4,7,6,5,3,5,8,1,8,10,10,9,2,9,3,6 -D,5,11,6,8,7,9,8,6,5,9,5,4,5,8,4,10 -G,4,6,5,4,3,7,7,8,7,6,6,11,2,9,4,9 -B,4,7,4,5,3,6,7,8,6,7,6,7,2,8,9,10 -T,7,9,7,7,5,5,12,4,6,11,9,4,2,12,2,4 -G,3,4,4,3,2,6,7,5,5,9,7,10,2,8,4,9 -X,4,11,5,8,2,7,7,4,4,7,6,8,3,8,4,8 -I,2,8,5,6,5,9,6,3,5,8,5,5,5,8,5,5 -P,5,10,5,7,3,5,9,10,5,8,6,5,2,9,4,8 -G,5,7,6,5,3,7,6,7,7,10,6,11,2,10,4,9 -D,4,10,5,8,6,7,7,6,6,6,5,5,3,8,3,7 -A,4,11,6,8,3,9,3,3,3,8,1,9,3,6,3,9 -J,3,6,2,9,2,9,8,3,3,12,4,5,2,8,5,10 -K,6,10,8,8,9,6,5,5,4,6,6,8,4,5,9,10 -E,4,7,6,5,6,8,8,3,5,5,7,10,5,12,8,9 -Z,6,9,8,7,4,8,6,3,11,12,5,10,1,8,6,8 -G,4,9,5,6,7,8,7,5,2,6,6,8,8,8,7,12 -T,3,5,4,3,2,5,12,2,8,11,9,4,1,10,2,5 -E,3,7,4,5,4,8,7,2,6,11,6,8,3,8,4,10 -M,3,4,6,3,3,7,6,3,4,9,7,8,7,5,1,8 -V,4,9,6,7,7,7,8,3,2,7,8,8,8,9,6,7 -O,2,1,2,1,1,7,7,6,4,7,5,8,2,8,2,7 -Y,7,10,7,8,4,2,10,2,6,10,12,7,2,11,2,6 -D,4,7,5,5,8,9,8,4,5,7,6,6,4,6,8,7 -V,4,5,5,3,2,4,12,2,3,9,11,7,4,10,1,7 -D,5,10,6,8,6,6,8,9,8,7,6,5,2,8,3,7 -S,3,5,5,3,2,8,7,3,8,11,5,7,1,9,4,8 -P,4,7,5,5,2,7,10,3,5,14,5,3,0,10,3,8 -K,2,1,2,2,0,4,7,8,1,7,6,11,3,8,2,11 -I,3,9,5,7,5,12,5,1,6,8,4,5,1,8,5,10 -I,6,14,6,8,3,8,7,2,5,13,4,5,2,8,6,10 -H,5,6,8,4,4,6,7,3,6,10,8,10,3,8,3,7 -O,2,3,3,2,1,8,7,6,4,9,6,8,2,8,2,8 -G,5,11,6,8,4,6,6,7,8,11,6,13,2,9,4,8 -O,3,9,4,7,4,7,7,8,4,7,6,9,3,8,3,8 -P,2,1,2,2,1,5,11,4,3,10,8,3,0,9,3,7 -Z,2,2,3,3,2,7,7,5,9,6,6,8,2,8,7,8 -E,5,8,7,7,7,7,9,5,5,7,7,10,5,9,9,10 -Q,3,7,4,5,4,8,5,7,3,6,7,8,3,7,6,9 -V,7,9,9,8,10,7,8,5,6,8,6,8,7,7,8,8 -X,4,5,5,4,3,8,7,3,9,6,6,8,2,8,6,9 -P,4,5,4,7,2,3,13,8,1,11,6,3,1,10,4,8 -E,3,6,4,4,4,8,7,6,2,7,6,11,3,8,7,10 -F,4,6,6,7,7,8,9,5,5,7,5,8,5,8,8,6 -L,3,7,3,5,1,0,0,6,6,0,1,5,0,8,0,8 -W,7,9,8,5,4,7,8,3,4,6,9,6,9,11,3,5 -I,1,1,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -E,3,7,5,5,5,5,7,3,6,7,6,12,2,10,8,6 -Y,4,8,5,6,2,5,10,2,2,8,12,8,2,11,0,8 -O,3,7,4,5,3,7,7,8,5,7,7,8,3,8,3,8 -X,5,8,8,6,4,5,8,2,8,11,10,10,3,8,3,6 -V,3,8,5,6,1,6,8,4,3,7,14,8,3,10,0,8 -W,4,7,6,5,9,8,7,5,2,7,7,8,10,10,3,8 -R,3,7,5,5,3,8,8,5,5,8,5,7,3,7,5,10 -J,2,3,4,2,1,9,6,3,5,14,6,10,0,7,0,8 -Y,6,8,6,6,3,4,10,1,8,11,10,6,2,11,4,3 -O,6,10,7,8,7,8,7,9,4,7,6,8,3,8,3,7 -P,2,1,2,3,2,5,9,4,4,9,8,5,1,10,3,7 -H,1,0,2,1,0,7,7,11,1,7,6,8,3,8,0,8 -U,9,10,9,8,4,3,8,6,8,12,11,10,3,9,2,6 -T,1,6,2,4,1,7,13,0,4,7,10,8,0,8,0,8 -Q,3,5,3,6,3,8,8,5,3,8,8,10,3,9,6,8 -R,3,4,5,3,3,8,8,3,5,9,4,7,2,6,4,10 -N,3,8,4,6,4,7,7,12,1,6,6,8,5,8,0,8 -U,5,6,6,6,6,8,6,5,4,6,6,8,4,8,1,7 -O,2,1,3,2,1,7,7,7,6,7,6,8,2,8,3,8 -E,2,4,4,3,2,6,8,2,8,11,7,9,2,8,4,8 -P,7,11,7,6,4,8,9,5,3,11,5,4,4,11,6,5 -L,4,8,6,6,7,8,7,3,5,7,7,9,7,9,6,6 -S,7,10,8,8,6,7,8,3,6,10,5,7,2,8,5,8 -Y,2,3,4,4,0,7,10,1,3,7,12,8,1,11,0,8 -W,6,10,8,8,9,7,7,6,2,7,8,8,6,8,4,8 -Y,1,1,3,2,1,5,10,1,6,9,11,9,1,11,2,8 -Y,3,5,5,7,1,7,10,1,3,7,12,8,1,11,0,8 -E,2,4,3,3,2,7,7,2,7,11,7,9,2,8,4,8 -F,4,10,6,7,3,4,13,4,4,13,8,3,1,10,2,5 -D,5,9,5,4,3,8,6,4,6,8,5,7,5,9,5,7 -E,2,3,2,2,2,7,7,5,7,7,6,9,2,8,5,10 -K,2,3,4,2,2,6,7,2,6,10,8,11,3,8,2,8 -F,2,4,3,3,2,5,10,4,5,10,9,5,1,10,3,6 -Z,4,4,5,6,2,7,7,4,15,9,6,8,0,8,8,8 -B,5,8,7,6,5,9,8,3,7,10,4,5,2,8,6,10 -T,4,10,6,8,8,8,7,5,6,7,6,8,7,6,7,7 -H,6,6,6,8,3,7,8,15,0,7,5,8,3,8,0,8 -H,3,8,4,6,4,7,7,13,1,7,6,8,3,8,0,8 -U,5,8,5,6,2,4,9,5,7,12,11,8,3,9,1,6 -P,7,8,9,10,11,8,10,2,4,7,9,6,6,9,7,5 -Y,4,4,6,6,7,9,4,5,3,7,7,8,5,9,4,8 -R,6,9,6,4,4,8,7,3,5,9,4,8,6,7,6,8 -J,3,11,4,9,4,10,7,1,7,11,3,7,0,7,1,7 -M,6,8,8,7,9,7,9,4,3,7,5,8,12,8,5,7 -J,3,8,5,6,2,7,8,1,6,14,5,8,1,7,0,7 -V,4,5,5,3,2,4,12,2,3,9,11,7,4,11,1,7 -B,1,3,3,2,2,8,8,2,5,10,6,6,2,8,4,8 -A,3,11,5,8,4,8,5,3,0,7,1,8,2,7,3,8 -B,3,7,5,5,7,9,8,4,3,6,7,7,5,11,7,7 -W,5,4,7,7,4,8,8,4,2,7,8,8,9,9,0,8 -U,3,2,4,3,2,6,8,6,7,7,9,9,3,9,1,8 -K,2,1,3,1,2,6,7,4,8,7,6,10,3,8,5,8 -E,3,8,5,6,5,7,7,4,8,7,7,8,3,8,5,10 -I,1,4,2,3,1,7,7,0,7,13,6,8,0,8,1,8 -K,6,11,9,8,5,8,8,2,7,10,4,8,3,8,3,9 -A,4,10,7,8,5,12,3,2,2,9,2,9,2,6,2,8 -K,4,11,6,8,5,5,6,5,8,6,7,12,3,8,6,10 -U,4,5,5,7,2,7,5,14,5,7,14,8,3,9,0,8 -R,3,5,6,4,3,9,8,4,6,9,5,6,3,7,4,9 -E,3,9,4,6,4,7,7,6,9,7,7,9,3,8,6,9 -Y,6,7,6,5,4,5,9,1,8,9,9,5,2,9,4,4 -L,4,11,6,8,4,5,3,3,9,6,1,8,1,6,3,6 -R,5,5,6,8,4,5,10,9,3,7,5,8,3,8,6,11 -J,4,11,5,8,2,8,6,3,7,15,5,9,1,6,1,7 -V,2,7,4,5,2,7,11,2,3,6,11,9,2,10,1,8 -F,1,0,1,0,0,3,12,4,2,11,8,6,0,8,2,7 -K,2,4,4,3,2,7,7,2,6,10,5,9,4,7,2,8 -K,2,1,3,2,2,6,7,4,7,7,6,10,3,8,5,9 -M,5,8,7,6,6,8,6,6,5,7,7,8,8,5,2,8 -X,4,8,5,6,3,7,7,4,4,7,6,8,3,8,4,8 -Z,2,6,4,4,2,8,7,2,9,11,5,9,1,8,5,8 -H,7,10,10,7,8,7,8,2,6,10,7,8,5,9,4,8 -N,3,8,4,6,4,7,7,12,1,6,6,8,5,8,0,8 -U,9,13,8,7,4,7,5,6,7,3,9,7,5,9,3,6 -L,5,10,6,8,3,2,2,5,8,1,0,6,0,7,1,6 -U,6,6,6,4,3,3,9,5,7,10,10,10,3,9,2,6 -R,4,3,4,4,2,6,9,8,4,6,5,8,2,8,5,10 -B,5,9,8,8,10,7,7,5,4,7,6,8,7,10,9,5 -K,4,8,6,6,3,4,8,3,7,11,11,11,3,8,4,5 -U,4,7,5,5,2,7,4,13,5,7,15,8,3,9,0,8 -F,5,10,7,8,5,6,11,1,6,13,7,5,1,10,2,7 -F,2,5,4,4,2,4,12,4,4,13,8,5,1,10,1,7 -O,2,0,2,1,1,7,6,7,5,7,6,8,2,8,3,8 -L,6,8,7,7,6,8,6,4,5,7,7,8,3,8,8,10 -L,1,0,1,0,0,2,1,6,4,0,3,4,0,8,0,8 -W,6,9,6,6,6,5,10,3,3,9,7,7,6,11,2,7 -W,9,10,9,7,6,2,10,2,4,11,11,9,7,10,1,7 -Y,6,9,8,6,6,8,8,6,5,5,8,8,3,8,9,6 -L,3,5,5,5,4,8,5,5,5,7,7,8,2,8,8,11 -O,5,9,6,6,5,7,7,8,4,7,6,9,3,8,4,7 -G,7,10,5,5,4,7,6,3,2,8,6,8,4,9,9,8 -E,4,11,4,8,3,3,7,6,10,7,6,14,0,8,8,7 -F,3,8,6,6,6,8,7,1,4,10,6,7,5,9,4,5 -G,3,4,4,3,2,6,7,4,4,9,7,9,2,8,5,10 -P,2,4,4,3,2,7,9,4,3,11,4,4,1,10,2,8 -C,3,5,5,3,2,4,8,5,7,12,9,11,1,9,3,7 -V,6,9,5,7,4,3,11,2,2,9,10,8,3,11,1,7 -M,4,10,5,8,6,7,6,10,0,7,8,8,7,5,0,8 -V,2,3,3,2,1,7,12,2,2,7,11,8,2,10,1,8 -R,4,8,5,6,5,8,5,7,4,7,6,8,4,7,6,10 -B,4,7,6,5,4,9,6,4,6,10,5,6,2,8,6,10 -K,5,9,7,7,8,7,7,3,4,6,6,9,7,7,8,7 -H,7,11,7,6,5,7,7,3,4,9,8,8,7,10,6,8 -A,2,7,4,5,2,12,3,4,3,12,2,9,2,6,3,9 -G,6,11,8,8,5,5,7,5,5,5,7,7,3,6,4,7 -L,4,9,6,7,3,4,2,8,7,1,2,3,1,6,1,6 -R,2,6,2,4,2,5,10,7,3,7,4,9,2,6,5,11 -T,3,10,4,7,1,7,14,0,6,7,11,8,0,8,0,8 -C,2,1,3,2,1,7,8,7,6,9,7,11,1,9,3,10 -Y,6,9,6,7,4,3,9,1,6,10,11,7,1,11,3,5 -M,5,8,8,6,5,10,5,3,5,9,4,7,8,6,2,9 -K,2,1,2,2,1,6,7,4,8,7,6,11,3,8,5,9 -F,3,6,4,4,2,5,11,1,5,13,7,5,1,10,1,7 -C,1,1,2,1,0,6,7,6,9,7,6,15,0,8,4,10 -Q,1,0,1,0,0,8,7,6,2,6,6,9,2,8,2,8 -Q,7,13,6,7,5,11,4,4,6,11,4,8,4,8,8,11 -M,4,5,4,7,4,7,7,12,2,7,9,8,8,5,0,8 -F,8,12,7,6,4,8,8,2,5,10,5,6,3,8,7,8 -O,4,3,5,4,2,7,8,8,8,7,7,7,3,8,4,8 -X,4,8,6,6,3,9,7,1,8,10,3,7,2,8,3,8 -Z,3,7,5,5,2,8,7,2,10,11,5,9,1,8,6,9 -H,3,4,4,6,2,7,6,15,2,7,8,8,3,8,0,8 -C,6,9,5,4,3,8,7,4,3,9,8,10,4,8,7,11 -G,7,10,7,8,5,6,6,7,7,10,7,11,2,9,5,9 -W,5,7,7,5,3,7,8,4,1,6,8,8,8,9,0,8 -N,4,6,6,4,3,10,7,3,5,10,2,5,5,9,1,8 -G,4,10,6,8,3,7,6,8,8,6,6,9,2,8,6,11 -L,2,7,2,5,1,0,2,5,6,0,0,7,0,8,0,8 -X,4,8,5,6,4,7,7,3,8,5,6,8,3,8,6,8 -O,5,10,6,8,5,7,7,8,6,7,6,8,3,7,4,8 -L,2,0,2,1,0,2,0,6,4,0,3,4,0,8,0,8 -I,0,7,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -Q,3,3,4,5,4,8,7,7,3,6,5,9,3,8,5,9 -L,1,3,2,1,1,6,5,1,7,8,3,10,0,7,2,8 -U,5,11,7,9,5,6,8,5,7,6,8,9,3,9,1,8 -M,5,11,6,9,8,7,10,6,3,7,6,8,8,10,7,8 -P,9,13,9,7,6,8,9,4,4,12,4,4,5,10,6,6 -H,3,7,4,4,2,7,6,14,1,7,7,8,3,8,0,8 -A,1,0,2,0,0,8,3,2,0,7,2,8,2,6,1,8 -X,7,10,10,8,6,4,9,2,8,10,11,10,3,9,3,5 -A,2,4,4,3,2,7,2,2,1,6,2,8,2,7,3,6 -X,7,10,10,8,5,6,7,1,9,10,8,9,3,8,4,7 -B,4,9,5,7,4,6,8,9,7,7,5,7,2,8,9,10 -G,10,14,8,8,5,8,8,5,4,9,6,6,4,9,9,8 -H,4,6,6,4,6,8,8,4,3,6,6,7,7,9,7,8 -W,8,9,8,6,7,3,10,2,3,10,9,8,7,11,2,6 -P,8,11,8,6,5,9,8,4,4,12,4,4,5,10,6,7 -F,2,3,3,2,1,8,9,2,6,13,5,4,1,9,1,8 -L,2,0,2,1,0,2,1,6,5,0,2,4,0,8,0,8 -P,2,6,3,4,2,5,10,9,4,9,6,5,2,9,3,8 -B,4,11,4,8,4,6,7,10,7,7,6,7,2,8,9,10 -B,5,9,7,7,6,8,8,4,7,10,5,6,2,8,6,10 -Z,7,10,9,7,6,7,8,2,9,12,6,8,1,8,6,8 -C,2,3,2,2,1,5,8,5,6,11,9,11,1,9,3,8 -R,1,0,2,1,1,6,10,7,2,7,5,8,2,7,4,9 -I,1,3,2,2,0,7,7,1,7,13,6,8,0,8,1,8 -V,3,7,5,5,2,8,9,4,2,6,13,8,3,10,0,8 -H,7,10,7,5,5,6,8,4,5,9,9,9,7,11,6,7 -Z,2,1,3,2,2,7,7,5,9,6,6,8,1,8,7,8 -J,1,4,3,3,1,8,6,3,4,14,6,11,1,7,0,7 -U,2,3,3,2,1,7,8,6,6,7,9,8,3,10,1,8 -J,4,9,6,7,3,7,6,4,6,15,7,11,1,6,1,7 -L,4,9,4,7,2,0,1,4,6,1,0,7,0,8,0,8 -E,6,10,4,5,3,7,9,5,5,10,6,9,3,8,6,10 -U,3,5,4,3,2,4,8,5,7,10,9,9,3,9,2,6 -T,4,6,4,4,2,5,12,3,6,12,9,5,2,11,1,5 -M,8,11,12,8,8,5,7,3,5,10,10,10,12,6,4,8 -I,4,10,5,8,3,8,6,0,8,13,6,9,1,6,3,8 -A,3,3,5,4,2,8,2,2,2,6,2,8,2,7,2,7 -V,7,11,6,6,3,7,10,6,4,10,9,5,5,12,4,9 -J,2,5,4,4,2,8,6,3,5,14,6,11,1,6,1,7 -S,4,5,5,5,5,9,8,4,6,6,8,9,4,11,7,10 -T,3,10,5,7,2,9,13,0,6,6,10,8,0,8,0,8 -K,8,12,7,6,3,6,8,2,7,9,6,8,5,7,3,7 -Z,5,10,6,8,4,8,7,6,12,7,6,7,1,8,8,8 -T,7,9,8,8,9,7,9,5,8,7,7,8,5,10,11,7 -R,5,10,7,7,6,6,7,5,6,6,5,7,3,7,5,8 -W,4,9,6,7,5,9,10,2,2,5,9,7,8,12,1,7 -F,6,12,5,7,4,7,10,3,5,11,6,4,3,10,7,6 -L,4,9,4,7,1,0,1,6,6,0,0,6,0,8,0,8 -L,2,1,3,2,1,4,4,3,8,2,1,7,0,7,1,6 -H,6,10,9,8,7,9,7,7,7,7,6,5,3,8,3,6 -Y,4,11,5,8,2,6,10,1,3,7,12,8,1,11,0,8 -M,4,8,6,6,7,7,6,5,5,7,7,10,10,5,2,8 -M,7,9,10,7,8,6,7,3,5,9,8,9,10,7,3,8 -B,3,7,5,5,4,8,8,6,6,7,6,5,2,8,7,10 -I,3,9,4,7,2,7,9,0,8,14,6,5,0,9,2,7 -N,6,9,8,5,3,8,7,3,4,13,4,8,5,8,0,7 -Y,4,6,4,4,2,5,9,2,8,9,10,5,1,11,4,4 -K,5,9,6,7,2,4,7,9,2,7,6,12,4,8,3,11 -B,6,9,8,6,6,11,5,2,7,11,3,7,4,7,5,11 -T,2,4,3,3,1,5,13,3,6,11,9,4,1,11,1,5 -F,4,7,6,5,2,6,11,2,6,13,7,4,1,10,2,7 -Q,6,7,8,6,6,7,4,4,5,7,4,8,4,5,6,7 -A,7,11,7,6,4,10,1,4,2,11,6,14,4,5,5,11 -X,4,9,7,7,5,8,8,3,9,5,6,5,5,9,8,8 -D,6,9,6,4,3,8,5,4,5,9,4,7,4,7,5,10 -B,5,11,7,8,6,9,8,4,7,10,4,6,2,8,6,10 -L,4,9,5,8,5,8,7,3,6,6,7,9,3,8,7,8 -E,5,12,4,6,3,7,7,4,5,10,6,8,3,9,8,9 -B,2,7,3,5,2,6,7,9,6,7,6,7,2,8,8,9 -S,5,8,6,6,4,9,8,4,8,10,2,7,2,7,4,10 -R,2,4,4,3,2,8,7,3,4,9,4,7,2,7,3,10 -T,5,7,5,5,3,7,10,2,8,11,9,4,1,11,3,5 -R,2,4,3,3,3,7,8,5,5,7,5,7,2,6,4,8 -X,4,9,6,7,5,8,8,3,8,5,6,5,4,10,8,7 -B,1,3,3,2,2,8,7,2,4,10,5,7,2,8,3,9 -F,1,1,1,1,0,3,12,4,3,11,9,6,0,8,2,7 -P,5,4,6,6,7,8,8,3,3,6,8,7,5,10,5,5 -K,6,7,8,5,4,4,8,3,7,11,10,11,3,8,3,6 -B,5,8,7,6,5,10,6,3,7,10,4,7,2,8,5,11 -Q,5,11,5,6,4,9,5,4,7,11,4,8,3,8,8,11 -O,3,7,4,5,3,8,7,6,4,9,5,8,3,8,3,8 -K,4,5,4,7,2,3,8,8,2,7,4,11,4,8,3,10 -U,5,9,4,4,2,7,6,4,5,4,8,7,5,8,2,7 -K,5,10,7,7,6,10,6,1,6,10,3,8,6,8,5,12 -K,7,9,10,7,6,9,6,2,7,10,3,8,7,8,6,10 -G,2,1,3,1,1,6,7,5,5,6,6,9,2,9,4,8 -O,9,14,6,8,4,7,6,5,6,8,3,8,6,8,6,8 -U,5,10,7,8,4,6,9,6,7,7,10,10,3,9,1,8 -B,4,6,7,5,6,6,9,5,6,8,7,8,6,9,7,7 -X,4,9,7,6,4,11,6,1,8,10,1,6,2,8,3,10 -U,2,7,3,5,2,7,5,12,4,7,11,8,3,9,0,8 -L,5,10,6,8,3,4,4,2,11,3,1,8,0,7,2,5 -Y,3,6,5,4,2,7,10,2,7,6,12,9,2,11,2,8 -H,5,9,7,7,6,6,8,3,6,10,8,8,3,9,3,7 -J,2,8,3,6,2,8,7,2,6,11,5,9,1,6,2,5 -I,2,6,2,4,1,7,8,0,8,14,6,8,0,8,1,7 -H,4,7,5,5,4,8,8,6,7,6,5,9,3,8,3,8 -B,8,14,6,8,5,7,8,5,6,10,5,8,6,6,8,11 -T,4,9,6,7,3,6,12,3,8,8,12,8,1,11,1,7 -R,8,12,8,6,6,7,7,3,5,8,4,8,7,8,7,8 -D,3,4,4,3,2,7,7,6,7,7,6,5,2,8,3,7 -M,4,7,5,5,3,8,7,12,1,7,9,8,8,6,0,8 -X,2,1,2,1,0,8,7,4,4,7,6,8,3,8,4,8 -N,3,5,5,3,2,6,8,2,4,11,7,7,5,8,0,7 -E,5,10,4,5,2,6,9,5,7,10,7,9,1,9,7,8 -W,7,10,7,5,3,3,9,2,1,9,10,8,8,12,1,6 -A,3,11,6,8,4,11,4,2,3,9,2,9,3,7,3,8 -C,5,9,7,6,4,7,7,8,7,7,6,9,4,8,4,9 -I,2,8,2,6,2,7,7,0,7,7,6,8,0,8,3,8 -V,5,6,5,4,3,3,11,2,3,10,11,8,2,11,1,8 -X,7,9,8,8,9,8,8,2,5,7,6,7,4,7,8,8 -A,5,9,6,7,4,7,4,3,1,7,2,8,3,8,3,8 -X,3,4,5,3,2,10,7,2,8,11,3,7,2,8,3,9 -E,7,11,5,6,3,6,9,6,8,10,7,8,1,9,7,8 -B,2,6,3,4,3,7,6,8,5,6,7,7,2,9,7,9 -X,8,15,8,8,5,4,9,3,8,11,11,9,4,9,3,5 -T,5,7,7,6,7,7,8,4,8,7,7,8,3,9,8,7 -S,3,4,4,6,2,8,7,6,9,4,6,7,0,8,9,8 -S,2,4,4,3,2,8,7,2,6,10,5,7,1,9,5,8 -E,1,3,3,2,1,6,8,2,7,11,7,9,1,8,4,9 -B,5,9,7,6,6,7,8,6,6,9,7,5,3,7,8,7 -S,6,12,5,6,3,7,3,3,5,7,2,7,3,6,5,8 -M,4,5,7,3,4,9,6,3,5,9,4,7,10,6,2,8 -J,4,10,6,8,3,8,6,3,7,15,6,10,1,6,1,7 -S,6,11,6,6,3,6,8,5,3,13,9,8,3,10,3,8 -C,5,5,6,8,2,6,7,7,11,6,6,14,1,8,4,9 -P,8,11,7,6,4,6,11,4,5,13,6,3,4,9,6,5 -F,4,7,6,5,5,7,9,6,5,8,6,8,3,10,8,10 -W,4,5,7,4,4,7,11,3,2,6,9,8,8,11,1,8 -L,4,11,6,8,9,7,7,3,5,7,7,10,7,11,8,5 -K,2,1,2,2,1,5,7,8,1,7,6,11,3,8,2,11 -L,3,9,4,6,2,0,2,4,6,1,0,8,0,8,0,8 -U,4,6,5,4,4,8,6,7,5,7,6,9,3,8,4,6 -S,7,11,10,8,11,9,3,4,4,9,6,10,6,6,11,11 -X,4,8,6,6,4,8,8,3,8,6,5,6,4,9,7,8 -N,4,5,5,4,3,7,9,5,5,7,7,7,5,9,2,6 -P,4,7,4,4,2,4,12,8,2,10,6,4,1,10,4,8 -T,3,7,5,5,4,6,7,7,6,7,10,9,3,9,4,8 -T,2,6,3,4,2,7,12,2,7,7,11,8,1,11,1,8 -U,3,5,4,4,3,8,6,4,3,5,7,7,3,9,1,7 -B,8,11,6,6,4,9,6,6,6,11,4,9,6,6,6,10 -M,5,11,6,9,4,7,7,12,2,7,9,8,9,6,0,8 -J,5,11,7,9,4,9,7,2,6,14,3,7,0,7,0,7 -W,4,9,6,7,10,8,6,6,2,7,6,8,8,11,3,9 -Q,5,10,7,9,4,8,5,9,8,5,4,8,3,8,4,8 -W,6,9,9,7,6,8,8,4,1,7,9,8,7,11,0,8 -J,2,9,3,7,1,12,2,10,4,13,6,13,1,6,0,8 -D,5,10,5,5,4,7,7,4,6,8,5,7,5,10,6,6 -O,1,3,2,1,1,8,7,5,3,9,6,8,2,8,2,8 -Q,1,0,2,1,1,8,7,6,4,6,6,9,2,8,3,8 -H,7,10,7,5,3,8,7,4,4,9,7,7,6,10,5,9 -R,2,3,2,2,2,6,8,4,5,7,6,7,2,7,3,9 -T,5,9,6,6,5,6,7,7,7,7,8,8,3,11,6,9 -U,6,6,6,8,3,7,4,15,5,7,14,8,3,9,0,8 -K,3,2,4,4,3,5,7,4,7,6,6,10,3,8,5,9 -L,6,10,5,5,2,6,5,3,7,10,4,13,2,6,6,8 -G,5,9,6,7,3,6,7,7,7,10,8,10,2,9,4,9 -X,2,6,3,4,2,7,7,4,4,7,6,7,2,8,4,8 -Y,2,4,3,3,1,4,11,2,7,11,10,5,1,11,2,5 -I,3,11,3,8,4,7,7,0,8,7,6,8,0,8,3,8 -N,4,7,6,5,3,7,8,3,4,10,6,7,5,8,1,7 -Y,4,7,6,10,10,8,5,4,2,8,8,9,5,9,6,8 -M,2,1,3,1,2,6,6,6,4,7,7,10,6,5,2,9 -E,2,1,3,2,2,7,8,5,7,7,6,9,2,8,5,10 -M,4,4,6,3,3,7,6,3,4,9,7,8,7,5,2,8 -A,3,5,5,4,2,6,3,2,2,5,2,7,3,4,3,8 -R,5,9,7,7,4,10,7,3,6,11,2,6,3,7,4,10 -H,9,12,9,7,6,10,6,4,5,11,2,7,6,7,5,8 -I,1,6,0,8,1,7,7,4,4,7,6,8,0,8,0,8 -A,2,4,3,3,1,11,3,3,2,11,2,9,2,6,2,9 -Z,4,9,5,6,5,7,7,5,9,7,6,8,1,8,7,8 -S,4,9,5,6,5,7,6,7,6,6,8,10,2,11,9,7 -C,4,7,4,5,3,4,8,5,6,9,8,14,2,7,3,8 -R,6,11,9,8,7,9,8,4,7,9,3,8,4,5,4,11 -D,7,13,6,7,4,10,4,4,5,12,2,8,5,6,4,9 -L,4,10,4,8,1,0,1,6,6,0,0,6,0,8,0,8 -V,3,7,5,5,1,7,8,4,2,7,14,8,3,10,0,8 -P,8,9,6,4,3,9,7,5,5,13,3,5,5,9,4,8 -G,2,6,3,4,2,7,6,6,6,7,3,10,1,8,4,10 -H,5,10,5,7,3,7,10,15,2,7,3,8,3,8,0,8 -U,7,11,7,8,5,4,8,5,8,10,9,9,3,9,2,6 -Z,3,5,4,7,2,7,7,4,13,10,6,8,0,8,8,8 -S,5,11,6,9,6,8,7,8,5,7,6,7,2,8,9,8 -I,4,11,5,8,3,7,7,0,8,14,6,8,0,8,1,8 -C,6,11,8,8,6,7,6,9,6,8,6,11,4,9,4,8 -C,4,9,5,7,2,5,7,7,10,7,6,14,1,8,4,9 -X,3,6,5,4,3,8,7,4,9,6,6,6,3,8,6,7 -N,6,11,9,9,5,12,7,4,5,10,0,4,6,8,2,8 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -O,3,5,4,3,3,7,7,7,5,9,6,8,2,8,3,8 -O,4,6,5,5,4,7,6,4,4,6,3,6,2,7,4,7 -L,2,6,3,4,2,4,3,8,7,1,2,4,1,6,1,6 -V,4,5,5,3,2,4,13,4,3,11,11,6,3,10,1,8 -G,5,9,4,4,2,11,3,2,3,9,2,6,4,7,3,10 -B,3,6,5,5,5,6,8,6,4,7,6,8,6,9,7,8 -N,2,2,3,3,2,7,8,6,4,7,6,7,4,9,2,6 -S,6,13,6,7,3,7,6,3,4,13,7,9,3,9,3,8 -Z,4,6,6,4,4,9,9,5,4,7,5,7,3,8,9,5 -B,3,5,5,3,4,8,7,3,6,9,6,6,2,8,5,9 -I,2,7,3,5,3,9,6,1,4,8,5,5,3,8,5,7 -S,1,0,1,0,0,8,7,3,6,5,6,7,0,8,7,8 -D,7,11,7,6,4,10,4,5,6,12,3,9,5,6,5,10 -O,6,9,7,7,5,7,8,8,6,10,7,9,3,8,3,8 -E,1,0,1,1,1,5,8,5,8,7,6,12,0,8,6,9 -P,3,5,6,4,3,8,10,3,4,12,4,3,1,10,3,8 -U,6,9,7,7,4,4,8,6,8,10,10,9,3,9,2,5 -X,5,5,6,8,2,7,7,5,4,7,6,8,3,8,4,8 -A,3,8,5,6,3,12,2,3,2,11,2,9,2,6,3,9 -Q,5,8,5,9,7,8,7,7,3,8,6,9,3,9,6,7 -Q,2,0,2,1,1,8,7,7,4,6,6,8,2,8,3,8 -G,8,13,7,7,4,7,3,6,2,6,5,4,4,7,5,7 -L,5,9,7,7,4,5,4,2,9,6,2,8,1,6,3,6 -K,6,9,5,4,2,8,8,3,7,8,4,7,5,7,3,7 -X,4,4,6,3,3,7,7,1,8,11,7,9,2,8,3,8 -J,2,8,2,6,1,15,4,3,5,12,1,7,0,8,0,8 -E,2,2,3,3,2,7,8,5,7,7,6,9,2,8,5,10 -W,8,11,8,6,5,5,8,2,4,8,9,7,10,10,2,5 -P,4,9,6,7,3,6,13,5,2,12,5,1,1,10,3,8 -G,6,11,6,8,5,6,6,6,6,10,6,13,4,9,6,8 -N,4,5,5,4,5,7,8,4,3,6,5,8,6,8,4,7 -P,11,15,8,8,4,8,9,7,5,14,4,4,4,10,4,8 -X,3,4,5,3,2,9,6,1,8,10,4,8,2,8,3,9 -Q,4,5,5,6,4,7,9,5,3,7,9,11,3,9,6,8 -I,1,4,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -J,2,4,3,7,1,12,3,9,4,13,5,12,1,6,0,8 -B,5,4,5,6,4,6,7,9,7,7,6,7,2,8,9,10 -D,4,11,4,8,3,5,6,11,8,5,4,5,3,8,4,8 -B,6,11,8,8,8,7,8,6,4,7,5,6,5,7,7,8 -Z,2,1,2,1,1,7,7,5,8,6,6,8,1,8,6,8 -D,2,4,3,3,2,9,6,3,5,10,4,5,2,8,3,8 -B,5,11,7,8,8,8,8,8,6,7,5,5,4,6,9,12 -F,4,7,5,5,5,7,9,5,4,8,6,8,3,10,8,10 -C,3,5,4,4,2,4,8,5,7,11,9,12,1,9,3,7 -N,4,9,5,7,5,7,7,13,1,7,6,8,5,8,0,7 -G,8,10,6,5,3,8,5,4,4,9,4,6,4,7,5,8 -R,7,11,6,6,4,8,8,5,5,9,4,9,7,5,6,11 -W,4,8,6,6,5,6,10,2,2,7,9,8,7,10,1,8 -B,2,6,4,4,3,8,8,5,7,7,6,6,2,8,6,9 -I,1,9,2,7,3,8,7,0,7,7,6,7,0,8,2,7 -X,6,8,7,7,8,6,7,2,5,8,7,10,4,10,8,6 -C,2,2,3,4,2,6,8,7,7,8,8,14,1,9,4,10 -E,2,2,3,3,3,7,7,5,7,7,7,9,2,8,5,10 -X,4,4,6,3,3,6,7,1,8,10,8,8,2,8,3,7 -U,3,6,4,4,1,7,5,13,5,7,14,8,3,9,0,8 -L,1,3,3,2,1,6,5,2,9,7,2,10,0,7,2,8 -M,4,8,4,6,3,8,7,12,1,6,9,8,8,6,0,8 -R,2,6,4,4,4,8,7,3,4,7,6,8,6,8,6,7 -F,4,7,6,5,4,6,10,2,5,13,7,5,2,10,2,7 -Y,4,8,7,6,3,7,10,1,8,6,12,9,3,9,2,8 -G,4,10,5,8,3,7,6,8,8,6,5,10,2,8,6,11 -T,2,3,3,4,1,10,14,1,6,4,11,9,0,8,0,8 -I,1,7,0,5,0,7,7,5,3,7,6,8,0,8,0,8 -X,2,3,4,1,2,6,7,2,8,11,8,8,2,8,3,7 -T,2,8,3,6,1,7,13,0,6,7,11,8,0,8,0,8 -I,4,9,5,7,3,7,8,0,7,13,6,7,0,8,1,7 -T,7,13,6,8,4,7,8,2,7,12,6,7,3,8,5,5 -V,5,9,5,7,2,3,12,4,4,10,12,7,3,10,1,8 -D,6,9,6,5,3,8,6,5,6,10,4,6,4,7,6,10 -U,3,7,4,5,4,8,6,7,5,7,6,8,3,8,4,5 -N,3,6,3,4,3,7,7,11,1,6,6,7,5,9,0,8 -T,4,11,6,8,5,7,11,3,6,7,11,8,2,12,1,8 -D,2,4,3,3,2,9,7,4,5,9,4,5,2,8,2,8 -O,5,9,7,6,4,7,7,9,4,7,6,8,3,8,3,7 -K,8,10,8,5,5,8,7,4,6,11,2,8,6,5,4,8 -W,3,8,5,6,4,6,10,2,3,7,9,8,7,11,0,8 -Q,4,7,5,6,2,8,8,7,6,5,8,9,3,7,5,10 -W,3,4,5,3,3,7,11,2,2,6,9,8,6,11,0,8 -N,8,12,9,6,4,10,5,3,4,13,2,7,5,7,0,7 -C,2,1,2,1,1,6,7,6,10,7,6,14,0,8,4,9 -X,3,6,5,4,3,7,7,1,8,10,6,8,2,8,3,7 -B,3,10,4,8,6,6,7,8,5,7,6,7,2,8,7,9 -I,4,9,4,4,2,8,8,2,4,12,5,6,1,10,5,11 -K,5,10,8,8,9,6,6,4,4,6,5,9,8,7,8,8 -L,4,8,5,6,3,4,5,1,9,7,2,11,0,7,3,7 -V,3,9,4,7,3,9,9,3,1,6,12,8,3,10,1,8 -M,4,4,5,2,3,8,6,6,4,6,7,8,8,6,2,7 -V,5,10,5,8,4,3,11,2,3,9,11,8,2,11,1,8 -T,7,9,8,8,8,6,8,3,9,8,7,9,3,8,8,6 -C,2,5,3,3,1,4,8,4,7,11,9,12,1,9,2,7 -L,2,5,3,3,1,3,4,3,8,2,1,7,0,7,1,6 -G,4,5,5,4,3,7,6,6,6,6,6,10,2,9,4,8 -Z,7,7,5,11,4,7,8,5,3,11,7,7,2,9,10,6 -S,5,7,6,5,3,8,8,4,9,11,3,8,2,6,4,10 -V,5,9,5,7,3,4,12,1,2,8,10,7,3,10,1,7 -X,5,6,6,5,6,6,7,2,5,8,7,10,3,8,7,8 -Y,6,11,10,8,5,6,10,2,8,6,12,9,5,10,4,7 -V,3,7,5,5,3,8,12,2,3,5,10,9,4,12,3,7 -M,5,11,6,8,4,8,7,12,2,6,9,8,9,6,0,8 -T,3,11,5,8,1,8,15,0,6,7,11,8,0,8,0,8 -C,4,7,5,5,4,7,7,8,5,6,7,13,4,7,4,8 -B,5,10,7,8,7,9,7,3,5,9,5,6,2,8,5,9 -M,4,4,6,3,4,6,6,3,4,10,9,9,7,6,2,9 -N,6,9,8,6,6,6,7,8,6,7,5,7,3,8,3,9 -M,5,5,6,4,4,8,6,6,5,7,7,8,8,6,2,7 -N,7,9,10,6,5,4,10,3,4,10,9,9,7,7,2,7 -L,7,15,7,8,4,7,5,4,5,12,9,11,3,9,6,9 -J,5,6,6,7,5,7,7,4,7,7,6,7,3,8,8,8 -Z,3,7,4,5,2,7,7,4,13,9,6,8,0,8,8,8 -G,2,1,2,1,1,8,6,6,6,6,5,9,1,7,5,10 -E,7,10,5,5,4,7,8,4,4,10,5,9,3,8,9,11 -O,3,6,4,4,2,7,7,7,5,10,6,9,3,8,3,8 -Q,8,12,7,7,4,8,5,4,9,10,5,9,3,7,9,10 -V,7,10,6,6,3,9,9,6,4,6,10,6,6,12,3,8 -O,5,5,6,7,3,7,7,9,8,7,6,8,3,8,4,8 -Q,5,7,6,7,5,8,8,7,4,6,6,10,3,8,4,8 -P,9,11,7,6,3,8,9,6,4,12,3,5,5,10,4,8 -N,4,8,5,6,4,7,7,12,1,6,6,8,5,8,0,8 -Q,5,7,6,8,6,9,8,6,2,4,8,10,3,9,7,10 -P,6,9,5,4,2,6,10,5,3,11,5,5,5,9,4,8 -W,3,2,5,3,3,5,11,3,2,8,9,9,8,13,1,8 -B,4,7,5,5,4,9,7,5,8,7,6,5,2,8,6,9 -X,7,10,8,5,4,6,8,2,8,11,6,9,4,7,4,6 -O,4,7,5,5,3,7,7,7,6,7,6,7,2,8,3,8 -U,5,11,5,8,2,8,5,14,5,6,14,8,3,9,0,8 -L,4,10,5,7,3,5,3,7,7,2,2,4,1,6,1,5 -Y,2,6,3,4,0,9,10,2,2,6,12,8,1,11,0,8 -J,5,11,6,8,3,8,9,1,7,14,5,6,0,9,1,8 -H,7,9,10,6,8,11,6,3,7,10,2,6,5,7,4,10 -H,1,0,1,0,0,7,8,10,1,7,5,8,2,8,0,8 -I,2,4,3,3,1,7,6,0,7,13,7,10,0,8,1,8 -V,7,10,7,8,4,4,11,2,4,8,11,7,5,11,1,7 -S,6,9,5,5,2,8,3,4,4,7,2,7,3,6,5,8 -B,4,2,4,3,4,8,7,5,6,7,6,6,5,8,6,10 -P,3,6,5,8,7,8,9,5,0,8,7,6,5,10,5,8 -U,4,7,4,5,3,7,5,13,5,7,11,8,3,9,0,8 -V,3,6,5,4,2,7,12,2,3,6,11,8,2,10,1,8 -V,5,8,5,6,2,2,11,6,4,13,12,8,2,10,1,7 -V,5,10,5,8,3,3,11,2,3,9,11,8,3,11,1,7 -A,3,8,5,6,3,12,3,3,2,11,1,9,2,6,2,9 -Z,6,9,8,7,6,9,9,5,4,6,5,7,3,9,10,5 -D,7,14,7,8,4,10,4,5,5,13,3,10,5,7,4,9 -Z,5,7,4,10,4,6,9,5,3,12,7,6,3,9,10,6 -M,5,6,7,5,8,7,7,4,4,7,6,8,10,8,5,6 -O,7,10,5,5,3,7,8,5,5,9,5,6,4,9,5,8 -H,4,7,6,5,4,10,5,4,6,10,2,7,3,8,3,9 -X,5,6,7,8,2,7,7,5,4,7,6,8,3,8,4,8 -Y,7,9,8,6,5,5,9,1,8,9,10,5,3,11,4,4 -W,2,1,4,2,2,9,11,3,2,5,9,8,5,11,0,8 -N,4,6,5,4,3,8,7,8,6,7,4,5,3,7,3,7 -K,7,9,10,7,5,5,9,2,8,10,9,10,3,8,4,5 -T,3,10,4,7,1,7,14,0,6,7,11,8,0,8,0,8 -V,2,7,4,5,2,9,9,3,1,5,12,8,2,11,0,8 -Y,4,6,4,4,2,4,9,3,6,10,11,6,2,11,2,5 -Q,5,10,6,9,6,8,7,7,5,6,6,9,3,8,5,8 -V,4,6,4,4,2,3,12,4,3,10,11,7,2,10,1,8 -P,2,1,3,1,1,5,9,4,4,9,7,4,1,9,3,7 -F,4,7,6,5,3,6,10,1,6,13,7,5,1,10,2,7 -N,4,8,6,6,5,6,8,9,5,8,6,6,4,8,3,9 -A,4,9,6,7,4,12,3,3,2,10,1,9,2,7,3,8 -Q,6,11,6,6,4,9,5,4,6,10,5,8,3,9,8,10 -X,2,3,4,2,1,7,7,1,8,10,6,8,2,8,3,8 -Z,7,10,9,8,8,9,8,5,4,7,5,7,4,8,9,4 -P,6,10,6,7,3,5,10,10,6,8,5,5,2,10,4,8 -S,7,11,9,8,5,9,6,3,8,11,5,8,2,10,6,9 -S,6,11,6,6,3,6,8,5,3,13,9,8,3,10,3,8 -N,4,5,5,8,3,7,7,14,2,4,6,8,6,8,0,8 -B,4,6,5,4,4,8,8,4,6,10,5,6,3,8,6,10 -S,7,15,5,8,3,8,3,4,4,9,2,8,4,6,5,9 -K,7,11,10,9,7,6,7,2,7,10,7,10,4,8,4,7 -C,2,4,2,2,1,4,8,5,7,11,9,12,1,9,3,8 -C,4,8,5,6,3,5,8,7,8,9,8,14,1,9,4,9 -C,2,3,3,2,1,4,8,3,6,11,9,12,1,9,2,7 -J,4,10,5,8,3,11,4,5,5,15,3,9,0,7,0,8 -I,4,10,5,8,2,7,6,0,9,14,6,9,0,8,1,8 -C,4,8,5,6,2,6,7,7,10,8,6,13,1,9,4,8 -A,2,7,4,5,2,9,3,2,2,8,1,8,2,6,3,8 -C,6,8,7,6,4,5,8,6,7,12,8,10,3,12,3,6 -P,3,7,3,4,2,4,10,9,3,9,6,5,2,10,3,8 -J,3,4,4,5,3,8,8,4,5,7,6,8,3,8,8,9 -L,5,10,6,7,5,4,4,4,8,2,1,6,1,6,1,5 -K,4,7,6,5,4,4,7,2,6,10,9,11,3,8,3,8 -X,2,3,4,2,2,9,7,2,8,11,3,7,2,7,2,8 -G,1,3,2,2,1,6,7,5,5,9,7,10,2,8,4,10 -U,4,7,6,5,7,8,8,4,4,6,8,8,8,9,5,7 -F,3,7,4,4,1,2,12,5,6,12,10,8,0,8,2,6 -P,4,9,4,6,2,5,11,10,3,10,6,4,1,10,4,8 -V,3,7,5,5,2,9,9,4,1,6,12,8,3,9,1,7 -J,2,7,3,5,2,11,7,0,7,10,3,6,0,8,1,7 -I,3,8,4,6,2,6,8,0,8,14,7,8,0,8,1,7 -N,5,10,5,7,5,7,7,13,1,6,6,8,6,9,1,6 -Q,7,9,7,10,8,8,9,7,2,7,7,11,4,10,8,6 -U,5,11,6,8,2,8,5,14,5,6,14,9,3,9,0,8 -V,4,10,6,7,3,5,9,5,2,8,13,8,3,10,0,8 -G,2,7,3,5,2,7,7,7,5,6,6,9,2,8,5,11 -S,4,6,5,5,5,8,8,4,5,7,7,8,5,9,8,11 -S,6,11,9,8,12,7,5,3,3,8,5,8,4,8,15,8 -F,6,10,5,5,4,8,10,3,5,11,5,4,3,10,7,7 -X,5,10,7,8,4,7,7,1,8,10,6,8,3,8,4,7 -T,6,8,6,6,4,4,13,5,5,11,9,4,2,12,1,5 -T,6,10,6,8,4,5,12,4,6,12,9,4,2,12,2,4 -F,7,14,6,8,3,8,8,3,6,12,4,5,2,8,7,7 -U,3,7,5,5,2,7,8,6,7,6,10,9,3,9,1,7 -A,5,9,7,7,5,8,3,1,2,6,2,7,3,5,4,7 -U,3,7,3,5,1,7,6,13,5,8,13,8,3,9,0,8 -T,4,10,5,7,4,8,10,0,8,6,11,8,0,10,1,8 -R,4,4,4,5,3,5,12,8,4,7,3,9,3,7,6,11 -Q,6,12,6,6,4,10,5,4,6,11,4,8,3,8,8,11 -J,3,6,4,4,1,7,6,3,6,14,7,11,1,6,1,7 -Z,2,6,3,4,1,7,7,3,13,9,6,8,0,8,7,8 -X,4,8,5,7,6,7,8,1,5,7,6,7,3,5,8,7 -B,9,15,9,8,8,8,7,4,5,9,5,7,8,4,10,7 -P,6,7,8,9,10,9,9,3,3,6,9,6,6,10,7,4 -S,3,5,3,3,2,8,7,7,5,8,6,8,2,9,9,8 -I,1,6,0,4,0,7,7,5,3,7,6,8,0,8,0,8 -B,4,9,5,6,6,7,7,6,6,6,6,6,2,8,6,9 -U,7,8,7,6,3,3,10,6,7,13,12,9,3,9,1,7 -H,3,6,4,4,5,9,8,4,3,6,6,7,6,9,6,6 -W,6,7,6,5,5,5,11,3,2,9,8,7,6,12,2,6 -N,9,10,8,5,3,6,10,4,5,4,5,11,6,11,2,7 -C,4,5,6,7,2,5,6,6,11,7,5,12,1,9,4,8 -D,7,13,6,7,5,6,7,5,6,8,5,7,5,10,6,5 -U,6,10,8,8,5,6,9,5,7,6,9,10,6,10,1,7 -Y,5,6,4,9,3,7,8,3,2,7,10,5,4,10,5,6 -Q,4,8,5,9,6,7,8,6,3,8,9,9,4,10,6,7 -H,2,1,2,1,2,8,8,5,5,7,6,8,3,8,2,7 -X,3,8,5,6,4,7,7,3,8,5,6,10,3,7,6,8 -T,5,10,5,7,3,6,11,3,7,11,9,4,2,12,3,4 -N,2,1,3,2,2,7,8,5,4,7,7,6,5,9,2,6 -N,6,8,8,6,4,4,10,4,4,11,11,10,5,8,1,7 -K,12,15,11,8,5,4,8,4,7,10,10,11,6,9,3,6 -L,5,8,6,7,5,8,6,5,5,7,7,9,3,9,8,8 -M,7,9,10,7,7,8,6,3,5,9,7,8,8,5,2,8 -E,1,1,2,2,1,4,7,5,8,7,6,13,0,8,6,9 -K,4,5,7,3,4,3,8,3,7,11,10,11,3,8,3,6 -D,4,7,4,5,2,5,8,10,9,8,7,6,3,8,4,8 -N,6,10,8,7,5,6,10,2,4,9,7,7,5,9,1,8 -B,7,10,9,8,8,10,6,3,7,10,3,7,5,7,6,11 -J,1,3,2,2,1,11,6,1,6,11,3,7,0,7,0,8 -I,0,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -Y,8,10,6,14,5,9,8,4,3,5,11,5,5,10,7,7 -O,7,9,9,8,7,8,4,4,5,9,4,9,4,6,5,7 -C,3,4,4,3,2,6,8,8,8,8,7,12,2,9,4,10 -D,5,11,5,8,3,5,7,11,9,6,6,5,3,8,4,8 -L,2,5,4,4,2,7,4,1,8,8,2,10,0,7,2,8 -A,3,4,5,3,2,10,2,2,1,8,2,9,4,5,2,9 -V,3,4,4,3,2,5,12,2,2,9,10,7,2,11,1,8 -F,2,4,3,3,1,6,10,2,5,13,7,5,1,10,1,7 -X,3,5,5,5,4,8,8,2,5,8,6,8,3,8,7,8 -P,5,8,7,6,4,5,13,6,3,13,6,1,0,10,4,8 -L,3,7,3,5,1,0,1,6,6,0,0,6,0,8,0,8 -R,4,10,5,8,3,5,10,9,3,7,5,8,3,8,6,11 -R,1,0,1,0,0,6,9,7,3,7,4,8,2,6,4,10 -X,2,1,2,1,0,7,7,4,4,7,6,8,3,8,4,8 -G,9,13,8,8,4,8,3,4,3,8,4,5,4,7,5,9 -Q,1,2,2,3,2,8,8,5,2,8,6,8,2,9,2,8 -Z,2,5,4,4,2,7,8,2,9,11,6,8,1,8,6,8 -K,5,9,7,7,5,9,7,2,7,10,3,8,4,9,4,10 -T,5,8,6,7,5,5,7,3,8,8,7,10,3,4,8,5 -J,1,4,3,3,1,9,5,3,6,14,5,10,0,7,0,8 -U,3,8,5,6,3,4,10,7,6,10,10,9,3,9,1,8 -R,2,4,2,3,2,7,7,5,5,6,5,7,2,7,4,8 -Q,3,4,4,5,3,8,8,6,2,5,7,10,3,9,6,10 -O,4,5,6,8,3,6,6,9,8,6,5,6,3,8,4,8 -N,3,4,6,3,2,8,9,3,5,10,4,5,5,9,1,7 -F,5,10,5,7,2,1,12,5,5,12,11,8,0,8,2,5 -M,8,8,11,7,12,8,8,4,4,7,6,7,12,7,8,3 -V,2,7,4,5,2,7,11,3,4,7,11,8,2,10,1,8 -S,3,8,4,6,3,7,7,7,5,7,6,8,2,8,8,7 -C,4,6,5,4,2,4,8,6,9,10,10,12,1,8,3,7 -U,3,6,3,4,1,7,5,13,5,7,13,8,3,9,0,8 -M,6,7,9,6,10,7,6,4,4,7,6,8,12,9,5,5 -A,3,8,5,6,5,8,8,6,4,6,6,8,3,7,6,4 -N,3,5,5,3,2,6,9,2,4,10,7,7,5,8,1,8 -M,5,8,6,6,7,7,9,6,4,6,6,8,9,9,8,10 -S,3,7,4,5,3,7,7,5,7,5,6,10,0,9,8,7 -H,6,11,6,8,3,7,5,15,1,7,9,8,3,8,0,8 -V,4,7,4,5,2,2,12,3,3,11,11,8,2,10,1,8 -M,7,11,8,8,7,7,5,12,1,8,8,8,10,5,2,10 -R,7,13,7,7,6,5,9,3,5,7,4,9,6,7,6,6 -G,3,7,4,5,3,7,7,7,6,7,5,11,1,8,4,10 -O,2,3,3,2,1,8,7,6,4,9,6,9,2,8,3,8 -J,3,7,5,8,5,9,8,4,4,7,6,9,3,7,8,6 -F,4,9,6,7,7,7,9,1,5,9,6,5,3,9,4,3 -D,2,3,2,1,1,7,7,6,6,7,6,5,2,8,2,7 -X,2,3,4,2,2,7,7,3,9,6,6,8,2,8,5,8 -T,2,4,3,2,1,8,11,2,7,6,11,8,1,10,1,8 -M,5,7,5,5,4,7,5,11,0,8,8,8,8,5,1,10 -Q,6,10,8,7,7,8,5,7,4,5,7,10,6,6,8,9 -K,2,6,3,4,1,3,7,7,3,7,7,11,3,8,2,10 -M,5,7,7,6,7,5,8,5,3,6,5,8,9,7,5,7 -E,2,5,4,3,2,6,7,1,8,11,6,9,2,8,4,8 -F,4,8,5,6,5,7,9,6,4,8,5,8,3,11,9,10 -U,10,12,8,6,4,6,5,5,6,3,8,7,5,9,2,6 -H,6,8,9,6,5,8,7,3,6,10,5,7,3,8,3,7 -P,1,1,2,1,0,5,11,7,2,9,6,4,1,9,3,8 -L,9,13,7,7,4,9,2,4,4,12,5,13,2,7,6,9 -F,3,7,4,5,4,6,9,2,6,9,9,6,1,10,4,7 -M,6,11,8,6,5,10,3,4,2,10,2,9,9,1,1,8 -K,6,10,9,8,8,10,5,2,6,9,2,7,8,6,7,12 -W,3,4,4,3,2,5,10,3,2,9,8,7,6,11,1,6 -R,5,4,5,7,3,5,10,9,3,7,5,8,3,8,6,11 -J,1,3,2,2,1,11,6,2,6,11,3,7,0,7,0,8 -G,6,9,6,6,4,6,7,6,6,9,7,12,2,9,4,9 -Z,4,9,5,7,4,9,6,6,10,7,5,6,1,7,8,8 -O,3,2,4,3,3,7,7,7,5,7,6,8,2,8,3,8 -H,2,3,3,2,2,7,8,5,6,7,6,8,3,8,2,8 -W,6,8,6,6,4,5,11,3,3,9,8,7,7,11,2,6 -G,5,9,7,7,5,5,6,7,7,7,5,13,4,9,5,8 -T,3,2,4,4,2,7,12,3,6,7,11,8,2,11,1,7 -M,1,0,2,1,1,7,6,9,0,7,8,8,6,6,0,8 -K,2,3,4,1,2,4,8,2,6,10,10,11,2,8,2,6 -X,3,7,4,5,2,7,7,4,4,7,6,8,3,8,4,8 -P,10,15,8,8,4,7,9,6,3,11,4,5,5,9,4,7 -P,4,6,5,4,3,9,7,2,5,13,4,5,1,10,3,9 -Z,2,3,2,2,2,7,7,5,8,6,6,8,1,8,6,8 -J,2,2,3,4,1,10,6,2,7,12,4,9,1,6,1,7 -N,5,9,7,7,8,9,7,4,4,7,6,6,7,12,7,6 -G,3,4,4,3,2,6,7,5,5,9,7,10,2,8,4,10 -F,6,11,9,8,5,8,9,4,7,13,6,6,5,7,4,6 -M,7,10,10,8,7,5,6,3,5,9,9,9,8,5,2,8 -K,5,10,6,8,2,4,6,9,2,7,7,11,4,7,3,11 -Y,7,9,8,6,4,4,9,1,7,10,11,6,2,11,4,3 -T,5,10,5,5,2,5,11,2,7,12,8,5,2,9,4,3 -N,5,8,7,6,4,7,8,3,4,10,6,7,5,8,1,7 -X,5,11,8,8,4,11,5,2,8,10,0,7,3,8,4,10 -Y,8,6,6,9,4,7,8,4,3,6,11,5,4,11,6,6 -B,4,10,5,8,6,8,6,7,6,6,6,6,2,8,7,9 -V,5,7,7,5,7,6,7,4,2,9,7,8,7,10,5,7 -D,4,9,6,6,8,8,9,5,4,8,7,6,7,10,10,5 -Z,6,10,8,7,5,7,8,3,10,12,7,8,1,9,6,7 -H,5,5,7,7,6,7,5,4,2,7,5,6,5,8,8,8 -L,5,9,7,7,4,5,3,3,9,6,1,9,1,6,3,7 -P,4,9,5,6,2,4,14,8,1,11,6,3,1,10,4,8 -M,4,6,5,8,4,7,7,12,2,7,9,8,9,6,0,8 -X,2,2,3,3,2,8,7,3,8,6,6,8,2,8,5,9 -D,3,7,4,5,3,6,8,9,7,7,6,5,2,8,3,7 -I,2,5,3,4,1,7,7,0,8,13,6,8,0,8,1,8 -V,5,9,5,7,3,4,11,2,4,9,11,7,3,10,1,8 -U,3,8,4,6,2,7,5,14,5,7,13,8,3,9,0,8 -O,3,5,4,3,3,8,7,7,5,9,6,7,2,8,3,8 -H,4,8,4,5,2,7,7,15,1,7,6,8,3,8,0,8 -Y,8,10,8,7,3,4,10,2,8,11,11,5,1,11,3,3 -M,5,7,6,5,7,7,9,6,5,7,6,8,8,8,5,7 -X,6,9,8,8,9,7,7,2,5,7,6,8,4,8,8,8 -D,2,3,3,2,2,9,6,4,5,9,4,5,2,8,2,8 -F,5,11,5,8,2,1,13,5,4,12,11,7,0,8,2,5 -V,1,3,3,2,1,6,11,3,3,8,11,8,2,11,1,8 -J,2,6,3,4,1,12,2,9,4,13,5,13,1,6,0,8 -Y,3,9,4,7,2,6,10,1,3,8,12,8,1,11,0,8 -P,2,7,4,5,3,4,11,5,4,11,8,4,1,10,3,7 -P,7,14,7,8,5,8,9,4,4,12,5,4,4,11,6,6 -H,4,5,6,8,5,9,9,3,1,7,6,7,3,10,8,7 -Q,4,6,4,7,5,8,5,7,4,9,6,8,3,8,4,8 -V,6,11,6,8,3,4,11,3,4,9,11,7,2,10,1,8 -T,4,7,4,5,2,5,11,1,8,11,9,5,0,10,2,4 -K,7,11,10,8,6,4,9,2,8,10,10,10,3,8,4,6 -A,2,1,3,2,1,8,2,2,1,7,2,8,2,7,2,7 -H,7,9,10,7,8,6,8,2,6,10,8,8,4,10,4,7 -L,4,11,4,8,1,0,1,5,6,0,0,7,0,8,0,8 -G,2,3,4,2,2,7,7,6,5,6,6,9,2,9,4,9 -X,3,3,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -M,5,5,7,4,5,8,6,6,5,7,7,8,9,6,3,7 -V,6,9,8,7,9,7,5,5,3,8,7,9,8,9,6,9 -W,1,0,2,0,1,7,8,3,0,7,8,8,5,10,0,8 -Q,3,4,4,5,3,8,7,6,3,8,7,9,2,9,4,9 -O,2,1,2,2,1,8,7,7,5,7,6,8,2,8,3,8 -R,9,13,9,7,6,10,6,4,5,10,2,7,6,7,6,9 -V,5,7,5,5,2,2,11,4,3,11,12,8,2,10,0,8 -N,9,10,7,5,3,9,13,6,5,3,6,10,5,8,2,8 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -N,4,7,7,5,6,7,8,3,4,8,7,8,7,10,5,4 -M,7,11,10,8,11,7,7,5,5,6,7,9,8,6,2,8 -A,5,6,7,5,5,8,8,3,5,7,8,8,5,9,4,6 -B,4,9,6,6,6,8,7,4,5,9,6,6,3,9,5,8 -U,3,6,4,4,4,8,8,6,5,6,7,9,3,8,3,7 -K,2,4,3,3,2,5,7,4,6,6,6,11,3,8,4,10 -Q,1,0,2,1,0,8,7,6,3,6,6,9,2,8,3,8 -F,7,10,6,5,3,5,11,3,4,11,7,4,2,8,6,4 -Q,5,6,7,9,10,9,5,6,2,7,6,8,8,9,4,8 -B,1,0,2,0,1,7,8,6,4,7,6,7,1,8,6,8 -O,4,9,5,7,4,7,6,9,5,7,5,8,3,8,3,8 -S,3,8,4,6,3,8,8,7,7,8,5,6,2,8,9,8 -J,4,6,5,7,4,9,8,5,6,7,5,8,3,9,8,9 -Y,7,11,7,8,4,3,10,2,7,10,12,6,1,11,2,5 -F,5,10,6,8,7,7,6,6,4,8,6,8,6,10,7,11 -Z,5,7,4,10,4,9,5,5,5,11,5,7,3,9,8,10 -T,6,11,6,8,4,5,12,2,8,12,9,4,1,11,2,4 -P,4,6,6,4,4,8,5,7,5,6,5,7,3,8,4,9 -F,4,9,5,7,4,5,11,2,7,11,9,5,1,10,3,5 -Y,4,5,5,3,2,4,11,2,7,11,10,5,1,11,2,5 -F,2,1,3,2,2,6,10,4,5,10,9,5,1,9,3,7 -I,7,14,5,8,3,9,6,6,5,13,3,7,3,8,5,11 -L,3,6,4,4,2,9,3,2,6,9,2,10,1,5,3,9 -M,5,10,6,8,6,8,6,11,1,6,8,8,9,5,2,5 -K,5,11,6,8,5,4,6,7,3,7,7,12,4,8,3,11 -P,1,3,3,2,1,7,8,4,3,11,5,4,1,9,2,8 -Q,4,8,4,9,6,7,10,5,3,6,10,11,3,9,6,8 -Y,7,7,6,10,4,9,7,6,6,4,11,7,5,10,3,7 -V,7,10,7,8,4,4,11,2,4,9,11,7,4,9,1,7 -K,4,7,6,5,4,5,7,5,8,7,6,12,3,8,5,10 -V,4,8,6,6,3,7,11,3,4,6,12,9,2,10,1,8 -B,3,5,4,4,4,7,7,5,6,6,6,6,2,8,7,10 -E,4,10,6,8,8,7,7,3,5,6,7,10,5,10,8,8 -D,5,11,7,8,7,9,8,5,5,10,5,4,4,8,5,9 -M,4,4,8,3,4,7,6,3,4,9,8,9,8,6,2,8 -Y,4,10,6,7,1,7,12,2,3,8,12,8,1,10,0,8 -K,3,7,5,6,5,6,8,3,4,7,4,9,5,3,4,9 -K,3,1,4,1,2,6,7,4,7,7,6,11,2,8,4,10 -L,6,9,5,4,2,6,5,3,7,10,4,12,2,6,6,8 -Q,5,9,6,11,7,8,6,8,4,5,6,9,3,8,6,10 -G,2,0,2,1,1,8,6,5,5,6,5,9,1,8,5,10 -L,1,0,2,1,0,2,1,5,5,0,2,5,0,8,0,8 -Q,3,7,4,6,2,7,5,9,6,5,5,7,3,8,4,8 -M,5,6,6,8,4,8,7,13,2,6,9,8,9,6,0,8 -F,1,3,2,2,1,5,10,4,4,10,8,5,1,9,3,7 -G,5,10,6,7,5,7,7,7,7,6,5,10,1,7,5,11 -J,1,3,2,1,1,10,7,2,4,11,5,9,1,7,0,7 -D,5,8,8,6,6,10,7,4,6,10,3,5,3,8,3,8 -K,5,11,7,8,7,5,6,3,7,6,6,9,4,8,6,9 -V,2,6,4,4,2,7,11,3,3,7,11,8,2,10,1,8 -O,8,11,6,6,3,8,5,4,6,8,3,8,5,7,5,8 -O,4,6,5,4,3,8,7,7,5,10,6,8,3,8,3,8 -W,4,11,7,8,7,4,10,2,3,8,9,9,8,10,1,8 -O,4,6,4,4,3,8,7,7,6,9,5,7,3,8,3,8 -R,3,4,5,3,3,8,8,3,5,9,5,7,3,6,4,10 -O,3,5,4,3,2,8,7,7,4,9,6,8,2,8,3,8 -I,3,9,4,7,3,8,6,0,7,13,6,9,0,7,2,7 -C,4,7,5,5,3,5,8,7,7,8,8,14,1,10,4,10 -J,1,3,2,4,1,11,4,9,3,12,8,13,1,6,0,8 -A,4,10,5,8,4,6,5,3,1,6,1,8,2,7,2,7 -O,4,6,5,4,3,7,8,8,6,8,8,6,3,8,4,8 -D,4,7,6,6,5,5,7,7,7,7,6,7,4,6,5,6 -W,5,10,7,7,6,4,9,5,1,7,9,8,8,10,0,8 -H,1,0,2,0,0,7,8,11,1,7,6,8,2,8,0,8 -Y,2,1,2,1,0,7,9,2,2,6,12,8,1,10,0,8 -U,4,9,5,7,4,5,8,6,7,8,9,10,3,9,1,8 -F,1,0,1,0,0,3,11,4,3,11,9,7,0,8,2,8 -S,3,5,4,3,2,8,8,2,7,10,5,6,1,9,5,8 -G,7,10,8,8,5,5,7,6,6,9,8,9,2,9,5,9 -B,5,11,5,8,4,6,6,10,7,6,7,7,2,8,9,10 -B,6,10,8,7,6,11,5,3,7,11,3,7,3,8,6,12 -M,1,0,2,0,1,8,6,9,0,6,8,8,5,6,0,8 -O,5,9,6,7,5,8,8,8,4,7,7,8,3,8,3,7 -L,3,7,4,5,2,7,4,2,8,7,2,8,1,6,3,8 -M,4,7,6,5,5,7,7,2,4,9,7,9,7,6,2,8 -T,2,1,3,1,0,7,15,1,4,7,11,8,0,8,0,8 -X,8,13,9,7,5,6,8,2,8,11,7,9,4,8,4,6 -B,2,6,4,4,5,8,8,4,2,6,7,7,6,11,7,7 -G,4,7,6,5,7,8,6,4,2,7,6,9,6,8,7,13 -B,5,10,5,5,4,7,8,3,4,9,6,7,6,7,8,6 -H,7,13,8,7,6,8,8,3,5,10,4,8,6,6,5,8 -S,4,6,6,4,5,9,4,4,4,9,6,9,4,7,9,10 -C,7,11,7,8,4,5,8,6,8,12,8,13,3,10,4,6 -U,6,10,5,5,3,5,5,5,5,4,7,8,5,9,2,7 -X,5,8,8,6,4,9,7,1,8,10,4,7,3,9,4,9 -Q,3,6,4,5,2,8,7,8,6,6,5,9,3,8,4,8 -N,10,15,11,8,5,7,7,2,4,13,7,8,6,8,0,7 -E,4,7,5,5,4,8,7,2,7,11,6,8,3,9,4,9 -Z,3,9,4,6,2,7,7,4,13,10,6,8,0,8,8,8 -V,6,9,6,6,3,3,12,3,3,10,11,8,2,10,1,7 -Q,3,6,3,7,4,8,8,6,1,8,7,10,2,9,5,8 -G,6,8,8,7,9,8,7,6,3,7,7,8,7,11,7,9 -D,2,4,4,3,2,9,6,4,6,10,4,6,2,8,3,8 -L,3,9,4,7,1,0,1,6,6,0,0,6,0,8,0,8 -J,3,10,5,8,1,14,1,8,5,14,3,11,0,7,0,8 -I,0,8,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -W,5,9,8,6,7,8,11,2,2,6,8,8,8,14,1,7 -Q,2,3,3,4,3,8,9,5,1,5,7,10,2,9,5,10 -U,9,13,8,8,5,8,5,4,6,6,7,6,6,8,4,6 -O,5,9,5,7,4,7,7,8,5,10,6,7,3,8,4,8 -I,0,7,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -L,2,5,3,3,1,6,4,1,8,7,2,10,0,7,2,8 -X,4,5,7,4,3,6,8,1,9,10,8,8,2,8,3,7 -T,3,5,4,4,2,6,11,2,7,11,9,5,1,11,3,4 -L,5,11,7,8,5,10,4,1,8,10,2,10,0,6,3,10 -A,7,15,7,8,5,10,2,5,2,11,5,12,6,3,6,10 -K,8,15,9,9,6,6,8,3,6,10,9,10,6,11,4,8 -N,4,11,6,8,5,6,9,6,5,7,7,8,6,9,1,7 -E,3,8,5,6,5,7,8,5,8,6,5,9,3,8,5,9 -E,4,8,5,6,3,3,7,6,11,7,7,14,0,8,7,7 -B,4,6,5,4,5,8,6,7,6,6,6,5,3,9,7,9 -N,5,8,8,6,8,8,6,4,4,7,6,7,7,11,7,4 -A,3,8,5,6,3,9,3,1,2,7,2,8,2,6,2,7 -B,4,8,5,6,5,8,8,6,7,7,6,6,2,8,7,10 -W,5,8,8,6,3,4,8,5,2,7,9,8,8,9,0,8 -H,6,11,9,8,9,7,7,6,7,7,6,8,6,8,4,8 -V,2,2,4,3,2,7,12,2,2,6,11,9,2,11,0,7 -B,4,7,6,5,5,10,6,2,5,10,4,7,3,7,5,11 -Y,7,6,6,9,4,9,6,5,5,5,12,6,4,11,4,6 -W,3,6,5,4,7,9,7,5,1,7,6,8,7,10,2,7 -T,6,11,8,8,9,5,8,3,7,7,6,10,5,8,7,8 -G,2,1,3,2,1,7,7,6,5,6,6,10,2,8,4,10 -G,4,6,6,4,5,7,8,5,3,6,6,8,5,7,7,7 -Z,5,7,6,5,3,8,7,2,9,12,5,10,2,9,6,9 -V,4,10,6,8,2,8,8,4,3,6,14,8,3,9,0,8 -P,5,9,5,7,5,5,10,8,3,8,5,5,1,9,6,6 -A,4,11,5,8,4,8,5,3,0,7,1,8,2,6,3,8 -K,4,8,6,6,4,9,7,2,6,10,2,7,4,7,3,10 -B,7,12,6,6,6,8,7,4,5,9,6,8,6,8,8,8 -W,5,5,6,3,4,4,11,3,2,9,9,7,7,12,1,6 -T,2,3,3,5,1,9,14,0,6,5,11,8,0,8,0,8 -Q,2,3,3,4,2,7,8,4,2,8,9,10,2,9,4,8 -Q,4,6,4,8,4,7,9,4,4,8,10,11,3,9,6,8 -O,3,6,4,4,3,7,8,8,7,7,8,7,2,8,4,8 -J,2,8,2,6,1,14,3,5,4,13,3,10,0,7,0,8 -M,11,11,11,6,5,4,9,5,6,4,2,12,9,11,2,8 -S,2,1,2,2,1,8,7,4,7,5,6,7,0,8,8,8 -D,3,4,4,7,2,5,7,11,8,6,5,5,3,8,4,8 -R,4,7,4,5,2,6,10,9,4,7,4,8,3,7,6,11 -P,1,0,1,0,0,5,10,7,2,9,6,5,1,9,3,8 -U,2,1,2,1,0,8,6,11,4,7,12,8,3,10,0,8 -L,0,0,1,0,0,2,2,5,4,1,2,6,0,8,0,8 -Y,3,5,6,4,2,7,11,1,7,7,11,8,2,11,2,8 -H,5,10,7,8,7,8,8,7,6,7,6,7,3,8,3,7 -F,4,9,6,7,4,3,12,5,4,12,9,5,2,10,2,5 -N,3,4,5,3,2,7,9,2,5,10,6,6,5,9,1,7 -X,4,9,6,6,5,7,7,3,9,5,7,9,5,7,8,8 -R,4,11,5,8,3,6,9,11,5,7,5,8,3,8,5,10 -B,2,4,3,2,2,8,8,3,5,10,6,6,2,8,5,9 -L,3,7,4,5,2,0,1,4,5,1,1,7,0,8,0,8 -V,8,10,7,7,3,3,12,4,4,10,12,8,3,10,1,8 -D,1,0,2,1,1,6,7,8,6,6,6,6,2,8,3,8 -Z,5,8,7,10,7,10,5,4,4,8,3,6,3,5,8,8 -V,5,5,6,4,2,4,12,3,3,10,11,7,3,10,1,7 -A,5,9,7,8,6,6,8,2,4,7,7,9,8,7,4,8 -Q,2,2,2,3,1,7,8,5,1,7,8,10,2,9,4,8 -U,3,8,4,6,2,7,5,14,5,7,13,8,3,9,0,8 -Y,3,5,4,7,7,7,5,4,2,7,7,9,5,10,4,8 -L,2,5,3,4,1,4,3,4,7,2,2,5,0,7,0,6 -V,3,2,5,3,1,6,12,3,4,8,11,8,2,10,1,8 -R,5,10,5,8,6,6,8,9,5,6,5,7,2,8,5,11 -S,4,9,5,7,4,8,8,8,7,8,4,7,2,7,9,8 -Q,6,7,8,6,6,7,4,4,5,7,4,9,5,4,7,7 -A,4,8,6,6,3,9,2,2,2,7,1,8,2,7,3,7 -E,1,3,3,1,1,6,8,2,7,11,8,9,1,8,3,8 -P,6,10,6,7,3,4,14,8,1,11,6,3,1,10,4,8 -W,10,10,10,8,7,2,11,2,3,10,10,8,7,11,2,7 -S,3,4,4,6,2,8,7,6,9,5,6,8,0,8,9,8 -G,2,1,3,2,1,6,6,5,5,6,6,9,2,9,4,8 -U,3,4,3,3,2,5,8,5,7,10,9,8,3,9,2,6 -Q,5,5,6,7,3,8,7,8,6,6,6,9,3,8,5,9 -W,6,9,6,7,6,3,12,2,2,10,9,8,6,11,2,7 -L,4,9,5,7,3,3,3,7,8,1,0,5,1,6,1,6 -R,4,9,6,6,4,9,7,4,6,9,4,7,3,7,5,10 -C,4,7,5,5,5,5,7,3,5,7,6,10,5,10,3,8 -D,4,7,5,5,2,5,7,10,9,7,7,6,3,8,4,8 -M,4,9,6,7,7,7,7,5,5,6,7,8,8,7,3,7 -U,2,1,3,2,1,7,8,6,7,7,10,8,3,9,1,8 -H,5,7,6,5,5,7,10,8,6,8,6,7,3,7,3,9 -Q,4,10,5,9,5,8,7,7,5,6,8,8,3,7,6,11 -D,2,4,3,3,2,8,7,4,5,9,4,5,2,8,2,8 -J,4,8,5,6,3,7,7,3,6,15,6,9,1,6,1,7 -C,4,9,5,7,3,6,8,9,8,9,8,12,2,10,4,9 -O,4,8,5,6,5,7,8,8,5,7,8,8,3,8,3,8 -B,3,5,5,3,3,9,6,2,6,10,4,7,4,7,6,9 -Z,5,11,7,8,4,7,7,2,10,12,5,9,1,9,6,8 -T,6,11,6,6,3,6,10,2,7,12,7,6,2,9,5,4 -O,4,10,5,7,2,7,7,9,7,7,7,8,3,8,4,8 -I,1,3,2,2,1,7,7,1,7,13,6,8,0,8,1,8 -U,1,0,1,0,0,7,7,9,3,7,12,8,2,10,0,8 -I,1,9,1,7,2,8,7,0,8,7,6,7,0,8,3,7 -V,3,8,5,6,1,7,8,4,3,7,14,8,3,10,0,8 -U,2,3,3,2,1,8,8,5,6,6,9,8,3,10,1,8 -J,2,6,4,4,1,7,8,2,6,15,6,9,0,7,1,7 -B,4,6,6,4,5,8,8,6,4,6,5,6,4,8,6,5 -Y,4,5,6,7,1,7,10,2,2,7,13,8,2,11,0,8 -Y,8,11,8,8,4,3,11,2,9,12,11,5,0,10,2,4 -O,6,10,4,5,3,6,8,4,4,7,4,7,4,8,5,8 -X,3,10,4,7,2,7,7,4,4,7,6,8,3,8,4,8 -L,3,7,4,5,2,6,3,1,8,8,2,11,0,7,2,8 -Y,2,2,4,3,1,6,10,1,7,8,11,8,1,11,2,7 -W,4,8,6,6,6,7,6,6,2,7,7,8,6,8,4,10 -O,4,7,5,5,4,8,8,7,4,7,7,6,4,9,3,7 -H,3,6,4,4,3,7,6,12,1,7,8,8,3,9,0,8 -X,4,7,4,4,1,7,7,5,4,7,6,8,3,8,4,8 -T,2,3,3,1,1,6,12,3,6,11,9,5,1,11,2,5 -R,4,8,6,6,6,8,6,7,3,7,5,7,4,6,7,8 -W,5,8,8,6,3,9,8,5,2,7,8,8,9,9,0,8 -M,5,10,7,8,8,9,7,6,5,6,7,5,8,7,3,5 -P,2,3,4,1,1,7,9,4,3,11,4,4,1,9,2,8 -B,4,6,4,4,3,6,7,8,6,7,6,6,2,8,9,10 -T,4,7,4,5,3,4,12,5,4,11,9,5,2,12,1,5 -O,4,8,5,6,3,7,5,8,5,6,4,7,3,8,3,8 -K,8,13,8,7,5,9,6,3,6,10,1,7,6,5,4,8 -R,3,7,3,4,2,5,11,8,4,7,3,9,3,7,5,11 -P,5,6,6,4,5,7,6,6,4,7,6,8,3,8,7,10 -I,3,9,4,6,2,6,8,0,8,14,7,8,0,8,1,7 -F,5,9,4,5,2,7,9,3,5,12,6,5,2,8,6,6 -E,5,9,4,4,2,8,7,5,4,10,5,10,3,8,7,10 -E,5,8,6,6,5,8,7,6,3,7,6,10,4,8,8,9 -R,3,7,5,5,4,10,7,3,5,10,3,7,3,7,3,10 -N,4,2,4,3,3,7,8,5,5,7,7,6,6,9,3,6 -K,3,7,4,4,1,4,8,7,2,7,5,11,3,8,3,10 -R,4,6,6,4,6,8,8,4,4,6,7,8,6,10,7,6 -N,4,9,6,7,4,7,8,6,5,7,7,7,6,9,2,6 -B,2,1,2,1,1,7,7,7,5,6,5,7,1,8,7,10 -M,5,7,7,5,4,6,6,3,5,10,9,9,7,5,2,8 -L,4,10,5,8,3,4,4,1,9,6,1,10,0,7,2,7 -W,8,14,8,8,6,3,8,1,4,9,10,8,9,11,2,5 -O,2,3,2,2,1,8,7,6,3,9,6,8,2,8,3,8 -V,4,7,5,5,6,8,6,4,1,7,8,8,7,9,4,7 -S,4,9,6,7,7,8,6,5,4,8,6,9,5,7,13,9 -P,4,9,6,7,4,6,10,3,7,10,9,4,1,10,5,7 -J,2,8,3,6,1,11,3,10,3,13,7,13,1,6,0,8 -S,4,7,5,5,4,8,7,5,7,5,6,8,0,9,9,8 -T,3,6,5,6,4,6,7,3,8,8,6,9,3,7,7,6 -X,0,0,1,0,0,7,7,3,5,7,6,8,2,8,3,8 -M,2,1,2,2,1,7,6,10,0,7,8,8,6,6,0,8 -W,8,10,8,8,7,2,12,2,2,10,9,8,6,12,2,6 -E,1,0,1,1,1,5,7,5,7,7,6,12,0,8,6,9 -T,2,10,4,7,1,7,14,0,6,7,11,8,0,8,0,8 -R,1,0,1,0,0,6,8,6,3,7,5,7,2,7,3,10 -H,4,8,5,6,5,6,7,5,4,7,5,8,3,7,6,11 -T,3,6,4,4,2,10,11,2,8,5,11,9,1,11,1,9 -U,2,3,3,2,1,4,8,4,5,11,10,9,3,9,1,6 -D,7,12,6,6,4,10,4,3,6,10,2,7,4,7,4,12 -N,8,12,7,6,3,5,9,4,6,4,4,11,5,10,2,7 -V,3,7,5,5,2,8,9,4,1,6,12,8,2,10,0,8 -D,4,8,6,6,5,10,6,4,6,9,3,6,3,9,3,8 -Z,4,9,6,6,4,7,7,2,10,12,6,10,1,9,6,8 -E,3,2,4,4,3,7,7,6,8,7,7,9,2,8,6,9 -X,4,9,6,7,5,7,7,3,8,5,6,8,3,8,6,7 -A,5,7,8,6,6,9,7,3,5,6,8,6,4,10,4,5 -L,3,8,4,6,2,0,2,4,6,1,0,7,0,8,0,8 -G,5,7,6,5,3,6,7,6,6,10,8,8,2,9,5,9 -R,6,10,8,8,7,8,8,6,6,6,5,7,3,6,6,9 -A,4,11,7,9,4,11,3,2,3,9,2,9,5,5,3,9 -Y,6,9,8,7,6,8,7,6,5,5,9,8,3,9,8,5 -M,4,1,5,3,3,9,6,6,4,6,7,6,8,6,2,5 -T,4,9,5,6,3,5,13,6,4,11,9,4,3,12,2,4 -A,3,9,6,6,2,8,4,3,2,7,1,8,3,7,3,8 -R,3,6,5,4,4,9,7,3,5,10,3,7,3,7,3,10 -B,4,9,6,6,7,8,6,6,6,6,6,5,2,8,6,10 -M,5,6,6,8,4,8,7,12,2,6,9,8,8,6,0,8 -D,3,10,5,8,8,9,8,4,5,7,6,6,4,7,8,5 -F,3,4,4,6,1,1,13,5,3,12,10,6,0,8,2,6 -M,5,6,7,4,5,12,5,3,4,9,2,6,7,6,2,8 -C,4,9,5,6,3,6,9,7,8,13,8,7,2,11,3,7 -F,10,13,8,8,4,8,8,4,7,13,4,6,2,7,7,8 -R,4,8,7,7,8,9,8,4,4,7,4,7,6,7,6,4 -V,3,7,5,5,2,6,9,4,2,8,13,8,2,10,0,8 -X,5,9,7,7,3,7,8,1,9,10,6,8,3,8,4,7 -Z,4,9,6,7,4,8,5,2,9,11,4,10,2,7,7,9 -S,3,5,4,3,2,8,7,2,7,10,6,8,1,9,5,8 -Z,3,4,4,6,2,7,7,3,13,10,6,8,0,8,8,8 -E,4,10,6,7,5,10,6,1,7,11,4,8,3,8,4,11 -H,4,8,4,6,2,7,9,15,1,7,4,8,3,8,0,8 -E,1,1,1,1,1,4,7,5,8,7,6,13,0,8,6,9 -O,7,11,9,8,12,8,5,6,2,7,6,8,11,10,8,14 -S,1,0,1,0,0,8,7,4,6,5,6,7,0,8,7,8 -W,8,8,8,6,5,4,11,3,3,9,9,7,8,11,2,6 -R,3,6,4,4,4,6,8,8,4,7,6,8,2,7,5,11 -N,5,10,6,7,3,7,7,15,2,4,6,8,6,8,0,8 -C,1,1,2,1,0,6,7,6,9,7,6,14,0,8,4,10 -Q,4,10,6,8,6,8,6,7,4,5,7,11,6,7,8,8 -W,3,7,5,5,4,5,10,2,2,8,9,9,7,11,1,8 -Q,4,9,4,4,2,8,5,4,7,8,6,8,3,9,8,11 -B,7,11,9,8,8,10,6,3,6,10,3,7,5,7,6,11 -I,4,7,5,5,3,8,8,2,8,7,6,7,0,8,4,7 -G,6,9,5,4,3,7,8,6,6,10,5,6,4,7,5,7 -Q,5,8,5,10,7,8,8,6,2,7,8,11,3,9,6,8 -A,2,3,4,4,1,10,5,3,1,8,1,8,2,7,2,8 -I,9,14,6,8,3,10,4,5,5,13,3,8,3,7,5,10 -Z,4,9,5,7,2,7,7,4,15,9,6,8,0,8,8,8 -C,5,9,6,7,4,3,8,6,7,12,10,13,1,9,3,7 -V,2,7,4,5,2,8,11,2,2,5,10,8,2,11,0,9 -K,7,15,8,8,5,9,6,3,6,11,2,7,5,7,4,9 -K,4,9,5,7,4,3,7,7,3,7,6,11,3,8,3,11 -C,4,6,6,4,3,8,6,7,7,7,6,8,4,10,4,8 -G,3,9,5,6,4,6,6,6,6,6,6,9,2,9,4,8 -M,6,10,8,8,9,7,10,6,4,7,7,8,6,8,6,8 -F,4,9,6,6,3,3,12,5,4,13,9,5,1,10,2,5 -U,5,10,8,8,10,8,5,4,5,6,7,6,10,6,6,5 -U,2,3,2,1,1,7,8,6,7,8,9,7,3,10,1,8 -S,6,11,7,8,5,9,7,3,6,10,4,7,2,9,5,9 -J,4,7,5,5,2,5,9,3,5,15,8,10,1,6,1,7 -F,4,8,5,6,5,4,10,2,5,10,10,6,1,10,3,6 -T,4,6,4,4,3,6,11,3,7,11,9,4,2,12,3,5 -Q,6,10,5,5,4,9,6,4,6,11,5,7,4,7,9,10 -B,2,4,3,3,2,8,7,3,5,9,6,6,3,8,5,9 -R,4,9,5,6,4,9,8,6,6,8,5,7,3,8,5,10 -U,5,5,6,4,2,3,9,5,7,11,11,9,3,9,1,6 -W,8,10,8,8,6,2,11,2,3,10,10,8,7,11,1,7 -V,10,14,9,8,5,8,9,4,6,8,9,5,6,12,4,8 -A,3,6,6,8,2,9,4,3,2,8,1,8,3,7,2,8 -F,3,7,5,5,4,4,10,5,5,11,10,6,2,10,3,6 -U,5,8,6,6,3,7,8,6,8,5,9,9,3,9,1,8 -E,1,3,3,1,1,6,7,2,6,11,6,9,2,8,3,9 -F,3,4,4,3,2,5,11,4,6,11,9,5,1,10,3,6 -D,3,5,4,4,3,7,7,6,6,7,6,5,5,8,3,7 -Q,2,2,3,3,2,8,7,6,2,6,6,9,2,9,4,9 -F,5,9,5,5,2,8,8,2,7,11,6,6,2,10,5,8 -M,7,11,10,8,10,8,7,5,5,6,7,7,11,8,4,6 -I,2,10,2,8,3,7,7,0,7,7,6,8,0,8,3,8 -U,3,7,5,6,5,7,7,4,4,6,6,9,4,8,1,8 -P,4,9,5,6,5,6,9,7,4,9,7,4,2,10,4,7 -H,6,8,9,6,6,10,6,3,6,10,3,8,4,8,5,10 -U,4,7,6,5,4,8,8,8,5,6,7,10,3,8,4,6 -G,4,4,6,7,3,8,8,8,8,6,7,8,2,7,6,10 -W,2,0,3,1,1,7,8,4,0,7,8,8,7,9,0,8 -X,3,6,4,4,1,7,7,6,2,7,6,8,3,8,4,8 -C,4,7,6,5,3,7,7,7,6,7,6,8,4,9,4,8 -N,5,10,6,8,6,7,7,13,1,6,6,8,6,9,0,6 -W,8,11,8,8,9,4,10,2,3,9,8,7,9,13,3,5 -W,3,7,5,5,7,8,9,5,1,7,7,8,7,9,2,8 -P,5,6,7,8,8,8,6,4,3,7,7,7,7,12,6,7 -P,1,0,1,0,0,5,10,6,1,9,6,5,0,9,2,8 -K,3,4,4,3,3,5,7,4,7,7,6,11,3,8,5,9 -B,8,15,6,8,5,8,6,5,6,10,5,9,6,7,8,10 -C,3,2,4,3,2,6,8,8,7,8,7,12,2,9,4,10 -F,5,11,7,8,5,6,11,2,5,13,7,4,2,10,2,7 -J,4,5,5,6,4,8,9,4,4,7,6,8,3,7,7,7 -V,4,9,6,6,3,4,11,3,4,9,12,9,3,10,1,8 -O,4,8,4,6,3,8,5,8,5,9,4,8,3,8,3,8 -N,4,5,4,7,3,7,7,14,2,5,6,8,6,8,0,8 -W,6,10,8,8,9,7,9,6,4,9,9,7,8,8,5,12 -L,4,8,5,6,4,8,5,8,6,5,7,8,3,6,6,11 -O,2,4,3,3,2,7,7,6,3,9,6,8,2,8,2,8 -R,3,4,5,2,3,8,8,3,5,9,5,7,3,6,4,10 -R,5,8,8,7,8,8,7,3,3,7,5,8,7,9,6,5 -P,4,10,6,7,4,8,9,2,6,13,6,5,1,10,3,9 -D,5,10,6,8,6,6,8,9,7,7,7,5,3,6,5,9 -A,3,10,5,8,4,11,3,2,2,9,2,9,3,5,3,8 -A,3,8,6,6,4,11,2,2,2,9,2,9,3,5,3,8 -O,6,10,7,8,3,6,6,9,9,6,5,6,3,8,4,8 -V,4,10,7,7,2,7,8,4,3,7,14,8,3,9,0,8 -K,5,7,8,5,5,4,9,2,6,10,9,10,3,8,3,6 -O,2,3,3,2,1,8,7,6,3,9,6,8,2,8,2,8 -D,3,6,5,4,6,9,8,4,5,7,6,6,4,8,8,5 -I,1,3,2,2,1,7,8,1,7,13,6,8,0,8,1,7 -O,2,1,3,3,2,7,7,7,5,7,6,8,2,8,3,8 -P,3,2,4,4,3,6,9,5,5,9,7,3,1,10,4,6 -E,5,9,8,7,5,6,8,4,9,12,9,9,3,8,5,6 -O,4,9,5,7,3,8,6,9,8,7,4,9,3,8,4,8 -B,3,3,4,4,3,6,8,8,7,7,5,7,2,8,9,10 -M,4,7,5,5,3,7,7,12,1,7,9,8,8,6,0,8 -G,5,10,6,7,7,7,5,6,3,7,6,11,4,8,7,7 -C,7,10,8,8,4,2,9,5,9,11,11,13,1,7,3,6 -G,4,8,6,6,6,7,9,6,4,6,6,8,5,7,7,7 -N,1,0,1,0,0,7,7,10,0,5,6,8,4,8,0,8 -O,4,7,5,5,3,8,8,8,5,7,7,6,3,8,4,8 -V,2,3,4,5,1,9,8,4,2,6,13,8,3,10,0,8 -P,2,5,4,3,2,7,9,4,4,12,5,3,1,10,2,8 -T,7,12,6,7,3,6,10,3,6,12,8,6,2,9,4,5 -Y,4,5,6,8,9,7,5,4,3,8,8,9,5,10,6,10 -P,2,4,4,3,2,7,9,4,3,11,4,4,1,10,3,8 -F,4,7,6,5,3,8,9,3,6,13,5,5,2,10,3,8 -G,7,10,7,8,4,7,6,7,8,11,5,12,3,9,5,8 -Q,2,2,3,3,2,8,8,7,3,5,6,10,2,9,5,10 -O,3,7,4,5,3,9,6,7,5,10,4,9,3,8,3,8 -N,3,2,4,3,2,7,8,5,5,8,7,6,6,10,3,5 -R,7,11,9,8,6,9,7,5,7,8,4,6,3,7,6,11 -N,2,3,4,2,2,7,8,2,4,10,6,7,5,8,0,7 -I,1,3,2,2,0,7,7,1,7,13,6,8,0,8,1,8 -P,2,1,2,1,1,5,11,8,2,9,6,4,1,9,3,8 -W,5,5,8,7,4,11,8,5,2,6,9,8,8,9,0,8 -L,2,3,2,2,1,4,4,4,7,2,2,6,0,7,1,6 -S,4,5,5,4,5,8,8,4,4,7,7,8,5,10,9,10 -D,3,5,6,4,4,9,7,4,7,10,4,6,2,8,3,8 -Y,3,4,4,3,2,5,10,2,7,10,10,5,1,11,3,5 -Z,5,10,6,8,7,8,9,3,7,8,6,8,2,10,13,7 -M,3,3,5,2,3,8,6,6,4,7,7,8,7,5,2,7 -E,3,7,5,5,5,5,6,4,6,7,6,12,2,10,8,6 -N,6,11,8,8,9,6,7,3,4,8,8,9,8,9,7,5 -G,3,3,4,5,2,7,7,7,6,6,6,7,2,7,6,11 -N,5,9,7,6,6,7,7,6,6,7,5,8,6,7,3,7 -V,4,8,4,6,3,4,11,1,2,9,10,7,2,11,1,7 -Y,1,1,2,1,0,7,10,2,2,7,12,8,1,11,0,8 -D,6,11,8,8,7,10,6,4,6,9,3,6,3,8,3,9 -C,4,10,5,7,2,5,7,7,10,7,6,14,1,8,4,9 -H,4,7,4,5,2,7,7,14,0,7,6,8,3,8,0,8 -L,4,7,5,5,2,5,4,2,9,6,2,9,1,6,2,7 -S,3,4,4,3,2,9,6,3,7,10,5,8,1,9,5,9 -Q,5,6,6,8,6,8,5,8,4,6,6,8,3,9,7,11 -F,6,11,8,8,5,8,9,3,6,13,5,4,2,9,3,7 -S,3,5,5,4,2,7,7,3,8,11,5,7,1,8,4,8 -Y,3,5,5,4,2,8,11,1,7,5,11,9,2,12,3,8 -K,2,3,2,1,2,6,7,4,6,6,6,10,3,8,4,9 -G,2,1,4,3,2,7,7,6,6,6,7,9,2,8,4,9 -L,6,11,8,8,5,7,5,0,8,9,3,11,2,6,4,7 -J,6,10,9,7,5,8,5,7,7,8,6,7,2,7,5,6 -R,3,9,4,6,3,5,11,8,4,7,4,9,3,7,6,11 -P,6,11,6,8,6,5,11,9,3,9,5,4,1,10,3,8 -N,7,10,10,8,5,9,9,3,6,10,3,4,6,9,1,7 -R,8,12,8,6,6,8,7,3,5,9,3,8,6,7,6,7 -A,1,3,2,2,1,10,3,2,1,9,2,9,1,6,1,8 -M,4,8,6,6,7,9,7,5,5,6,7,6,8,7,2,6 -Z,4,10,5,7,4,6,8,6,10,7,7,10,1,9,8,8 -R,6,9,6,4,4,5,8,3,5,7,4,10,4,7,5,7 -D,4,6,5,4,7,8,8,5,5,7,6,6,6,6,7,6 -A,2,7,4,4,2,7,4,3,2,6,1,8,3,6,2,7 -X,10,15,9,9,4,6,8,3,9,9,9,9,4,10,4,6 -I,1,3,1,1,0,8,7,1,7,13,6,8,0,8,0,8 -G,5,7,7,6,7,6,10,5,3,7,7,7,9,13,8,7 -Z,5,8,7,6,4,7,8,2,10,12,7,8,1,9,6,7 -O,5,6,7,5,5,7,5,4,4,9,4,9,3,7,6,6 -J,4,6,6,7,5,7,8,4,5,7,7,7,3,9,9,10 -V,4,11,6,8,4,6,11,2,3,6,11,9,2,10,1,8 -N,2,3,2,1,1,7,8,5,4,7,6,7,4,9,1,6 -A,3,5,5,4,2,9,2,1,2,8,2,9,2,6,2,8 -R,5,7,7,5,4,10,7,3,6,10,2,6,3,6,4,10 -H,3,6,5,4,4,7,8,3,6,10,5,8,3,8,3,9 -I,3,7,4,5,2,9,6,0,7,13,5,9,0,8,1,8 -V,2,1,3,1,1,9,12,3,2,5,11,8,2,11,0,8 -Q,2,2,3,3,2,8,6,6,3,6,6,9,2,9,4,9 -D,9,15,9,8,5,10,4,4,6,12,2,8,5,6,5,10 -P,1,1,1,1,0,5,11,7,1,10,6,4,1,9,3,8 -W,6,7,6,5,4,3,10,2,3,10,10,8,6,11,2,6 -S,5,8,6,6,3,6,8,4,8,11,6,7,2,8,5,6 -L,1,3,2,2,1,7,4,1,6,8,3,10,0,7,1,9 -A,5,8,8,7,7,7,8,2,4,7,8,9,8,6,4,8 -W,6,7,6,5,4,5,10,3,3,9,8,7,7,12,2,5 -L,3,5,4,3,2,4,4,4,8,2,1,5,1,7,1,6 -F,5,10,9,8,9,7,9,1,5,9,6,5,6,9,5,2 -D,3,5,5,3,3,7,7,6,7,7,6,5,2,8,3,7 -O,4,9,3,4,2,6,9,5,3,8,5,6,4,9,5,8 -R,1,3,2,1,1,8,8,4,4,9,5,7,2,6,4,9 -L,2,6,4,4,2,9,4,1,8,10,3,10,0,7,2,10 -U,4,8,5,6,3,5,8,6,7,9,7,9,3,9,3,5 -P,3,7,3,5,3,5,11,8,2,9,7,5,1,10,3,8 -U,11,15,10,9,5,9,7,6,6,2,10,6,6,7,3,6 -E,3,5,6,4,3,7,8,2,8,11,7,9,2,8,4,8 -Z,5,10,7,8,5,8,6,2,9,11,5,10,2,7,7,8 -L,3,7,4,5,5,7,8,3,5,5,7,10,4,11,5,6 -O,4,9,4,7,3,8,7,8,5,10,5,9,3,8,4,7 -S,3,9,4,7,4,7,7,5,7,5,6,8,1,8,9,7 -V,5,10,5,7,3,3,11,3,4,10,12,8,2,10,1,8 -T,7,10,6,5,3,8,9,2,7,11,7,7,2,9,4,6 -W,8,11,8,8,6,3,10,2,3,9,9,8,8,11,2,5 -L,4,10,5,8,3,5,4,3,8,5,1,7,1,6,3,6 -Y,5,7,7,11,10,10,9,4,2,5,8,9,4,11,10,12 -P,3,3,4,4,2,5,11,9,3,9,6,5,1,10,4,8 -C,2,6,3,4,2,6,8,8,8,8,8,14,1,9,4,9 -N,3,2,4,3,2,7,8,5,4,7,7,6,5,9,2,5 -Y,2,4,4,6,1,7,10,1,3,7,12,8,1,11,0,8 -K,9,14,8,8,4,8,8,3,7,9,7,7,6,10,4,7 -I,2,5,3,3,1,7,7,0,7,13,6,8,0,8,1,7 -A,3,9,5,6,4,8,2,1,2,6,2,7,3,6,4,7 -F,5,8,7,6,3,5,12,7,5,13,7,3,2,9,2,5 -V,10,14,9,8,5,9,7,4,5,6,8,6,7,12,3,8 -F,3,8,5,6,3,8,8,2,5,13,5,6,2,10,2,9 -H,3,8,5,6,7,8,6,4,3,7,6,7,6,7,8,9 -X,2,3,4,1,1,5,9,2,8,10,9,8,2,8,3,6 -A,2,1,3,1,0,7,4,2,0,7,1,8,2,6,1,7 -R,4,8,6,6,6,7,9,5,6,8,4,9,4,5,5,10 -P,5,9,6,6,3,5,12,9,2,10,6,4,1,10,4,8 -K,6,11,8,8,10,7,7,4,4,6,6,9,8,8,8,8 -C,3,9,4,7,3,5,8,9,8,9,8,11,2,10,4,10 -G,4,9,4,4,3,7,7,3,2,8,5,7,3,10,8,7 -X,2,7,3,4,1,7,7,4,4,7,6,8,3,8,4,8 -Q,6,11,5,6,3,10,4,5,6,12,3,10,3,7,7,12 -V,4,10,6,7,2,7,8,4,3,7,14,8,3,9,0,8 -J,5,9,6,10,6,8,8,4,6,6,7,7,3,9,9,8 -Z,3,4,5,3,2,8,6,2,9,12,5,9,1,8,5,9 -C,5,10,6,7,4,7,7,8,7,6,6,9,4,8,4,8 -R,4,9,6,7,7,6,8,5,6,7,5,7,3,7,5,9 -C,4,7,5,5,2,5,8,6,8,12,9,11,2,10,3,7 -W,7,11,10,9,15,8,8,6,2,7,7,8,14,10,5,8 -O,2,5,3,4,2,8,7,7,4,9,6,8,2,8,3,8 -Z,1,0,1,1,0,7,7,2,10,9,6,8,0,8,6,8 -A,3,8,5,6,2,11,2,4,3,11,2,10,2,6,3,8 -F,5,8,6,10,7,7,9,5,5,8,6,8,4,10,7,5 -V,10,14,8,8,4,8,10,6,5,6,10,5,6,13,4,7 -L,4,9,6,7,4,6,5,0,8,8,2,11,0,7,2,8 -N,6,11,8,8,7,7,7,8,5,7,6,7,6,7,3,9 -N,4,7,4,5,2,7,7,14,2,5,6,8,6,8,0,8 -T,3,4,4,3,1,5,13,3,6,12,9,4,1,11,1,5 -X,4,10,7,8,7,7,7,2,6,7,6,8,4,8,7,7 -X,6,10,7,5,3,5,8,2,7,11,8,8,4,9,3,6 -W,5,10,7,7,7,7,7,6,2,7,8,8,6,8,4,10 -N,7,11,6,6,3,8,11,5,6,4,5,9,5,8,2,7 -C,3,4,4,3,1,4,8,5,7,11,9,12,1,9,2,7 -K,3,5,5,3,3,6,7,4,7,7,6,11,3,8,5,9 -M,3,4,5,3,3,5,6,3,4,9,9,10,7,5,2,8 -F,3,4,5,3,2,8,9,2,7,13,5,5,2,9,3,8 -J,1,6,2,4,1,12,3,8,3,13,6,12,1,6,0,8 -W,6,10,9,8,6,10,8,5,1,5,9,7,10,12,2,5 -G,4,8,5,6,3,7,6,6,7,11,6,12,2,10,4,9 -P,3,1,4,2,2,5,10,4,4,10,8,4,1,10,3,7 -M,2,0,2,1,1,7,6,10,0,7,8,8,6,6,0,8 -B,8,11,6,6,4,9,7,6,7,10,4,8,6,6,6,10 -R,6,11,6,8,4,6,10,10,4,7,4,8,3,7,6,10 -D,3,4,5,3,3,10,6,3,7,10,3,6,2,8,3,9 -Z,4,8,6,6,6,7,8,2,7,7,6,7,1,9,9,8 -X,4,5,5,7,2,7,7,5,4,7,6,8,3,8,4,8 -T,5,8,6,6,7,5,7,3,6,7,6,9,5,8,5,7 -G,2,4,3,3,2,6,7,5,5,9,7,10,2,8,4,10 -R,3,6,3,4,2,6,9,9,4,7,4,7,2,7,5,10 -J,3,8,5,6,2,10,6,2,7,14,4,8,0,7,0,8 -R,4,9,6,7,4,10,7,3,6,11,2,7,3,6,3,9 -C,4,8,5,6,3,5,7,6,8,7,6,12,1,8,4,9 -G,5,9,6,6,4,7,6,7,7,7,5,12,2,8,5,10 -E,2,6,3,4,2,3,7,5,9,7,6,14,0,8,6,9 -B,4,7,6,6,7,8,6,5,4,7,6,8,6,9,7,7 -X,4,5,6,4,3,7,7,1,9,10,6,8,2,8,3,7 -L,4,8,5,7,5,8,7,5,6,7,6,8,3,8,8,11 -D,2,4,4,2,2,9,7,4,6,10,4,5,2,8,3,8 -B,4,9,4,6,6,6,8,8,6,7,5,7,2,7,7,9 -L,6,10,8,8,7,6,6,6,6,6,5,8,6,7,4,10 -Z,3,7,4,5,3,7,7,3,11,8,6,8,0,8,7,8 -I,2,6,3,4,2,8,6,0,7,13,6,9,0,7,2,8 -I,1,1,0,2,0,7,7,1,7,7,6,8,0,8,2,8 -B,4,10,5,8,4,6,6,10,7,6,7,7,2,8,9,9 -J,3,10,5,8,4,12,6,2,7,11,2,6,0,7,1,8 -E,7,10,9,8,7,4,9,4,8,12,10,9,3,8,5,4 -M,2,1,3,2,2,8,6,6,3,6,7,7,6,5,1,7 -J,3,9,4,6,2,14,3,5,5,13,2,9,0,7,0,8 -I,1,5,2,3,1,7,7,0,7,13,6,8,0,8,1,7 -V,2,3,3,1,1,7,12,3,3,8,11,8,2,10,1,8 -N,3,4,3,3,2,7,8,5,4,7,6,6,5,9,2,6 -Y,4,7,6,5,5,8,5,6,4,6,9,8,3,8,8,4 -B,3,6,3,4,3,6,8,9,6,7,6,7,2,8,8,10 -U,1,0,2,0,0,7,6,10,4,7,12,8,2,10,0,8 -Y,3,4,5,5,1,6,10,3,1,8,13,8,1,11,0,8 -J,3,10,5,7,2,7,8,2,7,15,5,8,0,6,1,7 -F,6,9,8,7,7,7,9,5,5,8,6,7,6,10,8,11 -A,2,1,4,3,2,8,1,2,2,8,2,8,3,6,3,7 -P,2,4,3,3,2,5,10,4,4,10,8,3,1,10,3,6 -N,7,9,9,5,3,8,6,3,4,13,6,8,6,8,0,8 -O,3,6,5,4,3,8,8,8,4,7,6,5,3,8,3,7 -V,3,6,4,4,2,7,11,3,2,7,10,9,2,10,3,8 -G,3,4,4,3,2,6,6,6,6,6,6,10,2,9,3,9 -G,4,5,5,4,3,6,6,6,7,6,6,11,2,9,4,9 -N,5,9,7,7,5,7,9,6,5,7,6,7,6,9,2,6 -P,1,1,2,1,1,5,11,7,2,10,6,4,1,9,3,8 -W,5,9,6,4,4,7,9,2,3,7,8,6,8,11,2,7 -W,6,9,6,6,4,4,10,2,3,9,9,8,7,11,2,6 -K,7,11,10,8,6,4,8,3,7,11,10,12,4,8,4,6 -C,9,13,6,7,3,6,9,6,7,12,7,7,2,9,5,9 -Y,5,9,7,6,4,10,10,1,7,3,11,7,1,11,2,9 -N,2,2,3,3,2,7,8,5,4,7,6,6,5,9,2,5 -J,1,7,2,5,1,13,3,7,4,13,3,11,0,6,0,8 -S,3,5,3,3,2,8,7,7,5,7,6,7,2,9,9,8 -C,4,10,5,8,2,5,7,7,10,7,6,13,1,8,4,9 -H,4,5,7,4,4,7,7,3,6,10,6,8,3,8,3,7 -C,4,4,5,6,2,6,7,7,11,6,6,13,1,7,4,9 -L,1,0,2,1,0,2,1,6,5,0,2,5,0,8,0,8 -V,4,8,6,7,7,8,7,4,4,7,6,8,7,7,9,5 -T,5,11,6,8,5,9,12,4,6,6,11,8,3,12,1,8 -J,4,6,5,7,5,8,8,5,7,7,5,8,3,9,9,8 -H,1,0,2,0,0,7,6,11,1,7,7,8,2,8,0,8 -V,1,0,2,1,0,7,9,3,2,7,12,8,2,10,0,8 -S,6,9,7,6,3,9,6,4,8,11,3,8,2,8,5,11 -D,6,10,8,7,7,7,7,5,6,7,7,8,7,7,3,8 -B,2,3,3,2,2,8,7,2,5,11,5,7,2,8,2,9 -C,3,3,4,4,1,5,8,6,9,6,7,11,1,7,4,9 -M,2,1,2,1,1,8,6,10,0,6,9,8,6,6,0,8 -S,3,7,4,5,2,7,6,6,9,5,7,10,0,9,9,8 -F,5,7,6,8,7,7,9,5,5,8,6,7,4,9,9,7 -R,3,7,5,5,5,6,7,5,6,6,5,8,3,6,4,8 -W,6,7,6,5,6,7,10,4,3,8,6,6,9,11,4,6 -I,1,7,2,5,1,7,7,0,8,7,6,8,0,8,3,8 -X,4,10,6,8,6,7,7,2,6,7,6,8,3,9,6,8 -N,6,9,9,7,5,7,9,2,5,9,6,7,6,8,1,7 -W,4,7,6,5,6,7,7,6,2,7,8,8,6,8,4,8 -S,1,0,2,1,1,8,7,4,7,5,6,7,0,8,7,8 -P,4,7,5,5,4,6,9,6,5,9,7,4,2,10,3,7 -N,5,10,6,8,6,7,7,6,7,7,6,8,6,8,3,7 -M,1,0,2,0,1,7,6,9,0,7,8,8,6,6,0,8 -F,5,9,7,7,3,5,13,4,5,13,7,3,1,10,2,6 -Q,5,6,7,8,8,10,9,6,0,5,7,10,7,13,5,11 -X,4,2,5,4,3,7,7,3,9,6,6,7,2,8,6,7 -S,5,8,6,6,4,7,8,3,7,10,5,7,2,8,5,8 -V,2,1,3,2,1,7,12,2,2,7,11,8,2,11,0,8 -D,5,12,5,6,4,6,8,4,6,10,6,6,5,9,6,6 -U,5,7,5,5,2,4,9,5,7,11,11,9,3,9,1,6 -S,1,3,3,2,1,8,7,3,7,11,4,8,1,8,4,9 -Z,7,10,9,8,6,6,9,3,10,12,8,7,1,9,6,6 -D,6,10,6,8,3,5,8,10,10,8,7,6,3,8,4,8 -B,4,7,6,6,7,8,6,5,5,7,6,8,8,9,7,6 -Q,5,9,4,4,2,10,4,4,6,10,4,8,3,9,7,13 -Y,2,3,4,4,0,7,10,2,2,7,13,8,1,11,0,8 -D,4,7,5,5,4,7,7,6,8,7,6,5,3,8,3,7 -O,4,9,6,7,7,8,8,5,1,7,7,9,8,9,4,9 -D,2,3,3,2,2,9,6,4,6,10,4,6,2,8,2,9 -B,5,9,5,4,4,7,8,3,4,9,6,7,6,7,8,5 -Q,1,0,2,1,1,8,7,6,4,6,6,9,2,8,3,8 -H,6,7,8,5,4,7,6,3,7,10,7,9,3,8,3,7 -P,4,10,5,7,3,5,10,10,3,9,6,4,2,10,4,8 -T,2,1,2,2,1,8,11,3,5,7,10,7,2,11,1,7 -B,8,15,8,8,7,11,5,4,5,10,4,8,7,6,8,10 -D,5,9,5,7,5,5,7,9,7,6,4,5,3,9,4,9 -G,6,9,6,6,4,6,7,6,7,10,8,9,3,8,5,9 -E,5,10,3,5,2,6,8,5,7,10,6,10,1,9,7,9 -Z,7,8,5,11,4,7,6,6,5,10,7,7,3,9,9,7 -O,2,7,3,5,3,7,7,7,4,7,5,8,3,8,2,8 -X,6,11,9,8,6,4,9,1,8,10,11,10,3,9,3,5 -U,5,9,8,7,10,8,6,4,4,6,7,8,10,9,5,8 -M,4,2,5,3,4,6,6,6,5,7,7,10,8,6,2,8 -Y,3,5,5,3,2,4,11,3,6,12,10,5,1,11,2,5 -N,3,4,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -P,4,7,6,5,3,5,12,6,3,12,5,2,1,10,3,8 -W,4,10,7,8,6,7,10,2,3,6,9,8,8,11,1,8 -R,6,9,8,6,9,7,8,3,5,5,6,9,6,9,7,6 -N,4,8,6,6,3,4,9,4,4,10,10,9,5,8,1,7 -Z,5,10,5,5,3,11,4,3,7,11,4,9,2,9,4,11 -O,4,9,5,7,4,8,7,8,5,10,6,7,3,8,3,8 -A,4,10,6,8,4,9,2,2,3,8,2,8,3,6,4,7 -U,8,12,7,7,3,5,4,5,5,4,7,8,6,8,2,7 -N,5,11,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -E,3,7,4,5,2,3,7,6,10,7,6,14,0,8,7,7 -R,4,8,4,6,4,5,10,7,3,7,4,9,2,7,5,11 -L,6,11,8,8,6,5,4,2,8,6,1,9,1,6,3,7 -N,7,10,10,8,5,4,10,4,4,11,11,10,6,8,1,7 -D,4,9,6,6,5,6,7,8,7,7,7,5,3,8,3,8 -D,4,8,4,6,4,6,7,9,7,6,5,6,2,8,3,8 -L,2,7,2,5,1,0,1,5,6,0,0,7,0,8,0,8 -E,4,5,5,4,5,6,7,4,3,7,7,9,4,11,8,11 -C,4,10,5,8,3,6,7,10,8,10,8,11,2,12,4,9 -W,6,11,9,9,4,9,7,5,2,7,8,8,9,9,0,8 -U,3,7,4,5,3,8,5,11,4,8,12,7,3,9,0,8 -M,13,14,13,8,6,5,9,5,7,4,3,11,9,9,2,8 -C,5,12,4,7,4,9,6,4,2,9,8,11,4,9,7,13 -C,4,10,6,8,7,6,6,4,3,8,7,11,6,9,3,8 -R,6,11,8,8,8,7,9,6,5,8,6,8,5,8,7,12 -C,4,9,5,7,6,5,6,3,4,7,6,9,6,9,6,7 -M,7,9,10,7,12,10,7,4,5,9,4,6,10,6,5,5 -K,6,9,5,4,2,6,8,3,6,9,9,10,5,10,3,6 -C,3,4,4,3,1,5,9,5,7,11,9,12,1,9,3,7 -T,5,7,5,5,2,4,12,3,7,12,10,4,1,10,1,5 -O,5,5,7,8,3,7,5,9,9,6,4,7,3,8,4,8 -A,2,9,4,6,3,11,2,1,2,9,3,9,2,6,3,8 -R,4,10,6,7,6,8,8,5,5,9,5,7,4,7,5,10 -M,4,5,7,3,4,9,6,3,5,9,4,7,9,7,2,8 -A,4,10,7,7,2,5,5,3,1,5,1,7,3,7,2,7 -D,3,7,4,5,2,6,6,10,9,5,5,6,3,8,4,8 -Q,4,6,5,8,5,8,5,8,5,6,5,9,3,8,5,9 -O,3,5,4,3,2,8,7,7,4,9,6,8,2,8,3,8 -C,2,4,2,3,1,6,8,6,7,8,8,13,1,10,3,10 -M,7,7,10,6,11,9,7,5,5,7,6,7,11,9,7,3 -B,8,12,6,6,4,9,6,5,6,11,4,9,6,7,7,10 -I,5,10,7,8,4,8,4,2,6,7,7,7,1,10,4,7 -N,3,3,4,4,2,7,7,14,2,5,6,8,6,8,0,8 -F,3,11,4,8,2,0,11,4,6,11,11,9,0,8,2,6 -O,6,10,7,8,6,8,5,9,5,5,5,5,5,8,5,8 -O,6,9,6,7,4,7,8,8,5,10,7,8,3,8,3,8 -C,5,11,7,8,8,7,6,4,4,8,7,11,6,9,3,8 -X,2,3,3,4,1,7,7,4,4,7,6,8,3,8,4,8 -X,9,14,9,8,5,3,10,3,8,12,11,9,4,8,3,5 -T,6,8,6,6,4,6,11,4,6,11,9,5,3,12,2,4 -F,2,4,3,3,2,5,10,4,5,10,9,5,1,9,3,6 -C,5,11,6,8,4,5,7,6,9,8,4,11,1,10,5,10 -F,6,10,6,5,4,8,10,3,5,11,5,4,4,9,7,7 -C,4,6,5,4,3,4,8,5,7,9,9,14,1,8,3,8 -X,4,7,5,5,4,8,6,2,5,6,7,7,2,9,7,9 -T,4,11,6,8,2,7,15,1,6,8,11,7,0,8,0,8 -D,4,6,5,4,3,8,8,6,7,9,6,4,3,8,4,8 -E,3,6,4,4,2,4,8,6,10,7,5,13,0,8,7,8 -W,7,11,10,9,7,10,11,3,3,5,9,7,10,13,1,7 -A,3,2,5,3,2,6,2,2,2,5,2,8,2,6,2,6 -K,4,10,5,8,2,3,7,7,3,7,7,11,4,8,3,10 -N,3,6,4,4,3,7,9,6,4,7,6,7,5,9,1,7 -C,5,8,6,6,3,7,6,6,8,13,7,12,2,10,4,7 -Q,5,5,5,7,4,7,8,5,4,8,9,9,3,9,7,8 -S,4,9,6,7,8,7,6,3,2,7,5,7,3,7,12,2 -Q,4,10,5,9,3,8,6,9,7,5,5,8,3,8,4,8 -G,6,10,5,5,3,8,7,5,6,10,4,7,4,7,5,8 -Y,4,5,6,7,1,8,10,2,2,6,13,8,1,11,0,8 -Q,4,6,4,8,5,8,8,6,2,8,8,10,3,9,5,8 -I,6,10,7,8,4,8,4,1,6,7,7,8,1,10,4,8 -U,5,8,5,6,2,4,9,6,7,11,10,8,3,9,1,7 -V,7,15,6,8,3,7,11,5,5,9,10,5,5,12,4,8 -Y,2,1,3,2,1,7,10,1,7,7,11,8,1,11,1,8 -A,5,9,6,7,7,8,8,8,4,6,6,8,3,8,8,4 -B,3,4,4,3,3,8,7,5,6,7,6,6,2,8,6,10 -D,4,9,6,6,5,7,7,7,7,6,6,5,3,8,3,7 -H,3,5,5,3,3,8,6,2,6,10,5,8,3,7,3,8 -N,2,4,3,2,2,7,8,5,4,7,6,6,4,8,1,6 -V,7,8,7,6,4,4,12,1,2,9,10,7,6,11,2,7 -I,5,9,7,6,4,6,6,3,7,7,6,12,0,8,4,9 -S,5,11,6,8,4,6,8,4,8,11,7,7,2,9,5,6 -F,2,3,4,2,1,6,10,2,5,13,7,5,1,9,1,7 -P,6,9,5,5,2,7,8,5,3,12,4,5,5,9,4,8 -F,1,0,1,0,0,3,11,4,3,11,9,7,0,8,2,8 -Y,8,10,8,8,4,3,10,3,7,12,12,7,1,11,2,5 -W,7,10,10,8,7,5,8,4,1,7,9,8,8,10,0,7 -Z,6,10,8,7,6,7,7,2,9,12,6,9,1,9,6,8 -E,2,3,3,2,2,7,7,1,7,10,5,9,1,8,4,9 -P,2,5,4,3,2,8,9,4,4,11,4,3,1,10,2,8 -O,3,6,4,4,2,8,7,7,4,10,5,8,3,8,3,7 -O,4,8,4,6,4,7,7,7,4,10,6,8,3,8,3,6 -L,2,4,2,3,1,3,4,3,7,3,1,7,0,7,1,6 -R,1,0,2,1,1,6,9,7,3,7,5,7,2,7,4,10 -A,3,5,6,6,2,8,3,3,2,7,1,8,3,6,3,8 -L,4,10,4,8,1,0,1,5,6,0,0,6,0,8,0,8 -R,4,10,5,7,3,5,11,8,4,7,3,9,3,7,6,11 -J,5,9,6,6,2,9,4,3,9,15,4,11,0,7,0,8 -Y,6,11,8,8,8,8,4,6,5,8,7,8,9,7,6,5 -S,3,7,4,5,3,8,8,7,5,7,5,6,2,8,8,8 -Y,8,10,8,8,4,5,8,2,9,9,10,4,5,11,7,3 -D,1,1,2,2,1,6,7,8,6,6,6,6,2,8,3,8 -X,7,14,7,8,4,6,8,2,7,11,7,8,4,9,4,7 -R,4,9,6,7,5,8,8,6,6,8,5,7,3,8,6,10 -Q,2,4,3,5,2,8,8,6,2,7,8,10,2,9,5,9 -Z,2,3,3,2,2,7,8,5,9,6,6,9,1,8,7,8 -C,5,9,6,7,4,5,7,6,9,6,6,10,1,6,5,10 -T,2,6,3,4,1,6,14,0,5,8,10,7,0,8,0,8 -B,3,5,5,3,3,9,6,3,6,10,4,7,4,7,6,9 -A,6,9,8,8,7,7,7,2,4,7,8,10,8,7,4,8 -W,4,5,6,5,7,7,7,5,5,6,6,8,9,9,8,8 -C,3,8,4,6,2,6,8,8,7,9,8,14,2,9,4,10 -S,2,2,3,3,2,8,7,7,5,8,6,7,2,9,9,8 -C,5,7,7,6,6,5,7,4,4,7,6,11,4,9,7,9 -V,2,6,3,4,1,7,9,4,2,7,13,8,3,10,0,8 -Y,6,11,6,8,3,3,10,3,6,12,12,7,1,11,2,6 -N,2,3,3,1,1,7,9,5,5,8,7,6,5,9,1,6 -D,2,5,4,3,3,9,6,4,6,10,4,6,2,8,3,8 -Z,5,9,7,7,4,8,7,2,10,12,5,9,1,8,6,9 -Y,2,5,4,4,2,7,10,1,7,7,11,8,1,11,2,8 -O,2,6,3,4,2,8,7,8,5,7,7,9,3,8,3,8 -C,2,1,3,2,1,6,7,6,10,7,6,14,0,8,4,9 -H,2,4,4,2,2,9,7,3,5,10,4,7,3,8,2,9 -Z,6,7,4,10,4,8,6,4,4,11,6,7,2,10,9,8 -S,4,2,4,4,3,8,7,7,5,7,6,8,2,9,9,8 -T,3,5,4,4,2,6,12,2,7,8,11,7,1,11,1,7 -H,2,3,4,2,2,7,7,3,5,10,6,8,3,8,2,7 -V,3,2,5,3,2,7,12,2,3,6,11,9,3,11,1,7 -A,2,6,4,4,2,8,4,2,1,7,2,8,2,6,2,8 -J,1,3,2,2,0,9,6,2,5,14,6,10,0,7,0,7 -F,5,10,5,5,3,7,8,3,4,10,6,7,4,8,7,6 -P,6,9,8,7,6,8,9,4,4,12,5,4,1,10,3,8 -W,3,8,5,6,5,9,11,2,2,5,8,8,6,11,1,8 -U,4,4,5,3,2,4,8,5,7,11,10,9,3,9,1,7 -B,7,10,9,8,9,9,7,4,6,10,5,6,2,8,5,10 -V,4,4,6,7,1,8,8,4,3,6,14,8,3,9,0,8 -Q,2,4,3,4,3,8,8,6,3,8,6,9,2,9,4,9 -R,4,8,5,6,3,6,13,8,4,7,2,9,3,7,6,10 -F,5,9,6,7,6,6,10,6,5,8,5,8,3,10,8,10 -N,6,10,9,8,5,10,8,3,6,10,2,4,5,9,1,7 -L,3,7,5,5,2,3,3,6,8,1,0,6,0,7,1,6 -D,4,8,6,6,5,7,6,8,6,5,5,4,4,8,4,8 -A,5,11,8,9,5,12,3,3,3,10,1,9,3,7,4,9 -S,3,5,6,3,2,7,8,2,7,11,6,6,1,9,4,6 -N,2,3,4,2,2,6,8,3,3,10,7,8,4,8,0,7 -J,3,4,4,6,1,11,2,10,3,13,8,14,1,6,0,8 -Y,5,9,4,4,2,6,8,3,4,10,8,5,3,9,4,4 -X,4,10,7,7,4,9,7,0,8,9,5,7,2,8,3,8 -G,6,5,7,8,3,7,5,8,10,7,5,12,1,8,6,11 -W,4,2,6,4,4,8,11,2,2,6,9,8,7,11,1,8 -P,2,1,3,2,2,6,9,4,4,9,8,5,1,10,3,7 -H,2,4,3,3,2,6,7,5,6,7,6,8,6,8,3,8 -A,1,3,3,2,1,6,3,2,2,5,2,8,1,6,1,7 -O,4,6,4,4,3,8,6,8,6,9,4,7,3,8,3,8 -L,3,9,4,6,3,6,5,0,8,8,3,11,0,8,2,8 -O,6,8,8,7,6,7,5,5,5,8,4,7,3,7,5,7 -V,4,6,4,4,2,3,12,4,3,11,11,7,2,10,1,7 -M,5,6,8,4,5,7,6,2,5,9,7,8,8,6,2,8 -F,5,9,7,6,4,8,9,2,6,14,5,5,2,9,3,8 -Q,7,8,10,7,8,6,4,4,6,5,4,7,5,3,7,6 -Q,3,5,4,6,3,8,6,6,4,9,6,9,3,9,4,8 -L,4,9,5,8,5,6,8,4,6,7,6,9,3,9,9,10 -G,4,6,4,4,3,6,7,5,5,9,8,11,2,8,4,10 -C,5,6,6,5,5,5,8,3,5,7,6,10,3,10,8,7 -M,2,3,4,2,2,6,7,3,4,9,9,9,5,5,1,7 -D,4,8,6,6,8,9,9,4,4,8,7,5,4,9,8,6 -M,3,3,4,2,3,6,6,6,4,7,7,10,7,5,2,9 -H,5,10,8,8,10,7,6,6,4,7,5,8,9,6,10,10 -J,6,8,8,6,5,8,8,6,6,8,7,7,4,6,4,6 -L,3,6,4,5,4,9,7,4,6,6,6,9,2,8,7,10 -X,2,6,3,4,2,7,7,4,4,7,6,7,2,8,4,7 -G,7,10,7,8,5,6,8,6,6,10,8,9,3,7,6,9 -U,6,9,6,6,4,3,9,5,6,10,10,10,3,9,2,7 -Z,5,8,6,6,4,7,8,2,9,11,7,8,1,9,6,7 -L,2,5,3,4,2,7,4,1,7,8,2,9,0,7,2,8 -M,2,0,2,1,1,7,6,10,0,7,8,8,6,6,0,8 -D,3,9,4,7,4,6,7,10,7,7,7,6,3,8,3,8 -S,4,9,4,4,2,7,4,2,4,7,2,7,2,7,5,8 -X,5,6,6,8,2,7,7,5,4,7,6,8,3,8,4,8 -F,5,9,6,6,6,5,9,4,6,10,10,6,2,9,3,6 -S,4,9,4,4,2,7,4,4,4,8,2,8,3,7,5,8 -H,2,3,4,2,2,7,7,3,6,10,6,8,3,8,2,7 -Z,4,8,5,6,2,7,7,4,15,9,6,8,0,8,8,8 -P,8,13,7,7,3,6,10,5,3,13,5,4,4,10,4,8 -T,5,6,6,5,5,6,7,3,8,7,6,10,3,6,7,6 -A,1,3,2,2,1,10,2,2,1,9,2,9,1,6,2,8 -C,5,9,4,5,1,6,8,6,7,11,7,9,2,9,5,9 -S,3,3,4,4,2,8,9,5,9,5,6,6,0,8,9,7 -V,5,10,7,8,4,7,12,2,3,6,11,9,4,10,3,7 -T,5,8,5,6,3,4,13,5,5,12,9,4,2,12,1,5 -U,9,14,8,8,4,7,6,4,5,4,8,5,7,5,3,6 -C,2,1,2,2,1,6,8,7,7,8,7,13,1,8,4,10 -I,4,9,5,7,3,9,6,0,7,13,5,8,0,8,1,8 -I,0,3,1,2,1,7,7,1,6,7,6,8,0,8,2,8 -Y,7,11,7,8,5,5,8,0,8,9,9,5,4,10,7,4 -J,0,0,1,1,0,12,4,4,3,12,4,10,0,7,0,8 -P,9,14,9,8,6,9,7,4,5,13,4,4,5,9,7,8 -W,3,1,3,2,1,7,8,4,1,7,8,8,7,10,0,8 -W,5,7,5,5,4,4,10,3,2,9,8,7,6,11,2,6 -B,2,1,3,2,2,7,7,4,5,6,6,5,2,8,5,9 -P,6,12,5,6,4,9,8,4,4,12,4,4,4,11,5,7 -W,4,6,5,4,2,11,8,5,1,6,9,8,8,10,0,8 -U,5,10,8,8,10,8,8,4,5,6,6,8,9,5,8,10 -X,3,7,5,5,4,7,7,2,6,7,5,8,3,6,5,8 -R,5,9,5,4,4,8,7,3,4,9,4,8,5,8,6,8 -X,3,7,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -Q,5,8,6,7,6,7,4,5,4,7,4,9,5,4,7,6 -G,8,15,6,8,5,9,5,5,3,9,6,9,5,9,8,8 -Y,2,7,4,4,1,10,10,3,2,5,13,8,2,11,0,8 -J,2,7,2,5,2,9,6,1,6,11,4,8,0,7,1,6 -A,5,13,5,7,4,11,2,4,2,11,4,11,5,3,4,10 -M,3,3,4,2,3,8,6,7,4,7,7,8,7,5,1,8 -E,6,9,8,7,7,8,8,7,3,6,6,11,6,8,9,8 -L,4,8,5,7,5,8,6,4,5,6,7,8,3,9,7,9 -H,6,11,8,8,8,6,8,8,4,7,5,7,3,7,7,10 -K,4,5,6,4,3,6,8,2,7,10,6,9,4,9,3,7 -V,3,3,4,2,1,4,13,3,2,10,11,7,2,11,1,8 -M,5,10,6,8,4,7,7,12,2,7,9,8,9,6,0,8 -I,3,11,5,8,6,9,6,3,4,8,5,5,5,8,5,5 -W,2,0,2,1,1,7,8,3,0,7,8,8,6,9,0,8 -S,5,8,7,6,8,8,6,5,3,8,5,8,4,9,10,9 -L,4,8,5,7,5,7,6,4,5,7,7,8,4,9,9,11 -Y,2,1,3,1,0,8,11,3,1,6,12,8,1,11,0,8 -O,5,10,4,5,3,5,8,7,3,10,7,8,5,9,5,7 -B,5,10,7,7,7,11,6,2,6,10,3,7,4,7,6,11 -U,5,5,6,4,3,5,8,5,8,10,8,9,3,9,3,5 -C,4,7,5,5,3,7,7,8,6,7,6,10,3,8,3,9 -O,4,10,5,7,4,7,7,8,5,6,4,7,3,9,4,9 -Y,1,0,2,1,0,7,10,2,2,7,12,8,1,11,0,8 -O,6,9,6,7,4,6,8,8,5,10,8,7,4,8,4,9 -X,6,9,6,4,3,10,7,2,8,9,4,7,4,10,4,9 -G,4,8,6,6,6,7,7,6,3,6,6,9,4,8,7,8 -W,6,9,8,7,6,8,8,4,1,7,9,8,8,10,0,8 -I,2,11,2,8,2,7,7,0,9,7,6,8,0,8,3,8 -L,3,3,4,4,1,1,0,6,6,0,1,5,0,8,0,8 -K,6,9,9,7,5,3,9,3,7,11,12,12,4,7,4,5 -P,5,9,7,6,5,7,12,7,2,11,5,3,2,12,4,8 -I,1,10,0,7,1,7,7,5,3,7,6,8,0,8,0,8 -A,2,4,4,2,2,11,2,3,2,10,2,10,2,6,2,9 -T,4,11,6,8,4,6,14,0,5,8,10,8,0,8,0,8 -I,2,8,3,6,2,7,7,0,7,12,6,8,0,8,1,8 -P,5,11,6,8,6,4,12,8,2,10,7,4,1,10,3,8 -Q,4,9,5,11,6,8,7,8,4,5,6,9,3,8,6,10 -L,5,9,7,8,6,7,7,4,5,7,7,8,3,8,8,9 -V,7,9,7,5,3,6,10,4,3,8,8,5,5,12,3,9 -N,5,6,7,4,3,5,9,3,5,11,9,9,5,8,1,7 -U,4,9,6,7,9,9,6,4,4,6,7,7,9,8,5,7 -G,2,3,2,2,1,6,7,5,4,9,7,9,2,9,4,9 -M,3,3,4,2,3,9,6,6,4,6,7,6,7,6,2,6 -W,3,6,5,4,2,6,8,4,1,7,8,8,8,9,0,8 -G,5,11,4,6,3,7,7,4,3,9,6,7,3,10,8,7 -K,3,2,3,4,1,3,7,7,2,7,7,11,3,8,3,10 -N,3,2,4,3,2,7,8,5,4,7,6,7,5,9,2,6 -K,5,7,7,5,4,8,7,2,7,10,3,8,4,9,4,9 -R,6,10,8,8,6,7,9,5,8,5,4,10,5,4,7,9 -I,1,6,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -R,3,7,5,5,4,9,7,4,5,10,4,7,3,7,4,11 -P,4,7,5,5,4,6,10,6,5,10,8,3,1,10,4,6 -N,3,6,4,4,2,7,7,14,2,5,6,8,6,8,0,8 -X,4,9,5,6,3,8,7,4,9,6,6,6,3,8,6,7 -H,7,10,10,7,9,9,7,3,6,10,4,7,3,8,3,9 -U,9,10,9,8,5,5,7,6,9,9,8,9,5,11,5,2 -J,2,2,4,4,2,11,6,2,7,12,3,7,0,7,1,8 -X,4,9,4,7,3,7,7,4,4,7,6,8,3,8,4,8 -W,4,9,6,7,4,6,8,4,2,7,8,8,8,10,0,8 -K,3,7,3,5,1,3,7,7,3,7,6,11,4,8,2,11 -K,3,7,4,4,1,4,8,7,2,7,5,11,3,8,3,10 -R,4,11,5,8,3,6,11,10,4,7,3,9,3,7,5,11 -B,4,8,5,6,5,7,7,6,4,6,5,6,3,8,6,6 -N,5,7,7,5,4,7,9,2,4,10,5,6,5,9,1,7 -B,3,6,4,4,4,8,8,6,6,7,6,6,2,8,6,9 -V,6,10,8,7,5,6,11,3,2,8,11,8,3,10,4,8 -R,7,12,6,7,5,6,8,5,5,9,5,10,7,5,7,11 -P,3,8,3,5,2,3,14,7,2,12,7,3,0,10,3,8 -B,4,5,4,8,4,6,9,10,7,7,5,7,2,8,9,10 -T,6,8,6,6,3,5,12,3,8,12,9,4,1,11,2,4 -B,3,5,5,4,3,9,7,2,6,11,4,7,4,6,5,9 -Q,6,10,6,5,3,10,4,4,7,10,4,9,3,8,6,13 -Q,2,1,2,2,1,8,6,7,4,6,6,8,3,8,3,8 -S,1,0,1,0,0,8,7,4,6,5,6,8,0,8,7,8 -T,4,8,6,6,6,7,7,4,7,7,6,8,5,7,5,6 -F,3,8,4,6,3,4,10,3,6,10,10,6,1,10,3,6 -Y,1,3,3,2,1,7,10,1,6,7,11,8,1,11,1,8 -W,7,11,10,8,7,7,11,2,3,6,9,8,12,11,2,7 -G,4,10,5,7,3,7,7,8,7,6,6,8,2,7,6,11 -M,2,3,3,2,2,8,7,5,4,6,7,8,5,6,1,7 -W,6,8,8,6,7,8,6,6,2,7,7,8,6,8,4,7 -R,2,6,3,4,2,6,9,9,4,7,5,8,2,7,5,11 -D,5,7,6,5,4,7,8,7,5,8,6,5,4,9,3,7 -K,8,10,11,8,6,8,6,2,8,10,4,9,4,7,5,9 -B,1,3,3,1,1,9,7,2,5,10,4,7,1,8,2,9 -O,3,7,4,5,3,7,8,8,4,7,6,8,3,8,3,8 -K,3,4,4,2,2,5,7,4,7,7,6,11,3,8,4,9 -G,2,1,2,2,1,8,6,6,6,6,5,10,1,7,5,10 -X,4,11,5,8,2,7,7,4,4,7,6,8,3,8,4,8 -C,3,7,4,5,2,7,7,7,10,10,6,13,1,10,4,9 -G,3,6,4,4,3,5,7,6,5,9,7,11,2,8,4,10 -O,2,1,3,2,2,7,7,7,5,7,5,8,2,8,3,8 -I,9,14,6,8,3,11,4,5,5,12,3,8,3,7,5,10 -P,2,3,3,2,1,7,10,4,3,12,5,3,1,10,2,8 -O,2,3,3,2,1,7,7,7,5,7,6,8,2,8,3,7 -Y,6,8,9,11,11,8,11,3,4,6,8,9,5,13,11,8 -F,5,9,7,7,5,6,9,6,8,10,10,5,2,9,4,5 -G,5,7,6,5,4,5,7,5,6,9,8,9,2,9,5,9 -K,3,3,5,2,2,6,8,2,6,10,6,9,3,9,3,7 -Q,2,2,3,3,2,8,7,6,2,5,6,9,2,9,4,9 -R,13,15,10,8,6,8,7,5,6,10,3,8,7,6,6,11 -B,5,10,6,8,7,9,7,3,5,7,6,8,7,8,6,9 -B,4,11,5,8,4,6,6,9,7,6,6,6,3,8,10,11 -V,4,7,4,5,2,4,11,3,3,9,11,7,2,10,1,8 -A,5,11,8,8,4,8,2,2,3,6,2,7,5,7,6,8 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -W,6,5,7,4,4,6,10,4,3,8,7,7,9,11,3,5 -N,5,9,8,7,4,10,6,3,5,10,2,5,6,9,1,7 -M,5,10,7,8,7,8,6,5,5,6,8,7,8,6,2,7 -O,2,0,2,1,1,8,7,7,6,7,6,8,2,8,3,8 -X,5,9,8,7,4,8,7,1,8,10,5,8,3,8,4,8 -O,2,2,3,3,2,7,7,8,4,7,7,8,2,8,3,8 -P,3,7,4,5,3,4,12,4,5,11,9,3,0,10,4,7 -W,5,6,5,4,4,2,11,2,3,10,10,8,5,11,1,7 -G,4,9,5,6,3,6,7,7,7,10,8,9,2,9,4,9 -Z,1,1,2,2,1,7,7,5,8,6,6,8,2,8,6,8 -O,4,8,5,6,3,6,9,7,5,10,8,7,3,8,3,8 -S,3,8,4,6,2,8,7,5,8,5,6,6,0,8,8,8 -C,3,7,4,5,2,5,8,7,7,8,8,14,1,9,4,10 -M,3,4,5,2,3,9,6,3,4,9,4,6,8,6,2,8 -G,4,9,5,7,4,5,7,5,4,9,9,9,2,7,5,9 -U,7,13,7,7,4,8,5,4,4,6,7,7,5,7,3,7 -Q,5,9,6,8,5,8,7,7,5,6,8,8,3,8,5,10 -G,5,8,6,6,4,7,6,7,8,7,5,11,3,11,5,8 -T,3,8,5,6,4,6,11,2,7,8,11,8,2,12,1,7 -E,3,6,3,4,2,3,8,6,10,7,5,14,0,8,7,8 -R,5,9,6,6,3,6,13,9,3,7,2,9,3,7,5,10 -W,2,0,3,1,1,7,8,4,0,7,8,8,7,9,0,8 -Y,7,10,6,5,3,8,6,3,5,9,8,6,4,10,4,5 -V,5,10,7,7,8,8,7,5,2,8,7,8,5,10,5,8 -X,2,1,2,1,0,8,7,4,4,7,6,8,3,8,4,8 -Z,6,7,8,9,8,9,8,6,5,9,3,6,3,5,8,7 -U,3,4,3,6,2,7,5,13,5,7,13,8,3,9,0,8 -B,4,10,6,8,8,8,7,6,6,6,6,6,3,9,6,10 -C,7,10,8,8,8,6,6,3,5,8,6,12,6,9,5,10 -G,6,13,6,7,3,7,6,5,4,9,5,5,4,8,5,7 -G,4,9,4,4,3,8,6,4,2,9,6,8,3,9,7,7 -R,2,3,2,2,2,6,7,4,4,6,5,7,2,7,4,9 -Y,1,0,2,0,0,7,9,3,1,7,13,8,1,11,0,8 -S,6,10,7,7,4,10,5,4,8,11,4,8,2,9,5,10 -X,7,11,10,9,5,7,7,1,9,10,6,8,3,8,4,7 -Z,1,0,1,0,0,7,7,2,9,8,6,8,0,8,6,8 -P,7,12,6,7,3,9,7,5,4,12,3,6,5,9,4,8 -M,3,5,6,4,4,5,6,3,4,10,10,10,6,5,2,7 -S,6,8,7,6,4,9,6,4,8,11,4,8,2,8,5,11 -H,7,10,10,8,8,6,8,3,6,10,8,8,4,9,4,7 -Z,6,11,8,9,8,10,7,5,4,7,5,7,4,8,10,5 -C,8,13,5,7,3,6,10,6,9,11,8,10,2,8,5,9 -W,9,9,9,7,8,4,11,2,2,9,8,7,7,12,2,6 -M,2,1,3,3,3,7,6,7,3,7,7,10,6,5,1,9 -C,3,7,4,5,2,5,8,7,7,9,8,13,1,10,4,10 -D,5,9,8,6,5,9,7,5,8,10,4,5,3,8,3,8 -C,3,6,5,4,1,6,8,6,10,7,7,12,1,7,4,9 -D,4,6,6,4,4,7,6,7,5,5,5,5,3,8,3,8 -R,3,6,5,4,3,9,8,3,6,9,3,8,3,6,4,10 -Z,3,2,4,3,2,7,7,5,9,6,6,8,1,8,7,8 -G,5,11,7,8,8,7,6,7,3,7,6,10,5,8,8,8 -H,3,8,5,6,7,8,9,5,3,7,7,7,9,8,9,8 -W,6,9,6,4,3,3,9,2,2,9,11,8,7,11,0,7 -T,4,11,5,8,2,7,15,1,6,8,11,8,0,8,0,8 -R,8,13,6,8,4,10,6,6,4,10,2,9,7,5,6,10 -J,1,6,2,4,1,14,2,5,5,13,1,9,0,7,0,8 -O,5,10,7,7,8,8,9,6,2,6,7,9,11,13,5,9 -U,6,11,8,8,12,8,7,4,4,6,7,8,8,8,6,7 -S,3,5,4,4,2,8,6,3,7,11,5,9,1,9,5,9 -K,5,9,8,7,9,7,10,4,4,5,6,9,8,8,7,8 -N,3,5,4,3,3,7,8,5,4,7,7,7,5,9,2,6 -A,6,10,8,8,8,7,8,8,4,6,5,9,3,7,8,5 -K,4,7,5,5,2,4,8,9,1,7,6,11,3,8,2,11 -G,3,5,4,4,3,6,7,5,4,9,8,9,3,7,5,10 -D,1,3,2,2,1,8,7,5,5,9,5,6,2,8,3,8 -W,1,0,2,0,0,8,8,3,0,7,8,8,4,10,0,8 -J,5,10,4,8,3,10,6,2,4,12,5,7,2,10,5,11 -N,3,5,5,3,2,7,8,2,4,10,6,6,5,8,0,7 -F,5,11,5,6,4,8,8,2,4,10,5,6,4,9,7,7 -C,4,9,3,4,2,7,10,4,4,8,8,8,3,9,8,11 -F,5,9,7,7,8,10,7,1,5,9,4,5,4,10,5,8 -E,3,4,3,6,2,3,7,6,10,7,6,14,0,8,7,8 -E,5,9,7,7,6,9,6,2,7,11,4,9,3,8,5,11 -M,3,6,4,4,3,7,5,10,1,7,8,8,7,5,0,9 -U,10,11,10,8,4,3,9,6,9,12,12,9,3,9,1,7 -C,6,10,7,8,5,3,7,4,7,10,8,15,4,9,5,6 -F,5,11,6,8,7,7,8,5,4,8,6,8,9,10,7,12 -U,5,10,7,7,6,7,8,4,7,4,7,9,6,10,1,8 -E,5,8,7,6,4,10,6,2,8,11,4,8,3,8,5,11 -C,4,10,5,8,2,5,7,7,10,7,5,13,1,9,4,8 -B,5,11,5,8,4,6,8,10,7,7,5,7,3,8,9,10 -G,1,0,2,1,0,8,7,6,5,6,5,9,1,7,5,10 -K,5,9,5,6,2,5,9,9,2,7,3,11,4,8,2,11 -W,4,9,7,7,6,7,8,4,1,7,9,8,7,11,0,8 -S,3,6,4,4,3,8,8,5,8,5,6,6,0,7,8,7 -W,2,1,2,1,1,8,8,4,0,7,8,8,6,10,0,8 -Y,6,6,5,9,3,7,11,1,3,9,10,5,4,10,6,8 -S,3,9,4,7,3,8,7,5,8,5,6,7,0,8,8,8 -U,3,6,4,6,4,8,7,4,3,6,6,8,4,8,1,7 -K,5,9,8,8,7,8,6,2,3,8,3,8,6,5,8,12 -V,3,8,5,6,1,8,8,4,3,6,14,8,3,10,0,8 -V,2,7,4,5,2,7,9,3,1,8,12,8,2,11,0,8 -M,4,6,5,4,2,8,7,12,1,6,9,8,8,6,0,8 -G,4,7,5,5,3,5,8,6,6,9,8,9,2,7,4,9 -U,3,6,5,5,4,7,7,4,4,6,6,8,4,8,1,7 -Q,4,7,5,9,5,9,7,8,3,5,7,10,3,8,6,10 -O,5,9,4,4,2,9,7,5,4,9,4,8,4,9,5,9 -X,4,5,5,4,4,7,7,2,4,7,6,8,2,9,7,7 -X,3,4,4,3,2,7,7,3,9,6,6,9,2,8,5,8 -P,5,4,5,6,2,4,13,8,1,10,6,3,1,10,4,8 -X,3,4,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -I,2,11,3,8,4,8,7,0,7,7,6,8,0,8,3,7 -A,3,7,5,6,4,7,8,2,4,7,8,9,5,8,3,6 -W,5,6,5,4,4,4,10,3,2,9,9,7,6,11,2,6 -U,5,8,5,6,3,3,8,5,7,10,10,10,3,9,2,6 -V,4,5,5,3,2,4,12,4,4,11,11,7,2,10,1,8 -D,6,10,9,8,7,10,6,2,7,11,4,7,5,6,4,10 -T,4,2,5,4,3,9,12,3,7,5,11,9,2,11,1,8 -D,4,8,4,6,4,5,7,9,7,5,4,6,2,8,3,8 -D,3,8,4,6,2,5,7,10,8,7,6,5,3,8,4,8 -D,4,6,4,4,3,5,7,9,7,7,6,6,2,8,3,8 -U,7,8,7,6,3,3,10,6,8,13,12,8,3,9,1,7 -I,7,11,9,8,6,10,5,2,7,7,7,4,0,9,4,7 -N,9,15,7,8,4,6,9,4,5,4,5,11,6,11,2,7 -V,6,11,6,6,3,7,7,4,4,7,7,6,6,12,2,8 -V,4,5,6,4,2,4,12,3,3,10,11,7,3,10,1,7 -S,5,10,4,6,2,7,3,4,4,8,2,7,3,7,5,8 -Q,2,2,3,3,2,8,8,6,2,5,7,9,2,9,5,10 -C,4,8,5,6,3,3,8,5,7,10,10,13,1,8,3,7 -P,3,8,5,6,4,7,5,5,4,7,6,9,3,9,6,11 -Z,2,7,3,5,2,6,8,5,10,6,7,9,1,9,8,8 -Y,2,4,4,3,2,6,10,1,7,8,11,8,1,11,2,8 -K,9,13,9,7,4,6,7,3,7,9,9,10,6,10,3,6 -Y,4,5,5,7,7,9,8,6,3,7,7,7,6,10,6,4 -J,7,11,9,8,6,8,4,4,6,8,6,7,5,6,5,7 -B,5,11,7,9,8,8,7,5,4,7,5,7,4,8,6,8 -O,3,2,4,3,2,7,6,7,5,7,5,7,2,8,3,7 -K,5,7,7,6,6,6,7,3,4,6,4,9,5,5,9,7 -K,2,3,4,2,2,7,8,2,6,10,6,8,3,8,2,8 -V,4,10,6,8,2,7,8,4,3,7,14,8,3,9,0,8 -P,4,6,5,4,4,7,9,3,6,8,8,4,1,10,4,7 -R,6,11,9,8,6,8,8,5,6,8,5,7,4,8,6,12 -P,4,7,5,5,4,6,9,6,5,9,7,4,2,10,4,7 -Z,4,7,6,5,3,6,9,3,9,12,9,7,1,9,6,5 -E,4,10,3,5,2,8,7,5,4,11,5,10,3,8,7,11 -Q,7,9,7,10,7,7,9,5,3,7,10,11,3,8,7,7 -Q,2,5,3,6,4,9,10,6,3,3,8,11,2,9,5,10 -X,2,7,3,4,1,7,7,4,4,7,6,8,3,8,4,8 -U,7,9,7,7,4,4,8,6,8,10,10,9,3,9,2,5 -N,5,8,8,6,4,4,10,4,4,10,11,9,6,8,1,7 -T,5,5,6,5,5,6,8,4,8,8,7,9,3,8,7,5 -S,3,6,4,4,3,8,8,5,7,6,6,7,0,8,8,8 -T,5,7,6,5,6,6,8,4,5,6,7,9,6,8,5,8 -G,9,14,7,8,5,9,5,5,3,9,6,8,4,9,8,8 -G,5,10,5,8,4,5,7,6,6,10,8,10,2,8,5,9 -I,2,8,3,6,1,7,7,0,8,14,6,8,0,8,1,7 -C,2,4,3,3,1,5,9,5,6,12,9,10,1,10,2,7 -D,5,7,6,5,5,10,6,3,6,11,4,7,3,8,3,9 -J,3,7,4,5,2,8,7,1,6,14,4,7,0,7,0,7 -L,3,8,3,6,1,0,1,5,6,0,0,7,0,8,0,8 -R,7,13,6,7,5,8,6,3,5,8,5,9,6,9,6,7 -V,2,3,3,2,1,4,12,3,2,10,11,7,2,11,0,8 -M,11,12,11,7,6,6,9,5,4,4,4,11,11,14,3,8 -T,3,10,5,7,1,7,15,1,6,7,11,8,0,8,0,8 -U,6,10,8,7,5,4,8,7,8,9,11,11,3,9,1,8 -M,4,6,7,4,6,12,3,3,1,10,4,9,8,6,2,8 -J,3,10,4,8,4,8,6,2,4,11,5,10,1,6,2,6 -O,4,5,5,4,3,8,7,8,5,7,6,8,2,8,3,8 -Y,5,7,5,5,3,6,8,1,7,8,9,5,2,12,4,4 -B,6,9,5,4,4,9,7,3,5,10,5,7,6,6,7,9 -T,3,4,4,3,1,6,11,2,8,11,9,5,1,10,2,5 -Q,6,7,6,9,6,8,7,6,3,9,8,10,3,8,6,8 -O,7,8,9,7,6,5,7,6,6,8,5,6,3,7,5,7 -E,8,13,6,8,5,7,7,4,4,10,6,9,3,9,8,11 -I,3,8,5,6,3,7,7,0,7,13,6,8,0,8,1,8 -Z,3,9,4,6,2,7,7,4,13,10,6,8,0,8,8,8 -O,2,0,2,1,1,7,7,6,6,7,6,8,2,8,3,8 -V,2,8,4,6,1,9,8,4,2,6,13,8,3,10,0,8 -R,9,14,9,8,7,5,8,2,6,8,4,10,7,5,7,5 -M,5,11,6,9,4,8,7,12,2,6,9,8,9,6,0,8 -N,5,9,7,6,4,9,7,3,5,10,4,6,5,9,1,7 -S,6,11,6,6,3,6,9,3,5,13,8,7,2,9,3,7 -S,2,1,3,2,2,8,7,6,4,7,7,8,2,9,9,8 -D,4,5,5,4,4,7,7,7,7,7,6,5,2,8,3,7 -S,4,6,5,4,3,6,9,3,7,10,7,7,2,7,4,5 -M,6,9,8,8,10,8,7,4,3,7,6,7,10,8,6,5 -J,0,0,1,0,0,12,4,4,3,11,4,11,0,7,0,8 -D,4,8,6,6,4,7,8,7,6,10,6,5,3,8,4,8 -T,4,6,4,4,2,5,12,3,6,11,9,4,2,11,2,5 -R,6,11,6,8,7,5,10,8,3,7,4,8,2,7,5,11 -E,3,4,5,3,2,8,7,1,8,11,5,8,2,8,4,10 -O,9,13,6,7,4,5,6,7,4,9,7,9,5,9,5,8 -C,4,9,5,7,6,5,7,4,5,7,6,9,6,10,5,7 -G,2,1,3,2,2,7,7,5,5,6,6,9,2,9,4,9 -T,4,9,4,4,2,5,11,2,6,11,8,5,2,8,3,5 -A,3,9,6,7,4,11,3,1,2,8,3,9,4,5,3,8 -J,6,9,5,7,3,8,9,2,3,13,4,5,2,9,7,8 -B,9,11,7,6,4,10,4,5,6,11,3,9,5,7,6,11 -T,2,1,3,1,1,7,11,3,5,7,10,8,2,11,1,8 -W,5,6,5,4,4,5,11,3,2,9,8,7,6,12,2,7 -D,9,15,8,8,6,8,6,3,7,10,5,7,6,8,8,5 -E,4,8,4,6,2,3,6,6,11,7,7,14,0,8,7,7 -V,3,3,4,2,1,3,12,4,3,11,11,7,2,11,1,8 -H,10,13,11,8,7,9,6,4,5,11,3,7,6,7,5,7 -V,9,13,7,7,4,9,10,5,5,6,10,6,5,12,3,6 -M,9,13,10,8,6,11,11,7,3,4,7,9,9,13,3,6 -D,2,2,3,3,2,7,7,6,6,7,6,5,2,8,3,7 -C,5,9,6,6,3,5,8,8,9,9,8,12,2,10,4,9 -D,5,10,5,8,6,6,8,9,7,6,5,6,2,8,3,7 -R,9,13,7,7,4,9,5,5,6,9,4,9,6,6,7,11 -U,3,4,4,2,2,5,8,5,7,10,8,9,3,9,2,6 -G,7,9,7,7,5,5,7,6,6,10,8,11,2,9,4,10 -F,2,3,2,2,1,5,10,4,5,10,9,6,1,10,3,7 -K,5,8,8,7,7,9,6,2,4,9,3,8,4,6,7,11 -W,8,10,8,5,3,6,10,2,2,8,10,7,8,12,1,7 -B,5,8,7,6,9,8,8,5,3,7,7,7,6,10,9,9 -S,5,9,7,8,8,8,7,5,6,7,6,8,6,8,10,13 -P,6,11,5,6,3,8,7,5,3,12,3,6,5,9,4,8 -J,2,5,4,4,1,9,7,2,7,14,4,8,0,7,0,7 -L,2,1,2,1,0,2,1,6,5,0,2,5,0,8,0,8 -K,5,10,5,5,3,5,8,3,6,9,8,9,5,7,3,8 -K,5,8,7,6,4,5,8,2,7,10,9,10,3,8,3,7 -S,4,9,6,7,4,7,8,3,7,10,5,7,2,7,4,8 -L,3,6,4,4,2,5,3,1,8,8,2,10,0,7,2,7 -W,7,9,7,7,6,2,11,2,3,10,10,8,6,11,2,7 -Q,7,15,6,8,5,11,4,4,6,10,5,7,3,9,7,12 -E,4,9,6,8,7,6,9,5,5,7,7,11,6,10,9,10 -Z,3,8,5,6,3,7,9,2,9,11,7,7,1,9,6,6 -K,3,7,5,5,5,5,7,4,7,6,5,10,3,8,4,9 -K,3,3,5,2,2,7,6,2,7,10,6,10,4,7,3,8 -W,6,10,6,7,6,3,10,2,3,10,10,8,6,11,2,6 -B,3,7,3,5,3,6,8,8,6,7,5,7,2,8,9,10 -J,2,7,2,5,1,13,2,8,4,13,4,12,1,6,0,8 -H,5,6,8,4,5,8,7,3,6,10,5,8,4,9,4,8 -S,6,10,8,8,11,7,7,3,2,7,6,7,3,8,12,2 -V,3,3,5,5,1,7,8,4,3,7,13,8,3,9,0,8 -N,3,6,5,4,3,6,9,6,4,8,7,8,5,8,1,7 -B,6,9,8,7,8,8,7,5,6,9,6,6,4,10,6,9 -A,3,7,5,5,2,12,3,4,3,11,2,10,2,6,3,9 -H,3,5,5,4,3,7,7,3,6,10,6,8,3,8,3,8 -X,6,12,7,7,4,8,7,2,7,11,4,6,4,8,4,7 -N,6,11,8,8,5,10,8,3,5,9,3,5,6,9,1,7 -V,7,10,7,7,3,4,11,2,4,9,11,7,4,10,1,7 -Z,2,5,5,3,2,7,8,2,9,12,6,8,1,9,5,8 -S,1,0,2,1,0,8,8,4,7,5,6,7,0,8,7,8 -V,3,8,5,6,1,6,8,4,3,8,14,8,3,10,0,8 -Y,4,7,6,5,3,10,10,1,6,2,10,8,1,11,1,9 -C,1,3,2,1,1,4,8,4,6,10,9,12,1,8,2,8 -L,2,5,3,4,2,7,4,1,8,8,2,10,0,7,2,8 -Q,4,5,5,6,4,7,10,4,4,7,10,11,3,9,6,7 -X,7,10,7,5,3,5,8,3,8,10,11,11,4,11,4,5 -S,7,10,7,5,3,7,8,4,3,13,8,7,3,9,4,8 -R,10,15,8,8,5,7,7,5,5,9,5,9,7,5,7,11 -F,6,9,8,7,6,5,11,6,5,12,8,5,3,9,2,5 -M,1,0,2,0,0,7,6,9,0,7,8,8,5,6,0,8 -K,6,10,9,7,5,4,8,2,7,10,10,11,3,8,4,6 -J,5,10,4,7,3,7,11,3,3,13,5,4,2,7,6,8 -T,3,5,4,4,2,5,12,2,7,11,9,4,1,11,2,5 -C,6,8,7,7,7,6,7,5,5,6,6,11,7,10,9,8 -W,9,11,8,8,7,5,10,4,3,9,8,7,9,11,3,5 -H,4,8,5,6,5,7,6,13,2,7,7,8,3,8,0,8 -E,4,9,6,6,6,6,8,6,8,6,5,10,3,8,6,9 -W,1,0,2,1,1,7,8,3,0,7,8,8,5,10,0,8 -H,2,1,3,2,2,9,7,6,5,7,6,6,3,8,3,7 -U,6,11,8,9,5,5,8,6,7,7,9,10,3,9,1,8 -Z,1,0,2,0,0,7,7,2,10,8,6,8,0,8,6,8 -O,2,1,3,2,2,8,7,7,5,7,6,8,2,8,3,8 -F,2,3,4,1,1,6,10,3,5,13,7,5,1,9,1,7 -T,5,6,7,5,5,5,7,3,8,7,6,10,3,7,7,5 -I,1,6,2,4,1,7,7,1,8,7,6,8,0,8,3,8 -A,2,2,4,4,2,8,2,2,2,8,2,8,2,6,3,7 -J,1,1,2,1,1,10,6,2,6,12,4,8,0,7,1,7 -U,4,8,5,6,3,6,9,6,6,5,9,10,3,9,1,8 -R,5,10,6,7,6,6,9,8,4,7,5,8,2,7,5,11 -T,4,10,6,7,2,7,15,1,6,7,11,8,0,8,0,8 -J,6,7,8,9,8,8,8,4,6,6,6,7,5,9,11,11 -U,3,4,4,3,2,5,8,5,7,10,9,8,3,9,2,6 -C,5,8,6,6,4,6,8,6,9,6,6,13,1,8,4,9 -T,9,13,8,7,3,8,7,4,9,13,5,7,2,9,6,6 -V,2,6,4,4,1,8,8,4,2,6,13,8,3,10,0,8 -Q,6,7,8,6,6,8,3,4,5,7,3,9,4,5,5,7 -Q,4,5,5,6,5,8,8,6,1,7,6,11,3,9,6,8 -Q,1,0,2,1,0,8,7,6,3,6,6,9,2,8,3,8 -K,5,10,5,7,2,4,8,9,2,7,6,11,4,8,2,11 -C,7,12,5,6,4,7,6,4,3,9,8,11,4,9,8,11 -A,3,11,5,8,3,13,4,5,3,12,1,8,2,6,4,9 -Z,3,8,4,6,3,8,7,3,12,9,6,8,0,8,7,7 -U,6,10,6,7,5,4,8,5,7,9,7,9,7,9,5,3 -D,5,11,6,8,5,11,6,3,7,11,2,6,3,8,3,9 -M,5,8,7,6,6,8,7,2,4,9,7,8,7,6,2,8 -Y,5,10,8,8,4,7,10,2,7,6,12,9,2,11,2,8 -Z,2,7,3,5,3,6,8,5,10,7,6,10,1,9,8,7 -H,4,7,6,10,6,8,12,5,2,9,7,5,4,11,8,4 -B,4,7,5,5,6,8,7,6,6,6,6,6,2,8,6,9 -D,2,3,3,1,2,8,6,4,6,10,4,6,2,8,2,8 -R,5,11,6,8,3,5,10,9,4,7,4,8,3,7,6,11 -R,2,1,2,1,1,6,9,8,4,7,5,8,2,7,4,11 -U,7,9,7,6,5,4,8,5,8,9,6,9,7,9,6,2 -N,5,8,7,6,4,9,7,6,6,6,6,4,6,9,2,5 -K,6,9,8,7,6,9,5,1,6,10,4,9,5,6,5,10 -N,6,11,8,8,6,8,7,9,5,6,4,4,4,8,4,9 -S,4,10,5,7,3,8,8,6,9,4,6,7,0,8,9,7 -E,3,6,3,4,3,4,7,5,8,7,6,13,0,8,6,9 -F,5,11,5,8,4,1,13,4,4,12,10,7,0,8,2,6 -T,6,9,8,6,6,6,7,7,7,8,10,8,5,7,7,9 -K,8,14,8,8,5,10,6,3,6,11,2,6,5,8,4,9 -K,4,9,4,6,2,3,7,7,2,7,5,11,3,8,3,10 -E,3,7,3,5,2,3,7,6,10,7,6,14,0,8,7,7 -I,2,7,4,5,3,10,5,1,5,7,5,5,2,8,4,7 -L,6,11,9,8,11,7,8,3,6,5,7,10,6,12,10,6 -A,5,10,9,7,6,7,5,2,4,5,1,6,5,7,5,5 -W,11,15,12,9,8,7,8,3,4,7,9,7,12,9,3,5 -A,4,9,6,6,3,11,2,3,3,10,2,9,2,6,3,8 -Q,2,4,3,5,3,8,9,6,1,5,8,10,2,9,5,10 -D,3,1,4,3,2,7,7,7,7,7,6,5,2,8,3,7 -C,4,4,5,7,2,5,7,7,10,7,6,14,1,8,4,9 -G,4,5,5,4,3,6,7,6,6,9,7,10,2,9,4,9 -V,3,8,5,6,3,6,11,2,4,8,11,8,2,10,1,9 -T,5,6,6,5,5,6,8,4,8,8,7,9,3,8,6,6 -A,3,8,5,5,2,7,4,3,1,7,1,8,3,7,2,8 -O,5,8,7,6,8,7,9,5,2,7,6,7,10,9,6,10 -O,3,5,4,3,2,8,7,7,5,9,5,8,2,8,3,8 -D,4,9,5,7,3,5,7,10,8,7,6,5,3,8,4,8 -M,7,8,9,6,6,10,5,3,5,9,3,6,10,6,2,9 -U,3,7,5,5,4,9,6,7,5,7,6,8,3,8,4,5 -R,1,0,2,0,1,6,9,7,3,7,5,8,2,7,4,10 -W,4,7,6,5,3,5,8,5,1,7,8,8,8,9,0,8 -H,3,5,5,7,4,11,6,3,1,8,6,9,3,8,8,12 -F,4,5,5,7,2,1,14,5,4,12,10,5,0,8,2,5 -G,3,5,4,4,2,6,7,5,5,9,7,10,2,8,4,10 -T,3,11,5,8,1,7,14,0,6,7,11,8,0,8,0,8 -L,2,5,3,4,1,5,5,1,9,7,2,11,0,7,2,8 -Y,4,9,7,7,3,6,10,2,8,7,12,8,1,11,2,8 -Q,4,4,6,6,3,7,7,7,6,5,7,7,3,8,5,9 -L,4,9,6,6,3,7,3,1,8,8,2,10,2,5,4,7 -R,1,3,3,1,1,9,7,3,4,10,3,7,2,7,2,10 -T,5,9,6,7,7,6,8,3,6,7,6,10,5,8,5,7 -B,4,9,4,7,4,6,7,9,7,7,6,7,2,8,9,10 -R,3,2,4,3,3,6,7,4,6,6,5,7,3,7,5,8 -E,3,4,3,6,2,3,8,6,11,7,5,15,0,8,7,7 -D,6,10,8,8,7,7,7,7,5,7,6,6,4,8,3,7 -B,3,4,4,6,3,6,6,9,7,6,7,7,2,8,9,10 -N,7,11,10,8,12,8,7,4,5,7,6,6,8,10,10,5 -V,2,3,3,2,1,7,12,2,2,7,11,8,2,11,1,8 -G,7,12,6,6,4,6,7,7,5,9,7,6,4,8,5,6 -S,3,2,3,3,2,8,8,7,5,8,5,7,2,8,8,8 -D,5,9,7,6,4,10,6,3,8,11,4,6,4,6,4,8 -F,3,3,3,4,1,1,13,4,4,12,11,7,0,8,2,6 -S,4,8,5,6,4,7,7,5,7,5,6,9,0,9,8,8 -M,4,8,7,6,8,11,5,3,2,9,4,8,8,6,3,7 -I,2,7,3,5,2,7,7,0,7,13,6,8,0,8,1,8 -L,3,9,5,7,3,8,4,0,9,9,3,11,0,7,3,9 -C,9,12,6,7,3,8,8,6,8,12,6,8,2,9,5,9 -V,3,2,5,3,2,9,12,3,3,5,11,9,2,10,1,9 -A,3,9,5,6,3,6,3,2,3,5,2,8,2,6,3,6 -Q,4,6,6,8,6,8,7,7,2,5,6,10,3,8,5,10 -D,4,8,6,6,4,9,6,5,7,10,3,5,3,8,3,8 -U,4,5,4,7,2,7,5,15,5,7,13,8,3,9,0,8 -J,0,0,1,0,0,12,4,6,3,12,5,11,0,7,0,8 -H,6,8,9,6,7,5,8,3,7,10,9,9,4,9,4,6 -O,2,3,2,2,1,7,7,7,4,7,6,8,2,8,2,7 -Y,3,6,5,8,1,7,10,1,3,7,12,8,1,11,0,8 -K,8,10,11,8,6,8,6,2,7,10,4,9,4,8,4,9 -G,8,12,7,6,5,7,6,3,3,8,5,7,4,9,9,7 -C,3,6,4,4,1,5,8,6,10,6,7,11,1,7,4,8 -N,4,4,4,3,2,7,9,5,4,7,6,7,5,9,2,7 -X,6,8,8,6,6,7,7,2,5,6,6,7,3,9,10,9 -P,5,11,6,8,3,4,11,10,3,9,6,4,2,10,4,8 -T,3,7,5,5,3,8,12,3,7,7,11,8,2,11,1,8 -W,4,2,6,4,4,7,11,2,2,6,9,8,7,11,1,8 -N,5,4,5,6,2,7,7,15,2,4,6,8,6,8,0,8 -B,3,7,3,5,3,6,7,9,6,7,6,7,2,8,8,10 -A,7,10,9,8,9,8,6,7,4,7,6,9,6,8,8,3 -B,5,6,7,6,8,8,7,5,4,7,6,8,7,9,8,4 -B,2,7,3,5,2,6,7,8,6,7,6,7,2,8,8,10 -J,2,5,4,4,1,9,6,2,6,14,5,9,1,6,1,7 -B,3,5,5,3,3,10,6,3,6,10,4,7,2,8,4,11 -X,7,10,10,8,5,10,7,2,8,11,2,7,3,8,4,9 -F,2,3,2,2,1,5,10,3,4,10,9,5,1,9,2,7 -H,1,0,1,1,0,7,7,11,1,7,6,8,3,8,0,8 -C,5,10,6,8,2,6,7,7,10,6,6,15,1,8,4,9 -Y,5,11,6,8,3,7,10,1,3,7,12,8,1,11,0,8 -E,3,4,5,3,3,6,7,2,8,11,7,9,2,8,4,8 -K,7,13,8,7,5,7,8,2,6,10,4,8,5,5,4,7 -H,6,9,8,7,5,5,7,3,7,10,9,10,3,8,4,6 -B,3,1,3,2,2,7,7,5,5,6,6,6,2,8,6,9 -A,3,5,5,4,4,7,8,3,4,7,8,8,5,10,3,6 -R,2,3,4,2,2,9,7,2,5,10,3,6,2,7,3,9 -P,4,6,6,9,9,8,6,5,1,7,6,7,8,8,6,7 -Z,6,9,8,6,6,9,10,6,5,6,5,6,3,9,9,4 -W,8,9,8,5,3,3,11,2,3,11,11,8,7,11,0,7 -T,3,5,5,7,1,6,15,1,6,8,11,7,0,8,0,8 -Z,4,7,5,5,3,7,7,6,11,6,6,8,2,8,8,8 -K,4,10,6,7,8,9,7,3,4,5,6,8,7,9,7,6 -P,3,7,5,5,3,6,12,4,5,13,6,2,0,9,3,8 -X,5,8,8,6,4,6,8,1,8,10,8,8,3,8,4,7 -C,6,10,6,7,4,6,8,7,8,13,8,10,2,11,3,7 -U,3,1,4,2,2,6,9,5,6,7,9,9,3,9,1,8 -N,4,10,5,8,5,8,7,12,1,6,6,8,5,8,0,9 -X,2,4,4,3,2,10,7,1,8,10,3,7,2,7,3,8 -S,4,10,4,8,4,9,8,5,9,5,5,5,1,6,9,7 -F,2,1,2,2,1,6,10,4,5,10,9,5,1,10,3,6 -U,5,9,6,7,4,8,5,13,5,8,12,8,3,9,0,8 -P,2,3,2,1,1,6,10,5,4,9,7,4,1,9,3,7 -X,4,5,5,7,2,7,7,4,4,7,6,8,3,8,4,8 -Q,3,5,4,6,3,7,8,5,2,7,9,11,3,9,5,7 -K,3,3,5,2,2,8,6,2,6,10,5,10,3,8,3,9 -B,10,14,9,8,8,8,7,4,5,9,6,7,8,7,10,8 -D,3,7,5,5,7,9,9,4,4,7,6,5,4,9,8,6 -G,7,8,9,7,9,7,8,5,3,7,7,8,10,10,10,7 -B,3,6,4,4,4,6,8,7,4,7,5,6,2,8,6,6 -T,3,3,4,2,1,5,11,3,7,11,9,4,1,10,2,5 -Z,2,4,4,3,2,8,6,2,9,12,5,9,1,8,5,9 -C,4,8,5,6,2,6,9,7,10,5,7,12,1,6,4,8 -V,2,7,4,5,1,9,8,4,2,5,13,8,3,10,0,8 -G,5,10,7,8,6,6,6,7,6,6,5,12,3,10,5,7 -M,5,8,7,6,8,8,7,6,5,6,7,8,8,6,2,7 -B,4,11,5,8,4,6,7,9,7,7,6,7,2,8,9,10 -N,5,9,7,7,6,6,7,7,6,7,5,8,6,7,3,7 -W,10,10,9,8,9,5,11,4,3,8,7,7,10,12,4,5 -N,2,3,2,1,1,7,8,6,4,7,6,7,4,8,1,7 -A,4,4,6,6,2,6,7,3,0,6,0,8,2,7,1,7 -R,4,9,6,7,6,8,7,7,3,8,5,7,4,7,7,10 -U,4,4,4,3,2,4,8,5,7,11,10,9,3,9,2,6 -R,2,3,3,2,2,7,7,5,4,9,5,7,2,7,3,10 -E,2,2,3,4,3,7,7,6,7,7,6,9,2,8,6,10 -M,5,10,7,5,4,12,2,2,2,10,3,9,5,4,1,9 -I,1,7,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -A,5,7,7,5,7,7,8,8,4,7,5,8,4,8,9,4 -W,4,7,6,5,3,6,8,5,1,7,8,8,8,9,0,8 -J,4,10,5,8,3,8,7,2,6,14,5,9,1,7,1,7 -L,2,3,3,2,1,7,4,2,7,8,2,10,0,7,2,8 -O,4,5,5,7,3,7,8,9,8,7,8,8,3,8,4,8 -I,1,5,1,4,1,7,7,1,7,7,6,8,0,8,2,8 -K,1,0,1,0,0,5,7,7,1,7,6,11,2,8,2,11 -M,5,8,8,6,5,5,7,3,4,10,9,10,8,6,3,8 -N,10,13,9,7,4,7,10,5,5,3,5,11,6,11,3,6 -A,3,8,5,6,3,10,4,2,2,8,2,10,2,6,3,8 -G,4,6,5,4,5,9,8,6,2,5,7,9,6,10,3,8 -N,5,5,7,4,6,7,9,4,4,6,4,8,7,7,5,7 -F,4,8,4,6,3,1,13,4,3,12,10,7,0,8,2,6 -V,1,0,2,1,0,8,9,3,2,7,12,8,2,11,0,8 -G,4,5,5,4,3,6,7,5,6,9,7,10,2,8,4,9 -C,5,7,7,6,6,5,6,4,5,7,6,11,4,10,7,10 -Y,10,9,8,12,5,7,9,3,2,7,11,5,4,10,7,6 -Y,6,11,8,8,8,9,3,7,5,8,8,7,3,10,5,3 -W,4,4,5,3,3,4,11,3,2,9,9,7,6,11,1,7 -J,2,11,3,8,1,14,2,7,5,14,1,10,0,7,0,8 -F,4,6,6,4,3,8,10,2,6,14,5,4,2,10,2,8 -Q,5,7,6,6,5,7,4,4,5,6,3,7,3,7,5,7 -Y,4,9,6,7,3,5,11,2,3,8,12,8,1,11,0,8 -K,5,8,7,6,8,7,6,3,4,6,6,8,8,6,7,7 -H,4,6,5,4,4,7,9,6,5,7,4,6,3,7,7,10 -N,7,10,9,8,10,6,8,3,4,8,7,8,8,10,7,4 -B,3,9,3,7,5,7,8,8,6,7,5,7,2,7,8,9 -O,4,10,5,7,4,7,6,8,5,7,5,8,3,8,3,8 -V,3,6,5,4,2,8,9,4,2,6,13,8,3,10,0,8 -U,8,9,8,7,5,3,8,5,8,10,9,9,3,9,2,6 -F,5,7,6,5,6,7,8,6,4,8,6,8,3,10,8,10 -N,8,10,11,8,5,9,7,3,6,10,4,6,7,9,2,7 -X,2,1,4,3,2,7,8,3,9,6,6,7,2,8,6,7 -E,4,10,6,7,7,7,7,3,6,7,7,10,4,9,8,8 -L,2,3,2,5,1,0,1,5,6,0,0,7,0,8,0,8 -A,5,10,7,7,8,8,5,8,4,8,6,8,3,9,8,3 -H,2,1,3,3,2,8,7,6,6,7,6,8,3,8,3,7 -O,1,1,2,1,1,8,7,7,4,7,6,8,2,8,3,8 -F,4,11,6,8,4,9,9,2,6,13,4,4,2,10,3,9 -N,5,9,6,7,3,7,7,15,2,4,6,8,6,8,0,8 -S,2,1,2,2,2,8,8,6,4,7,5,7,2,8,8,8 -I,4,11,3,6,2,10,7,6,3,13,4,8,2,8,4,9 -L,3,7,5,5,2,4,2,7,7,1,2,4,1,6,0,6 -J,1,7,2,5,1,13,3,8,4,14,3,11,0,6,0,8 -A,4,7,6,6,5,8,8,2,4,7,7,8,5,7,4,6 -Q,6,9,8,8,8,5,4,4,6,5,4,7,4,5,6,6 -N,4,7,6,5,6,9,6,4,5,7,5,6,7,11,6,5 -W,8,8,8,6,5,2,10,2,3,11,11,9,7,10,1,7 -N,3,7,5,5,5,5,8,4,3,9,10,10,5,8,4,5 -J,5,10,6,8,5,8,6,4,5,8,6,7,3,7,4,6 -S,1,0,1,0,0,7,7,3,5,5,6,8,0,8,7,8 -D,4,8,6,6,8,9,8,5,4,7,6,6,4,8,8,6 -Y,2,4,3,3,1,6,10,1,6,8,11,8,1,11,2,7 -O,2,1,3,1,1,8,7,7,5,7,6,9,2,8,3,8 -Q,5,6,6,8,6,9,8,7,2,4,7,11,3,9,5,10 -P,4,7,6,11,11,8,6,5,1,7,6,7,7,9,7,10 -E,3,8,4,6,5,6,6,3,5,7,7,10,4,10,8,9 -E,4,7,6,5,4,9,6,2,8,11,5,8,4,7,6,10 -G,3,9,4,7,2,7,7,8,7,5,6,9,2,7,6,11 -D,4,11,6,8,5,9,7,5,7,10,5,5,3,8,3,8 -R,6,9,9,7,7,9,7,4,6,10,3,7,3,6,4,11 -V,4,8,4,6,2,3,11,3,3,10,11,8,2,10,1,7 -X,5,7,6,5,5,7,8,3,6,6,6,8,4,8,10,8 -M,6,9,8,8,10,6,8,4,3,7,5,8,10,8,5,6 -W,8,12,9,7,5,1,8,2,3,9,11,9,9,9,1,6 -E,5,10,7,8,5,10,6,2,8,11,4,8,2,8,5,11 -T,3,8,5,6,3,6,12,2,8,8,12,8,1,11,1,7 -O,3,5,4,3,2,7,7,8,5,7,6,8,2,8,3,8 -V,3,4,5,3,2,4,12,3,3,9,11,7,2,11,1,8 -E,3,7,5,5,3,9,6,2,7,11,5,8,2,9,5,11 -D,7,11,9,8,8,8,8,5,6,10,5,5,6,8,6,11 -J,2,9,3,6,2,14,3,4,4,13,1,8,0,7,0,8 -J,1,0,1,1,0,12,3,6,3,12,5,11,0,7,0,8 -S,3,9,4,7,4,8,7,7,5,7,5,6,2,8,8,8 -T,2,5,4,6,1,5,14,1,6,9,11,7,0,8,0,8 -F,5,9,7,6,7,9,7,1,5,9,5,5,5,10,4,6 -E,4,9,5,7,3,3,6,6,12,7,7,15,0,8,7,7 -U,6,10,6,8,3,4,9,5,8,11,11,8,3,9,2,6 -M,15,15,15,8,7,9,11,6,4,4,6,10,11,13,2,6 -N,2,1,2,2,1,7,9,5,4,7,6,7,4,8,1,6 -J,4,5,6,6,5,7,7,4,6,6,6,7,3,9,8,9 -H,2,3,4,1,2,5,8,3,5,10,9,9,3,8,2,6 -Z,4,7,5,5,5,8,8,2,7,7,6,8,0,9,9,9 -X,7,11,8,6,4,8,8,2,8,11,6,7,4,12,4,8 -B,5,9,8,7,7,10,6,3,6,10,4,6,2,8,5,10 -S,4,10,5,8,5,7,6,8,6,7,8,10,2,10,8,7 -A,4,9,5,6,5,7,6,7,4,7,6,9,2,8,8,4 -P,1,0,1,0,0,5,10,6,1,9,6,5,1,9,2,8 -O,5,11,6,8,9,9,9,6,2,6,7,9,12,12,6,7 -Q,2,1,2,1,1,8,7,6,4,6,6,8,2,8,3,8 -P,1,1,2,1,1,5,11,8,2,9,6,4,1,9,3,8 -R,4,7,6,5,4,10,7,3,6,11,2,6,3,7,4,10 -J,4,8,3,11,3,8,8,3,3,12,5,5,3,8,6,10 -W,3,6,5,4,5,8,9,5,4,5,9,9,5,8,2,7 -T,6,8,7,6,4,7,10,1,8,11,9,5,2,10,4,4 -E,4,5,5,5,5,7,9,5,5,7,8,11,5,9,7,9 -Z,4,9,4,7,4,7,8,3,12,8,6,8,0,8,7,7 -G,4,5,6,4,5,7,8,5,3,7,7,8,7,11,7,8 -I,4,5,5,6,4,8,9,5,5,7,6,8,3,8,9,8 -W,10,13,10,8,5,5,9,2,2,7,10,7,9,12,1,6 -D,7,13,7,7,4,10,4,3,6,10,2,7,5,7,4,12 -M,3,3,5,2,3,7,6,3,4,9,7,9,7,5,1,8 -B,3,6,4,4,4,8,7,4,5,9,5,6,2,8,5,9 -V,3,4,4,3,1,4,12,2,3,9,11,7,2,10,1,7 -H,4,7,5,5,5,7,7,5,6,7,6,10,6,8,3,8 -L,2,4,4,3,2,6,4,1,8,8,2,11,0,7,2,8 -X,2,3,3,1,1,9,6,2,7,10,4,8,2,8,3,9 -R,6,8,8,6,7,9,8,3,7,9,3,8,4,5,4,11 -M,2,3,3,2,2,7,6,6,3,7,7,8,5,5,1,8 -I,1,5,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -T,5,8,6,7,6,6,9,5,7,8,8,8,4,13,9,6 -N,5,8,7,6,5,7,6,10,5,6,4,5,4,7,4,9 -A,4,5,6,4,4,8,8,3,4,6,7,7,5,8,4,5 -Q,6,9,5,4,3,11,3,4,5,11,3,10,3,8,5,13 -D,4,11,5,8,3,6,7,11,9,7,6,6,3,8,4,8 -A,3,10,5,8,4,12,3,2,2,9,2,8,2,6,2,8 -B,1,0,1,1,1,7,7,7,4,6,6,7,1,8,6,9 -U,5,5,6,3,3,4,8,5,8,10,9,9,3,9,2,6 -M,5,8,5,6,3,7,7,12,2,7,9,8,8,6,0,8 -R,2,4,4,3,2,9,7,3,5,10,4,7,2,7,3,10 -S,3,1,3,3,2,8,7,7,5,7,6,8,2,10,9,8 -P,5,7,7,5,4,6,11,7,2,11,5,3,1,10,3,8 -G,7,13,6,7,4,10,6,5,6,11,4,8,5,7,5,9 -F,5,8,7,6,7,7,8,6,4,8,6,8,4,10,8,11 -F,7,11,6,6,3,7,8,2,8,11,6,6,2,10,5,6 -K,9,13,8,7,4,7,7,3,7,9,9,9,6,11,3,7 -W,5,7,5,5,5,6,10,4,2,9,7,7,6,11,2,6 -P,4,9,5,6,2,4,12,9,2,10,6,4,1,10,4,8 -I,1,11,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -V,6,8,6,6,2,3,12,5,4,12,12,7,3,10,1,8 -E,6,10,9,8,6,6,8,4,9,11,9,9,2,9,5,6 -W,4,4,6,3,3,7,11,3,2,6,9,8,8,11,1,8 -F,1,0,1,0,0,3,11,4,2,11,8,6,0,8,2,8 -U,9,15,7,8,4,8,6,4,6,3,9,5,6,6,2,6 -X,3,3,5,2,2,9,7,2,8,11,4,7,2,7,3,8 -Q,4,9,5,11,5,9,8,8,2,4,7,11,4,9,6,9 -I,1,8,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -P,4,5,4,7,2,4,12,9,2,10,6,4,1,10,4,8 -R,9,11,7,6,4,8,7,5,5,10,4,9,6,5,6,11 -I,1,8,0,6,1,7,7,5,3,7,6,8,0,8,0,8 -P,2,1,3,2,2,6,9,5,5,9,7,4,1,9,4,7 -G,4,6,5,4,6,8,6,4,2,6,6,9,6,8,6,11 -Z,8,14,8,8,5,11,4,5,8,12,3,10,4,4,8,12 -K,2,1,3,2,2,5,7,4,7,7,6,11,3,8,4,10 -C,6,12,4,6,2,7,7,7,6,11,6,8,2,9,5,9 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -S,5,8,6,6,3,9,6,4,8,11,4,8,2,8,5,11 -W,7,11,10,8,15,10,5,5,2,7,6,7,12,10,3,4 -K,2,6,4,4,4,7,7,3,5,6,5,8,3,8,3,9 -R,3,5,5,4,3,9,7,4,5,9,4,7,3,7,4,10 -K,4,7,5,5,5,5,6,4,6,6,6,11,3,8,5,10 -C,6,10,7,8,3,4,9,6,8,12,10,11,2,9,3,6 -B,2,5,4,4,3,8,7,3,5,10,5,6,2,8,4,9 -U,9,11,10,8,7,5,7,5,9,9,6,9,8,9,6,1 -P,4,6,6,9,9,7,8,6,0,8,6,7,6,10,6,11 -Y,3,4,4,3,1,4,11,2,7,11,10,5,1,11,2,5 -H,3,4,5,6,4,7,4,5,2,6,4,6,4,6,7,7 -Z,3,10,4,8,4,7,8,3,12,9,6,8,0,8,7,7 -K,5,8,5,6,2,4,7,8,1,7,6,12,4,8,3,11 -U,5,10,8,7,10,9,7,4,4,6,7,8,8,8,6,7 -Z,3,7,5,5,4,8,8,3,7,7,6,8,1,8,10,9 -J,0,0,1,0,0,11,4,5,3,12,4,10,0,7,0,8 -J,4,7,5,5,4,7,6,4,5,8,6,7,5,6,4,6 -K,5,11,6,8,3,4,8,9,2,7,4,11,4,8,2,11 -Y,3,4,4,2,2,4,11,2,7,11,10,5,1,10,2,4 -L,4,7,5,5,3,7,4,2,8,7,2,8,1,6,3,8 -N,1,0,2,1,0,7,7,11,0,5,6,8,4,8,0,8 -M,3,2,5,3,3,7,6,6,5,6,7,7,8,6,2,7 -H,5,7,7,9,6,10,10,3,2,7,7,8,3,10,8,9 -L,4,9,4,7,2,0,2,4,6,1,0,7,0,8,0,8 -W,4,8,6,6,3,8,8,4,1,7,8,8,8,9,0,8 -W,5,10,8,8,13,9,5,5,2,7,6,8,11,10,4,8 -G,4,9,3,4,2,8,6,5,2,9,6,8,3,10,7,7 -R,4,7,5,5,5,8,6,7,3,7,5,7,4,6,6,9 -W,3,1,5,3,3,7,11,2,2,7,9,8,7,11,0,8 -Q,5,10,7,8,6,8,4,8,5,6,4,8,3,8,3,8 -D,5,11,7,8,6,6,7,8,7,5,4,5,3,9,4,9 -H,5,11,6,8,6,6,7,7,6,7,6,11,3,8,3,9 -F,3,8,4,6,4,6,9,3,6,10,9,5,2,10,3,6 -V,4,11,6,8,2,7,8,4,3,7,14,8,3,9,0,8 -O,6,11,4,6,3,6,7,6,3,9,7,9,5,10,5,8 -C,2,4,3,3,1,6,8,7,7,9,8,13,1,10,4,10 -F,4,10,6,8,6,4,10,3,5,10,10,6,2,10,3,6 -C,1,3,2,1,1,6,8,6,6,8,7,13,1,9,3,10 -V,4,7,4,5,2,3,12,4,3,11,11,7,3,10,1,7 -U,7,9,7,6,4,5,7,7,9,8,7,9,5,11,5,2 -V,3,8,5,6,3,5,11,3,4,8,12,9,2,10,1,8 -Y,3,7,5,5,2,10,11,2,2,5,12,8,1,11,0,8 -X,1,0,1,0,0,7,7,3,4,7,6,8,2,8,4,8 -F,6,9,8,6,5,10,8,2,6,13,4,5,3,9,3,9 -N,2,4,3,3,2,7,8,5,4,7,6,6,5,9,2,6 -R,4,9,5,6,4,10,6,4,5,10,3,7,3,7,4,11 -B,3,6,5,4,4,8,7,6,6,7,6,5,2,8,7,10 -H,4,8,6,6,6,7,8,6,6,7,6,10,6,8,3,8 -V,3,4,5,3,1,7,12,3,3,7,11,8,2,10,1,8 -I,3,7,5,5,4,12,5,1,6,8,4,5,2,8,4,8 -J,5,8,7,10,7,8,8,4,5,7,6,8,4,6,9,8 -Q,7,11,6,6,3,8,5,4,9,10,4,9,3,6,9,9 -W,1,0,2,1,1,7,8,3,0,7,8,8,5,10,0,8 -E,4,10,4,7,4,3,8,5,9,7,6,13,0,8,7,9 -Z,3,7,5,5,4,9,11,6,4,6,5,7,2,8,6,4 -B,2,4,4,3,3,8,7,3,5,10,6,7,2,8,4,9 -G,6,10,6,7,5,5,7,6,5,9,8,11,2,9,4,9 -W,6,6,8,8,4,11,8,5,2,6,9,8,8,9,0,8 -D,6,9,8,8,9,7,7,4,7,7,5,8,4,7,7,5 -P,8,10,7,5,3,7,10,5,3,12,4,4,4,9,4,8 -Z,7,11,9,8,6,8,6,2,9,12,5,10,2,8,7,9 -R,4,8,5,6,4,10,6,3,6,10,3,7,3,7,4,11 -T,7,11,6,6,2,5,10,3,8,13,7,5,2,9,4,3 -M,5,7,7,5,4,11,6,3,5,9,2,6,8,6,2,9 -E,8,11,5,6,3,7,9,5,8,10,6,10,1,8,7,9 -F,4,6,5,8,2,0,15,5,4,13,10,5,0,8,2,5 -Y,8,7,6,11,5,9,8,5,5,4,11,6,4,11,5,7 -Y,2,2,3,3,1,7,10,1,7,7,11,8,1,11,2,8 -H,3,7,4,5,2,7,6,14,2,7,8,8,3,8,0,8 -W,4,7,6,5,5,7,11,1,2,7,8,8,6,12,1,8 -L,4,6,5,4,4,6,6,8,6,6,6,9,2,8,4,10 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -G,6,9,6,7,5,6,6,6,5,9,6,12,4,8,6,7 -H,5,9,7,7,6,8,8,7,6,7,5,6,3,8,3,6 -G,3,6,4,4,4,7,7,5,2,7,6,10,4,9,7,7 -P,4,9,5,6,2,3,12,8,1,10,6,3,1,10,4,8 -I,6,11,4,6,2,9,6,6,5,13,5,9,2,8,4,9 -G,5,9,5,7,4,6,6,7,6,8,7,12,3,7,5,8 -P,5,9,5,5,3,5,12,4,2,12,6,3,2,10,5,6 -Z,3,9,4,6,2,7,7,4,14,9,6,8,0,8,8,8 -R,4,8,6,6,5,7,8,6,6,7,5,7,3,7,5,8 -N,2,1,3,2,2,7,8,5,5,7,7,6,5,9,1,5 -J,0,0,1,1,0,12,4,5,3,12,4,10,0,7,0,8 -U,6,7,6,5,4,3,9,5,7,10,9,9,3,9,2,6 -U,4,7,5,5,3,4,8,5,7,10,9,9,3,9,2,6 -J,3,6,5,4,1,8,5,4,7,15,7,13,0,7,1,7 -H,3,4,5,3,3,7,7,3,6,10,6,8,3,8,3,8 -S,4,6,5,4,3,9,7,4,8,11,5,8,2,8,5,9 -N,4,8,6,6,5,6,7,7,6,7,5,7,3,7,3,8 -X,4,8,5,6,4,8,7,3,8,5,6,7,3,9,7,7 -Y,4,7,4,5,2,3,10,3,6,11,12,7,2,11,2,6 -C,5,9,5,7,4,4,8,5,7,11,9,14,2,9,3,7 -A,3,6,4,4,2,10,2,2,3,8,2,8,2,6,2,8 -B,5,8,7,6,6,10,6,3,6,10,4,7,4,7,5,10 -M,3,6,4,4,4,8,5,10,0,6,8,8,6,5,0,8 -V,5,11,8,8,2,6,8,5,3,8,14,8,3,9,0,8 -D,4,5,5,4,4,7,7,7,7,7,6,5,2,8,3,7 -K,4,6,6,4,6,7,6,5,4,6,6,8,6,6,7,12 -B,2,3,3,2,2,8,7,3,5,10,5,7,2,8,4,10 -Y,3,6,4,4,2,8,10,2,6,5,12,8,2,11,2,8 -A,1,3,3,2,1,11,2,3,2,10,2,9,1,6,2,8 -S,3,4,4,7,2,8,7,6,8,4,6,8,0,8,9,7 -E,4,4,4,6,3,3,8,6,12,7,5,14,0,8,7,7 -C,3,4,4,3,1,5,9,5,7,12,9,10,1,10,3,7 -D,5,5,5,8,3,5,7,11,9,7,6,5,3,8,4,8 -E,3,4,5,3,2,6,8,2,9,11,7,8,2,8,4,6 -M,2,1,2,1,1,7,7,10,0,7,8,8,6,6,0,8 -S,3,2,4,3,3,8,7,7,5,7,6,8,3,9,9,8 -Z,4,8,5,6,4,9,9,6,4,7,5,8,3,8,10,7 -O,6,11,6,8,6,7,6,7,4,10,5,10,5,7,4,7 -S,6,10,8,9,9,9,8,4,5,7,7,8,5,10,9,11 -X,5,8,7,6,3,9,6,2,8,11,2,7,3,9,4,9 -W,3,4,4,3,3,7,11,2,2,7,9,8,6,11,1,8 -V,3,8,5,6,1,5,8,4,3,8,14,8,3,9,0,8 -Y,3,7,5,5,3,7,10,1,5,5,11,9,2,11,1,8 -C,4,7,6,5,4,7,8,8,6,5,7,13,4,7,4,8 -E,3,5,5,3,2,8,7,2,8,11,5,8,2,8,5,10 -W,4,6,6,4,8,9,7,5,2,7,6,8,9,11,2,7 -A,2,5,4,3,2,7,3,1,2,6,2,8,3,5,2,8 -M,7,9,9,6,8,8,7,2,5,9,6,8,8,6,2,8 -O,2,6,3,4,2,7,8,7,5,7,7,7,3,8,3,7 -Q,3,6,4,7,4,9,7,7,3,5,6,10,3,8,6,10 -L,2,5,3,4,2,4,4,5,7,2,2,6,1,6,1,6 -F,3,5,3,3,2,6,10,4,5,10,9,5,2,10,3,6 -P,4,9,4,6,2,3,13,8,2,11,7,3,1,10,4,8 -G,4,7,6,5,4,6,6,5,5,6,6,7,3,7,4,7 -Z,7,10,9,8,6,6,9,3,9,12,8,6,3,10,7,6 -F,1,0,1,1,0,3,12,4,2,11,9,6,0,8,2,7 -O,3,4,4,3,2,7,7,7,4,9,6,8,2,8,3,8 -U,9,12,8,6,3,5,4,5,5,4,8,7,6,7,2,7 -J,3,8,5,6,3,12,4,4,5,14,2,9,0,7,0,8 -X,4,6,6,6,5,6,7,2,5,7,7,9,3,9,8,8 -V,8,11,7,8,5,2,11,2,3,10,11,8,2,10,1,8 -U,5,5,6,4,3,4,8,5,8,10,9,9,3,9,2,5 -J,1,7,2,5,1,11,3,9,3,12,6,13,1,6,0,8 -T,3,6,5,8,1,5,14,1,6,9,11,7,0,8,0,8 -S,4,11,5,8,4,7,8,8,8,8,4,6,2,6,9,8 -R,4,5,6,4,4,8,8,4,5,9,5,7,3,6,4,10 -W,2,3,4,2,2,9,11,3,2,5,9,7,6,10,0,8 -D,5,11,7,8,6,11,6,2,7,11,3,7,4,7,4,9 -Q,2,1,2,2,1,9,6,7,4,6,6,9,3,8,3,8 -N,4,5,6,4,5,8,8,5,4,8,6,7,6,9,6,3 -L,1,3,2,2,1,7,4,1,7,7,2,10,0,7,2,8 -M,5,5,6,4,4,8,6,6,5,6,7,7,10,6,4,6 -L,3,8,3,6,1,0,1,5,6,0,0,7,0,8,0,8 -C,2,5,3,3,1,5,9,5,7,12,9,11,1,10,2,7 -B,4,10,5,7,5,8,7,6,7,6,6,6,2,8,7,10 -Y,2,7,4,4,1,6,10,2,2,7,12,8,1,11,0,8 -Z,2,6,3,4,3,8,7,5,9,7,7,7,1,8,7,8 -J,2,7,2,5,1,13,2,7,5,14,2,11,0,7,0,8 -A,3,4,5,6,2,5,4,3,2,5,1,7,3,7,2,7 -Q,2,3,3,4,2,8,7,5,2,8,7,9,2,9,3,9 -B,3,4,4,6,3,6,9,9,8,7,5,7,2,8,9,10 -Q,2,2,3,3,2,7,9,4,1,7,8,10,2,9,4,8 -G,3,9,5,6,2,7,6,8,7,6,6,8,2,7,6,11 -A,4,5,6,8,2,7,4,3,2,7,1,8,3,6,3,8 -J,2,3,3,4,1,14,2,6,5,13,2,10,0,8,0,8 -S,2,5,4,3,2,8,7,3,7,11,5,7,1,9,4,8 -T,5,6,5,4,2,6,10,2,9,11,9,4,1,10,3,4 -O,5,11,7,8,6,7,7,8,5,6,7,11,6,7,5,7 -A,2,4,4,3,2,11,2,2,2,9,2,9,2,6,2,8 -R,4,8,5,6,4,8,9,4,6,8,4,9,3,6,5,11 -G,6,9,7,7,8,8,6,4,2,6,6,10,7,7,7,13 -R,2,3,4,2,2,8,7,4,5,9,4,7,2,7,4,10 -B,2,5,4,4,3,7,7,3,5,10,6,6,2,8,5,8 -K,4,8,6,6,4,9,5,2,7,10,3,9,4,7,5,11 -J,4,7,6,5,2,5,9,3,6,15,7,9,1,6,1,7 -Y,3,7,5,5,2,8,10,2,6,4,11,9,2,12,2,7 -I,3,9,4,6,3,6,8,0,7,13,7,8,0,8,1,7 -W,9,12,8,6,4,1,8,4,2,11,12,9,7,10,0,7 -O,5,5,7,4,4,8,5,4,5,8,4,8,3,8,4,8 -I,7,8,9,9,8,7,8,4,5,7,7,7,4,7,10,10 -K,3,4,5,3,3,4,9,2,7,10,10,10,3,8,3,6 -D,2,5,4,4,3,9,6,4,6,10,4,6,2,8,3,8 -X,3,9,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -D,5,7,7,6,6,6,7,5,7,7,6,9,4,5,6,5 -K,3,9,4,6,2,4,8,8,2,7,4,11,4,8,2,10 -G,6,8,8,7,9,7,9,6,2,7,7,8,7,11,7,7 -Q,5,7,6,9,6,10,11,6,3,3,8,12,3,10,7,10 -P,4,8,6,6,5,6,8,6,5,9,7,4,2,10,4,7 -A,8,15,6,8,4,8,3,3,2,7,4,11,5,5,4,7 -Q,3,5,3,6,3,8,8,5,2,8,8,10,3,8,5,8 -C,2,2,3,4,2,6,8,7,8,8,8,13,1,9,4,10 -I,1,1,1,3,1,7,7,1,6,7,6,8,0,8,2,8 -U,5,9,5,7,2,7,4,15,6,7,13,8,3,9,0,8 -O,4,9,5,6,4,8,7,8,5,9,5,8,3,8,3,8 -D,2,1,3,1,2,7,7,6,7,7,6,5,2,8,3,7 -N,7,11,6,6,3,9,11,5,4,4,6,10,6,10,2,6 -Y,2,3,4,5,1,8,10,2,3,6,12,8,1,11,0,8 -Z,3,8,4,6,2,7,7,4,13,9,6,8,0,8,8,8 -L,2,5,4,3,2,7,4,1,8,8,2,10,0,7,2,8 -V,4,9,7,6,3,6,12,3,4,8,12,8,3,10,1,8 -A,2,6,3,4,2,9,4,2,0,8,2,8,2,6,1,8 -N,6,10,9,8,4,8,8,3,5,10,4,6,6,9,1,6 -G,4,7,5,5,3,6,7,7,7,10,7,11,2,9,4,9 -A,2,1,4,1,1,8,4,2,0,7,2,8,2,6,2,8 -D,6,9,8,7,5,9,7,5,8,11,5,5,3,8,4,9 -U,5,9,7,8,6,7,7,4,4,6,5,8,8,7,2,8 -M,4,3,5,5,3,7,7,12,1,7,9,8,8,6,0,8 -J,2,6,3,4,1,13,2,8,4,13,4,13,1,6,0,8 -D,5,10,8,8,6,10,6,3,7,11,4,7,4,7,3,9 -X,2,4,4,2,2,7,7,1,8,10,6,8,2,8,3,7 -U,3,7,5,5,3,8,8,6,7,5,9,8,3,9,1,8 -X,5,11,6,6,4,6,9,2,6,10,10,8,4,14,4,6 -M,4,6,4,4,2,8,7,12,1,6,9,8,8,6,0,8 -L,3,6,4,4,2,6,4,3,7,6,2,8,1,6,2,7 -F,6,9,8,7,5,9,8,1,8,14,5,6,5,8,5,9 -G,4,11,5,8,3,7,6,9,8,6,6,11,2,8,5,11 -U,5,10,7,7,5,7,9,4,6,5,8,10,6,10,1,7 -C,8,15,6,8,5,5,10,4,5,9,7,8,3,9,9,9 -Q,3,6,5,6,4,8,8,6,4,5,8,9,3,8,5,9 -I,1,4,2,3,1,7,8,0,7,13,6,8,0,8,1,7 -F,2,8,3,5,1,1,11,4,6,11,11,9,0,8,2,6 -K,6,9,6,5,4,5,8,3,5,10,9,11,5,9,3,6 -D,4,8,6,6,4,7,9,7,7,11,6,4,4,8,5,9 -R,3,2,4,3,3,7,8,4,6,6,5,7,3,5,5,8 -O,7,10,5,5,3,5,7,6,4,10,7,9,5,10,5,7 -A,3,9,5,7,3,12,3,3,3,10,1,9,2,6,2,8 -U,5,10,7,8,6,8,7,7,6,7,7,9,6,8,4,7 -V,2,2,3,3,1,5,12,3,3,9,11,9,2,10,1,8 -B,1,1,2,1,1,7,7,7,5,6,6,7,1,8,7,9 -O,1,0,2,1,0,8,7,7,4,7,6,8,2,8,3,8 -P,4,8,6,12,11,8,8,5,0,8,7,7,6,10,5,8 -Y,8,8,7,11,5,9,9,3,3,5,11,5,4,10,7,8 -C,4,9,4,5,3,6,8,4,3,9,9,10,3,9,8,9 -P,2,5,4,4,2,7,10,4,4,12,5,3,1,10,2,8 -T,5,10,7,7,8,6,8,4,6,7,6,9,5,8,5,6 -T,6,8,6,6,3,4,12,3,8,12,10,4,1,10,2,5 -M,7,9,9,6,8,6,7,2,4,9,8,9,8,6,2,8 -D,2,4,3,2,2,7,7,6,6,7,7,5,2,8,2,7 -C,3,7,4,5,1,6,8,7,10,5,7,13,1,7,4,9 -S,6,11,8,8,10,9,8,5,4,9,5,7,5,10,13,8 -N,6,11,8,8,5,7,8,2,5,10,6,7,5,8,1,7 -X,5,7,8,5,4,11,5,2,8,10,1,7,2,7,3,10 -U,4,4,5,3,2,4,8,5,7,11,10,9,3,9,2,6 -L,4,7,6,6,5,7,7,4,5,7,6,7,3,9,8,11 -A,1,0,2,0,0,8,4,2,0,7,2,8,2,7,1,8 -J,4,8,3,11,3,6,9,3,3,13,5,6,3,8,6,9 -J,5,10,6,8,4,9,4,6,5,15,5,12,1,6,1,6 -I,3,11,4,8,2,7,7,0,8,13,6,8,0,8,1,8 -Q,7,8,9,12,11,9,9,7,0,6,7,10,9,14,6,7 -N,8,15,10,8,5,6,8,2,4,13,8,9,6,8,0,7 -B,3,6,5,4,3,9,7,4,6,10,5,7,2,8,5,10 -M,2,3,4,2,2,7,6,3,4,9,7,8,6,5,1,8 -M,1,0,2,0,1,7,6,9,0,7,8,8,5,6,0,8 -L,5,11,6,8,6,6,6,6,5,6,5,8,5,7,4,10 -W,9,12,9,7,6,8,8,4,4,6,9,6,11,8,3,6 -Y,3,2,5,4,2,6,10,1,8,8,11,8,1,11,2,8 -C,1,3,2,2,1,6,8,7,7,8,7,13,1,9,4,10 -P,4,8,6,11,10,8,9,4,0,8,7,6,8,10,6,8 -X,3,6,5,4,3,7,7,4,9,6,6,6,3,8,6,7 -Y,4,10,6,7,4,4,8,2,7,10,13,10,2,11,2,6 -G,2,4,3,2,2,6,7,5,6,9,7,10,1,8,4,9 -W,4,4,6,3,3,9,11,3,2,5,9,7,7,11,1,8 -U,5,10,8,8,4,5,9,7,8,8,10,10,3,9,1,8 -V,8,11,8,8,4,4,12,2,4,8,11,7,6,10,1,7 -S,1,0,2,1,1,8,7,4,7,5,6,7,0,8,7,8 -H,4,5,8,4,4,5,8,3,6,10,8,8,3,8,3,6 -H,4,10,4,7,2,7,7,15,1,7,6,8,3,8,0,8 -Q,7,9,7,11,8,7,9,5,2,7,9,11,4,8,8,9 -K,10,14,9,8,4,8,7,3,7,9,5,7,6,9,4,7 -S,2,6,3,4,2,8,7,7,6,8,7,9,2,9,9,8 -M,3,1,4,2,3,8,6,6,4,6,7,8,7,5,2,8 -R,9,10,7,6,4,7,8,5,5,9,4,9,7,5,6,11 -S,5,8,6,6,3,7,7,4,8,11,5,8,2,8,5,8 -Z,4,7,5,5,3,7,7,2,9,11,6,7,2,8,6,7 -T,3,8,4,6,4,6,11,3,6,8,11,8,2,12,1,7 -L,3,5,4,8,1,0,1,5,6,0,0,7,0,8,0,8 -C,2,4,3,3,1,4,9,5,6,11,9,11,1,9,2,8 -Y,3,5,5,4,2,6,10,1,8,8,12,8,1,11,2,7 -N,3,2,4,4,3,7,8,5,5,7,7,6,5,9,2,5 -T,7,9,6,5,2,7,8,3,8,13,6,7,2,8,5,5 -Y,6,8,6,6,4,3,9,2,6,10,11,7,2,11,2,5 -J,5,9,6,7,4,9,5,5,5,8,6,6,2,7,4,6 -U,5,10,6,8,5,6,9,5,7,6,9,9,3,9,1,8 -I,1,11,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -S,4,8,5,6,6,8,5,4,4,8,6,10,4,8,8,10 -K,6,9,7,4,4,10,6,4,5,11,2,7,5,7,3,9 -F,2,2,3,3,2,5,10,4,5,11,9,5,1,10,3,6 -F,3,8,3,5,1,1,11,5,6,11,10,9,0,8,3,6 -F,4,5,6,5,5,7,9,4,4,8,7,6,4,9,8,8 -X,6,9,8,7,7,7,6,3,5,6,6,10,4,6,11,9 -F,3,6,4,4,4,7,8,4,6,8,8,6,5,9,3,7 -Y,2,7,4,5,2,10,10,3,1,6,12,8,2,11,0,8 -G,2,4,3,3,2,6,7,6,6,6,6,11,2,9,4,9 -L,3,6,4,6,4,8,6,5,4,7,7,8,3,8,7,10 -Q,6,7,9,6,6,8,4,4,5,7,3,8,3,6,5,7 -J,5,7,4,10,3,8,8,3,3,12,4,5,2,8,7,9 -L,6,11,7,8,7,6,6,9,5,6,6,8,3,7,5,12 -A,6,9,9,8,8,8,7,3,5,7,7,7,5,8,4,5 -G,4,4,5,6,2,7,6,7,8,6,6,9,2,8,6,11 -N,5,8,7,6,4,10,8,2,5,10,2,5,5,9,1,7 -K,6,7,8,5,4,4,8,3,6,10,10,11,4,7,3,6 -U,9,15,8,8,6,7,6,5,5,6,7,8,5,6,3,7 -Z,4,9,5,7,2,7,7,4,14,9,6,8,0,8,8,8 -W,3,4,4,3,2,3,11,2,2,10,10,8,5,10,1,8 -Y,3,9,5,6,2,7,11,0,4,7,11,8,0,10,0,8 -F,3,6,4,4,3,5,10,3,6,10,9,5,2,10,3,6 -V,7,10,7,8,4,2,11,3,4,11,12,8,2,10,1,8 -L,3,8,4,6,4,5,5,3,8,3,2,7,1,6,2,5 -X,5,11,8,8,6,8,7,3,9,5,6,8,3,8,7,8 -D,4,11,6,8,6,9,7,4,5,10,4,5,3,8,3,8 -S,4,9,5,7,4,7,8,8,7,8,5,6,2,8,9,8 -Y,3,8,4,6,2,5,10,1,3,8,12,8,1,11,0,8 -S,3,7,4,5,3,7,8,7,7,8,5,6,2,8,9,8 -N,5,9,7,6,5,8,8,6,6,6,6,4,8,10,5,6 -W,2,0,3,1,1,7,8,4,0,7,8,8,7,9,0,8 -F,5,8,7,6,3,7,10,3,6,14,6,4,2,10,3,7 -U,5,11,5,8,5,8,6,13,4,7,12,8,3,9,0,8 -C,5,11,5,8,4,4,7,5,6,11,9,14,2,10,4,7 -Z,5,10,6,8,6,8,7,5,10,7,6,7,1,8,7,8 -T,3,9,5,6,3,8,14,1,5,7,10,8,0,8,0,8 -Q,4,10,6,9,3,8,6,9,6,6,6,8,3,8,5,9 -P,8,12,7,6,3,7,10,6,5,14,5,4,4,10,4,8 -L,3,6,4,4,2,5,3,3,9,5,2,8,1,6,2,6 -W,5,9,7,6,5,11,11,3,2,5,9,7,9,12,2,7 -R,3,6,5,5,5,7,8,3,3,7,5,8,6,8,5,7 -T,4,8,6,6,4,9,11,2,7,6,11,8,1,11,1,8 -S,2,3,3,2,1,8,8,2,6,10,6,7,1,8,5,8 -O,4,8,4,6,4,8,7,7,3,9,6,9,3,8,2,8 -T,4,9,6,7,4,6,11,1,9,8,11,8,0,10,1,7 -B,2,6,3,4,2,6,8,9,6,7,5,7,2,8,8,9 -D,4,9,6,7,4,9,7,4,7,11,5,6,3,7,3,8 -F,2,3,4,1,1,5,12,4,4,13,7,4,1,9,1,7 -U,4,5,5,4,3,5,8,6,8,10,8,9,3,9,3,6 -O,5,11,6,8,3,8,7,9,8,7,6,8,3,8,4,8 -Y,5,10,7,7,4,7,10,2,7,6,12,9,2,11,2,8 -Z,3,4,4,6,3,11,5,3,4,9,3,7,1,7,6,9 -N,5,8,7,6,5,8,9,6,5,7,6,5,7,8,3,8 -T,3,5,4,6,1,5,14,1,6,9,11,7,0,8,0,8 -I,3,8,5,6,5,10,7,2,6,9,4,5,3,8,5,7 -A,4,9,6,8,6,7,8,2,4,7,7,8,8,6,4,7 -O,5,10,6,8,5,7,6,7,4,9,6,10,5,8,4,7 -X,2,4,4,3,2,7,8,1,8,10,6,8,2,8,3,7 -B,3,7,5,5,5,8,8,4,5,7,5,6,4,8,5,8 -I,1,8,2,6,2,7,7,0,7,7,6,8,0,8,2,8 -Z,4,7,4,5,4,7,8,5,9,7,7,9,1,9,7,8 -V,6,7,5,5,3,3,11,2,3,9,11,8,3,11,1,7 -E,2,1,2,2,2,7,7,5,6,7,6,8,2,8,5,10 -J,4,5,6,6,5,8,8,4,6,7,6,8,3,10,8,8 -Q,3,8,5,9,5,9,9,6,3,4,8,11,3,9,7,10 -G,4,5,6,4,5,8,9,5,3,7,7,10,6,10,6,9 -A,4,9,7,7,5,7,2,1,2,5,2,7,4,6,5,7 -R,5,11,5,8,6,5,10,8,3,7,4,8,2,7,6,11 -E,3,7,4,5,3,3,7,5,8,7,6,13,0,8,7,9 -G,5,8,6,7,7,7,9,5,2,7,7,8,6,11,7,8 -G,3,7,4,5,2,8,7,8,7,6,6,9,2,7,6,11 -T,5,10,6,8,4,6,12,2,9,8,12,8,1,11,1,7 -D,5,11,7,8,11,10,8,5,6,7,5,6,5,5,10,5 -H,2,6,2,4,2,7,8,12,1,7,5,8,3,8,0,8 -P,7,10,9,8,7,6,11,5,4,12,5,3,1,10,4,9 -G,5,10,6,8,4,6,6,8,7,8,5,13,2,9,5,9 -G,4,7,5,5,3,6,6,6,7,6,5,9,2,10,4,7 -W,4,8,6,6,4,5,8,5,1,8,10,8,6,11,0,8 -K,4,9,6,6,5,5,7,1,6,9,7,10,3,8,3,8 -M,5,2,6,4,4,8,6,6,4,7,7,8,8,6,2,7 -A,1,0,2,1,0,7,4,2,0,7,2,8,2,7,1,8 -G,2,3,3,1,2,7,7,6,6,6,6,9,2,9,4,9 -S,3,7,4,5,3,9,8,5,8,5,5,5,0,7,8,8 -T,6,10,5,6,2,5,11,2,7,12,7,5,2,9,4,4 -S,2,4,3,3,2,8,7,7,5,7,7,8,2,9,9,8 -R,4,10,4,8,5,5,10,7,4,7,4,9,2,7,5,11 -J,5,10,7,8,5,9,4,4,6,8,5,6,2,8,4,6 -T,5,7,6,5,6,7,8,5,5,6,8,9,6,9,6,5 -G,3,6,4,4,2,7,7,7,7,7,5,12,2,9,4,9 -I,4,9,5,6,3,8,6,1,6,7,6,7,0,9,4,7 -Q,6,7,8,11,8,10,14,5,1,3,8,12,5,15,5,10 -I,3,10,4,8,2,6,8,0,8,13,7,8,0,8,1,7 -U,4,7,6,6,5,7,6,4,4,6,6,8,7,8,1,8 -E,5,8,7,6,7,7,7,3,6,7,7,11,4,10,8,9 -S,3,7,4,5,2,7,7,5,8,5,6,8,0,8,9,8 -E,2,5,3,4,3,7,7,5,7,7,7,9,2,8,5,10 -C,3,4,4,3,2,6,8,7,8,8,8,13,1,9,4,10 -P,3,6,4,4,2,4,14,8,1,11,6,3,0,10,4,8 -C,6,12,5,6,4,6,8,4,4,10,8,9,4,9,9,9 -E,2,6,3,4,3,7,7,4,7,7,5,8,3,8,5,10 -P,4,7,5,5,3,9,8,3,5,12,4,4,2,9,3,9 -M,4,4,4,6,3,8,7,12,1,6,9,8,8,6,0,8 -I,7,13,5,7,3,9,7,6,4,13,4,9,3,8,5,10 -R,3,8,4,5,2,6,10,9,4,7,4,8,3,7,5,11 -H,3,1,4,2,3,7,7,6,6,7,6,8,3,8,3,8 -N,5,8,8,6,4,7,8,3,5,10,6,7,5,8,1,7 -W,4,5,6,7,4,8,8,4,2,7,8,8,9,9,0,8 -L,5,9,5,7,2,0,1,5,6,0,1,6,0,8,0,8 -J,4,7,6,5,3,7,5,5,4,14,9,14,1,6,1,7 -S,2,3,3,2,1,8,7,2,7,10,5,8,1,8,4,8 -M,7,11,9,8,9,9,7,2,4,9,6,7,8,6,2,8 -C,6,11,6,8,3,4,8,6,8,12,10,12,2,9,3,7 -L,1,3,2,2,1,7,4,2,7,7,2,9,0,7,2,8 -D,3,8,4,6,2,5,7,10,8,6,5,5,3,8,4,8 -P,10,15,9,8,6,7,10,4,6,13,5,3,4,9,7,5 -U,2,6,3,4,1,7,5,14,5,7,12,8,3,9,0,8 -T,4,5,6,4,5,7,9,4,8,7,7,8,3,10,7,7 -D,6,10,8,7,5,8,7,4,7,11,5,6,3,8,3,8 -F,3,6,5,4,3,7,9,3,5,12,6,5,2,9,2,7 -E,3,7,3,5,2,3,6,6,11,7,7,15,0,8,7,7 -B,2,3,3,1,2,8,7,2,5,10,5,6,2,8,4,9 -H,7,9,10,6,8,8,7,3,6,10,5,8,3,8,3,8 -M,4,8,4,6,3,7,7,12,1,7,9,8,8,6,0,8 -K,3,7,5,5,5,6,6,3,4,6,6,9,5,8,7,9 -D,4,8,4,6,2,5,6,10,8,5,4,5,3,8,4,8 -K,4,10,6,8,7,5,5,5,3,6,6,9,3,5,8,9 -L,4,9,5,7,4,3,3,5,7,1,0,7,0,6,0,6 -W,5,5,7,8,4,7,8,5,2,7,8,8,9,9,0,8 -B,3,9,5,7,5,8,7,4,7,6,6,5,6,8,5,9 -V,3,3,4,2,1,4,12,3,3,10,11,7,2,11,1,8 -D,3,4,5,3,3,7,7,5,6,10,5,6,3,7,4,9 -K,3,6,5,5,4,11,5,3,3,10,3,8,4,6,6,12 -Q,1,0,1,1,0,8,7,7,3,6,6,9,2,8,3,8 -Y,4,8,6,6,6,8,7,5,4,7,8,8,6,8,7,4 -L,8,15,8,9,5,7,4,3,4,12,7,11,4,7,7,8 -S,2,4,3,3,2,8,7,3,7,10,5,8,1,9,4,8 -V,1,3,2,2,1,7,12,3,3,8,11,8,2,11,1,8 -Z,3,5,6,4,3,7,7,2,10,12,6,8,1,8,5,7 -C,7,13,5,8,4,7,9,4,4,9,7,9,3,9,8,11 -A,5,11,8,8,5,8,2,2,3,6,1,7,3,7,4,7 -R,2,4,4,3,2,8,7,3,5,10,4,7,2,7,3,10 -B,4,5,4,8,4,6,7,9,7,7,6,7,2,8,9,10 -V,4,5,5,4,2,4,12,3,3,10,11,7,2,10,1,8 -Y,5,8,5,6,2,4,11,3,8,12,11,4,1,10,2,4 -M,5,5,5,7,4,8,7,12,2,7,9,8,8,6,0,8 -M,6,9,7,4,4,7,3,3,2,8,4,10,7,3,1,9 -Y,5,10,8,8,3,6,10,1,9,9,12,8,1,11,2,7 -U,2,4,3,2,1,7,8,6,6,7,9,8,3,9,1,8 -Z,4,8,6,6,4,8,6,2,9,11,4,10,2,7,7,9 -F,7,11,10,8,7,7,9,3,6,12,7,6,2,9,2,7 -A,4,9,5,7,4,7,5,3,0,7,1,8,2,7,1,8 -U,4,9,5,7,2,8,5,14,5,6,14,8,3,9,0,8 -F,5,11,5,8,2,1,13,5,4,12,10,6,0,8,2,5 -W,7,10,7,5,4,5,8,1,3,8,10,8,9,11,2,6 -S,4,7,5,5,3,9,7,5,9,11,3,7,2,6,5,11 -Y,5,9,8,6,4,6,9,1,7,7,12,9,1,11,2,8 -A,2,4,4,6,2,8,3,3,3,7,1,8,3,6,3,8 -K,6,10,8,8,6,6,8,5,7,6,5,10,4,8,5,9 -I,4,6,6,7,5,9,8,5,6,7,6,8,3,9,8,8 -T,6,11,8,9,6,6,7,8,7,8,9,7,3,9,6,10 -M,10,12,10,7,5,11,12,6,4,4,7,9,8,12,2,7 -U,8,12,7,6,4,5,6,5,4,7,7,10,7,8,4,10 -X,2,1,3,3,2,8,7,3,9,6,6,6,2,8,5,8 -P,8,9,6,4,3,8,8,5,4,11,4,6,5,9,4,8 -B,4,8,5,6,5,10,6,3,6,10,4,7,3,8,4,11 -E,4,6,6,4,3,6,8,2,9,11,8,9,2,8,4,7 -H,3,3,4,4,2,7,8,14,1,7,5,8,3,8,0,8 -V,1,1,2,1,0,7,9,4,2,7,13,8,2,10,0,8 -I,0,6,0,4,0,7,7,5,3,7,6,8,0,8,0,8 -D,5,10,7,7,5,11,6,3,8,12,3,7,6,8,4,9 -W,5,7,5,5,4,6,10,5,2,9,6,6,6,12,2,5 -X,5,9,5,5,2,11,6,3,7,9,3,7,3,9,4,10 -Q,4,4,5,5,3,9,10,7,6,5,8,9,3,8,5,9 -E,6,11,8,8,9,6,6,3,6,8,7,12,5,9,9,8 -Y,3,4,5,6,1,8,10,2,2,6,13,8,2,11,0,8 -T,1,0,1,0,0,7,13,1,4,7,10,8,0,8,0,8 -M,5,10,7,5,4,12,3,5,2,11,1,10,7,2,1,8 -L,5,10,7,8,5,5,4,1,8,7,2,11,0,7,3,7 -C,5,9,6,7,4,5,7,6,9,7,6,13,1,8,4,9 -L,1,0,1,0,0,2,2,5,4,1,3,5,0,8,0,8 -P,5,11,7,8,6,7,7,7,5,8,7,8,2,9,7,9 -B,5,9,8,7,6,11,6,2,7,11,3,7,4,6,6,12 -B,4,8,6,6,5,8,7,5,6,9,6,6,2,8,7,8 -F,5,6,6,7,7,7,9,5,6,8,5,7,5,8,10,5 -T,3,10,5,7,1,7,15,0,6,7,11,8,0,8,0,8 -Z,2,2,3,3,2,7,7,5,9,6,6,8,1,8,7,8 -K,4,8,5,6,4,6,7,4,7,6,5,8,7,8,5,9 -K,5,6,7,6,6,10,6,3,4,10,3,8,5,6,6,12 -M,4,7,6,5,8,11,7,3,4,8,4,7,5,5,2,6 -Z,6,7,4,11,4,8,7,4,3,11,6,7,3,9,10,6 -G,5,9,7,8,8,8,6,6,4,7,6,9,10,10,9,9 -E,3,9,4,7,2,3,8,6,10,7,6,15,0,8,7,7 -G,5,9,5,6,3,6,7,7,7,10,7,10,2,9,4,9 -C,5,9,7,8,8,5,6,4,5,7,6,11,5,11,8,11 -F,5,7,7,5,4,8,9,2,6,14,5,4,3,8,3,7 -W,8,9,11,8,12,7,8,5,6,7,6,8,10,7,9,6 -S,5,12,4,6,2,9,3,4,4,9,2,8,3,6,4,8 -W,5,8,7,6,5,8,8,4,1,7,9,8,7,11,0,8 -N,5,9,8,6,4,11,6,4,5,10,1,4,5,8,1,7 -E,5,9,5,6,3,3,8,6,11,7,6,14,0,8,8,7 -M,5,10,8,8,7,8,6,6,5,6,8,8,8,6,2,7 -M,5,6,8,4,4,7,6,3,5,9,7,8,7,5,2,8 -T,1,0,2,0,0,7,14,2,3,7,10,8,0,8,0,8 -A,3,7,5,5,3,10,3,2,2,8,2,10,3,5,2,8 -V,1,1,2,2,1,7,12,2,2,7,11,8,2,11,0,8 -L,3,6,4,4,2,5,3,6,9,2,2,4,1,6,1,5 -G,5,9,7,8,8,8,8,6,3,7,6,9,8,11,9,11 -I,3,9,4,7,3,7,7,0,6,13,6,8,0,8,1,8 -X,5,7,7,5,6,8,6,2,5,6,7,7,3,10,10,8 -I,3,11,4,8,2,7,7,0,8,14,6,8,0,8,1,8 -J,2,7,2,5,1,12,3,9,4,13,4,12,1,6,0,8 -K,4,3,4,5,1,4,7,8,1,7,6,11,3,8,3,11 -X,5,10,7,7,6,8,7,3,5,6,7,6,4,10,11,8 -S,3,4,5,3,2,8,6,3,7,10,4,8,1,8,4,10 -L,1,0,1,0,0,2,1,6,4,0,3,4,0,8,0,8 -Y,2,1,4,2,1,7,11,1,7,7,11,8,1,11,2,8 -X,5,11,8,8,5,11,7,1,8,10,2,6,4,9,4,11 -Q,3,6,4,8,4,8,8,5,2,8,8,10,3,9,5,8 -R,5,5,6,8,3,6,11,9,4,7,3,8,3,7,6,11 -E,4,4,4,6,3,3,8,6,11,7,5,14,0,8,7,7 -N,4,4,5,6,2,7,7,14,2,4,6,8,6,8,0,8 -B,3,6,5,4,5,9,7,4,3,6,7,7,5,10,7,7 -G,5,9,7,6,8,8,8,5,2,6,6,9,7,8,6,11 -K,4,4,6,3,3,6,7,2,7,10,7,10,3,8,3,7 -E,3,8,5,6,4,7,7,5,8,7,6,9,6,8,6,9 -O,5,7,7,6,5,7,5,5,5,9,5,9,3,6,5,6 -Z,5,9,6,7,4,6,8,3,10,12,7,8,1,9,6,7 -L,6,10,6,5,3,7,5,4,4,12,9,12,3,9,6,9 -G,3,7,5,5,5,9,7,5,2,7,6,10,5,9,4,10 -P,4,5,5,7,6,9,7,4,3,6,7,8,6,11,5,4 -Y,4,7,4,5,2,4,10,2,9,11,10,5,0,10,3,4 -S,5,10,8,8,9,6,7,3,2,8,6,6,3,8,11,2 -Y,5,10,6,8,6,8,7,6,5,5,9,8,3,9,10,7 -M,7,8,10,6,6,9,6,2,5,9,6,8,8,6,2,8 -J,2,5,3,3,1,10,6,2,6,12,4,8,1,6,1,7 -I,1,5,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -U,8,13,8,7,5,7,6,5,5,7,8,8,5,7,3,8 -H,4,6,6,4,3,7,7,3,6,10,6,8,3,8,3,7 -E,2,4,4,3,2,7,7,2,8,11,6,9,2,8,4,8 -N,4,9,5,7,3,7,7,15,2,4,6,8,6,8,0,8 -D,2,3,3,2,2,9,6,3,5,10,4,6,2,8,2,8 -I,4,7,5,5,3,8,6,2,7,7,6,7,0,9,4,7 -B,6,10,9,8,9,8,7,6,6,9,7,6,6,10,9,10 -J,5,9,3,12,3,10,7,2,3,11,3,5,3,8,6,9 -E,4,7,5,5,4,7,7,5,9,7,7,9,3,8,6,8 -J,5,9,7,7,4,8,7,3,6,15,5,8,0,6,1,7 -M,3,1,4,3,3,8,6,6,4,6,7,8,7,5,2,7 -O,2,3,3,1,1,8,7,7,5,7,6,8,2,8,3,8 -U,8,11,7,6,4,7,5,5,4,6,8,8,5,6,3,8 -W,7,7,7,5,4,2,10,3,3,11,11,8,7,10,2,6 -O,3,6,4,4,2,7,7,7,5,7,5,9,3,8,3,7 -S,2,8,3,6,3,7,7,5,7,5,6,7,0,8,8,8 -F,4,7,5,5,5,6,9,2,6,10,9,6,5,10,3,7 -N,6,10,5,6,3,7,9,4,5,4,5,10,5,10,2,7 -H,3,5,5,3,3,7,8,6,7,7,5,8,3,8,3,8 -T,5,10,5,5,2,6,9,2,7,12,7,5,2,10,3,5 -G,3,2,5,4,3,7,6,6,6,6,6,10,2,9,4,9 -Y,3,7,4,5,1,7,10,2,2,7,13,8,1,11,0,8 -Z,1,0,2,1,0,7,7,2,10,9,6,8,0,8,6,8 -L,2,4,3,3,1,7,4,1,7,9,3,10,0,6,3,8 -O,4,7,5,5,4,7,9,8,4,7,8,8,3,8,3,8 -Z,5,10,7,8,4,7,7,3,11,11,6,8,1,8,7,8 -E,6,9,8,6,6,8,7,1,8,11,5,8,3,8,5,10 -O,3,6,4,4,2,7,7,7,5,10,6,8,3,8,3,8 -H,3,6,3,4,3,8,8,12,1,7,5,8,3,8,0,8 -Q,5,8,6,9,7,8,7,6,3,8,8,10,3,9,5,8 -H,6,11,8,8,9,6,8,6,7,7,6,10,6,8,4,8 -S,4,8,5,6,4,7,7,5,8,5,6,10,1,10,9,9 -Y,4,6,5,8,6,10,12,5,4,6,7,7,5,10,8,5 -A,3,8,5,5,2,10,5,3,1,8,1,9,2,7,2,9 -G,2,0,2,1,1,8,6,6,6,6,5,9,1,7,5,10 -C,4,7,5,5,2,6,9,7,7,13,8,7,2,11,2,6 -N,3,5,5,3,2,5,9,3,4,10,8,8,5,8,0,7 -S,5,6,6,8,3,8,7,6,9,4,6,8,0,8,9,8 -O,6,10,7,8,5,8,7,8,6,10,5,9,4,9,5,6 -Z,3,5,4,8,3,12,4,3,5,10,2,7,2,7,5,12 -R,4,10,6,7,5,7,8,6,5,8,5,9,3,6,6,11 -D,4,9,5,7,6,7,8,6,6,8,7,5,3,8,3,7 -I,4,5,5,6,4,8,9,4,4,7,6,8,3,7,8,7 -Q,5,8,6,9,6,8,7,6,3,9,8,10,3,8,6,8 -O,6,8,8,6,5,7,7,8,4,7,6,8,3,8,3,7 -P,6,11,6,8,3,4,13,8,1,10,6,3,1,10,4,8 -D,2,2,3,3,2,8,7,6,7,6,6,4,2,8,3,6 -L,2,6,4,4,2,6,4,2,10,7,1,10,0,7,3,7 -N,6,9,8,8,9,7,8,4,4,7,5,7,7,9,6,7 -D,2,3,4,1,2,10,6,3,6,10,3,6,2,8,2,9 -G,3,7,4,5,3,7,6,7,7,7,4,11,1,8,5,11 -N,3,7,3,5,3,8,8,12,1,6,6,8,5,9,0,8 -I,1,1,0,2,0,7,7,1,7,7,6,8,0,8,2,8 -X,4,6,5,8,2,7,7,5,4,7,6,8,3,8,4,8 -B,5,5,5,8,4,6,8,9,7,7,5,7,2,8,9,10 -C,2,3,2,2,1,4,8,4,7,10,9,12,1,8,2,7 -I,0,0,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -P,4,8,6,6,4,4,12,6,4,11,8,3,0,10,4,7 -Y,2,2,4,3,2,7,11,1,7,7,11,8,1,11,2,8 -S,4,10,4,8,2,8,7,6,9,4,6,6,0,8,9,8 -G,3,6,4,4,2,6,7,6,6,10,7,10,2,10,4,9 -L,2,4,4,3,2,6,4,1,9,7,2,10,0,7,2,8 -B,2,6,3,4,2,7,7,9,6,7,6,7,2,8,8,9 -C,5,10,6,8,5,5,7,8,7,11,8,13,3,12,5,8 -X,2,7,3,4,1,7,7,4,4,7,6,8,3,8,4,8 -A,4,11,6,8,2,8,5,3,1,7,0,8,3,7,2,8 -W,7,8,7,6,7,4,10,2,3,9,8,8,7,12,2,6 -W,7,10,7,7,6,4,10,2,3,9,9,8,7,11,2,6 -M,5,11,8,8,11,10,7,3,4,8,4,7,12,6,7,4 -S,6,11,7,8,4,7,8,4,8,11,8,7,2,10,5,6 -D,2,3,3,2,2,7,7,6,6,7,6,6,5,8,2,7 -Y,8,11,7,6,4,8,6,4,6,9,6,5,3,10,6,5 -Q,2,2,3,4,2,8,9,5,2,5,8,10,2,9,5,9 -B,6,9,8,7,7,7,8,6,5,6,5,6,4,9,7,6 -F,6,11,8,8,6,6,10,1,6,13,7,6,2,10,2,7 -R,3,5,5,4,3,9,7,3,5,10,4,6,3,7,4,9 -J,4,9,4,7,2,8,9,2,4,13,4,5,1,8,6,8 -W,7,7,10,6,10,8,7,5,5,7,5,8,10,9,8,7 -N,5,7,7,5,6,6,8,3,4,8,7,9,6,9,5,5 -U,5,11,7,8,10,9,6,4,4,6,7,7,8,7,6,5 -N,4,6,7,4,3,9,9,2,5,11,3,5,6,9,2,7 -V,4,10,6,7,3,7,9,3,2,6,12,8,3,10,0,8 -D,4,7,5,5,4,8,8,4,5,10,6,4,3,8,3,7 -A,3,6,5,4,2,11,3,2,2,9,2,9,2,6,3,9 -H,2,1,3,2,2,7,7,6,6,7,6,9,3,9,3,8 -F,2,3,3,2,1,6,11,3,5,12,7,4,1,9,1,7 -A,3,9,5,6,4,12,2,2,2,10,2,9,2,6,3,8 -O,4,10,6,8,4,8,6,9,5,7,5,8,3,8,3,8 -I,2,7,3,5,2,7,9,0,6,13,6,7,0,8,1,7 -D,2,4,4,3,2,8,7,4,6,10,4,6,2,8,3,8 -Y,5,6,6,4,3,3,10,2,7,11,11,6,1,10,2,4 -H,6,9,6,4,3,5,9,4,6,9,7,9,5,7,3,7 -K,5,9,7,6,5,9,6,1,6,10,4,8,3,8,4,10 -K,7,11,10,8,6,8,6,2,7,10,4,9,5,6,5,8 -I,0,6,0,4,0,7,7,5,3,7,6,8,0,8,0,8 -L,3,6,4,4,3,9,4,1,6,9,2,9,1,6,2,9 -D,5,10,5,5,3,12,4,3,5,11,2,7,4,7,3,12 -Q,7,10,9,8,8,8,3,8,4,6,6,8,4,8,6,9 -N,2,0,2,1,1,7,7,12,1,5,6,8,5,8,0,8 -Q,6,9,6,11,6,7,7,8,5,9,8,8,4,9,7,9 -L,3,7,5,5,2,6,4,1,9,8,2,11,0,8,2,8 -O,3,1,4,2,2,7,8,7,5,7,7,8,2,8,3,8 -F,2,3,2,1,1,5,11,4,4,10,8,5,1,9,3,7 -Y,1,1,2,1,0,7,10,2,2,7,12,8,1,11,0,8 -K,2,1,2,1,0,5,7,8,1,7,6,11,3,8,2,11 -I,1,9,2,6,3,8,7,0,7,7,6,7,0,8,2,7 -I,1,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -G,2,4,3,3,2,6,7,5,5,9,7,10,2,9,4,10 -H,3,3,5,1,2,6,7,3,6,10,9,9,3,8,3,6 -Q,2,5,3,7,4,8,6,7,3,7,5,11,2,9,4,10 -U,4,8,6,6,3,4,8,7,7,9,11,11,3,9,0,8 -D,2,6,4,4,3,7,7,5,6,7,6,5,3,8,3,7 -D,5,11,7,8,11,8,8,5,5,7,6,6,7,8,8,6 -M,3,6,5,4,5,7,7,6,4,7,5,8,5,9,6,8 -X,3,1,4,3,2,7,8,3,9,6,6,7,3,9,6,6 -M,5,9,7,6,7,7,7,2,4,9,8,9,7,6,2,8 -B,4,9,5,7,5,8,6,7,7,6,6,6,2,8,7,10 -R,3,8,4,5,2,5,11,8,3,7,3,8,3,7,6,11 -S,2,6,3,4,3,8,7,7,6,7,8,9,2,10,8,8 -A,4,10,7,7,2,8,7,3,0,7,0,8,3,7,2,8 -J,3,8,4,6,2,13,3,6,4,13,3,11,0,7,0,8 -D,4,9,4,7,3,6,7,11,9,6,5,6,3,8,4,8 -Y,3,10,5,7,3,7,10,1,7,6,12,8,1,11,2,8 -G,3,8,5,6,2,7,5,7,8,6,5,10,1,8,6,11 -K,5,7,7,5,4,3,9,3,6,10,11,11,3,8,3,6 -Z,3,8,4,6,2,7,7,4,14,9,6,8,0,8,8,8 -P,3,7,5,5,2,6,11,4,4,13,5,2,0,10,3,9 -R,5,8,7,6,6,9,7,4,5,10,4,6,3,7,4,10 -F,4,5,5,6,5,7,9,4,4,7,6,7,4,9,8,8 -G,4,8,5,6,2,8,7,8,8,6,6,9,2,7,6,11 -Q,5,7,6,8,5,9,8,7,2,4,7,10,3,8,6,10 -E,4,7,6,5,5,8,5,6,3,7,6,9,4,8,8,10 -T,8,11,7,6,3,5,10,3,9,13,7,5,2,9,3,4 -M,5,11,6,8,4,7,7,12,2,7,9,8,9,6,0,8 -B,9,15,7,9,5,7,7,5,5,10,6,8,6,6,9,10 -Q,2,2,3,3,2,8,8,6,2,5,6,9,2,9,5,10 -E,5,9,4,4,2,7,8,4,7,9,6,9,1,9,7,9 -Z,3,6,4,4,2,7,7,4,14,9,6,8,0,8,8,8 -W,5,10,7,8,8,7,9,6,4,8,8,7,10,9,4,10 -X,3,4,5,3,2,8,7,4,9,6,6,9,4,7,7,9 -O,9,15,7,8,4,8,6,5,6,8,3,8,6,9,5,8 -W,7,7,7,5,5,4,11,3,3,9,9,7,7,11,2,6 -Z,7,11,9,8,5,8,6,3,10,12,4,10,2,9,6,10 -Y,10,10,8,14,6,9,6,5,5,4,12,6,5,10,6,7 -M,6,10,9,7,7,10,6,2,5,9,3,6,9,8,2,9 -X,3,9,5,7,4,7,7,3,8,5,7,9,3,8,6,8 -N,3,7,5,5,4,7,9,6,4,7,6,7,6,8,3,8 -H,2,3,4,1,2,8,8,3,5,10,5,7,3,8,3,7 -N,5,9,5,7,3,7,7,15,2,4,6,8,6,8,0,8 -X,5,11,6,8,4,8,7,4,4,7,6,8,3,8,4,8 -A,5,11,7,8,7,8,5,7,4,8,6,8,6,8,7,4 -P,3,4,3,3,2,5,10,4,4,10,8,4,1,10,3,7 -F,2,1,2,3,2,5,10,4,5,10,9,6,1,10,3,7 -G,3,2,4,4,3,6,7,6,6,7,6,10,3,7,4,9 -P,1,1,2,1,1,5,10,8,3,9,6,5,1,9,3,8 -T,2,6,3,4,2,7,12,3,7,7,11,8,1,11,1,7 -Y,7,9,7,7,4,4,9,2,7,10,11,6,2,12,3,4 -R,3,3,3,4,2,5,10,8,4,7,4,8,2,7,5,11 -N,3,8,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -S,4,10,5,8,5,7,7,5,8,5,6,8,0,8,9,7 -P,4,8,6,6,3,6,11,3,6,14,7,3,0,9,2,8 -F,4,10,6,7,4,4,12,4,4,13,8,5,2,10,2,6 -S,4,5,5,7,3,8,8,6,10,5,6,7,0,8,9,7 -I,7,11,6,6,3,8,8,3,6,13,4,5,2,8,6,10 -V,4,4,5,3,2,4,12,3,3,10,11,7,2,10,1,8 -T,4,11,6,8,2,7,15,1,6,7,11,8,0,8,0,8 -Z,5,11,7,8,3,7,7,4,15,9,6,8,0,8,9,8 -R,4,10,4,7,5,5,10,7,3,7,4,9,2,6,5,11 -G,3,8,4,6,3,8,8,7,5,6,6,9,2,7,5,11 -F,4,7,4,5,2,1,12,4,4,12,11,7,0,8,1,6 -B,2,4,3,2,2,9,7,3,5,10,5,7,2,8,4,9 -F,5,10,5,8,4,1,12,4,4,12,10,7,0,8,2,6 -G,5,6,5,4,3,6,7,6,5,10,8,10,2,9,4,9 -P,2,3,4,2,2,7,9,3,4,12,5,4,1,10,2,8 -G,4,7,5,5,3,7,6,7,7,11,6,11,2,10,4,9 -Q,4,6,6,4,5,8,5,7,4,7,6,6,5,7,6,9 -O,4,7,5,5,3,7,8,7,6,9,8,8,3,8,3,8 -Z,3,7,4,5,3,6,7,5,9,7,7,9,1,9,7,8 -X,5,7,8,5,4,7,7,1,8,10,7,9,3,8,3,8 -S,2,3,4,2,1,7,8,3,7,10,7,7,1,8,5,6 -O,3,6,4,4,3,8,8,7,4,7,7,7,3,8,2,8 -T,2,4,3,3,2,7,12,3,6,7,11,9,2,11,1,8 -S,3,8,4,6,3,9,7,7,6,7,6,8,2,9,9,8 -O,2,4,3,3,2,8,7,6,3,9,5,8,2,8,2,8 -P,6,10,9,8,7,8,9,5,4,11,4,4,2,10,3,8 -B,5,11,7,8,9,8,8,6,6,7,6,6,2,8,6,9 -Q,4,5,4,6,4,8,8,5,3,8,9,9,3,10,5,7 -T,2,4,3,2,1,6,11,2,7,11,9,5,1,10,2,5 -Q,8,12,7,6,4,10,3,5,7,12,3,11,3,7,8,11 -Y,4,6,6,4,5,9,5,7,5,6,9,7,3,9,8,5 -Q,8,9,11,8,9,6,4,4,6,5,4,7,4,6,6,7 -L,3,5,3,3,2,4,3,5,6,2,2,5,1,6,0,6 -V,5,10,7,8,9,8,5,6,3,7,7,8,8,7,4,7 -X,5,5,6,8,2,7,7,5,4,7,6,8,3,8,4,8 -E,4,8,5,6,5,8,7,6,3,6,6,10,3,8,7,9 -W,5,10,7,8,7,6,11,2,2,7,8,9,7,12,1,8 -B,4,7,6,5,5,9,7,4,5,9,5,6,2,8,5,9 -P,4,8,6,6,4,5,13,7,2,12,6,2,1,10,3,8 -J,7,13,6,10,4,8,9,2,3,12,5,5,2,9,8,9 -U,5,8,5,6,3,3,8,5,7,9,9,9,3,9,2,5 -X,4,8,5,5,1,7,7,4,4,7,6,8,3,8,4,8 -B,6,11,9,8,9,8,8,4,6,10,5,6,5,6,7,10 -C,6,11,7,8,3,5,7,7,11,7,6,12,1,9,4,8 -R,5,10,7,8,7,6,8,5,6,6,5,8,3,6,5,8 -O,4,9,5,7,5,8,9,8,4,7,8,7,4,7,4,9 -V,5,6,5,4,2,4,12,5,4,11,11,6,3,10,1,8 -P,7,11,10,8,6,9,9,4,6,12,3,3,2,10,4,9 -R,1,0,2,1,1,6,9,7,3,7,5,8,2,7,4,11 -I,2,5,3,4,1,7,7,0,8,13,6,8,0,8,1,8 -P,2,3,4,2,2,7,10,5,3,10,4,3,1,10,3,8 -A,5,10,7,7,4,9,5,3,0,8,1,8,2,7,1,8 -B,7,10,9,7,7,9,6,4,7,9,5,6,2,8,7,10 -C,5,10,6,8,3,3,8,5,8,11,11,13,1,8,3,7 -W,6,5,8,8,4,5,8,5,2,7,8,8,9,9,0,8 -Q,9,13,8,7,5,8,6,4,10,11,4,10,3,7,9,9 -Z,4,6,6,4,3,6,9,2,8,11,8,6,1,8,6,5 -I,1,9,0,6,1,7,7,5,3,7,6,8,0,8,0,8 -G,1,3,2,1,1,7,7,5,5,10,7,10,2,9,3,10 -T,2,1,2,2,1,8,11,4,5,6,10,7,2,11,1,7 -I,2,5,3,3,1,7,8,1,7,14,6,7,0,8,1,7 -C,6,9,6,6,4,7,8,6,8,13,7,10,3,11,4,6 -I,6,11,8,8,5,10,5,2,6,6,7,4,0,10,4,7 -N,5,10,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -V,4,8,4,6,2,4,11,4,4,10,11,7,3,10,1,8 -K,5,5,6,7,2,4,8,8,2,7,4,11,3,8,2,11 -Q,5,9,5,5,3,9,6,4,6,10,5,7,3,8,9,9 -M,5,9,6,7,6,7,5,11,1,7,9,8,9,5,2,9 -P,4,8,4,5,2,4,15,8,1,12,6,2,0,9,4,8 -V,3,5,4,3,1,4,12,3,3,10,11,7,2,11,1,8 -F,4,7,4,5,2,1,12,4,4,12,10,7,0,8,2,6 -O,5,9,6,6,3,8,6,8,8,7,5,9,3,8,4,8 -Q,4,5,5,4,4,8,4,4,5,7,4,8,4,6,4,8 -K,3,6,5,4,3,3,9,2,6,10,11,11,3,8,2,6 -R,7,9,6,4,3,8,7,5,5,9,4,9,6,5,6,11 -F,2,4,3,3,1,6,10,2,5,13,7,5,1,9,1,7 -X,3,5,6,3,3,8,6,1,8,10,5,8,2,8,3,8 -P,4,11,5,8,4,5,10,8,4,9,7,3,2,10,4,7 -M,5,6,8,5,8,9,8,5,4,7,6,7,11,9,7,5 -E,1,1,1,1,1,4,7,5,8,7,6,13,0,8,6,9 -K,5,10,6,8,5,3,8,7,3,7,5,11,3,8,3,11 -W,4,7,6,5,3,7,8,4,1,7,8,8,8,9,0,8 -P,6,9,8,7,5,6,14,6,1,11,5,2,1,11,4,7 -W,5,8,7,6,6,7,11,2,2,7,8,8,7,12,1,8 -Q,4,5,4,6,4,8,5,6,5,9,6,9,3,8,5,8 -Z,6,10,8,8,5,8,6,3,9,12,4,9,3,6,8,9 -B,1,0,1,0,0,7,7,6,4,7,6,7,1,8,5,9 -Q,3,6,4,8,4,8,6,8,4,5,6,9,3,8,6,10 -D,6,14,6,8,4,11,4,2,6,9,3,7,5,7,4,12 -E,4,7,4,5,3,3,7,5,10,7,6,14,0,8,6,8 -J,4,9,6,7,4,8,6,6,6,8,6,8,3,7,4,6 -Q,5,7,7,10,10,8,6,5,1,6,6,9,8,9,6,12 -O,4,8,5,6,4,7,7,8,4,7,6,10,3,8,3,8 -A,4,8,6,6,4,11,3,2,2,9,2,9,4,4,3,8 -G,5,10,7,8,5,6,6,7,6,6,6,10,2,8,5,8 -U,4,3,4,5,1,7,5,12,5,7,15,8,3,9,0,8 -U,6,11,6,8,4,3,8,5,7,11,11,9,3,9,2,6 -X,4,5,7,3,3,6,8,1,9,11,8,9,3,8,3,7 -W,6,8,9,7,11,9,6,5,5,8,6,8,11,12,8,6 -C,5,6,6,5,5,6,7,4,5,7,6,11,5,10,8,11 -I,2,6,3,4,2,7,7,0,7,13,6,8,0,8,1,8 -O,4,9,5,7,5,8,6,7,4,9,4,8,3,8,2,8 -X,3,4,6,3,2,7,7,1,9,11,6,8,2,8,3,8 -V,4,10,6,8,3,8,9,4,2,6,13,8,3,10,0,8 -W,4,5,6,8,4,7,7,4,2,7,8,8,9,9,0,8 -A,3,5,6,3,2,8,2,2,2,6,1,8,2,6,2,7 -E,3,4,3,3,3,7,7,5,8,7,6,8,2,8,6,9 -P,2,4,4,2,2,8,10,4,3,11,4,3,1,10,3,8 -L,3,3,3,5,1,0,1,6,6,0,1,5,0,8,0,8 -O,2,2,3,4,2,7,7,8,4,7,6,8,2,8,3,8 -P,4,10,6,8,5,6,9,6,5,9,7,3,2,10,4,6 -B,5,8,7,6,6,9,7,3,5,10,5,6,2,8,5,9 -I,4,10,6,8,7,10,8,2,6,9,4,4,4,8,7,4 -E,4,10,5,7,5,6,7,6,9,6,4,10,3,8,6,9 -V,5,11,8,8,5,8,12,2,3,4,10,9,4,12,2,8 -K,5,7,7,6,5,9,5,2,4,8,4,9,5,8,7,11 -S,6,10,8,8,9,8,9,5,4,8,5,6,4,9,11,8 -D,6,11,6,8,4,5,7,10,10,7,6,6,3,8,4,8 -B,4,11,5,8,7,6,8,9,6,7,5,7,2,7,8,10 -N,9,13,8,7,4,6,10,4,5,4,5,10,6,10,2,7 -C,2,3,3,2,1,6,8,7,7,8,7,12,1,9,4,10 -W,5,11,8,8,8,7,11,2,2,6,8,8,7,12,1,8 -A,2,6,4,4,3,8,3,2,1,7,2,8,1,7,2,8 -A,3,9,5,6,3,10,3,2,2,8,2,10,3,5,3,7 -N,3,4,4,7,2,7,7,14,2,5,6,8,6,8,0,8 -Z,4,5,5,8,2,7,7,4,14,10,6,8,0,8,8,8 -H,4,6,5,4,5,7,7,5,6,7,6,7,6,8,3,8 -A,2,8,4,5,2,7,5,3,1,6,0,8,2,7,2,7 -G,3,4,4,3,2,6,7,5,4,9,7,9,2,8,4,9 -U,3,8,4,6,2,7,5,14,5,7,13,8,3,9,0,8 -W,4,7,6,5,5,10,11,2,2,5,9,8,6,12,1,8 -M,2,3,4,2,2,6,6,4,3,9,9,10,5,6,1,7 -V,3,6,5,4,1,8,8,4,2,7,14,8,3,9,0,8 -Q,5,10,5,6,3,9,6,4,7,11,4,8,3,8,8,11 -W,6,7,6,5,4,3,11,2,2,9,9,8,6,11,1,7 -N,4,9,6,7,4,6,9,6,5,7,7,8,6,9,2,6 -D,3,4,4,3,3,7,7,6,7,7,6,5,2,8,3,7 -A,3,5,6,4,2,9,2,2,2,8,1,8,2,6,2,7 -R,2,6,3,4,3,5,10,7,4,7,4,9,2,6,5,11 -L,3,9,4,7,3,7,4,2,8,7,1,8,1,6,2,7 -U,3,3,4,2,2,6,8,5,7,10,8,8,3,10,3,6 -N,5,11,8,8,6,7,9,6,5,6,6,7,6,9,1,7 -D,4,8,5,6,4,7,7,7,7,7,6,4,3,8,3,7 -H,2,3,4,2,2,7,8,3,5,10,7,8,3,8,2,7 -V,2,6,4,4,1,6,8,4,2,8,13,8,3,10,0,8 -H,8,10,8,5,5,8,6,3,5,10,6,7,7,11,5,8 -F,4,9,6,7,4,5,11,4,6,11,10,5,2,10,3,5 -N,5,10,6,7,5,7,9,6,4,6,6,6,6,9,2,7 -Q,3,3,4,4,3,8,7,6,3,8,6,9,2,9,3,7 -L,3,7,4,5,3,9,3,1,6,9,2,9,1,6,2,9 -O,6,10,7,8,5,8,6,8,6,9,4,8,3,8,3,8 -D,2,3,3,2,2,7,7,5,5,10,5,6,3,8,3,9 -D,5,10,7,7,4,9,7,6,8,11,5,5,3,8,4,8 -F,5,7,7,5,3,6,10,3,6,13,7,4,2,10,2,7 -W,9,10,9,8,9,6,10,3,3,8,7,6,11,11,4,5 -Q,1,0,2,1,1,8,7,6,4,6,6,9,2,8,3,8 -E,5,11,5,8,3,3,8,6,12,7,6,15,0,8,7,6 -S,4,8,5,6,4,6,8,3,6,10,7,8,2,8,5,6 -W,13,13,12,7,5,1,9,5,3,12,13,9,8,9,0,7 -U,3,3,4,1,1,5,8,5,6,10,9,9,3,10,2,6 -D,2,7,4,5,4,7,7,6,5,7,6,4,3,8,2,7 -P,3,8,4,6,3,5,10,5,5,10,8,4,1,10,4,7 -A,2,4,4,3,1,12,3,3,2,10,1,9,1,6,2,9 -C,3,5,4,3,2,5,8,5,7,12,9,11,1,10,2,7 -Y,2,2,4,3,2,8,10,1,7,5,11,8,1,11,2,8 -L,1,3,2,2,1,6,5,2,8,7,3,9,0,7,2,8 -I,3,8,4,6,2,7,7,0,8,14,6,8,0,8,1,7 -A,2,5,4,3,2,8,2,2,2,8,2,8,2,6,2,7 -F,5,7,7,5,3,9,8,2,7,14,4,4,2,9,3,9 -R,6,10,8,8,6,10,7,3,6,10,2,6,5,6,5,10 -G,3,5,4,4,2,6,6,6,5,9,7,11,2,9,4,10 -Y,2,1,3,1,0,7,10,3,1,7,13,8,1,11,0,8 -N,5,4,5,6,2,7,7,15,2,4,6,8,6,8,0,8 -R,3,6,5,4,4,6,8,5,5,6,4,8,3,6,4,8 -C,2,1,3,2,1,6,7,6,10,7,6,14,0,8,4,9 -Y,7,11,8,8,6,5,8,1,8,8,9,5,5,11,7,4 -I,2,7,3,5,2,7,9,0,6,13,6,7,0,8,1,7 -F,6,11,8,8,6,9,8,2,6,12,4,6,5,8,4,9 -N,5,9,7,7,4,5,9,3,4,10,8,8,5,8,1,7 -F,7,12,6,6,3,7,8,2,7,11,6,6,2,9,6,5 -Q,6,6,7,9,4,8,6,8,7,5,7,8,3,8,5,9 -V,3,4,4,3,2,5,12,3,3,9,11,7,2,11,1,8 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -I,4,11,5,8,4,7,7,0,7,13,6,8,0,8,1,8 -K,4,9,5,7,2,3,6,8,3,7,7,12,4,8,3,10 -Z,3,11,4,8,2,7,7,4,14,10,6,8,0,8,8,8 -M,3,3,4,2,2,7,6,6,4,6,7,8,6,5,2,8 -D,6,11,8,8,7,7,7,7,8,7,6,5,6,8,4,7 -Q,4,5,5,7,3,8,6,9,7,6,6,9,3,8,4,8 -V,5,11,7,8,4,4,11,3,4,10,12,9,2,10,1,8 -L,3,7,4,5,2,4,3,5,8,1,1,5,0,7,1,5 -Q,3,3,4,4,3,8,8,6,2,5,7,9,3,9,5,9 -K,5,9,8,7,5,2,8,2,7,11,12,12,3,8,3,5 -W,8,9,10,8,13,6,8,6,5,6,6,8,10,10,9,9 -T,5,7,5,5,3,6,11,3,7,11,9,5,2,11,2,4 -J,3,9,4,7,2,10,6,1,9,12,3,6,0,7,1,7 -L,3,9,3,7,1,0,1,5,6,0,0,7,0,8,0,8 -J,2,10,3,7,1,13,3,8,4,14,3,11,1,6,0,8 -O,3,6,5,4,5,8,7,5,1,7,6,8,8,8,4,9 -P,2,1,3,2,2,5,10,4,4,9,7,4,1,9,3,7 -R,5,9,8,7,5,10,7,3,7,10,3,6,3,6,4,11 -F,4,9,4,6,2,1,13,5,4,12,11,7,0,8,2,6 -B,4,9,6,6,6,6,8,7,4,7,5,6,4,8,5,6 -J,4,11,5,8,3,10,6,1,7,13,3,7,0,7,0,8 -F,3,5,3,3,2,5,12,5,6,11,9,3,1,10,3,5 -D,4,9,6,6,9,9,9,4,5,7,6,6,5,8,9,5 -M,4,2,5,4,4,9,6,6,4,6,7,6,8,6,2,6 -E,3,7,4,5,4,8,7,4,7,7,6,8,6,9,5,10 -H,4,7,6,5,4,9,7,7,6,7,6,5,3,8,3,6 -Y,5,7,8,10,11,8,9,4,2,6,8,9,4,11,8,8 -S,3,7,4,5,4,8,7,7,5,7,6,8,2,8,8,8 -M,2,3,4,2,3,7,6,3,4,9,7,8,6,5,1,8 -C,4,6,5,5,4,6,7,4,4,7,6,11,4,9,8,10 -D,3,5,5,4,3,9,6,4,6,10,4,5,2,8,3,8 -B,3,5,4,4,3,7,7,5,5,6,6,6,2,8,6,10 -X,2,2,3,3,2,8,7,3,8,6,6,8,2,8,6,8 -A,2,2,4,3,2,7,2,2,2,6,2,8,2,7,3,7 -X,4,5,8,4,3,8,7,1,9,11,4,7,3,8,3,8 -N,3,4,5,3,2,9,8,3,5,10,3,5,4,9,1,7 -G,3,5,5,4,3,6,6,6,6,6,6,9,2,8,4,8 -X,2,5,4,4,2,7,7,3,9,6,6,8,2,8,6,8 -Y,2,4,4,6,4,8,11,3,3,5,8,9,2,11,5,6 -P,5,11,7,8,4,7,10,5,5,12,5,3,1,10,3,8 -F,3,5,5,6,5,7,9,4,4,7,6,7,4,9,8,9 -X,3,9,6,7,5,7,6,2,6,7,5,8,3,6,7,7 -C,2,1,2,2,1,6,7,6,10,7,6,14,0,8,4,9 -J,5,10,6,8,5,8,5,8,5,8,7,8,2,7,4,6 -U,4,9,6,8,7,7,6,5,4,6,6,8,4,8,1,7 -E,4,7,5,5,5,8,4,6,3,8,7,10,4,9,7,9 -U,7,11,6,6,3,7,6,4,6,4,8,6,6,7,3,6 -U,2,3,3,2,1,5,8,5,6,9,8,8,3,9,2,6 -Q,3,3,4,4,3,8,7,6,2,5,7,9,3,8,5,9 -H,2,3,3,1,2,8,8,3,5,10,6,8,3,8,2,8 -Z,2,5,5,3,2,7,8,2,9,12,6,8,1,9,5,7 -F,2,3,3,1,1,5,10,4,5,10,9,5,1,9,3,6 -W,7,8,7,6,4,2,10,3,4,11,11,9,7,10,1,7 -J,2,6,3,4,2,8,6,3,6,12,5,9,1,6,1,6 -B,5,9,7,6,6,10,6,2,6,11,3,8,3,8,4,12 -G,2,3,3,2,1,7,7,5,6,10,6,10,2,9,3,9 -Z,4,9,5,7,2,7,7,4,15,9,6,8,0,8,8,8 -C,4,9,5,7,3,4,7,5,6,11,9,14,2,8,3,8 -O,4,9,5,7,2,8,7,9,8,7,6,9,3,8,4,8 -O,4,8,5,6,3,7,7,8,5,10,7,8,3,8,3,8 -E,6,9,8,7,5,7,7,3,9,11,8,9,2,8,4,8 -G,3,2,4,3,2,7,6,6,6,6,6,10,2,9,4,9 -I,1,3,1,2,0,7,7,2,6,7,6,8,0,8,2,8 -P,4,7,6,5,4,8,9,4,4,12,4,3,1,10,3,8 -S,2,3,2,2,1,8,8,6,5,7,6,7,2,8,8,8 -F,4,7,6,5,4,8,8,2,6,13,5,5,2,10,3,9 -U,5,5,6,4,3,4,8,5,8,11,11,9,3,9,2,7 -O,5,9,5,7,5,7,7,8,4,9,6,8,3,8,3,8 -S,7,11,7,6,3,8,5,4,4,13,7,9,3,9,3,8 -C,2,7,3,5,1,6,8,7,8,5,6,13,1,7,4,9 -S,2,3,3,2,1,8,7,2,7,10,6,8,1,8,4,8 -T,4,6,6,8,2,6,15,1,6,9,11,7,0,8,0,8 -B,7,10,9,8,9,7,7,5,5,7,5,7,4,8,7,8 -Q,5,7,6,9,6,9,7,7,2,5,7,10,3,8,6,10 -V,5,10,5,7,3,2,11,3,3,11,11,8,2,11,1,8 -F,7,10,6,5,3,7,8,2,7,11,6,6,2,9,5,6 -V,7,13,5,7,3,7,10,6,4,9,9,4,5,12,3,8 -W,4,9,6,6,6,11,10,2,3,5,9,7,7,10,1,8 -E,3,4,4,6,2,3,8,6,10,7,6,14,0,8,7,7 -G,2,3,3,1,1,7,7,5,5,9,7,9,2,8,4,10 -L,2,5,3,4,2,4,4,4,8,2,1,7,0,7,1,6 -Q,4,5,5,5,4,7,4,5,5,7,5,9,4,5,6,7 -E,3,8,4,6,4,8,7,5,9,6,4,8,2,8,6,9 -U,1,0,1,0,0,7,6,10,4,7,12,8,3,10,0,8 -R,4,7,6,5,6,7,7,3,4,7,6,8,6,9,6,5 -P,4,7,5,5,4,5,11,8,3,10,7,3,2,11,3,7 -P,3,5,5,8,7,8,11,5,0,8,6,6,4,10,6,8 -K,3,2,4,3,3,5,7,4,7,7,6,10,6,8,4,9 -N,4,5,5,7,3,7,7,15,2,4,6,8,6,8,0,8 -F,6,9,5,4,2,8,8,3,6,12,5,6,2,8,6,7 -A,2,1,3,1,1,7,4,2,0,7,2,8,2,6,2,8 -A,3,2,5,3,2,8,2,2,2,7,2,8,2,7,2,7 -J,3,11,4,8,2,10,6,1,8,11,3,6,0,7,1,7 -L,2,3,3,2,1,7,4,2,7,8,2,10,0,7,2,8 -G,4,7,6,5,3,6,6,6,7,6,6,10,3,7,4,8 -O,6,9,6,7,6,8,6,7,4,9,4,8,3,9,3,7 -O,3,9,4,6,3,7,7,9,5,7,6,8,3,8,3,7 -E,3,2,3,3,3,7,7,5,7,7,5,9,2,8,5,10 -K,3,2,4,4,3,5,7,4,8,7,6,11,3,8,5,9 -F,3,8,3,5,1,0,13,4,4,12,11,7,0,8,2,6 -E,5,9,7,7,7,6,7,3,6,8,7,11,5,10,9,9 -G,6,10,8,7,9,8,8,5,3,6,6,7,9,8,9,14 -U,3,4,4,3,2,4,8,5,6,11,10,9,3,9,1,6 -K,6,9,8,7,7,5,6,4,7,6,6,12,5,7,7,10 -U,6,10,8,7,4,4,9,7,8,9,11,10,3,9,1,8 -M,5,9,5,6,6,7,6,10,1,7,8,8,8,4,0,8 -O,6,11,9,8,6,8,8,9,5,7,7,5,5,8,4,9 -S,5,10,6,7,3,8,7,5,9,5,6,8,1,8,9,8 -X,3,5,5,3,2,8,7,1,8,10,5,7,3,8,3,7 -J,2,4,4,3,1,9,5,3,5,13,6,11,1,7,0,7 -V,6,8,6,6,4,4,11,1,3,8,10,8,4,11,1,7 -E,4,8,6,6,6,7,7,3,6,7,7,10,4,9,8,8 -I,0,6,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -L,2,3,2,1,1,4,4,4,6,2,2,5,1,7,1,6 -D,4,6,5,4,4,10,6,3,6,11,4,6,3,8,2,9 -Y,2,4,3,3,1,3,11,3,5,12,10,6,1,10,1,6 -A,1,1,2,1,0,7,4,3,0,7,1,8,2,7,1,8 -K,6,10,8,8,6,6,7,1,7,10,6,10,3,8,4,8 -X,3,5,5,3,2,7,7,1,8,10,6,8,2,8,3,8 -Y,2,3,2,2,1,3,11,3,5,11,10,5,1,11,1,6 -U,3,7,4,5,1,7,5,13,5,7,14,8,3,9,0,8 -A,2,4,4,6,2,7,3,3,3,7,1,8,3,6,3,8 -J,1,1,2,3,1,9,6,3,5,12,5,10,1,6,2,6 -X,3,4,6,3,3,7,7,1,9,10,7,8,3,8,3,7 -Y,7,9,6,13,5,5,7,5,3,7,11,6,4,10,5,6 -Z,5,9,6,7,3,7,7,4,15,9,6,8,0,8,8,8 -U,7,11,9,8,7,6,9,4,7,5,8,10,6,10,1,8 -T,5,10,6,8,5,6,10,1,8,11,9,6,1,10,3,4 -I,3,9,6,7,6,10,5,2,4,9,5,5,3,8,5,7 -A,2,7,4,5,2,11,2,3,3,10,2,9,2,6,3,8 -M,3,1,4,3,3,8,6,6,4,7,7,8,7,5,1,7 -C,2,1,3,2,1,6,8,7,7,8,7,13,1,10,4,10 -K,4,10,5,8,6,6,6,3,7,6,5,8,7,8,5,9 -J,1,2,2,4,1,10,6,2,5,12,4,9,1,6,1,7 -V,2,6,3,4,1,7,9,4,2,7,13,8,3,10,0,8 -B,4,7,5,5,5,8,6,6,7,6,6,6,2,8,7,10 -X,2,1,2,1,0,8,7,4,4,7,6,8,3,8,4,8 -J,2,2,3,4,1,10,6,2,7,12,3,8,1,6,1,7 -U,3,7,3,5,2,8,6,12,4,7,11,8,3,9,0,8 -E,2,1,3,2,2,7,7,5,7,7,5,9,2,8,5,10 -M,4,7,7,5,5,4,8,3,4,10,10,10,5,9,2,6 -M,3,4,5,3,3,7,6,3,4,9,7,8,7,5,1,8 -F,6,10,8,7,5,6,10,1,6,13,7,5,1,10,2,7 -V,5,7,5,5,3,4,12,1,2,8,10,7,3,12,1,8 -Q,3,4,4,5,3,8,7,6,2,8,7,10,3,8,5,8 -K,4,2,5,3,3,5,7,4,7,7,6,11,3,8,5,9 -B,2,1,2,1,1,7,7,7,5,6,5,7,1,8,7,10 -T,7,11,7,9,5,5,12,4,7,12,9,4,2,12,2,4 -A,3,7,4,5,3,8,3,2,2,7,2,8,2,6,3,7 -I,1,6,0,8,1,7,7,4,4,7,6,8,0,8,0,8 -C,1,0,1,1,0,6,7,6,7,7,6,13,0,8,4,10 -V,2,7,4,5,3,9,12,2,3,4,10,9,2,11,1,9 -Y,1,1,2,1,0,7,10,2,2,7,12,8,1,11,0,8 -Z,2,7,3,5,3,7,7,5,9,7,6,8,1,8,7,8 -Q,2,3,3,4,3,8,8,5,2,5,8,10,2,9,5,9 -B,6,9,5,4,3,10,6,6,5,11,4,9,5,7,6,11 -X,2,4,4,3,2,7,7,3,9,6,6,8,2,8,5,8 -D,2,0,2,1,1,5,7,8,6,6,6,6,2,8,3,8 -W,7,11,8,6,5,4,7,2,3,8,10,8,10,10,2,5 -X,4,6,6,4,5,8,6,3,5,6,7,8,3,9,8,9 -V,3,2,5,4,2,7,12,2,3,7,11,9,2,10,1,8 -Z,6,10,8,7,6,10,6,5,4,8,5,7,3,7,11,7 -V,4,7,6,6,7,7,8,5,5,7,6,8,6,9,7,8 -W,6,5,7,4,4,4,11,2,2,9,9,8,7,11,1,6 -B,4,3,4,5,3,6,7,8,6,7,6,6,2,8,9,10 -N,4,7,6,5,5,6,8,3,4,8,7,7,5,9,5,3 -M,3,6,6,4,6,9,4,2,2,8,4,8,8,6,2,7 -F,5,11,6,8,5,5,11,7,6,11,10,5,2,9,2,5 -C,2,4,3,2,1,5,9,4,7,11,9,11,1,9,2,7 -G,5,10,5,7,4,6,6,6,5,10,7,13,2,9,5,9 -C,5,10,6,8,3,5,8,6,8,12,9,12,2,9,3,7 -Z,4,8,5,6,3,6,8,6,11,7,7,10,1,9,8,8 -A,4,5,6,4,4,8,7,3,5,7,8,8,5,9,3,6 -Z,3,7,4,5,2,7,8,3,12,8,6,8,0,8,7,7 -S,5,5,6,8,3,8,8,6,9,5,6,7,0,8,9,7 -L,2,4,2,3,1,4,4,4,8,2,1,6,0,7,1,6 -T,6,11,5,6,2,4,11,3,7,13,8,6,2,7,3,3 -D,8,15,7,8,5,6,7,4,7,9,6,7,5,9,7,5 -G,4,6,5,4,3,6,8,6,6,10,8,9,2,8,4,9 -J,0,0,1,0,0,12,4,4,3,12,4,10,0,7,0,8 -Z,1,3,2,2,1,7,7,5,8,6,6,8,1,8,7,8 -Z,3,8,4,6,4,6,8,3,8,7,6,9,0,8,9,7 -I,5,9,4,4,2,9,7,6,4,13,5,8,3,8,5,10 -C,3,5,4,3,2,4,8,5,7,11,9,12,1,9,3,7 -B,6,11,6,8,5,6,6,9,7,6,6,7,2,8,10,10 -N,1,0,1,1,0,7,7,9,0,6,6,8,4,8,0,8 -V,3,10,5,7,2,6,8,4,3,8,14,8,3,10,0,8 -J,5,8,6,6,2,8,4,5,6,15,7,13,1,6,1,6 -D,2,5,4,4,3,9,6,4,6,10,4,6,2,8,3,8 -E,6,9,8,7,7,8,8,6,3,6,6,10,4,8,8,9 -J,1,2,2,3,1,10,6,2,6,12,4,9,0,7,1,8 -T,2,7,4,4,1,8,14,1,6,6,11,8,0,8,0,8 -V,4,10,6,8,2,8,8,4,3,6,14,8,3,9,0,8 -F,3,9,3,6,1,1,12,5,5,11,10,8,0,8,3,6 -F,8,14,7,8,3,6,9,2,7,10,7,6,2,10,5,6 -C,5,9,5,7,3,4,10,7,8,13,10,8,2,10,2,6 -W,4,11,6,8,4,11,8,5,2,6,9,8,8,10,0,8 -U,10,14,9,8,4,6,4,4,6,4,7,6,6,5,2,7 -J,2,2,4,4,2,10,6,2,7,12,4,9,1,6,1,7 -I,1,3,2,2,1,7,8,1,7,13,6,8,0,8,1,7 -W,4,8,6,6,6,8,10,2,3,6,8,8,7,11,1,8 -B,2,3,2,2,2,7,8,5,5,7,6,6,2,8,5,9 -Y,2,2,4,3,1,7,11,1,7,7,11,8,1,11,2,8 -N,6,10,8,8,6,7,8,6,6,6,6,4,9,10,5,6 -Z,2,7,3,5,2,7,7,3,11,8,6,8,0,8,7,8 -S,4,6,4,8,3,8,8,6,9,4,5,5,0,8,9,7 -S,2,6,3,4,3,8,8,7,5,7,5,8,2,8,8,8 -F,6,13,6,7,3,7,9,2,6,12,5,5,2,9,6,6 -Y,3,3,5,4,1,5,10,3,2,8,13,8,2,11,0,8 -J,0,0,1,1,0,12,4,5,3,12,4,11,0,7,0,8 -Z,4,7,5,5,4,9,8,5,3,7,5,7,3,7,8,4 -W,6,8,6,6,7,7,10,4,3,9,6,6,8,10,4,5 -C,5,7,6,5,6,6,6,4,3,7,6,11,5,9,3,9 -W,5,11,8,8,8,4,12,2,2,8,9,9,7,13,2,8 -T,1,3,2,2,1,6,11,3,4,8,10,7,2,11,0,7 -R,3,8,4,6,4,6,10,7,4,7,4,9,2,6,5,11 -E,3,7,3,5,2,3,7,6,9,7,6,14,0,8,7,8 -B,4,9,6,6,6,8,7,5,6,9,6,6,3,9,7,8 -Z,2,2,3,3,2,7,7,5,9,6,6,8,2,8,7,8 -S,5,8,7,6,9,7,10,3,4,8,7,7,3,7,8,2 -R,3,6,4,4,3,9,7,3,5,10,4,7,3,7,3,10 -M,3,4,4,3,3,7,6,6,4,6,7,9,6,5,2,8 -E,2,3,3,1,1,5,8,2,7,11,8,10,1,8,3,7 -B,2,4,2,3,2,7,7,5,5,6,6,6,2,8,5,9 -H,3,5,4,3,3,9,7,6,6,7,6,8,3,8,3,7 -W,6,11,9,8,8,7,9,5,1,7,9,8,9,10,1,7 -J,6,7,4,10,3,6,10,3,3,13,6,5,3,8,7,9 -J,4,10,6,7,5,6,8,3,4,8,7,7,6,7,4,7 -N,6,8,9,6,4,8,8,2,6,10,5,6,6,9,1,7 -F,2,6,2,4,1,1,11,4,7,12,12,9,0,8,2,6 -D,3,8,5,6,4,10,6,3,6,11,4,7,3,8,2,9 -X,3,3,4,4,1,7,7,6,2,7,6,8,3,8,4,8 -W,7,9,7,5,3,3,9,3,2,8,11,9,10,11,0,7 -R,4,10,6,8,6,7,7,6,6,7,6,7,3,7,5,9 -W,7,11,10,8,15,10,8,5,3,7,7,8,13,10,4,6 -D,3,5,5,4,3,9,6,4,7,10,4,6,2,8,3,8 -V,3,4,4,3,1,5,12,2,3,9,11,7,2,11,1,8 -K,6,10,8,8,7,5,5,4,8,6,7,12,4,8,7,9 -O,10,15,7,8,4,7,7,5,5,8,4,7,5,9,6,8 -L,4,8,5,6,3,7,4,1,7,8,2,10,1,6,3,8 -O,4,7,5,5,3,7,8,8,5,7,7,9,3,8,3,8 -U,3,7,3,5,2,7,5,13,5,7,13,8,3,9,0,8 -O,5,6,6,6,5,6,7,6,7,9,7,9,4,7,5,5 -J,2,6,3,4,1,8,7,3,6,15,5,9,1,6,1,7 -N,3,3,4,5,2,7,7,14,2,5,6,8,6,8,0,8 -O,7,11,5,6,3,6,7,5,4,7,4,7,5,8,5,7 -N,6,11,9,8,6,11,8,2,5,10,2,4,7,10,2,8 -P,2,7,3,4,1,4,11,8,3,10,6,4,1,10,3,8 -J,3,8,4,6,2,9,6,2,8,15,4,8,0,7,0,7 -A,1,1,3,2,1,7,2,2,1,7,2,8,1,6,2,7 -C,7,10,8,8,4,6,8,7,8,13,8,9,2,11,3,7 -X,4,10,5,7,2,7,7,4,4,7,6,8,3,8,4,8 -L,2,5,3,3,2,5,4,5,6,2,2,5,1,6,1,6 -I,1,8,1,6,1,7,7,0,8,7,6,8,0,8,3,8 -E,3,6,4,4,2,4,6,6,10,7,7,13,0,8,8,8 -M,7,9,10,6,6,10,5,2,6,9,4,7,8,6,2,8 -X,4,5,8,4,3,7,7,1,9,10,6,8,2,8,3,7 -D,5,9,6,7,5,10,6,4,7,10,3,5,3,8,3,9 -D,6,12,6,6,5,9,6,3,6,10,4,7,5,8,8,7 -J,5,11,4,8,3,8,8,2,4,12,4,5,2,9,7,8 -T,2,1,3,1,0,7,15,2,4,7,10,8,0,8,0,8 -U,3,7,3,5,1,7,5,13,5,7,13,8,3,9,0,8 -K,3,7,5,5,5,6,6,3,4,7,6,9,5,7,7,9 -K,5,11,5,8,2,4,7,9,2,7,4,11,4,8,2,11 -P,2,4,4,3,2,7,9,3,4,12,5,4,1,9,3,8 -B,5,8,6,6,5,9,8,7,8,7,5,5,2,8,8,9 -K,5,8,6,6,6,5,6,4,6,6,6,10,3,8,5,10 -E,2,2,3,3,2,7,7,5,7,7,6,9,2,8,5,10 -A,3,8,5,6,3,12,3,2,2,9,2,9,3,7,3,9 -Y,4,10,6,8,6,9,5,6,4,7,8,8,6,8,8,3 -S,6,10,7,8,4,7,7,4,8,11,7,8,2,9,5,8 -H,2,2,3,3,3,6,7,5,6,7,6,8,3,8,3,8 -Y,3,4,4,2,2,4,10,2,7,10,10,5,2,11,3,4 -Z,3,8,5,6,3,8,7,2,9,11,6,8,2,8,6,8 -E,4,11,5,8,5,3,7,5,9,7,7,14,0,8,6,9 -Z,7,10,5,14,5,7,10,3,3,11,7,7,3,8,14,7 -M,6,5,7,8,4,8,7,13,2,6,9,8,9,6,0,8 -P,1,1,2,1,1,5,11,7,1,10,6,4,1,9,3,8 -T,6,8,6,6,3,4,14,5,7,12,9,3,1,11,2,4 -W,5,4,6,3,3,4,11,3,2,9,9,7,7,11,1,6 -U,5,10,6,8,3,7,4,15,6,7,14,8,3,9,0,8 -U,7,11,6,6,3,7,6,5,6,3,9,7,5,8,3,6 -E,4,10,6,7,6,7,7,5,3,7,6,8,5,8,8,9 -W,7,7,7,5,6,5,10,3,3,9,7,7,8,10,3,5 -K,3,8,4,6,3,4,8,7,3,6,4,11,3,8,2,11 -Z,5,7,7,5,3,7,7,2,10,12,7,7,1,7,6,7 -I,4,7,6,8,6,9,8,5,5,7,5,7,3,8,9,8 -W,8,10,8,8,8,6,11,3,3,9,7,7,10,12,4,5 -P,6,7,8,10,10,8,7,4,3,7,7,7,7,12,6,6 -F,3,6,6,4,3,6,10,2,6,13,6,4,1,10,2,7 -F,4,4,4,6,2,1,14,5,3,12,9,5,0,8,2,6 -R,5,8,8,7,9,8,7,4,4,8,5,7,7,8,6,5 -H,4,8,5,6,5,8,7,5,6,7,6,6,3,8,3,7 -Q,4,8,5,9,6,8,8,5,2,7,9,10,3,9,5,7 -W,10,15,11,8,7,7,8,2,4,6,9,6,11,9,3,5 -J,1,6,2,4,1,14,2,6,5,13,2,10,0,7,0,8 -R,6,11,6,8,4,5,12,9,3,7,3,9,3,7,6,11 -D,4,8,6,6,4,6,7,8,7,6,5,4,3,8,4,9 -C,7,10,7,7,4,4,10,7,8,12,10,8,2,10,3,7 -A,3,9,5,6,2,6,6,3,1,6,0,8,2,7,1,7 -Z,3,9,4,6,2,7,7,4,14,10,6,8,0,8,8,8 -B,3,6,3,4,3,6,6,8,6,6,6,7,2,8,8,9 -O,2,3,3,2,2,7,7,6,4,9,6,8,2,8,2,8 -B,1,0,2,1,1,7,7,7,5,6,6,7,1,8,7,9 -K,4,7,6,6,5,8,6,2,3,8,4,8,4,6,7,11 -S,3,5,3,4,3,8,6,7,5,7,7,9,2,10,9,8 -D,2,3,3,2,2,9,6,3,5,10,4,7,2,8,2,8 -V,5,9,6,7,4,7,11,3,2,6,11,8,3,10,3,9 -F,3,5,4,8,2,0,12,4,6,12,12,9,0,8,2,6 -O,4,9,5,6,3,9,7,9,8,7,5,10,3,8,4,8 -P,5,10,8,8,5,7,10,5,5,12,5,3,1,10,4,8 -K,3,4,6,3,3,6,7,2,7,10,7,10,3,8,3,7 -M,4,9,6,6,7,7,8,6,4,7,6,8,6,9,7,6 -W,8,9,8,6,6,2,12,2,2,10,10,8,7,11,1,7 -H,3,7,4,4,2,7,8,14,1,7,5,8,3,8,0,8 -L,3,6,5,4,3,6,4,1,8,8,2,11,0,7,2,8 -N,2,4,4,3,2,7,8,3,4,10,6,7,5,9,0,7 -T,4,8,4,6,3,6,12,4,6,11,9,4,2,12,2,4 -L,2,7,3,5,2,8,4,3,7,7,2,8,1,6,2,8 -W,7,11,10,8,4,9,7,5,2,6,8,8,9,9,0,8 -E,6,10,9,7,7,6,8,1,8,11,6,9,3,8,4,8 -H,2,4,4,3,2,7,7,3,5,10,6,8,3,8,2,8 -J,5,11,7,8,4,10,6,1,7,14,3,7,0,7,1,8 -W,5,8,5,6,5,5,10,3,3,9,7,7,7,11,2,5 -T,2,8,3,5,1,7,14,0,6,7,11,8,0,8,0,8 -U,6,11,8,8,8,8,6,8,5,7,6,9,6,8,5,6 -E,5,10,3,5,2,7,8,5,6,10,6,9,1,9,7,8 -G,2,5,3,4,2,6,7,5,5,9,7,10,2,9,4,10 -S,1,3,2,2,1,8,8,6,5,7,6,7,2,8,8,8 -U,8,15,7,9,4,4,4,5,5,4,7,8,5,9,2,8 -K,6,10,6,5,3,7,7,3,6,10,8,9,6,11,3,7 -A,2,3,3,2,1,10,2,2,1,9,2,9,1,6,2,8 -F,5,11,7,8,6,6,10,2,5,13,7,5,2,10,2,7 -O,5,9,6,7,4,7,7,9,5,7,7,8,3,8,3,8 -M,4,8,6,6,7,7,8,6,4,6,6,8,6,9,7,10 -Z,7,10,7,6,4,8,6,2,8,12,6,9,3,8,6,7 -H,5,9,5,6,2,7,8,15,0,7,5,8,3,8,0,8 -Q,9,14,8,8,4,9,3,4,7,11,3,10,3,8,8,11 -S,2,4,3,3,1,9,6,2,7,10,5,8,1,9,5,9 -B,4,8,4,6,5,6,8,8,6,7,5,7,2,8,7,9 -W,4,6,5,4,4,7,6,7,2,7,7,8,6,8,5,10 -X,7,10,10,8,5,5,8,2,9,11,10,9,3,8,4,6 -F,3,8,3,5,1,1,13,5,4,12,10,7,0,8,2,6 -G,5,10,6,7,8,8,8,5,2,6,6,8,7,8,7,13 -M,7,13,8,8,5,6,3,3,2,8,4,10,7,2,2,8 -Q,4,7,4,9,4,8,8,6,2,8,8,10,3,9,6,7 -K,4,8,6,6,4,3,8,2,7,10,11,12,3,8,3,5 -M,6,10,7,5,4,9,3,2,2,9,4,9,8,2,2,9 -S,4,9,5,6,3,8,8,5,9,5,6,7,0,8,9,7 -Z,6,9,8,7,5,8,6,2,9,12,5,10,3,7,7,9 -M,3,3,4,2,2,9,6,6,4,6,7,6,6,5,2,6 -G,3,8,5,6,2,7,7,8,7,6,6,8,2,7,6,11 -M,5,6,8,4,5,9,6,3,5,9,5,7,8,6,2,8 -M,5,8,6,6,5,8,5,11,0,7,9,8,9,6,2,7 -L,3,9,4,7,3,6,4,1,8,8,2,10,0,7,2,8 -P,5,7,7,5,3,6,14,5,2,12,4,1,0,10,3,8 -Y,4,8,6,12,11,9,7,4,2,6,7,9,5,11,8,9 -H,3,6,4,4,5,7,8,4,2,7,6,7,7,9,7,8 -X,4,11,6,8,6,8,8,2,6,7,7,8,5,11,8,8 -O,3,7,4,5,3,7,7,8,5,6,5,6,3,8,3,8 -G,3,4,4,3,2,6,7,5,5,9,7,10,2,9,4,9 -A,1,0,2,0,0,7,4,2,0,7,2,8,2,7,1,8 -W,4,9,7,6,5,8,10,2,3,6,9,8,7,11,1,8 -O,2,3,3,2,2,7,8,6,4,9,6,8,2,8,2,8 -D,5,9,6,7,5,9,7,4,7,11,5,6,3,7,4,8 -H,6,9,9,7,7,7,7,3,6,10,7,8,3,8,3,8 -W,5,9,6,4,3,5,8,2,3,7,9,8,9,11,2,6 -H,3,5,4,7,2,7,8,15,1,7,5,8,3,8,0,8 -Y,3,4,5,5,1,6,10,3,2,9,13,8,1,11,0,8 -K,4,7,4,5,2,4,7,8,1,7,6,11,3,8,2,11 -E,6,11,6,8,4,3,7,6,11,7,6,14,0,8,8,7 -S,5,11,6,8,4,8,7,5,9,11,3,7,2,6,5,9 -S,3,6,4,4,3,5,9,2,6,10,7,7,2,7,4,4 -H,5,8,7,6,6,8,6,7,7,7,7,7,3,8,3,8 -T,3,5,4,4,3,6,8,3,7,8,7,8,3,9,7,6 -J,1,6,2,4,0,13,3,7,4,13,3,11,0,7,0,8 -Y,6,8,6,6,3,4,10,3,7,11,11,6,1,11,3,4 -N,2,1,3,2,1,7,7,13,1,5,6,8,5,8,0,8 -P,2,3,2,2,1,5,11,5,3,10,7,3,0,9,3,6 -W,3,1,4,3,3,10,11,3,2,5,9,7,6,11,0,8 -Z,6,11,8,8,5,9,6,3,10,12,4,8,2,7,6,8 -X,3,1,4,2,2,7,7,4,9,6,6,8,3,8,6,8 -I,3,7,4,5,2,9,6,0,7,13,5,8,0,8,1,8 -T,4,5,5,3,2,5,11,2,9,12,9,5,0,10,2,4 -I,1,3,2,2,1,7,7,1,7,13,6,8,0,8,1,8 -A,1,0,2,0,0,8,4,2,0,7,2,8,2,7,1,8 -D,6,10,6,6,3,11,3,4,5,12,2,8,5,7,4,10 -M,3,3,5,2,2,8,6,2,4,9,6,8,7,6,2,8 -N,4,4,4,6,2,7,7,14,2,4,6,8,6,8,0,8 -F,4,8,6,6,7,9,7,1,5,9,5,5,3,10,4,6 -T,1,0,2,1,0,7,14,1,4,7,10,8,0,8,0,8 -T,4,10,5,8,5,7,11,3,7,7,11,8,2,12,1,8 -X,3,7,4,5,2,8,7,4,4,7,6,8,2,8,4,8 -R,3,9,4,6,3,5,11,8,4,7,3,9,3,7,6,11 -Z,2,3,4,2,2,7,8,2,9,12,7,7,1,8,5,7 -Z,4,9,5,7,4,7,8,3,13,8,6,8,0,8,8,7 -G,2,2,3,3,2,7,6,6,6,7,6,10,2,9,4,9 -A,1,3,2,1,1,6,2,1,1,6,2,8,1,6,1,7 -C,1,0,1,1,0,6,7,6,8,7,6,14,0,8,4,10 -E,6,9,8,8,9,7,7,5,4,8,7,9,8,11,10,12 -R,5,9,7,7,4,10,7,3,7,10,2,7,3,6,4,11 -S,5,11,6,8,3,8,8,6,10,5,6,6,0,8,9,7 -V,3,7,4,5,3,6,12,2,2,8,10,8,4,11,4,8 -Z,1,0,2,0,0,7,7,3,10,8,6,8,0,8,6,8 -Y,8,13,6,8,4,6,8,4,4,10,7,5,3,10,4,4 -G,4,6,4,4,2,6,7,6,7,10,7,10,2,10,4,9 -I,1,3,2,2,0,7,7,1,7,13,6,8,0,8,0,7 -T,2,3,3,2,1,5,12,3,6,11,9,4,1,10,2,5 -Y,6,10,6,8,4,4,9,1,8,10,10,6,1,10,3,4 -Y,1,1,2,1,0,8,10,3,1,6,12,8,1,11,0,8 -V,6,9,8,8,9,7,8,6,5,7,6,7,6,11,8,11 -L,5,9,5,4,3,7,5,3,5,12,7,11,3,8,6,8 -H,5,7,7,5,5,7,7,3,6,10,5,8,3,8,3,8 -W,4,7,6,5,3,4,8,5,1,7,9,8,8,10,0,8 -V,4,8,6,6,3,9,12,3,3,4,11,9,3,9,2,8 -C,2,4,3,3,1,6,8,7,7,8,8,13,1,10,4,10 -O,2,0,2,1,0,7,7,6,5,7,6,8,2,8,3,8 -A,4,5,6,8,2,8,4,3,2,7,1,8,3,7,2,8 -G,4,2,5,4,3,6,6,6,6,6,6,10,2,9,4,8 -D,3,3,4,2,2,7,7,6,6,7,6,5,5,8,3,7 -E,4,11,4,8,3,3,6,6,12,7,7,15,0,8,7,7 -O,4,4,6,7,3,8,6,9,8,7,5,9,3,8,4,8 -J,3,10,4,8,3,14,3,5,4,13,2,9,0,7,0,8 -I,1,5,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -G,1,0,1,0,0,8,6,5,4,6,6,9,1,8,5,10 -T,5,6,5,4,3,4,12,2,7,12,10,5,1,10,1,5 -I,2,10,3,8,4,7,7,0,7,7,6,8,0,8,3,8 -R,2,4,3,2,2,8,8,4,5,9,5,7,2,7,4,10 -Y,3,5,4,4,2,4,10,2,7,11,10,6,1,11,3,5 -O,4,6,4,4,3,8,6,7,4,9,5,8,3,8,3,8 -P,6,10,8,8,6,7,10,4,4,13,6,3,1,10,3,8 -Y,6,7,8,10,10,9,9,4,2,4,8,9,5,13,10,10 -W,4,3,5,2,3,4,11,3,2,9,9,7,6,11,1,7 -G,2,5,3,4,2,6,7,6,6,10,7,11,2,9,4,9 -W,5,7,5,5,4,3,11,2,2,10,9,7,5,11,1,7 -X,3,7,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -T,2,10,4,7,1,8,14,0,6,6,11,8,0,8,0,8 -G,2,5,4,3,2,7,7,6,6,6,6,10,2,8,4,9 -D,10,15,10,8,5,8,6,5,6,10,3,6,6,6,6,10 -K,5,10,7,8,8,6,8,5,3,7,5,8,4,7,7,11 -N,9,13,7,7,3,5,9,4,6,3,4,11,6,10,2,7 -J,1,3,2,2,1,10,6,2,6,12,4,8,0,7,1,7 -E,3,8,3,6,2,3,7,6,10,7,6,14,0,8,7,8 -C,7,14,5,8,4,6,9,4,4,9,8,9,4,9,9,10 -O,5,10,7,8,3,7,6,9,8,6,5,6,3,8,4,8 -E,4,11,5,8,7,7,7,5,7,7,5,9,6,8,6,10 -X,5,7,7,6,7,9,7,2,4,7,6,6,3,10,7,8 -C,9,15,7,8,5,8,7,5,3,8,8,10,4,9,8,13 -Z,4,6,6,4,3,7,8,2,8,11,7,8,1,9,5,7 -S,5,10,5,5,2,7,7,3,4,13,7,9,2,9,3,8 -O,1,0,1,0,0,8,7,6,4,7,6,8,2,8,2,8 -D,4,8,5,6,4,7,7,7,8,6,5,5,3,8,3,7 -Q,2,4,3,5,3,8,7,6,2,8,7,9,2,9,4,8 -K,6,9,9,7,4,3,8,4,8,12,12,12,3,8,4,5 -J,2,8,3,6,2,9,6,2,7,12,3,8,1,6,1,6 -U,2,3,3,2,1,8,8,5,6,5,9,8,3,10,0,8 -V,4,9,6,6,4,8,10,2,1,6,10,8,3,10,3,9 -C,6,11,8,8,9,5,6,3,5,8,6,12,6,9,3,9 -K,4,11,6,8,6,5,6,4,7,6,6,11,3,8,6,9 -Z,6,10,8,8,5,8,7,2,10,12,5,8,1,7,6,7 -T,5,8,7,6,6,7,7,7,7,6,7,9,3,10,6,7 -S,5,10,6,8,3,8,8,6,9,5,6,7,0,8,9,8 -T,3,11,5,8,1,9,15,0,6,6,11,8,0,8,0,8 -V,5,7,5,5,3,3,12,2,2,9,10,8,3,10,1,7 -T,4,8,5,6,3,7,12,3,7,7,11,8,2,12,1,7 -R,4,7,5,5,5,7,7,4,6,6,5,7,3,7,4,8 -P,4,8,5,6,4,7,10,4,4,12,5,3,1,10,2,8 -R,4,9,5,7,4,10,7,3,7,10,2,7,3,6,3,11 -I,2,11,2,8,4,7,7,0,7,7,6,8,0,8,2,8 -Y,2,3,3,1,1,8,11,1,6,5,11,9,1,11,1,8 -G,4,9,5,6,3,6,7,7,6,9,7,12,2,8,4,10 -H,8,11,11,8,9,9,6,3,7,10,4,8,6,8,5,8 -T,4,5,5,3,2,7,12,3,7,7,11,8,2,11,1,8 -E,4,8,5,6,4,5,8,3,7,11,8,9,3,8,4,7 -P,3,5,5,3,2,7,10,5,3,11,5,3,1,10,2,8 -Q,2,2,3,4,2,8,7,6,2,6,6,9,2,9,5,9 -T,3,1,4,3,2,7,12,3,6,7,11,8,2,11,1,7 -D,8,15,7,8,5,6,7,4,7,8,5,7,6,9,7,5 -M,7,12,8,7,4,12,2,4,3,12,1,8,6,3,1,9 -K,6,11,9,8,5,3,7,3,8,11,11,12,3,8,4,6 -L,5,9,7,7,5,6,4,2,7,7,2,9,1,6,3,8 -G,3,6,4,4,3,6,7,6,5,9,7,10,2,9,4,10 -U,5,6,6,4,2,4,8,5,8,11,11,9,3,9,1,6 -D,4,6,4,4,3,6,7,8,7,8,8,7,2,9,3,8 -Q,2,3,3,3,2,8,8,5,2,5,7,10,2,9,5,9 -V,2,6,4,4,2,8,11,2,3,5,11,9,2,10,0,8 -K,2,1,2,2,1,5,7,8,1,7,6,11,3,8,2,11 -P,4,9,6,6,4,5,13,5,3,13,6,2,0,10,2,8 -H,6,8,8,6,5,10,6,4,6,10,2,7,4,7,4,9 -S,4,4,4,6,2,8,9,6,9,5,5,5,0,7,9,8 -S,7,15,7,8,4,5,9,3,5,13,8,7,3,7,4,7 -H,2,1,3,1,2,7,8,6,6,7,6,10,3,8,3,9 -C,3,6,4,4,2,6,7,6,7,7,6,12,1,8,4,10 -H,1,0,1,0,0,7,8,10,2,7,5,8,2,8,0,8 -Y,2,3,3,1,1,4,11,2,6,11,10,5,0,10,1,5 -A,5,9,7,7,5,8,2,2,2,6,2,7,3,8,4,7 -T,6,9,8,7,6,6,7,7,7,7,7,8,4,10,6,9 -Q,2,4,3,5,3,8,7,6,2,8,7,9,2,9,4,8 -H,4,5,5,6,5,8,4,3,2,7,4,7,3,7,5,8 -I,4,8,5,6,3,9,5,2,7,7,7,5,0,9,4,7 -X,3,5,5,4,2,7,8,1,8,10,8,8,2,8,3,7 -V,1,0,2,0,0,8,9,3,1,6,12,8,2,11,0,8 -W,4,6,6,4,4,10,11,3,2,4,9,7,7,11,0,7 -K,4,6,6,4,3,7,6,2,7,10,5,10,4,7,4,9 -U,2,0,2,1,0,8,5,11,4,6,13,8,3,10,0,8 -U,3,5,4,4,2,6,8,6,7,7,9,9,3,9,1,8 -D,4,11,6,8,5,7,7,8,7,7,6,4,3,8,3,7 -A,2,2,4,3,2,7,2,1,2,6,2,8,2,6,2,7 -V,4,7,5,5,2,6,11,3,4,8,12,8,2,10,1,9 -A,5,10,8,8,6,6,5,2,4,4,2,7,6,7,6,4 -K,9,12,10,7,5,7,7,3,6,10,9,9,6,12,4,8 -U,3,2,4,3,2,7,8,6,8,8,10,8,3,9,1,8 -U,7,12,6,6,3,9,6,6,6,3,9,8,5,10,3,6 -V,4,9,6,7,3,8,11,3,4,5,11,8,3,10,1,8 -T,2,7,4,4,1,10,15,1,5,4,11,9,0,8,0,8 -T,3,2,4,3,2,6,12,3,7,8,11,7,2,11,1,7 -W,5,9,7,7,4,6,8,5,2,7,8,8,9,10,0,8 -V,4,6,4,4,2,2,11,4,3,12,11,8,2,11,1,7 -D,4,7,5,5,4,7,7,7,8,6,5,5,3,8,3,7 -H,3,6,5,4,4,6,7,7,6,7,6,11,3,8,3,10 -D,5,11,6,8,6,7,7,5,6,6,5,8,7,9,3,7 -M,7,9,11,7,6,9,6,2,5,9,5,7,11,7,2,8 -U,6,9,8,7,6,6,7,8,6,6,6,11,6,8,8,3 -X,4,7,6,5,3,7,8,1,8,10,7,8,2,8,3,7 -K,4,6,6,4,3,3,8,3,7,11,11,11,3,8,3,6 -B,3,8,5,6,4,8,7,7,6,7,6,5,2,8,8,9 -O,4,9,5,6,4,7,7,8,6,7,6,8,2,8,3,8 -T,2,5,3,4,2,7,12,3,6,7,11,8,2,11,1,8 -E,6,10,8,8,8,7,7,5,3,7,6,9,5,8,9,8 -W,12,12,11,7,5,6,11,2,3,7,11,7,9,12,1,7 -G,5,10,5,8,4,5,6,6,5,9,8,12,2,9,4,10 -A,2,0,3,1,0,8,4,2,0,7,2,8,2,6,1,8 -R,4,4,4,6,2,5,9,9,4,7,5,8,3,8,5,10 -M,4,8,4,6,5,8,5,10,0,6,9,8,7,5,1,6 -D,5,10,6,8,3,5,7,10,10,7,7,6,3,8,4,8 -U,2,3,3,2,1,5,8,5,6,10,9,8,3,9,1,6 -Q,4,7,6,10,8,8,11,4,2,5,8,11,5,14,8,13 -R,4,8,6,6,5,10,7,2,6,11,2,7,4,7,3,10 -W,2,1,3,2,2,10,11,3,2,5,9,7,5,11,0,8 -A,6,13,6,8,4,12,2,5,1,12,2,10,3,2,3,10 -T,5,6,5,4,3,6,11,3,6,11,9,5,2,12,2,4 -C,5,7,5,5,3,5,7,5,7,11,9,14,2,9,3,8 -P,4,7,5,5,3,5,13,5,4,13,6,2,0,9,2,7 -Z,5,9,5,4,3,6,8,2,8,11,8,9,3,9,5,5 -W,2,1,2,2,1,7,8,4,0,7,8,8,6,10,0,8 -P,4,9,4,6,4,3,14,6,1,12,7,3,0,9,3,8 -F,1,3,2,2,1,5,10,3,5,10,9,6,1,10,2,7 -O,4,10,6,8,4,7,6,9,5,7,4,8,3,8,3,8 -Z,2,4,4,6,2,11,4,3,4,10,3,9,2,7,5,9 -M,3,6,6,4,7,6,5,3,1,6,5,8,7,7,2,8 -F,5,11,5,8,2,0,13,5,4,13,11,7,0,8,2,5 -I,1,11,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -A,3,7,5,5,3,12,3,2,2,9,1,8,2,6,2,7 -I,2,5,1,4,1,7,7,1,7,7,6,8,0,8,3,8 -C,4,8,5,6,2,5,8,6,8,11,9,13,1,9,3,7 -G,2,1,3,2,2,7,7,5,5,6,6,10,2,9,3,9 -E,1,0,1,0,1,5,7,5,7,7,6,12,0,8,6,9 -V,4,9,5,7,3,7,10,3,2,6,11,8,2,10,3,9 -B,1,1,2,2,1,7,7,7,5,6,6,7,2,8,7,9 -I,1,5,2,4,1,7,7,0,7,13,6,8,0,8,1,8 -I,6,8,7,10,7,8,9,4,5,7,7,8,3,7,9,7 -Z,3,9,4,6,2,7,7,4,14,10,6,8,0,8,8,8 -R,6,11,5,6,3,9,7,6,4,10,3,8,6,6,5,10 -V,6,10,8,8,5,7,11,3,2,5,10,9,3,11,4,8 -W,4,3,6,5,3,7,8,4,1,7,8,8,8,9,0,8 -K,4,6,6,4,3,9,6,2,6,10,3,8,4,8,4,11 -E,5,9,7,8,8,5,6,3,3,7,6,8,5,11,10,9 -I,4,11,5,8,3,7,7,0,8,14,6,8,0,8,1,8 -L,4,10,6,7,8,8,8,3,5,5,7,10,6,12,8,8 -G,5,8,7,7,8,8,9,5,3,7,6,8,7,11,8,9 -S,4,8,5,6,3,8,7,3,7,10,4,7,2,8,5,9 -N,3,5,5,3,2,8,8,2,5,10,4,6,5,8,1,7 -M,5,9,7,4,4,6,4,3,2,8,4,10,7,3,1,8 -T,1,1,2,1,0,8,14,1,5,6,10,8,0,8,0,8 -Y,3,2,5,3,2,7,10,1,7,7,11,8,1,11,2,8 -S,2,4,3,2,1,8,8,2,7,10,5,7,1,8,4,8 -M,2,3,4,2,2,7,7,3,3,9,8,8,5,5,1,7 -T,2,7,4,5,2,7,13,0,5,7,10,8,0,8,0,8 -Y,2,1,4,2,1,7,11,1,7,7,11,8,1,11,2,8 -E,4,9,4,6,3,3,7,6,11,7,6,15,0,8,7,7 -T,6,9,7,8,7,5,8,4,8,8,8,9,3,9,8,7 -V,6,8,5,6,3,4,12,1,2,8,10,7,4,12,1,8 -G,2,0,2,1,1,8,6,6,6,6,5,9,1,7,5,10 -E,3,2,4,3,3,7,7,5,7,7,5,9,2,8,6,10 -M,7,9,10,6,8,5,7,3,5,9,9,9,10,6,3,8 -F,4,8,4,6,3,1,13,4,3,12,10,6,0,8,2,6 -G,5,10,6,8,5,6,6,6,5,9,7,12,3,8,5,9 -R,4,5,5,7,3,5,12,8,4,7,2,9,3,7,6,11 -W,4,4,5,3,3,5,11,4,2,9,8,7,6,12,2,6 -K,6,10,8,7,6,6,7,1,6,10,7,10,3,8,4,8 -T,5,9,6,7,4,6,9,0,8,10,9,5,0,9,3,4 -Y,1,1,2,1,0,7,10,2,2,7,12,8,1,11,0,8 -P,6,10,7,8,7,6,8,6,4,8,7,8,5,9,7,10 -S,2,2,2,3,2,8,7,7,5,7,6,8,2,9,8,8 -W,4,4,5,3,3,6,11,3,2,7,9,8,7,11,1,8 -X,3,7,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -R,4,3,4,4,2,6,13,8,3,7,2,9,2,6,5,10 -F,3,2,3,4,2,5,11,3,6,11,9,5,1,10,3,6 -D,1,0,2,1,0,6,7,7,6,6,6,6,2,8,3,8 -C,2,7,3,5,1,5,7,7,8,7,6,14,1,8,4,9 -F,3,4,3,5,1,1,12,5,5,11,10,8,0,8,3,6 -X,4,7,5,6,5,7,8,2,5,7,6,7,3,5,7,8 -T,2,5,3,3,2,8,12,3,6,6,11,8,2,11,1,8 -K,3,6,3,4,1,3,7,7,3,7,6,11,4,8,2,11 -Z,5,6,4,8,3,11,4,3,5,11,4,8,3,9,7,10 -G,6,9,7,7,8,9,6,5,3,7,6,10,8,8,6,10 -I,1,5,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -T,5,6,5,4,2,4,14,5,5,12,9,3,1,11,1,5 -L,4,11,5,8,3,6,4,0,9,8,2,11,0,7,2,8 -M,6,5,9,4,8,9,7,5,5,7,6,8,12,9,6,4 -S,9,15,7,8,4,9,5,5,6,9,2,9,4,5,5,9 -G,3,4,5,6,2,7,5,7,8,6,5,11,1,8,6,11 -X,9,15,8,8,4,9,7,2,9,9,5,7,4,11,4,9 -Y,2,1,4,2,1,8,11,1,7,5,11,9,1,11,2,8 -X,6,9,7,8,8,8,6,1,6,7,6,8,4,13,9,8 -I,4,9,4,4,2,8,8,2,5,13,5,5,2,9,4,9 -D,2,5,3,3,2,7,7,6,6,7,6,4,2,8,3,7 -A,3,7,5,5,3,11,2,3,2,10,2,9,2,6,3,9 -S,4,9,5,6,3,8,7,5,9,5,6,7,0,8,9,8 -N,4,9,4,6,4,8,7,12,1,6,6,7,6,8,0,9 -X,3,6,6,4,4,9,8,3,6,7,7,7,5,11,6,7 -P,4,8,6,11,10,7,9,6,0,8,6,6,7,12,8,9 -B,3,6,4,4,3,11,6,3,6,11,3,7,2,8,4,11 -V,3,4,5,6,1,8,8,4,3,7,14,8,3,9,0,8 -G,4,8,5,6,2,7,7,7,8,6,6,8,2,7,6,11 -R,5,9,7,7,7,8,6,7,3,8,6,7,6,6,7,10 -D,4,7,5,5,4,7,7,5,5,7,6,8,4,9,3,7 -J,2,4,4,3,1,8,6,3,6,14,6,10,0,7,0,7 -H,2,2,3,3,2,6,7,6,6,7,6,10,3,8,3,9 -K,6,9,9,6,6,2,8,3,8,11,12,12,4,7,4,4 -D,3,4,4,3,2,7,7,6,7,7,6,5,2,8,3,7 -B,3,5,4,7,3,6,7,9,6,7,6,7,2,8,9,10 -C,2,7,3,5,2,5,8,7,8,6,7,14,1,8,4,9 -D,4,7,4,5,4,6,7,9,7,6,5,6,2,8,3,8 -A,2,6,4,4,2,7,4,2,0,6,2,8,2,6,1,7 -O,5,9,6,6,5,7,8,8,4,7,8,8,3,7,3,8 -E,3,7,4,5,3,6,7,6,8,7,7,10,2,8,6,9 -W,5,5,7,4,4,7,11,3,2,6,9,8,8,11,0,8 -R,2,4,3,3,2,7,8,5,4,6,5,6,2,7,4,8 -V,3,5,5,4,2,9,12,3,3,5,11,9,3,10,2,9 -P,2,3,3,2,1,6,10,5,4,9,7,3,1,10,4,6 -X,4,9,5,6,1,7,7,5,4,7,6,8,3,8,4,8 -H,3,3,4,4,2,7,9,14,1,7,3,8,3,8,0,8 -J,3,6,4,4,2,6,7,3,5,14,7,11,1,6,1,7 -B,8,15,6,8,4,9,6,6,5,10,4,9,6,6,7,11 -X,2,3,3,2,1,7,7,3,9,6,6,8,2,8,5,7 -V,8,10,7,7,4,3,12,3,3,10,11,8,3,10,1,7 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -N,3,6,3,4,3,8,8,12,1,6,6,8,5,8,0,8 -S,8,13,8,7,4,8,6,4,3,13,8,9,3,10,3,9 -A,3,11,6,8,2,6,6,3,1,6,0,8,2,7,2,7 -D,9,14,8,8,6,8,5,4,7,10,5,7,6,9,7,8 -U,2,0,2,1,1,8,5,11,4,6,13,8,3,10,0,8 -F,1,3,3,2,1,5,10,2,5,13,7,5,1,9,1,8 -K,3,4,5,3,2,5,7,2,7,10,9,11,3,8,3,7 -G,3,7,4,5,5,8,7,4,1,7,6,9,6,8,6,12 -Q,3,7,4,6,2,9,8,8,5,5,8,9,3,8,5,9 -P,5,10,6,7,3,4,12,9,2,10,6,4,1,10,4,8 -S,7,15,6,9,3,7,4,4,4,7,2,7,3,6,6,8 -I,3,10,5,8,3,8,6,0,7,13,6,9,1,7,2,8 -Y,3,5,4,4,2,4,11,2,7,11,10,6,1,11,2,5 -P,7,11,10,8,7,7,11,5,4,12,5,2,1,10,3,8 -J,1,4,3,3,1,9,4,4,5,14,5,12,0,7,0,8 -E,4,5,5,4,4,6,8,4,4,8,7,10,4,10,8,11 -E,4,10,6,8,7,8,7,4,7,7,7,7,6,8,5,10 -H,3,5,6,4,4,9,6,3,6,10,4,7,3,8,3,8 -M,7,8,10,7,11,8,8,4,3,6,6,7,12,7,6,7 -U,2,0,2,1,0,7,5,11,4,7,13,8,3,10,0,8 -B,1,3,2,2,2,7,7,5,5,7,6,6,2,8,4,10 -X,3,6,5,4,4,7,8,3,5,6,6,9,3,8,8,8 -W,7,9,7,6,5,4,10,3,3,9,8,7,7,11,2,6 -R,5,5,7,4,6,7,7,4,3,8,5,8,7,8,6,6 -V,4,4,5,3,2,4,12,3,3,9,11,7,2,10,1,8 -G,3,3,4,2,2,7,7,5,6,6,6,9,2,9,4,8 -K,4,4,4,6,2,3,6,8,2,7,6,11,4,8,2,11 -E,2,4,3,3,2,7,7,5,7,7,7,9,2,8,5,9 -Z,6,8,8,10,7,11,6,4,5,9,3,7,3,6,6,8 -R,4,6,6,6,7,6,8,3,3,7,5,9,6,8,5,8 -Q,4,7,5,9,6,8,6,8,3,5,6,9,3,8,6,9 -P,2,6,3,4,3,5,10,7,2,9,6,5,1,10,2,8 -G,5,9,6,7,4,6,7,6,6,10,7,10,2,9,5,9 -E,3,6,3,4,3,3,7,5,9,7,6,13,0,8,6,9 -Q,4,8,6,10,7,8,8,8,2,5,6,11,3,8,6,10 -Y,5,7,7,9,8,10,10,5,3,6,7,8,6,11,8,5 -X,4,10,5,7,1,7,7,5,4,7,6,8,3,8,4,8 -B,1,1,1,1,1,7,7,7,5,6,6,7,1,8,6,9 -E,3,5,6,3,3,7,8,2,9,12,6,8,2,8,5,8 -L,3,4,4,7,1,0,1,6,6,0,0,6,0,8,0,8 -D,4,10,4,7,5,6,7,9,7,5,3,7,2,7,3,8 -E,5,10,7,8,6,9,7,2,7,11,5,8,3,8,5,10 -V,2,6,4,4,2,7,12,3,3,6,11,8,2,10,1,8 -W,6,5,7,4,4,3,11,2,3,10,10,8,7,11,1,7 -U,4,7,5,5,4,5,8,5,6,9,7,9,3,9,3,6 -G,5,11,7,9,3,7,6,8,9,6,6,10,1,8,6,11 -Y,2,2,4,3,1,6,10,1,6,8,11,9,1,11,2,8 -M,3,1,4,2,3,7,6,6,5,6,7,7,8,6,2,7 -M,6,10,9,8,7,7,7,2,5,9,8,8,9,7,3,8 -U,2,1,3,2,1,8,8,6,6,5,9,8,3,9,1,8 -E,4,9,6,6,6,7,7,4,7,7,6,9,6,8,5,10 -A,4,5,6,4,4,9,8,3,4,6,7,7,4,9,4,6 -P,3,9,4,6,3,4,11,8,2,10,6,4,1,10,3,8 -S,5,9,6,7,4,7,8,3,7,10,4,6,2,6,5,8 -U,4,6,5,4,2,4,8,5,6,10,9,9,3,9,2,7 -A,3,8,5,5,2,8,6,3,1,7,0,8,2,7,1,8 -X,3,4,4,3,2,7,7,3,9,6,6,9,2,8,5,8 -R,4,9,5,6,5,9,7,3,6,9,3,8,3,6,4,11 -W,3,6,5,4,2,4,8,5,1,7,8,8,8,10,0,8 -F,2,3,3,2,1,5,12,3,4,13,7,3,1,9,1,7 -J,1,3,3,2,1,8,6,3,6,14,5,10,0,7,0,7 -J,1,1,2,2,1,10,7,2,5,11,4,8,0,7,0,7 -A,2,7,4,4,1,8,4,3,1,7,1,8,2,6,2,8 -R,3,6,5,4,3,9,8,4,6,10,2,7,3,6,4,11 -X,4,8,5,6,3,7,7,4,9,6,6,8,3,8,6,8 -K,4,8,5,6,4,5,6,4,8,7,7,12,3,8,6,9 -E,4,8,6,6,4,6,8,4,8,11,9,9,2,9,5,6 -H,4,5,6,8,6,7,5,5,2,6,4,6,5,7,8,8 -U,8,10,9,8,6,3,8,5,8,9,8,10,6,9,4,3 -X,5,9,8,7,4,8,8,1,9,10,5,7,3,8,4,8 -T,6,9,8,8,9,7,8,4,9,7,6,8,3,8,8,6 -Q,4,5,5,6,5,8,5,6,3,9,6,11,3,8,5,8 -A,3,7,5,5,3,11,2,3,3,10,2,10,2,6,2,8 -Z,4,10,5,8,4,6,8,6,10,7,7,10,1,9,8,8 -V,9,13,7,7,3,7,11,5,6,8,10,5,4,11,4,7 -C,3,4,4,3,2,4,9,5,8,11,9,11,1,9,3,7 -D,3,9,5,7,5,8,7,6,6,7,6,4,3,8,3,7 -Z,3,8,4,6,3,7,8,3,11,8,6,8,0,8,7,7 -B,7,13,6,8,4,9,5,5,5,11,4,9,6,7,7,11 -Y,5,11,7,8,7,8,7,5,4,7,7,8,6,8,8,3 -C,6,10,6,8,3,3,8,5,8,10,10,14,1,7,3,7 -D,8,14,8,8,5,9,5,4,6,10,3,7,5,6,5,10 -E,5,9,7,7,5,9,6,2,8,11,5,9,3,7,5,10 -B,3,9,5,6,5,8,7,6,6,7,6,5,2,8,6,9 -R,4,9,5,7,3,6,10,9,4,7,5,8,3,8,6,11 -O,1,3,2,1,1,8,7,6,4,9,6,8,2,8,2,8 -J,4,11,5,8,4,6,7,3,5,15,7,11,1,6,1,6 -P,3,7,5,5,4,5,10,4,4,10,8,4,1,10,3,7 -R,2,1,3,2,1,6,10,8,2,7,5,8,2,7,5,10 -I,1,5,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -L,4,8,6,6,3,10,3,2,8,9,2,9,1,6,3,9 -E,3,2,3,4,3,7,7,6,7,7,6,9,2,8,6,9 -Y,1,3,2,1,1,8,10,1,6,5,10,8,1,11,1,8 -A,9,15,7,8,4,8,2,3,2,8,4,12,5,5,5,7 -Q,3,6,5,4,4,8,5,7,4,7,7,6,3,6,5,8 -Z,1,3,2,2,1,7,7,4,7,6,6,8,1,8,6,8 -B,5,10,7,8,7,7,7,8,7,6,6,6,2,8,8,10 -F,1,0,1,0,0,3,12,4,2,11,8,6,0,8,2,7 -C,6,12,4,6,2,6,9,6,8,11,8,10,2,8,5,9 -M,3,6,5,4,4,11,5,3,4,9,3,6,7,6,2,8 -W,3,3,4,1,2,5,11,3,2,9,9,7,6,11,1,6 -O,5,10,6,8,6,8,6,7,3,10,4,8,4,9,4,6 -N,5,8,5,6,4,8,7,13,1,6,6,7,6,8,1,10 -B,4,7,6,6,7,8,8,5,5,7,6,8,7,7,9,6 -Q,5,8,6,12,10,8,10,4,2,6,8,10,7,14,9,14 -U,5,10,5,7,2,7,4,15,6,7,13,8,3,9,0,8 -Y,5,8,6,6,3,4,10,2,8,11,11,6,1,11,3,4 -E,4,10,5,8,7,7,8,3,6,5,7,10,5,10,10,11 -C,5,10,6,8,2,6,7,7,10,6,6,15,1,8,4,9 -I,2,7,3,5,1,7,8,0,7,13,6,7,0,8,1,7 -U,5,8,6,6,3,4,8,6,8,9,8,9,4,10,4,3 -N,4,5,5,4,3,7,9,5,5,7,7,6,5,9,2,5 -E,5,8,7,6,4,4,9,3,9,11,9,10,2,8,4,5 -S,2,3,3,2,1,7,7,2,7,10,5,8,1,8,4,8 -K,1,0,1,0,0,4,6,5,1,7,6,10,2,7,1,10 -U,5,9,5,6,2,7,4,14,5,7,14,8,3,9,0,8 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -S,4,6,6,4,6,8,6,4,4,8,6,9,4,8,10,8 -L,2,6,3,4,1,3,3,6,8,1,1,5,0,7,1,6 -E,1,3,3,2,1,6,7,2,7,11,7,9,1,8,3,8 -Z,5,9,6,7,5,8,7,5,10,7,6,8,1,8,7,8 -L,4,4,4,6,1,0,0,6,6,0,1,5,0,8,0,8 -X,4,4,5,6,1,7,7,4,4,7,6,8,3,8,4,8 -Q,7,12,7,6,4,9,4,4,8,11,4,10,3,7,8,11 -J,2,9,2,6,2,14,4,4,4,12,1,8,0,7,0,8 -R,2,3,3,1,2,8,8,3,5,9,5,7,2,7,4,10 -A,2,3,3,2,1,10,2,2,1,8,2,9,2,5,1,9 -C,4,8,5,6,2,5,9,7,8,12,9,11,1,10,3,7 -H,8,10,11,7,7,6,7,3,7,10,8,9,3,8,3,7 -Q,2,2,3,3,2,7,9,4,2,7,8,10,2,9,4,8 -Y,5,9,5,6,3,3,10,2,6,10,12,7,2,11,2,5 -Z,1,0,2,1,0,7,7,3,11,8,6,8,0,8,6,8 -O,3,4,4,2,2,7,7,7,5,7,5,8,2,8,3,8 -V,6,9,6,7,4,3,12,2,3,9,11,8,2,10,1,8 -W,4,10,7,8,6,7,8,4,1,7,9,8,7,11,0,8 -Y,3,5,6,7,1,6,11,2,3,9,12,8,1,10,0,8 -I,3,8,4,6,2,7,7,0,9,14,6,8,0,8,1,8 -G,3,4,4,3,2,6,6,6,6,9,7,11,2,9,4,10 -L,2,3,2,2,1,4,5,2,7,3,2,8,0,7,1,6 -E,7,12,5,6,4,8,7,4,4,10,5,9,3,9,8,11 -Y,3,8,6,6,3,7,9,1,6,6,11,8,2,11,2,8 -U,8,11,8,8,4,3,9,5,7,11,12,10,3,9,2,6 -H,4,9,6,6,5,6,7,7,6,7,6,11,3,8,3,9 -G,3,2,4,4,3,6,6,6,6,6,6,10,2,9,4,9 -S,4,4,5,6,2,7,6,5,9,5,6,10,0,8,9,8 -Y,4,6,6,8,6,10,11,5,4,6,7,7,5,10,7,4 -Z,6,10,8,8,5,7,8,2,9,12,7,6,2,8,6,7 -B,5,11,7,8,7,9,6,3,7,10,4,8,3,7,5,10 -M,4,6,5,4,2,8,7,12,1,7,9,8,8,6,0,8 -N,4,7,6,5,3,9,7,3,4,10,5,6,5,8,1,7 -Y,3,4,5,5,1,8,12,2,3,6,12,8,1,10,0,8 -L,4,9,5,7,3,3,3,6,8,1,0,6,0,6,1,6 -R,4,10,5,8,3,5,9,10,5,7,5,8,3,8,6,10 -E,1,0,2,1,1,5,7,5,8,7,6,12,0,8,6,9 -A,6,9,6,4,3,11,0,4,1,11,5,13,4,5,4,11 -F,4,10,6,7,5,3,11,3,5,11,10,7,1,10,3,6 -K,8,11,11,8,9,8,6,1,6,9,5,9,7,7,6,9 -J,3,10,4,8,5,10,6,2,4,9,4,6,3,7,6,8 -Y,5,6,7,8,1,6,11,3,2,9,12,8,1,11,0,8 -L,4,8,6,6,4,7,4,1,8,8,2,9,1,6,3,8 -F,5,7,7,5,6,7,8,5,5,7,6,8,4,11,9,10 -O,5,10,7,8,5,8,7,9,4,7,6,7,3,8,4,9 -F,2,3,4,2,1,6,10,3,5,13,6,5,1,9,1,7 -B,1,0,1,1,1,7,7,7,4,6,6,7,1,8,6,9 -K,3,5,4,4,3,5,7,4,7,6,6,11,3,8,5,9 -M,6,9,8,8,11,7,7,4,4,6,6,8,11,8,5,5 -G,3,9,5,6,4,7,6,7,5,6,6,8,2,7,5,11 -O,4,6,4,4,3,6,8,7,4,10,8,8,3,8,2,7 -L,2,5,4,4,2,6,4,1,8,8,2,10,0,7,2,8 -A,3,6,4,4,3,8,2,2,2,7,2,8,2,6,2,7 -P,3,6,5,9,7,7,11,5,0,9,7,5,4,11,5,8 -F,2,4,4,3,1,5,11,3,4,13,7,4,1,9,1,7 -V,5,7,5,5,2,4,11,3,3,9,11,7,3,10,1,7 -A,4,9,6,7,6,8,7,8,4,7,6,8,3,8,8,4 -T,5,11,5,6,2,5,11,2,7,12,8,5,2,9,3,4 -B,5,10,6,7,6,9,6,3,5,7,6,7,7,8,6,9 -W,4,3,5,2,2,5,11,3,2,9,9,7,6,11,1,6 -G,1,3,2,2,1,7,6,5,4,7,6,10,2,9,3,9 -V,3,6,5,4,1,8,8,4,2,6,14,8,3,10,0,8 -U,6,10,5,5,3,7,5,4,5,3,8,6,5,7,2,7 -C,4,8,5,6,3,6,7,6,7,12,8,11,2,10,4,7 -H,3,3,5,2,2,8,6,3,6,10,5,8,3,8,3,8 -T,4,10,6,7,4,9,11,2,8,5,12,8,1,11,1,9 -E,5,7,7,5,4,10,6,2,8,11,4,8,2,8,5,12 -O,6,10,8,8,10,8,7,6,1,7,6,8,9,10,6,11 -R,4,8,6,6,7,5,6,4,4,7,6,9,8,11,7,6 -N,6,11,8,8,5,9,7,3,5,10,4,6,6,8,1,7 -N,11,14,9,8,4,10,12,6,4,4,6,10,5,11,2,5 -S,5,8,7,7,9,7,8,5,5,7,7,7,5,10,10,11 -F,3,8,4,6,2,1,14,5,3,12,9,5,0,8,2,6 -Z,3,7,4,5,3,7,7,3,12,8,6,8,0,8,7,8 -N,7,9,8,4,3,5,9,3,4,13,9,9,5,8,0,8 -J,2,4,4,3,1,9,6,2,6,14,5,10,0,7,0,7 -W,3,4,4,3,2,7,11,2,2,6,9,8,6,11,0,8 -L,4,10,4,7,2,0,2,4,6,1,0,8,0,8,0,8 -C,9,14,7,8,5,8,6,5,3,9,8,10,6,8,9,10 -U,3,4,4,3,2,5,8,5,7,10,9,9,3,9,2,6 -K,6,10,8,8,8,6,9,6,5,8,5,8,4,7,6,11 -Z,4,11,6,8,7,8,7,3,9,7,6,7,1,7,11,9 -D,4,4,5,6,3,5,6,10,9,5,5,5,3,8,4,8 -H,5,10,7,8,7,6,8,5,5,7,6,7,6,7,6,11 -V,2,8,4,6,1,9,8,4,2,6,13,8,3,10,0,8 -R,4,4,5,6,3,6,9,10,5,6,5,8,3,8,5,10 -L,4,11,5,8,3,6,4,3,8,6,1,8,1,6,3,7 -A,3,6,5,4,3,8,2,2,2,7,2,8,2,6,2,7 -M,4,7,5,5,3,8,7,12,1,6,9,8,8,6,0,8 -H,3,3,4,2,2,7,7,6,6,7,6,8,3,8,3,8 -A,2,1,4,2,1,7,2,2,2,6,2,8,2,6,2,7 -R,4,8,6,6,4,9,7,3,6,10,3,6,3,7,4,10 -C,3,5,4,3,2,6,8,7,8,8,8,13,1,9,4,10 -B,3,2,4,4,4,7,7,5,5,6,6,6,2,8,6,9 -U,3,6,4,4,3,7,5,12,4,7,11,8,3,9,0,8 -D,6,7,8,6,6,6,7,5,6,4,3,6,3,8,5,6 -H,3,8,4,6,3,8,7,13,1,7,6,8,3,8,0,8 -U,3,3,4,2,2,5,8,5,7,10,9,9,3,9,2,6 -D,4,9,6,6,6,8,8,5,5,10,5,5,3,8,3,8 -L,3,6,3,4,2,0,2,4,5,1,1,7,0,8,0,8 -D,5,4,5,6,3,5,7,10,9,7,6,5,3,8,4,8 -G,7,9,9,8,10,7,8,6,3,7,7,8,9,11,8,9 -E,3,8,4,6,5,6,7,3,6,8,7,10,4,10,8,10 -B,6,10,9,7,7,11,6,2,7,11,3,8,4,7,5,12 -F,4,8,5,6,3,7,10,4,5,13,7,5,2,9,2,7 -U,4,4,5,3,2,4,8,5,8,10,9,9,3,9,2,5 -U,9,11,10,8,5,3,9,6,8,11,11,9,3,9,2,6 -I,4,11,5,8,3,8,6,0,7,13,6,9,2,7,3,8 -O,4,7,4,5,3,8,7,8,5,10,6,8,3,8,3,8 -D,4,6,6,4,4,8,8,5,5,9,5,4,4,8,4,8 -N,4,9,6,7,4,7,8,6,5,7,6,6,6,9,2,5 -E,2,6,4,4,3,7,8,6,8,6,5,9,2,8,6,9 -I,4,8,5,6,3,7,6,2,7,7,7,8,3,8,4,8 -N,4,8,6,6,5,7,6,8,5,6,4,7,3,7,3,8 -X,4,10,6,8,6,6,7,3,6,7,7,11,5,6,7,7 -F,8,11,7,6,5,7,12,3,4,12,6,3,4,10,8,5 -G,4,8,5,6,2,8,6,8,8,6,6,9,2,7,6,10 -Y,10,9,8,13,5,8,9,3,3,6,11,5,4,10,7,7 -X,4,8,6,6,3,7,8,0,7,9,7,8,2,8,3,7 -Q,4,7,5,9,6,10,10,6,3,3,8,12,3,9,7,10 -T,2,3,3,4,1,8,14,0,6,6,11,8,0,8,0,8 -B,4,6,5,4,4,9,7,3,6,10,4,6,2,8,5,10 -B,2,1,2,2,2,7,8,8,5,7,6,7,2,8,8,9 -G,5,10,7,7,6,6,6,7,5,5,6,10,2,8,4,8 -V,3,7,5,5,1,8,8,4,2,7,14,8,3,10,0,8 -P,7,9,6,4,3,5,12,6,1,11,5,4,4,10,4,8 -Y,4,4,6,6,6,10,9,5,3,7,7,7,5,10,6,5 -N,4,10,6,7,5,6,10,5,3,7,7,9,5,9,1,8 -V,3,8,5,6,6,6,6,5,2,8,8,9,5,9,5,8 -X,5,8,6,7,7,6,8,2,5,8,7,10,2,8,7,8 -A,4,6,7,8,2,8,6,3,1,7,0,8,3,7,2,8 -F,5,11,5,8,4,1,12,4,4,11,10,8,0,8,2,6 -S,4,10,5,8,4,8,7,8,6,8,5,7,2,8,9,8 -X,4,5,5,7,1,7,7,5,4,7,6,8,3,8,4,8 -U,3,8,5,6,8,7,6,4,3,7,7,8,7,10,5,6 -B,4,9,6,6,6,7,8,6,4,6,4,6,4,8,6,7 -K,8,15,8,8,6,6,7,2,6,10,4,9,5,5,3,7 -B,5,9,8,7,6,8,7,5,6,9,5,6,3,8,7,10 -V,3,3,4,2,1,5,13,4,3,10,11,6,2,10,1,8 -S,4,7,6,5,3,9,7,5,8,11,2,8,2,6,4,11 -M,5,7,8,5,6,3,7,4,5,11,11,10,5,8,2,6 -V,3,4,5,6,1,7,8,4,3,7,14,8,3,9,0,8 -Q,2,2,3,3,2,8,6,6,3,6,6,9,2,9,3,8 -B,5,9,8,8,9,7,8,5,4,8,6,8,7,9,8,8 -B,4,10,4,8,4,6,6,10,7,6,6,7,2,8,9,10 -F,3,4,5,3,2,6,10,2,6,13,6,5,1,9,3,7 -B,8,9,6,5,3,9,7,6,6,10,4,9,6,6,6,10 -N,1,0,2,1,0,7,7,11,0,5,6,8,4,8,0,8 -B,1,3,2,2,2,8,6,2,4,10,5,7,2,8,2,9 -S,7,11,7,6,3,8,6,4,4,13,6,9,3,8,3,8 -U,8,10,8,8,5,4,8,5,9,11,10,9,3,9,2,6 -Z,2,4,4,3,1,7,8,2,9,11,7,7,1,8,5,6 -K,4,9,5,7,4,3,8,7,3,7,5,11,3,8,2,11 -E,3,3,4,5,2,3,7,6,11,7,6,15,0,8,7,7 -E,6,9,8,8,10,6,7,4,3,7,6,9,7,11,11,12 -P,5,10,7,8,4,10,7,4,6,12,3,4,2,9,3,9 -Y,2,3,3,2,1,6,10,1,6,8,11,8,1,11,2,8 -O,6,10,8,8,5,8,10,9,6,8,8,5,5,8,5,9 -C,6,11,7,8,9,7,5,4,4,8,7,11,6,10,5,8 -G,4,10,5,7,4,5,6,6,5,9,8,11,2,9,4,10 -F,6,9,8,10,8,6,10,4,4,9,7,6,5,8,9,8 -A,4,11,7,8,5,12,2,2,2,10,2,9,2,6,3,8 -O,4,6,4,4,3,7,7,7,4,10,7,8,3,8,3,8 -Q,6,8,6,9,7,7,8,6,3,8,8,10,3,9,6,7 -Q,2,1,3,2,1,8,6,7,5,6,6,8,3,8,4,8 -I,1,3,0,2,0,7,7,1,7,7,6,8,0,8,2,8 -Y,3,5,4,3,2,4,11,2,7,11,10,6,1,11,2,5 -N,5,7,7,5,3,7,7,3,4,10,7,8,5,8,0,7 -W,3,4,5,3,3,9,11,3,2,5,9,7,6,10,0,8 -I,6,10,5,6,3,7,10,3,4,12,5,4,2,9,6,9 -A,6,9,5,4,2,11,3,3,1,9,3,10,4,5,4,10 -C,4,9,6,7,4,7,8,8,6,6,6,9,4,7,4,8 -Q,6,12,5,7,4,12,4,4,5,11,2,7,4,9,5,13 -A,1,1,2,1,0,7,4,2,0,7,2,8,2,7,1,8 -U,4,8,5,6,3,4,9,5,6,9,8,9,3,9,2,6 -W,5,5,7,7,4,8,8,5,2,7,8,8,9,9,0,8 -K,2,3,3,2,2,6,7,1,6,10,7,10,3,8,1,8 -M,4,9,5,6,3,7,7,12,1,7,9,8,8,6,0,8 -X,2,4,4,3,2,10,6,2,8,10,3,7,2,8,3,9 -O,5,9,6,7,4,8,7,8,5,7,6,8,3,8,3,8 -W,3,4,4,3,3,4,10,4,2,9,8,7,5,11,1,6 -E,2,5,4,3,2,6,8,2,7,11,7,9,2,8,4,8 -E,2,3,2,2,1,7,7,5,7,7,5,8,2,8,5,10 -F,2,4,3,3,2,5,10,4,5,10,9,5,2,9,3,6 -Y,3,8,5,5,1,6,12,2,3,9,12,7,1,10,0,8 -V,8,13,7,7,4,5,10,4,5,9,9,5,4,10,2,8 -J,4,10,4,8,3,15,3,3,5,12,0,7,0,8,0,8 -X,3,3,5,2,2,5,9,2,7,10,9,8,2,8,3,6 -W,5,7,7,6,9,7,6,4,5,7,5,8,9,9,7,8 -X,2,3,3,2,2,7,7,3,9,6,6,8,2,8,6,8 -D,5,10,5,6,4,6,8,4,6,9,6,6,5,9,6,5 -G,5,11,6,8,5,6,6,6,6,10,6,13,3,8,4,9 -T,8,12,8,7,4,7,8,2,7,12,7,7,3,9,5,6 -B,2,3,3,1,2,7,7,4,5,7,6,6,1,8,5,9 -N,6,7,8,5,4,4,11,3,4,10,10,9,5,8,1,8 -Q,5,13,5,8,4,8,6,5,7,11,5,7,3,8,9,9 -A,6,10,5,5,3,12,5,4,1,8,3,9,5,6,4,10 -F,8,10,7,5,3,6,10,3,7,11,7,6,2,9,5,6 -I,2,8,3,6,2,7,7,0,6,12,6,8,0,8,1,8 -B,3,3,3,4,3,7,7,9,6,7,6,7,2,8,9,10 -Q,2,3,3,3,2,9,10,5,2,5,7,10,3,9,5,10 -J,0,0,1,0,0,12,4,4,3,11,4,10,0,7,0,8 -Y,9,14,8,8,5,4,9,4,3,11,10,6,4,11,4,5 -C,4,7,6,5,6,6,6,4,4,8,6,11,6,9,3,9 -X,5,10,8,8,7,8,6,3,6,7,4,6,6,7,9,6 -G,4,7,6,5,4,6,6,6,5,6,6,11,2,9,4,9 -K,4,9,5,6,2,3,7,8,2,7,6,11,4,8,2,11 -C,4,9,5,6,2,6,8,7,11,5,6,13,1,7,4,9 -F,1,0,2,0,0,3,12,5,2,11,8,6,0,8,2,7 -S,5,11,7,9,5,8,7,3,6,10,7,8,2,8,5,8 -R,5,9,5,4,4,9,7,4,6,10,2,6,5,5,5,6 -R,4,11,4,8,3,6,9,10,5,7,6,8,3,8,6,11 -K,3,9,4,6,2,3,7,7,2,7,6,11,3,8,3,10 -R,2,6,2,4,2,6,8,8,4,7,5,7,2,7,4,10 -E,4,8,6,6,6,8,10,6,4,6,6,9,4,6,7,9 -N,5,9,7,6,7,6,8,3,4,8,7,8,6,9,5,4 -Z,3,7,4,5,2,7,8,2,10,11,7,8,1,9,6,7 -D,4,5,5,4,4,7,7,7,7,7,6,5,2,8,3,7 -P,2,4,3,2,2,5,10,4,4,10,8,4,1,10,3,7 -E,5,6,6,6,6,7,8,5,4,8,7,10,6,10,8,11 -Z,4,9,5,7,2,7,7,4,15,9,6,8,0,8,8,8 -R,3,8,3,6,3,6,9,8,3,7,5,8,2,7,5,11 -X,2,1,2,1,0,7,7,4,4,7,6,8,2,8,4,8 -N,8,13,10,8,5,5,8,2,4,12,7,9,6,8,0,7 -S,3,10,4,8,2,9,8,6,10,5,5,5,0,7,9,7 -W,7,11,7,8,8,4,10,2,3,9,8,7,7,11,2,6 -Q,4,6,5,7,5,9,7,7,3,5,7,9,3,9,6,9 -Y,2,2,3,3,1,7,10,1,7,7,11,8,1,11,2,8 -C,2,4,3,2,1,4,9,4,7,12,10,10,1,9,2,7 -J,2,8,2,6,1,12,3,9,4,13,4,12,1,6,0,8 -M,3,7,4,5,5,8,7,6,3,7,5,8,5,9,5,8 -L,3,8,4,6,2,9,3,1,7,9,2,10,0,7,3,9 -U,5,10,5,7,2,8,5,13,5,6,15,8,3,9,0,8 -S,4,5,5,7,3,9,9,6,10,5,5,5,0,7,9,8 -A,3,5,5,8,2,7,6,3,1,6,0,8,2,7,1,8 -F,8,10,7,6,5,6,12,3,4,11,6,3,4,10,7,6 -G,6,10,8,8,5,6,6,7,8,6,5,10,2,9,4,8 -B,5,8,8,6,5,9,7,4,7,10,5,6,2,8,6,10 -U,6,10,6,8,4,4,8,5,7,10,9,9,3,9,2,6 -D,6,9,8,6,6,7,7,8,5,7,6,5,4,8,4,7 -F,8,13,7,7,4,5,9,2,7,11,7,6,2,10,5,5 -H,4,5,6,7,5,9,10,3,2,8,7,7,3,10,8,6 -P,6,9,8,7,4,9,9,3,6,14,4,3,1,10,3,9 -E,7,9,5,5,2,7,7,5,7,10,6,9,1,9,7,9 -H,3,6,4,4,2,7,7,14,1,7,6,8,3,8,0,8 -L,5,9,5,7,1,0,0,7,6,0,1,4,0,8,0,8 -X,4,8,6,6,4,9,6,1,8,10,3,7,3,9,4,9 -D,2,3,3,2,2,7,7,6,6,7,6,5,2,8,3,7 -Z,5,10,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -F,3,2,4,4,3,4,11,3,6,11,10,5,1,10,3,6 -X,7,11,6,6,3,5,8,3,9,10,9,10,4,7,4,5 -O,4,7,4,5,3,7,7,7,4,9,7,10,3,8,3,9 -T,6,11,5,6,2,5,10,3,7,13,7,5,2,8,4,4 -W,10,10,10,5,4,8,10,4,2,5,10,7,10,12,2,6 -G,1,0,2,0,1,8,7,5,5,6,6,9,1,8,5,10 -Z,3,10,4,8,5,6,8,5,9,7,7,9,2,9,7,8 -L,1,3,2,2,1,7,4,2,7,7,2,9,0,7,2,8 -I,5,8,6,6,4,7,6,2,7,7,6,8,0,9,4,8 -Q,6,7,6,9,7,8,5,6,3,9,5,11,5,7,7,5 -M,8,10,8,6,5,4,9,5,4,4,3,12,9,10,2,8 -Z,1,4,2,3,2,8,7,5,8,6,6,7,2,8,7,8 -O,9,14,6,8,5,5,7,7,4,10,7,10,5,10,5,8 -B,4,6,5,4,4,7,9,5,6,10,6,6,2,8,6,8 -J,1,3,2,2,1,10,6,2,6,12,4,8,0,7,1,7 -J,2,7,3,5,1,14,2,6,5,14,2,11,0,7,0,8 -C,5,10,6,7,3,5,9,7,8,6,8,14,1,7,4,9 -U,3,7,3,5,3,7,7,11,4,7,11,8,3,9,0,8 -B,4,2,4,4,4,7,7,5,5,6,6,6,2,8,7,11 -N,6,11,9,8,5,3,10,3,4,10,11,10,5,7,1,7 -X,3,6,4,4,2,7,7,4,4,7,6,8,3,8,4,8 -J,2,7,2,5,1,14,2,6,5,14,1,10,0,7,0,8 -N,4,4,5,6,2,7,7,14,2,4,6,8,6,8,0,8 -F,3,7,4,5,3,8,9,2,6,13,5,5,1,10,2,9 -R,4,10,5,7,3,5,11,8,4,7,4,8,3,7,7,11 -W,1,0,2,1,1,7,8,4,0,7,8,8,5,10,0,8 -K,6,8,9,6,4,3,9,3,7,11,11,11,4,7,3,6 -F,3,6,5,4,3,5,10,2,6,10,9,6,4,10,3,6 -T,5,11,7,9,5,7,12,3,7,8,12,8,2,12,1,7 -L,6,14,6,8,4,10,3,4,3,12,6,10,4,9,6,9 -H,3,7,6,5,3,4,8,3,6,10,10,9,3,8,3,6 -P,3,3,5,2,2,7,10,3,4,12,4,3,1,10,3,8 -G,9,13,7,7,5,9,6,5,4,9,5,7,3,9,8,9 -F,4,9,6,6,5,8,8,2,6,12,5,6,3,8,3,8 -B,2,3,3,2,2,7,7,5,5,7,6,6,2,8,5,9 -O,5,9,6,6,5,7,8,7,6,7,6,6,2,8,3,8 -N,10,15,12,8,5,10,6,4,4,13,2,7,7,7,0,6 -C,4,10,5,8,4,6,7,6,8,5,7,12,1,7,4,9 -P,2,4,4,3,2,8,9,3,4,12,4,4,4,10,4,8 -F,5,9,7,6,7,7,6,6,4,7,6,8,4,10,8,11 -K,3,9,4,6,2,3,7,7,2,7,7,11,4,8,3,10 -G,3,8,4,6,2,7,6,7,8,6,6,8,1,8,6,11 -A,2,4,4,3,2,8,2,2,1,7,2,8,2,7,3,6 -X,7,11,7,6,3,4,8,3,9,9,11,10,4,11,4,5 -O,1,0,1,0,0,7,7,6,4,7,6,8,2,8,3,8 -Q,5,8,6,9,6,8,6,7,3,9,7,10,3,8,6,7 -N,5,5,6,4,5,7,9,5,4,7,4,8,6,9,4,6 -J,4,11,5,8,3,7,8,2,6,14,5,8,1,8,1,8 -C,7,11,7,8,5,6,6,6,7,13,8,13,4,9,4,6 -S,4,8,6,6,8,8,8,3,3,7,6,7,3,7,13,4 -G,6,11,7,8,6,6,6,6,5,5,6,10,2,9,4,8 -T,4,8,5,6,4,6,11,2,7,11,9,5,2,11,3,4 -J,4,10,6,7,3,7,6,3,5,15,7,11,1,6,1,7 -K,5,6,7,4,5,6,7,1,6,10,7,10,3,8,3,8 -Q,4,7,4,9,4,7,7,6,3,8,8,10,3,9,6,8 -B,5,10,5,8,4,6,9,9,8,7,5,7,2,8,9,10 -D,5,9,5,4,3,8,7,3,6,10,5,7,5,8,7,6 -U,6,7,6,5,3,3,8,5,7,10,10,9,3,9,2,6 -S,3,7,4,5,2,7,5,6,9,4,6,9,0,9,9,8 -X,3,9,4,7,3,7,7,4,4,7,6,8,2,8,4,8 -W,5,7,5,5,4,6,10,4,3,8,7,6,6,12,3,6 -Z,9,10,7,14,6,8,7,4,2,12,6,8,3,9,13,6 -D,2,3,4,2,2,9,7,4,6,10,4,6,2,8,3,8 -H,2,1,3,2,2,6,8,6,5,7,6,8,3,8,3,8 -K,1,1,2,1,0,4,6,6,2,7,6,11,3,8,2,10 -P,2,5,4,3,2,7,10,3,4,12,5,3,1,10,2,8 -U,6,10,6,8,3,7,3,15,6,7,13,8,3,9,0,8 -W,7,8,9,7,11,7,8,5,5,6,5,8,10,10,9,7 -Q,4,7,6,7,3,9,6,8,7,7,5,10,3,8,4,8 -G,3,9,4,7,2,7,6,8,7,6,6,10,2,7,5,10 -I,6,10,6,6,3,8,8,3,5,13,4,5,2,9,5,11 -I,1,6,3,4,3,8,7,2,4,8,5,5,3,9,4,5 -Y,5,7,5,5,2,3,10,2,7,11,11,6,1,11,2,5 -G,5,10,6,7,4,6,7,7,7,9,8,11,2,8,5,9 -K,2,4,4,3,2,7,7,1,7,10,5,9,3,8,3,8 -A,2,1,4,2,1,9,2,2,1,8,2,8,2,6,2,7 -C,4,9,4,4,3,7,7,4,3,9,8,10,3,9,8,10 -W,9,11,9,6,5,1,10,3,4,11,12,9,8,11,1,5 -Q,5,10,7,9,4,9,9,8,6,5,9,9,3,7,5,9 -X,4,7,6,5,5,7,8,2,6,7,6,8,4,8,5,8 -K,4,5,5,4,5,8,7,2,4,8,3,8,4,4,3,9 -G,4,8,6,7,6,7,8,5,3,7,6,9,6,11,8,10 -I,1,2,1,3,1,7,7,1,7,7,6,8,0,8,2,8 -T,3,4,3,3,1,5,12,3,6,11,9,4,1,11,2,5 -X,5,5,6,7,2,7,7,5,4,7,6,8,3,8,4,8 -J,2,8,3,6,2,12,3,7,3,13,5,11,1,6,0,8 -Z,4,9,6,6,4,7,8,2,10,12,7,8,1,9,6,8 -O,6,10,8,8,5,7,7,8,4,6,6,11,5,8,5,6 -E,3,8,4,6,2,3,7,6,11,7,6,15,0,8,7,7 -N,4,7,6,5,4,12,7,3,5,10,0,4,5,9,1,7 -K,8,12,7,7,3,7,7,3,6,9,6,8,6,8,4,7 -Z,4,8,6,6,6,8,8,3,8,7,7,7,1,8,9,8 -C,3,4,5,7,2,5,8,7,10,6,7,12,1,7,4,8 -O,4,4,6,6,2,8,7,8,8,7,6,9,3,8,4,8 -Y,3,5,5,8,6,7,11,3,3,7,8,9,3,11,7,5 -R,6,10,9,7,8,9,8,6,6,8,5,7,5,9,6,12 -T,4,6,5,4,2,5,11,2,8,11,9,5,1,11,2,4 -Y,3,9,4,7,2,6,11,0,4,8,11,8,0,10,0,8 -W,8,11,8,8,7,6,10,4,3,8,7,6,11,12,4,4 -C,2,4,3,3,1,4,8,4,7,10,9,13,1,8,2,7 -G,6,10,8,8,8,9,8,6,3,5,7,10,9,8,5,9 -P,3,7,4,4,2,4,13,8,1,11,6,3,1,10,4,8 -D,6,10,8,8,6,7,7,5,6,7,6,8,7,7,3,8 -C,5,5,6,7,2,5,7,6,11,7,6,14,1,8,4,9 -V,3,8,5,6,2,6,9,4,1,8,12,8,2,10,0,8 -J,3,10,4,8,3,13,3,7,4,13,3,10,1,6,0,8 -M,5,9,8,6,10,7,7,3,2,7,4,8,15,6,3,7 -M,7,9,10,7,8,12,5,3,5,9,2,5,10,5,2,8 -A,2,4,4,3,2,11,2,2,2,9,2,9,2,6,1,8 -I,2,9,2,7,2,7,7,0,8,7,6,8,0,8,3,8 -K,2,3,4,2,2,6,7,2,6,10,7,10,3,8,2,8 -A,3,8,5,6,3,10,3,2,3,9,1,8,2,6,2,8 -Q,5,5,6,8,3,8,6,8,8,5,5,8,3,8,4,8 -Y,2,3,4,4,2,7,10,1,7,7,11,8,1,11,2,8 -X,1,0,2,0,0,7,7,4,4,7,6,8,2,8,4,8 -O,2,1,2,2,1,7,7,7,4,7,6,8,2,8,3,8 -C,5,11,6,8,2,5,7,7,11,7,6,13,1,9,4,8 -P,6,9,8,6,4,9,9,4,6,13,4,2,1,10,4,9 -Z,3,4,5,3,2,7,8,2,9,11,6,8,1,9,5,8 -L,3,5,4,4,3,7,8,4,6,7,6,8,2,8,7,10 -E,3,6,4,5,4,5,8,4,3,7,6,9,4,10,8,11 -K,5,4,5,6,2,4,9,8,2,7,4,11,4,8,3,10 -V,4,8,6,6,7,8,5,5,2,8,8,8,7,9,4,8 -D,4,10,6,7,4,11,6,3,7,11,3,7,4,7,4,9 -Q,4,5,5,7,3,8,7,8,6,6,7,9,3,8,5,9 -I,1,7,2,5,1,7,7,0,7,13,6,8,0,8,1,8 -W,12,14,12,8,5,1,10,4,2,11,12,9,8,10,0,7 -H,4,8,5,6,4,7,8,8,4,7,5,6,3,6,7,9 -N,5,10,5,8,3,7,7,15,2,4,6,8,6,8,0,8 -I,3,6,4,4,2,6,9,0,6,13,7,7,0,8,1,7 -I,1,6,3,4,3,10,6,1,4,8,5,5,3,8,5,6 -R,5,11,5,8,6,6,8,9,5,7,6,8,3,8,5,12 -K,5,9,5,4,3,6,7,2,5,10,6,9,5,8,3,7 -A,1,0,2,0,0,8,3,2,0,7,2,8,2,6,1,8 -Z,3,5,5,8,4,12,4,2,5,9,3,7,1,8,5,10 -V,6,10,5,8,3,4,11,2,4,9,11,7,3,9,1,8 -Z,2,5,4,4,2,7,7,2,10,11,6,8,1,8,6,7 -H,3,6,4,4,4,7,7,5,6,7,6,9,3,8,3,8 -C,3,6,4,4,1,5,7,7,10,6,6,13,1,8,4,8 -M,3,6,5,4,5,10,5,2,2,8,4,8,5,7,2,6 -B,3,7,5,5,5,7,8,7,5,7,6,6,2,8,6,9 -R,5,9,7,7,8,5,8,4,5,6,5,9,7,6,10,7 -N,6,9,5,4,2,6,9,4,5,4,4,10,5,10,2,8 -T,4,5,5,4,2,5,12,3,8,11,9,4,1,11,2,4 -K,7,12,7,6,3,5,8,3,7,9,9,10,6,8,3,7 -F,4,11,7,8,8,9,7,1,5,9,5,5,5,10,6,5 -O,5,10,7,8,3,8,7,8,8,7,6,9,3,8,4,8 -A,2,1,3,1,1,7,4,2,0,7,2,8,2,7,1,7 -L,1,0,2,1,0,2,1,6,5,0,2,4,0,8,0,8 -K,4,8,6,6,4,6,7,2,6,10,7,10,3,8,3,8 -D,3,4,4,3,3,6,7,6,6,7,6,5,2,8,3,7 -O,6,11,6,8,7,8,6,8,4,9,4,8,3,8,3,8 -M,2,1,3,2,1,8,6,10,1,6,9,8,7,5,0,8 -P,4,10,5,8,4,4,12,6,5,12,9,3,1,10,4,6 -I,6,7,8,8,7,8,8,4,5,6,6,7,3,8,10,10 -B,4,8,6,6,5,7,7,6,6,9,6,6,3,8,7,8 -V,2,1,4,2,1,5,12,3,3,9,11,8,2,11,1,8 -K,2,3,3,1,2,6,7,4,7,7,6,11,3,8,4,9 -D,3,2,4,3,2,8,7,7,7,7,6,4,2,8,3,7 -R,3,6,5,4,5,7,8,3,4,6,6,9,6,9,7,6 -U,2,0,2,0,0,7,5,10,4,7,13,8,3,10,0,8 -R,4,5,6,4,3,9,7,2,6,10,3,6,2,7,3,10 -H,4,5,5,3,4,7,8,6,6,7,6,8,3,8,3,7 -A,4,9,6,6,5,10,3,1,2,7,3,9,5,5,3,7 -B,2,4,3,2,2,8,8,3,5,10,5,6,2,8,5,9 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -V,4,4,5,3,2,5,12,2,3,8,10,7,2,10,1,8 -U,2,3,3,1,1,6,9,5,6,6,9,9,3,10,1,7 -H,4,9,5,6,2,7,9,15,2,7,3,8,3,8,0,8 -V,6,7,6,5,3,4,12,3,3,9,11,7,3,9,1,7 -A,2,4,4,3,2,7,2,2,2,7,2,8,2,6,3,7 -F,3,5,5,4,2,7,9,2,6,13,6,5,4,10,3,7 -Z,3,6,4,4,3,6,8,5,10,7,7,10,1,9,7,8 -M,3,5,6,4,4,9,6,2,4,9,4,6,8,5,2,8 -S,5,10,6,7,4,7,8,3,7,10,7,7,3,7,5,6 -E,3,6,4,4,4,8,7,5,3,7,6,9,4,8,7,9 -L,5,9,5,5,3,7,5,3,5,12,7,11,3,8,6,9 -Q,3,9,5,8,3,8,7,8,5,6,6,9,3,8,5,9 -V,3,8,5,6,2,5,11,3,4,10,12,8,3,10,1,8 -B,4,10,6,7,5,11,6,3,8,10,3,7,2,8,5,12 -M,3,4,5,3,3,8,6,3,4,9,6,8,6,5,2,8 -F,4,7,6,5,3,7,10,3,5,13,6,5,2,10,2,7 -W,4,9,6,7,9,8,7,5,1,7,6,8,10,11,3,9 -S,3,7,4,5,3,8,7,7,6,7,7,8,2,9,9,8 -N,5,7,8,5,4,11,7,3,5,11,0,4,5,9,1,7 -J,2,8,3,6,1,12,2,9,4,13,5,13,1,6,0,8 -E,6,14,5,8,4,8,7,4,4,11,5,9,3,9,8,11 -J,4,9,4,7,3,9,8,2,3,12,5,6,2,9,6,9 -X,3,6,4,4,2,7,7,4,4,7,6,8,3,8,4,8 -W,3,3,4,1,2,3,11,3,2,10,10,8,5,11,0,7 -Y,5,10,8,7,4,8,10,1,8,5,12,8,1,11,2,8 -J,1,5,2,3,1,10,6,3,5,12,4,9,1,6,1,7 -S,3,9,4,7,2,8,8,6,9,5,5,5,0,7,9,8 -A,4,9,6,7,5,8,2,3,1,7,2,8,5,8,6,7 -V,9,13,9,7,4,6,10,4,3,8,8,5,5,12,3,9 -O,5,11,6,8,3,7,7,9,8,7,6,8,3,8,4,8 -H,5,9,6,7,6,6,8,7,5,7,5,7,3,7,7,10 -L,3,8,4,6,2,7,3,0,9,9,2,11,0,7,2,8 -P,4,6,4,8,3,4,11,10,3,10,6,4,1,10,4,8 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -Q,4,7,5,9,5,9,10,7,1,3,7,12,3,10,5,11 -Q,8,9,10,8,9,8,4,4,4,8,4,11,6,6,8,7 -D,5,10,5,5,3,7,7,4,6,9,6,6,5,9,7,5 -V,4,9,5,7,4,9,11,2,3,4,10,8,3,10,2,8 -N,4,10,4,8,5,8,7,12,1,6,6,7,6,8,1,10 -K,4,11,4,8,2,4,7,8,2,6,4,11,4,8,2,11 -S,4,8,4,6,2,7,6,5,9,5,6,9,0,8,9,8 -H,4,7,6,5,5,7,8,5,6,8,6,8,6,7,5,9 -I,4,8,5,6,3,7,6,2,6,7,6,8,0,9,4,8 -Q,4,7,6,9,6,9,8,6,3,4,8,10,4,8,7,11 -J,2,6,3,4,1,9,7,1,6,14,4,8,0,7,0,8 -R,4,5,5,4,3,8,7,5,6,6,5,6,3,7,6,9 -R,2,1,3,1,2,7,7,4,5,6,5,7,2,6,4,8 -I,2,6,3,4,1,7,7,0,7,13,6,8,0,8,1,8 -Q,4,7,5,9,5,7,10,3,4,7,10,11,3,9,7,7 -R,2,1,3,2,2,7,8,4,5,7,5,6,5,6,4,8 -R,4,7,6,5,5,8,7,7,6,8,6,8,3,8,6,11 -Y,2,3,2,2,1,5,10,1,6,10,9,6,1,11,2,5 -T,5,7,5,5,3,6,11,2,6,11,9,5,2,11,2,5 -V,3,8,5,6,1,6,8,4,3,8,14,8,3,10,0,8 -D,4,8,4,6,4,5,7,9,6,6,5,5,2,8,3,8 -W,3,1,5,1,2,6,11,3,2,7,9,9,6,11,0,8 -M,5,9,7,6,6,4,7,3,4,10,10,10,7,5,2,7 -X,3,6,5,4,3,8,7,4,9,6,6,8,3,8,6,8 -M,5,11,9,8,12,7,5,3,2,7,5,8,14,6,4,7 -I,6,10,5,6,3,10,6,4,6,14,3,6,2,9,4,11 -Z,5,8,7,6,6,9,9,5,4,7,5,7,3,8,9,5 -R,7,11,9,8,9,8,9,7,4,8,5,6,5,8,8,12 -C,2,3,3,4,1,5,7,6,8,7,6,13,1,8,4,9 -E,5,10,4,5,3,9,6,3,4,11,5,9,3,9,8,12 -G,7,14,6,8,5,7,6,3,3,8,6,9,4,9,9,7 -R,4,7,6,5,6,8,8,7,3,8,5,6,4,7,7,9 -Y,7,9,8,7,4,2,10,3,7,12,12,7,1,11,2,5 -N,4,7,6,5,3,8,7,7,6,6,6,4,6,9,2,5 -H,2,1,3,3,2,8,7,6,6,7,6,8,3,8,3,7 -N,2,2,3,3,2,7,8,5,5,7,6,6,5,9,2,5 -N,4,7,6,5,4,11,7,3,5,10,1,4,5,9,1,7 -A,4,11,6,8,3,7,4,3,2,6,1,8,3,6,3,8 -E,3,9,5,6,4,7,7,6,9,8,8,9,3,8,6,8 -E,4,9,5,7,6,6,7,5,8,7,6,10,3,8,6,9 -T,5,10,5,8,4,6,11,4,6,11,9,5,4,11,4,4 -T,6,13,6,7,4,7,9,2,7,12,6,6,2,9,5,5 -S,10,15,8,8,4,9,3,4,5,10,2,9,4,5,6,10 -T,6,8,8,7,7,6,8,6,6,7,8,7,4,11,9,8 -O,5,10,5,8,4,7,7,8,5,9,8,8,3,8,3,8 -D,4,7,6,5,4,9,7,5,7,10,4,5,3,8,3,8 -Y,4,9,6,6,4,10,10,1,7,3,11,8,1,11,2,9 -G,6,10,8,8,8,7,9,6,3,6,5,10,5,7,8,7 -I,1,8,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -P,5,11,5,6,3,9,9,4,3,12,5,4,4,11,5,6 -K,5,4,5,6,2,4,8,8,2,7,5,11,4,8,2,11 -B,5,10,7,8,6,9,7,7,6,6,6,5,3,9,9,11 -V,3,4,5,6,1,8,8,4,3,7,14,8,3,10,0,8 -N,6,11,9,8,6,7,9,2,4,9,6,7,6,8,1,8 -A,4,10,7,8,5,11,3,1,2,8,2,9,6,4,3,8 -X,2,6,4,4,2,7,7,4,8,6,6,10,3,8,6,8 -E,3,8,4,6,2,3,6,6,11,7,7,15,0,8,7,7 -O,4,9,4,7,4,7,7,7,3,9,7,8,3,8,3,7 -X,4,9,6,7,4,9,7,0,8,9,4,8,2,8,3,8 -X,5,9,6,5,3,9,7,2,7,11,5,7,4,11,3,8 -M,7,8,9,7,10,8,8,4,4,7,6,7,10,9,6,3 -K,2,3,4,1,2,4,9,2,6,10,9,10,3,8,2,6 -U,4,5,5,3,2,6,8,6,8,7,10,9,3,9,1,8 -F,2,3,4,2,1,5,11,2,5,13,7,5,1,9,1,7 -B,1,1,2,2,1,7,7,8,5,7,6,7,2,8,7,9 -F,4,11,5,8,5,5,10,3,5,10,10,6,2,10,3,6 -G,4,9,6,7,6,7,7,6,2,7,6,11,4,8,8,8 -M,5,9,5,6,3,7,7,12,2,8,9,8,8,6,0,8 -R,3,6,5,4,5,5,7,3,4,7,6,9,5,10,7,5 -Y,4,5,5,7,7,9,8,5,3,6,8,8,7,11,7,4 -V,3,3,4,1,1,5,13,3,2,9,11,7,2,11,1,8 -W,3,4,4,3,3,5,11,2,2,8,9,9,6,11,0,8 -H,4,7,6,5,7,8,8,4,3,6,7,7,7,9,7,7 -K,4,8,6,6,4,5,6,1,7,10,9,11,4,7,4,7 -L,4,8,5,6,3,3,5,2,9,3,1,9,0,7,1,5 -E,3,7,4,5,4,8,7,4,8,7,7,8,2,8,6,10 -S,3,1,3,3,2,8,7,6,5,7,6,8,2,9,9,8 -B,6,10,6,8,5,6,5,9,7,6,7,6,2,8,10,10 -F,4,8,4,6,3,1,11,4,6,11,10,9,0,8,2,7 -H,6,7,8,5,6,10,6,3,6,10,3,7,4,7,4,9 -X,3,8,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -N,5,10,7,7,4,10,7,3,5,10,2,5,6,9,1,7 -L,6,11,6,6,4,8,4,3,4,12,7,11,3,9,6,9 -T,2,7,3,5,2,9,12,0,5,6,10,8,0,8,0,8 -E,5,8,7,6,5,4,9,2,8,10,8,9,3,9,4,6 -W,2,0,2,1,1,7,8,3,0,7,8,8,6,10,0,8 -S,3,4,4,3,2,6,8,3,7,10,8,8,1,8,5,5 -V,3,8,5,6,1,8,8,4,3,6,14,8,3,10,0,8 -Z,7,7,5,10,5,9,4,4,3,11,6,9,3,9,11,8 -T,4,7,6,5,6,7,7,4,5,7,6,9,5,8,5,7 -P,5,11,7,8,6,8,9,5,4,12,5,4,2,10,3,8 -O,2,4,3,3,2,8,7,6,4,9,5,8,2,8,2,8 -M,5,8,6,6,3,8,7,12,2,6,9,8,9,6,0,8 -B,3,8,5,6,5,7,7,6,6,6,6,6,2,8,6,9 -C,4,8,5,6,3,6,8,8,8,9,8,13,2,10,4,9 -E,4,5,5,8,3,3,8,6,12,7,5,15,0,8,7,7 -Y,4,6,4,4,2,4,10,2,7,11,11,6,1,10,2,4 -L,4,9,6,7,3,6,3,1,9,8,2,11,0,7,2,8 -X,4,9,5,4,2,6,8,1,7,11,6,8,3,7,4,6 -V,3,5,4,3,1,4,12,4,3,10,11,7,3,10,1,8 -V,1,0,2,0,0,8,9,3,2,6,12,8,2,10,0,8 -U,4,4,5,3,2,4,9,5,7,11,10,9,3,9,2,7 -J,3,8,4,6,3,10,7,0,7,11,3,6,0,7,1,7 -L,3,8,4,6,1,0,1,6,6,0,0,6,0,8,0,8 -Q,2,2,3,3,2,8,8,5,2,7,8,10,2,9,4,9 -D,1,0,1,0,0,6,7,7,5,7,6,6,2,8,3,8 -D,2,3,3,2,2,9,7,4,6,10,4,6,2,8,2,8 -X,5,9,8,7,5,3,8,1,8,10,11,10,2,9,3,5 -P,4,8,5,5,2,4,14,8,1,11,6,3,1,10,4,8 -J,2,5,4,4,2,7,7,3,6,15,7,10,1,6,1,7 -W,9,10,9,5,4,6,11,2,3,8,10,7,8,12,1,7 -O,4,9,5,6,4,7,7,8,6,7,3,8,3,8,3,8 -U,4,8,6,6,4,5,9,5,6,7,9,10,3,9,1,8 -Y,5,8,5,6,3,3,10,2,7,11,11,6,1,11,2,5 -E,7,11,10,8,8,7,7,2,8,11,7,9,3,8,5,8 -O,5,11,6,8,4,7,8,8,5,10,8,7,4,7,5,9 -N,10,13,12,7,5,3,11,6,3,14,12,9,6,9,0,8 -D,4,11,6,8,5,8,7,6,8,7,6,5,6,8,3,7 -U,4,7,6,5,3,6,9,6,8,8,10,9,3,9,1,8 -I,1,11,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -B,5,10,6,7,6,8,7,6,7,7,6,5,2,8,7,10 -X,4,6,5,8,2,7,7,4,4,7,6,8,3,8,4,8 -F,4,10,4,8,3,1,13,4,4,12,10,6,0,8,2,6 -C,5,8,5,6,4,6,7,6,6,12,8,11,2,11,4,7 -D,3,8,5,6,4,8,8,4,5,9,5,4,3,8,3,7 -X,5,9,6,8,7,7,8,1,5,7,6,8,3,6,8,8 -F,3,5,4,4,2,5,10,4,6,10,9,6,1,10,4,6 -X,3,1,4,3,2,7,7,3,9,6,6,8,2,8,6,8 -L,2,7,3,5,2,5,5,2,8,3,2,7,0,7,1,6 -Y,4,10,6,8,3,6,10,2,2,7,12,8,1,11,0,8 -C,7,9,5,5,2,7,9,6,7,12,7,8,1,8,6,9 -U,7,9,8,6,4,4,8,6,8,10,10,9,3,9,2,5 -R,4,9,6,7,4,10,7,3,5,11,2,6,3,7,4,10 -F,2,7,4,5,3,5,10,2,6,10,9,6,1,10,3,7 -N,8,14,9,8,4,4,10,6,4,14,12,9,6,9,0,9 -Z,6,9,8,7,6,6,9,2,9,11,8,7,3,11,7,7 -L,5,7,7,5,5,6,6,8,6,5,6,9,2,8,4,10 -K,6,11,9,8,7,2,9,2,7,10,12,12,5,6,4,4 -K,4,9,5,7,5,5,6,3,6,6,6,10,3,8,5,10 -X,3,6,4,5,4,7,8,2,5,8,6,8,2,7,6,7 -S,4,7,5,5,3,7,7,4,8,11,8,8,2,10,5,6 -M,5,9,6,7,6,8,6,6,5,6,7,8,8,6,2,7 -K,5,11,7,8,9,7,6,3,5,6,6,8,7,7,7,7 -V,3,5,5,7,2,8,8,4,3,7,14,8,3,9,0,8 -J,2,10,3,8,2,9,6,2,6,11,3,8,1,6,2,6 -E,4,7,5,5,3,7,8,2,8,11,6,8,2,8,5,8 -Z,3,5,5,4,3,8,7,2,9,12,6,9,1,8,5,7 -F,3,9,5,7,3,4,11,3,6,11,10,5,1,10,2,5 -C,6,10,9,7,6,7,8,8,6,5,6,13,5,8,4,7 -I,2,2,1,3,1,7,7,1,7,7,6,8,0,8,3,8 -L,1,0,2,1,0,2,1,6,4,0,3,4,0,8,0,8 -W,10,12,10,7,5,2,8,3,3,10,11,9,9,10,1,6 -N,2,5,4,4,2,7,9,2,4,10,6,7,5,8,1,7 -Y,3,4,4,3,2,4,10,1,7,10,10,6,2,10,3,3 -U,3,6,4,4,1,8,5,13,5,7,14,8,3,9,0,8 -Z,2,5,2,4,2,7,7,5,8,6,6,8,2,8,7,8 -K,3,4,5,3,2,8,6,1,6,10,5,9,3,8,3,9 -W,7,8,7,6,6,5,11,3,3,9,7,7,8,11,3,5 -B,3,6,4,4,4,8,7,5,5,9,6,6,2,8,4,7 -S,6,9,8,7,11,7,6,4,2,8,5,8,3,8,13,4 -L,1,0,1,0,0,2,2,5,4,1,2,6,0,8,0,8 -L,3,10,5,8,4,7,4,2,7,7,2,9,1,6,3,8 -P,4,8,6,6,4,8,8,2,6,13,5,5,2,9,3,9 -N,2,4,4,3,2,8,8,2,4,10,5,6,4,9,1,6 -B,5,9,8,8,9,7,7,5,4,7,6,8,7,10,9,11 -T,2,3,3,2,1,7,11,3,6,7,11,8,2,11,1,8 -Z,1,4,3,3,1,7,7,2,9,11,6,8,1,8,5,8 -L,3,4,3,6,1,0,1,6,6,0,0,6,0,8,0,8 -I,1,4,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -S,4,7,5,5,3,6,8,3,6,10,7,8,2,8,4,6 -V,8,10,7,7,3,3,12,4,4,10,12,8,3,10,1,8 -B,1,3,3,2,2,8,6,2,5,10,5,7,2,8,3,9 -R,5,8,7,6,7,8,8,7,4,8,5,6,4,7,7,11 -T,3,7,4,5,2,5,13,3,6,12,9,4,1,11,2,4 -H,3,2,5,3,3,7,7,6,6,7,6,8,3,8,3,8 -Y,3,6,4,4,2,4,10,1,6,9,10,5,1,11,3,4 -A,2,3,3,2,1,9,2,1,1,8,2,9,1,6,1,8 -K,6,9,9,7,6,2,8,3,7,11,12,12,4,7,4,5 -D,5,8,7,6,5,10,6,3,6,11,4,6,3,8,3,9 -I,1,8,0,6,1,7,7,5,3,7,6,8,0,8,0,8 -F,3,9,5,7,4,4,11,6,5,11,10,5,2,10,3,5 -Q,5,9,5,4,3,8,5,4,7,10,5,9,3,8,9,10 -X,5,8,7,6,5,8,5,3,5,7,7,9,4,8,10,9 -B,3,6,4,4,4,6,6,7,5,6,6,7,2,9,7,10 -M,10,14,10,8,5,9,11,6,5,4,6,9,10,11,2,7 -X,5,11,8,8,7,7,7,3,8,5,7,10,3,8,6,8 -L,4,7,5,5,4,6,8,8,5,7,5,10,3,7,4,11 -Q,3,4,4,6,2,8,8,8,6,6,6,9,3,8,4,9 -J,1,3,2,2,1,8,6,3,5,14,6,10,1,7,0,7 -T,3,8,4,6,3,5,11,2,7,8,11,8,2,11,1,7 -P,2,3,4,2,2,7,9,3,4,12,5,4,1,9,3,8 -V,9,15,8,8,4,6,11,6,4,10,10,4,5,12,3,9 -W,5,11,8,8,7,10,10,3,3,5,9,7,8,10,1,8 -R,3,8,4,6,4,5,11,7,3,8,4,9,2,6,5,11 -G,5,11,5,8,5,5,7,6,4,9,9,10,2,8,4,10 -E,4,7,5,5,4,6,7,7,9,8,8,10,3,8,6,8 -S,4,9,5,7,3,9,7,4,8,11,6,7,2,10,5,8 -C,6,8,6,6,3,4,9,6,9,13,10,10,1,9,3,7 -L,3,9,5,7,3,6,5,0,8,9,3,11,0,7,3,8 -Y,3,7,5,5,2,7,11,1,8,6,12,8,1,11,2,8 -Y,4,6,4,4,2,2,11,3,5,11,12,7,2,11,2,5 -O,3,6,4,4,2,7,6,8,5,7,5,9,3,8,3,8 -Z,4,10,5,7,4,7,8,3,12,9,6,8,0,8,8,7 -G,8,9,10,8,11,7,8,6,3,7,7,9,9,10,9,9 -X,4,9,6,7,4,8,7,4,9,6,7,9,4,7,8,9 -N,6,10,8,7,5,11,8,3,6,10,0,3,5,9,1,7 -Y,1,3,2,2,1,8,10,1,6,5,10,8,1,11,1,8 -R,4,8,5,6,4,8,7,5,6,8,5,8,3,6,6,11 -F,1,0,1,0,0,3,11,4,2,11,8,6,0,8,2,8 -W,3,1,4,2,2,8,11,2,2,6,9,8,6,11,0,7 -A,3,5,6,4,2,8,2,2,2,7,1,8,2,7,2,7 -P,2,1,2,2,1,5,9,3,4,9,8,4,1,9,3,7 -C,1,0,2,1,0,6,7,6,9,7,6,14,0,8,4,10 -D,2,0,2,1,1,6,7,8,7,7,6,6,2,8,3,8 -I,1,4,1,3,1,7,7,1,7,7,6,9,0,8,2,8 -K,4,4,4,6,2,4,8,8,2,7,5,11,3,8,2,11 -D,4,11,4,8,3,5,8,10,8,8,8,5,3,8,4,8 -T,7,10,7,8,4,7,10,2,10,11,9,4,3,9,5,5 -F,6,13,6,8,5,7,9,3,4,10,6,6,4,9,7,7 -L,2,2,3,3,2,4,4,5,7,2,2,6,1,7,1,6 -A,2,7,4,4,1,8,6,3,0,7,0,8,2,7,1,8 -N,5,9,7,6,4,7,8,6,6,7,7,6,6,10,2,5 -T,8,11,8,8,6,6,10,1,9,11,9,5,3,9,4,4 -Q,3,5,5,6,5,10,11,6,3,3,8,12,3,10,5,10 -Q,4,7,5,8,5,8,11,5,1,5,8,12,2,10,5,8 -K,2,1,2,1,0,4,7,6,2,7,6,11,3,8,2,10 -Y,3,4,5,5,1,7,10,2,2,8,12,8,1,11,0,8 -Z,3,6,4,4,2,8,7,2,9,11,5,8,2,8,6,8 -J,4,6,5,4,2,11,5,2,7,14,3,8,0,8,0,8 -U,3,1,4,2,1,7,8,6,8,7,10,8,3,10,1,8 -R,6,8,8,6,5,10,8,4,7,10,1,7,3,6,4,11 -N,5,7,8,5,3,7,8,3,5,10,7,7,5,7,1,8 -Y,5,6,5,4,2,3,12,5,5,13,11,6,1,11,1,6 -K,11,15,10,8,5,4,8,5,8,9,12,12,6,11,3,6 -K,6,9,9,7,6,3,8,3,8,11,12,12,4,7,4,4 -N,5,8,7,6,3,10,7,3,5,10,2,5,5,8,1,7 -Y,1,0,2,0,0,7,9,2,2,6,12,8,1,10,0,8 -E,2,4,3,2,2,6,8,2,7,11,7,9,2,8,4,8 -W,9,12,9,7,4,6,10,1,3,7,10,7,8,12,1,6 -W,6,9,6,4,4,5,8,2,3,8,9,7,9,10,2,5 -G,3,10,4,7,2,7,6,8,8,6,6,11,2,8,5,11 -U,4,3,5,5,2,7,4,14,5,7,14,8,3,9,0,8 -Y,5,6,6,8,9,8,6,7,4,7,7,8,10,9,4,5 -S,7,10,8,8,5,9,8,3,7,10,3,6,3,8,5,9 -A,4,10,5,5,4,9,5,5,2,10,6,11,6,5,5,10 -Z,3,9,4,7,2,7,7,4,13,10,6,8,0,8,8,8 -Z,5,10,7,8,5,7,8,2,9,11,7,7,1,8,6,7 -M,4,7,7,5,7,9,6,2,2,8,4,7,7,5,2,6 -Q,3,5,4,7,4,8,5,6,3,9,5,11,3,8,4,8 -M,5,10,8,8,6,6,6,3,4,9,9,9,8,5,2,7 -F,1,0,1,1,0,3,12,4,2,11,9,6,0,8,2,7 -V,6,9,6,6,4,3,11,2,3,9,10,8,3,12,1,7 -J,2,9,3,6,1,12,3,10,3,13,6,13,1,6,0,8 -Y,5,8,7,6,4,9,10,1,7,3,11,8,2,12,2,9 -N,5,9,6,7,4,7,9,5,5,7,6,7,6,9,2,6 -K,4,9,6,7,7,6,6,3,4,6,6,9,8,7,8,7 -O,4,9,4,6,3,8,6,8,5,9,4,7,3,8,3,8 -J,3,10,4,8,1,13,1,9,5,14,2,12,0,7,0,8 -M,4,5,7,3,4,8,7,3,4,9,6,7,8,6,2,7 -B,5,8,7,6,10,8,8,4,3,6,7,7,7,11,9,9 -W,7,10,7,8,6,4,10,3,2,9,8,7,7,12,2,5 -N,8,12,7,6,3,7,10,4,6,3,5,9,5,9,2,7 -H,3,1,4,2,3,7,7,6,6,7,6,8,5,8,4,8 -G,4,10,6,7,8,7,5,4,3,7,5,10,8,7,8,13 -Z,5,11,6,9,3,7,7,4,15,9,6,8,0,8,8,8 -T,1,0,1,0,0,8,14,2,4,6,10,8,0,8,0,8 -T,3,4,4,3,1,5,13,3,6,11,9,4,1,11,1,5 -R,3,5,6,4,4,7,8,5,4,8,5,8,3,6,4,11 -J,1,7,2,5,1,11,3,10,3,12,7,13,1,6,0,8 -B,3,7,5,5,4,8,8,3,6,10,5,6,2,8,4,10 -M,8,9,12,8,12,8,9,4,4,7,6,7,12,7,7,3 -H,5,11,5,8,3,7,6,15,1,7,8,8,3,8,0,8 -O,5,7,7,6,5,6,6,6,7,9,6,8,3,6,5,6 -L,5,4,5,7,1,0,0,6,6,0,1,5,0,8,0,8 -H,3,7,5,5,3,6,7,3,6,10,8,9,3,9,2,6 -I,1,4,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -G,5,10,6,8,3,8,6,8,9,6,5,11,2,8,6,10 -F,5,12,5,7,4,10,8,3,5,11,4,5,3,7,7,9 -A,4,8,6,7,7,10,8,3,4,6,7,6,5,9,5,5 -V,3,8,4,6,2,7,9,4,2,7,12,8,2,10,0,8 -C,6,11,6,8,4,5,7,7,8,12,9,14,2,10,4,7 -B,4,2,4,4,4,7,7,5,5,6,6,6,2,8,6,9 -N,3,6,4,4,3,7,9,6,4,7,6,6,5,9,1,6 -G,5,9,6,7,4,7,6,7,8,11,6,11,2,11,4,9 -M,5,9,6,6,6,8,5,11,0,6,9,8,7,5,0,7 -X,5,10,6,8,4,7,7,4,4,7,6,8,3,8,4,8 -W,4,10,6,8,4,8,8,4,2,7,8,8,8,9,0,8 -K,2,7,4,5,3,5,6,3,6,6,6,10,3,8,5,9 -P,3,3,4,5,2,4,12,9,2,10,6,4,1,10,4,8 -H,4,2,5,4,4,8,7,6,7,7,6,8,3,8,4,8 -Q,3,8,4,9,5,9,7,8,3,5,6,9,3,8,6,10 -Q,4,8,5,10,6,8,6,8,5,5,6,8,4,9,7,11 -X,4,9,6,6,4,7,6,3,8,5,6,9,3,8,7,8 -V,1,1,3,2,1,6,12,2,2,8,11,8,2,10,0,8 -B,7,10,5,6,4,6,7,5,5,10,6,8,5,7,8,9 -D,4,6,5,5,5,6,7,5,6,7,4,7,4,7,6,5 -R,2,2,3,3,2,7,8,4,5,7,5,7,2,7,5,8 -C,7,13,5,7,4,7,7,4,3,9,8,11,4,9,9,11 -O,5,5,7,8,3,7,8,9,8,8,7,6,3,8,4,8 -S,3,4,5,3,2,9,7,3,7,10,4,7,1,9,5,10 -Q,4,8,5,10,6,8,5,7,4,9,5,8,3,8,4,7 -P,6,6,8,8,9,6,7,5,3,8,7,6,7,13,6,9 -G,2,3,3,4,2,7,8,8,7,5,7,9,2,7,5,11 -S,6,9,5,5,2,10,2,2,4,10,2,9,2,7,3,10 -O,8,15,6,8,4,5,7,6,3,10,7,9,5,9,5,8 -B,3,1,4,3,3,8,8,5,6,7,5,5,2,8,6,8 -H,6,9,9,6,5,8,7,3,6,10,5,8,3,8,3,7 -D,5,10,6,8,6,5,7,9,7,7,6,6,2,8,3,8 -B,1,0,1,1,1,7,7,6,4,6,6,7,1,8,6,9 -Z,5,9,6,7,3,7,7,4,15,9,6,8,0,8,8,8 -S,7,15,6,8,3,9,5,4,4,13,6,9,2,9,3,8 -Z,5,5,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -R,8,10,8,5,5,8,9,3,6,9,2,6,7,4,6,6 -N,2,0,2,1,1,7,7,12,1,5,6,8,5,8,0,8 -G,5,10,6,8,3,7,6,8,8,6,6,9,2,7,6,10 -D,8,13,8,7,4,11,3,5,5,13,2,11,5,7,4,9 -H,5,6,7,4,4,5,8,4,6,10,8,9,3,8,3,7 -H,3,8,4,6,3,8,7,13,1,7,7,8,3,8,0,8 -S,9,15,7,8,4,7,5,5,6,8,2,8,4,6,6,8 -Z,3,7,4,5,4,9,9,5,3,7,5,7,3,8,9,4 -Q,4,6,5,8,4,7,8,5,2,8,9,10,3,9,6,8 -X,3,8,4,6,3,7,7,4,4,7,6,8,3,8,4,8 -I,1,8,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -W,3,9,5,6,3,4,8,5,1,7,8,8,8,10,0,8 -I,2,7,4,5,4,10,7,2,4,8,5,5,3,9,5,7 -J,2,7,3,5,1,12,2,9,4,13,5,13,1,6,0,8 -S,7,10,9,8,12,8,6,5,4,8,6,8,7,8,15,10 -F,3,6,3,4,1,2,13,5,3,11,9,6,0,8,3,6 -Q,5,6,6,8,6,7,10,4,2,7,9,11,3,9,5,8 -Y,1,3,3,1,1,7,11,1,6,7,11,8,1,11,1,8 -K,1,0,1,0,0,4,6,5,2,7,6,11,2,8,2,10 -O,3,9,4,7,4,7,6,8,4,7,5,11,3,8,3,9 -H,4,4,4,6,2,7,10,15,2,7,3,8,3,8,0,8 -B,1,0,2,1,1,7,7,7,4,7,6,7,1,8,6,8 -Q,3,7,5,5,4,7,4,7,4,7,5,10,2,8,3,9 -Z,5,10,6,8,6,9,6,5,9,8,5,7,1,7,7,8 -P,8,12,8,6,5,9,8,4,5,13,4,4,4,10,6,8 -W,5,9,8,7,7,6,11,2,2,7,8,8,8,11,1,8 -J,1,4,3,3,1,9,6,2,6,14,4,8,0,7,0,8 -V,3,3,4,2,1,4,13,3,2,10,11,7,2,11,1,8 -T,2,3,3,2,1,5,12,2,7,11,9,4,1,10,2,5 -L,7,13,6,7,3,8,3,3,5,11,4,13,2,7,6,8 -F,4,8,6,6,3,7,10,4,6,13,7,5,2,9,2,7 -O,5,7,6,5,4,7,10,8,5,5,8,11,5,9,4,7 -N,5,8,7,6,4,7,8,6,5,7,6,5,7,11,3,5 -V,4,10,6,8,3,6,11,3,4,7,12,9,2,10,1,9 -K,5,9,7,7,7,6,9,5,4,7,4,8,4,7,7,9 -X,4,8,6,6,5,7,6,2,6,7,7,9,5,9,7,7 -X,2,6,4,4,2,7,8,3,8,6,6,6,3,8,7,7 -Y,5,9,5,6,3,3,10,2,7,11,11,6,0,10,2,4 -A,7,12,6,7,3,12,2,3,1,10,4,11,4,4,4,9 -K,4,7,4,5,2,4,6,8,2,7,7,11,3,8,3,11 -P,4,5,4,8,2,3,13,8,2,11,7,3,1,10,4,8 -Z,5,9,5,4,3,6,7,2,8,11,8,9,3,8,5,5 -J,2,4,3,6,1,14,2,7,5,14,2,11,0,7,0,8 -X,3,7,4,5,2,7,7,4,4,7,6,8,3,8,4,8 -W,7,12,7,7,4,1,9,2,3,9,11,9,8,10,1,6 -S,4,9,4,6,4,8,8,5,8,5,5,6,0,7,9,7 -W,6,6,7,4,4,6,11,4,2,8,7,6,9,12,2,5 -Q,4,6,5,8,5,7,10,4,3,6,9,11,3,8,6,8 -P,4,7,5,5,3,6,11,4,4,13,6,3,1,10,3,9 -S,1,0,1,1,0,8,7,4,6,5,6,8,0,8,7,8 -X,4,6,7,4,3,5,8,2,8,11,10,9,3,8,3,6 -C,4,8,5,6,3,8,7,7,6,6,7,9,4,8,3,9 -W,10,11,10,8,6,2,11,2,3,10,11,9,8,10,2,6 -W,5,11,8,8,4,10,8,5,2,7,9,8,9,9,0,8 -D,5,3,6,4,4,7,7,7,7,7,6,4,3,8,3,7 -X,9,15,10,9,6,8,7,2,8,11,5,7,5,9,4,7 -D,4,9,6,6,8,9,8,4,5,7,7,6,4,9,8,5 -D,6,11,6,6,3,11,3,4,5,12,2,8,5,7,3,10 -U,3,3,4,2,2,7,8,5,6,6,9,9,5,10,0,7 -A,4,7,5,5,3,7,5,3,0,7,1,8,2,7,1,8 -O,1,3,2,1,1,8,7,6,4,9,5,8,2,8,2,8 -Q,3,7,4,7,3,7,6,8,5,5,6,8,3,8,5,9 -T,4,5,4,4,2,6,11,2,7,11,9,4,1,11,2,4 -A,3,2,5,3,2,8,2,2,2,6,1,8,2,6,2,7 -T,6,8,6,6,4,6,11,4,5,11,9,5,3,12,2,4 -Z,7,8,5,11,5,7,7,5,3,11,7,8,3,9,11,6 -C,2,3,3,4,1,6,7,7,9,9,6,13,1,9,4,9 -Y,7,8,7,6,4,3,11,2,7,12,11,6,0,10,2,5 -H,5,10,5,7,3,7,6,15,1,7,7,8,3,8,0,8 -T,2,7,3,4,1,7,14,0,6,7,11,8,0,8,0,8 -T,1,0,2,0,0,8,14,2,4,6,10,8,0,8,0,8 -A,3,5,4,4,3,8,8,2,4,7,8,8,4,9,3,6 -H,1,1,2,1,1,7,7,11,1,7,6,8,3,8,0,8 -F,7,11,6,6,3,6,10,2,6,11,7,5,2,9,6,5 -O,3,5,4,4,3,8,7,7,4,9,5,8,2,8,2,8 -Z,6,7,5,11,4,7,8,4,2,11,7,7,3,9,11,6 -G,6,9,8,6,7,7,8,5,3,6,6,9,5,7,7,7 -O,7,9,5,5,3,6,8,5,4,8,4,6,5,9,5,7 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -E,7,10,9,8,9,8,7,6,2,7,6,10,5,8,8,10 -Z,5,9,6,5,3,10,3,4,6,12,4,10,3,8,7,10 -P,2,4,4,2,2,7,10,4,3,12,5,3,1,10,2,8 -H,7,11,10,8,8,5,9,3,6,10,9,8,6,11,5,6 -V,4,9,6,7,1,8,8,5,3,6,14,8,3,9,0,8 -J,4,7,5,5,3,7,5,5,4,14,8,13,1,6,1,6 -D,5,10,6,7,5,5,7,9,7,6,5,4,3,8,5,10 -G,2,1,2,1,1,8,6,6,6,6,5,9,1,7,5,10 -N,3,4,5,3,2,8,8,3,5,10,4,6,5,9,1,6 -A,4,9,6,6,5,6,5,3,3,4,1,6,4,5,4,6 -Y,5,6,6,4,2,4,10,2,7,10,11,5,2,11,3,4 -M,8,9,11,8,13,8,7,5,5,7,6,7,13,9,8,2 -U,4,5,5,4,2,5,8,5,8,10,8,9,3,9,2,6 -T,3,11,5,8,1,9,15,0,6,6,11,8,0,8,0,8 -N,6,11,7,8,6,8,7,13,1,6,6,7,7,7,1,10 -A,3,10,6,7,2,7,3,3,3,7,1,8,3,6,3,7 -N,4,9,5,6,4,7,8,6,5,7,6,6,6,9,1,6 -Y,2,3,3,2,1,8,10,1,6,6,11,8,1,11,2,7 -L,6,12,5,7,4,5,6,3,6,12,8,12,3,7,7,8 -T,5,9,6,6,5,6,7,7,7,8,9,8,3,9,6,9 -N,4,7,5,5,4,7,6,7,5,6,4,7,3,7,3,7 -O,5,10,6,8,5,7,8,8,6,7,8,8,2,8,3,8 -W,6,7,6,5,5,3,11,2,2,10,10,8,6,11,2,7 -B,3,6,4,4,4,7,7,5,4,6,5,7,3,8,5,7 -R,5,5,5,8,3,5,10,10,4,7,5,8,3,7,6,11 -J,2,9,3,7,1,14,2,7,5,14,2,10,0,7,0,8 -S,6,8,7,6,4,7,8,3,8,10,5,6,2,6,5,8 -F,2,1,3,2,2,5,10,4,5,11,9,5,1,10,3,6 -I,4,10,5,7,3,7,7,0,7,13,6,8,0,8,1,8 -L,4,9,6,6,7,6,7,3,6,7,7,11,6,11,6,5 -S,6,11,6,6,3,9,6,4,3,13,7,9,3,10,3,8 -L,3,8,5,6,6,6,7,3,6,8,7,11,6,10,5,6 -Y,8,13,7,7,4,7,7,5,3,10,8,5,4,9,5,4 -E,4,8,6,6,5,7,8,6,9,6,4,9,3,8,6,8 -D,4,8,6,6,5,7,7,7,6,6,6,4,3,8,3,7 -A,2,4,4,3,2,11,2,3,2,11,2,10,2,6,2,9 -T,5,7,5,5,3,7,11,4,7,11,8,4,3,12,3,5 -Y,4,9,7,7,3,7,11,1,8,6,12,8,1,11,2,8 -C,6,10,5,5,3,7,8,4,3,9,8,10,4,9,8,10 -V,6,7,5,5,2,4,12,4,4,11,11,7,3,10,1,8 -D,5,5,6,8,3,5,7,10,10,7,6,6,3,8,4,8 -W,5,5,7,5,7,7,8,5,5,7,5,8,9,8,8,6 -C,4,7,5,5,5,5,7,3,5,8,6,11,6,9,4,9 -U,5,8,7,6,6,8,8,8,5,6,7,9,3,8,4,6 -Q,5,10,6,9,3,8,7,8,6,6,7,8,3,8,5,9 -V,3,6,5,4,2,7,12,2,3,6,11,9,2,10,1,8 -T,2,9,4,6,1,9,14,0,6,5,11,8,0,8,0,8 -Z,2,4,3,3,2,8,7,5,9,6,6,7,1,8,7,8 -Z,10,15,10,9,7,8,6,3,9,12,6,9,4,5,8,7 -T,7,9,7,7,4,4,13,5,6,12,9,3,2,12,2,4 -N,11,15,14,8,5,10,5,4,4,14,1,7,6,6,0,7 -S,4,8,5,6,3,6,8,4,7,10,8,7,2,8,5,5 -N,2,4,2,2,2,7,8,5,4,7,6,6,5,9,1,5 -F,3,7,4,5,3,3,11,3,5,11,10,6,1,10,2,6 -I,1,3,2,2,0,7,8,1,6,13,6,8,0,8,0,8 -X,2,3,3,1,1,8,7,3,8,6,6,8,2,8,5,8 -Q,3,5,3,6,3,9,6,6,3,8,6,11,3,9,5,8 -E,4,9,6,7,5,9,7,2,7,11,5,8,3,7,6,10 -T,6,7,6,5,4,6,10,1,10,11,9,5,0,10,3,4 -U,4,8,5,6,2,7,3,15,6,7,13,8,3,9,0,8 -V,4,6,5,4,2,7,11,3,3,8,11,8,3,10,3,8 -A,3,7,5,4,2,7,4,3,1,6,1,8,3,6,2,7 -V,3,6,3,4,2,4,11,1,3,9,10,7,2,11,0,8 -Z,4,8,6,6,5,9,10,6,5,7,5,8,3,9,10,7 -Q,4,8,5,6,5,8,5,7,3,6,7,8,3,7,6,9 -U,1,0,2,1,0,7,5,10,4,7,12,8,3,10,0,8 -A,2,3,3,1,1,11,2,3,1,9,2,9,1,6,2,8 -G,4,8,5,6,4,5,8,5,5,8,8,9,2,7,4,10 -D,6,10,6,5,4,7,7,4,7,10,5,6,5,9,7,5 -Y,6,9,5,4,3,6,8,4,5,10,7,5,3,9,4,4 -O,4,9,6,6,7,8,7,5,1,7,6,8,8,8,5,10 -M,4,4,7,3,3,7,7,3,5,9,7,8,9,7,2,7 -K,3,5,4,4,3,5,6,4,7,7,7,11,3,9,5,10 -V,3,7,4,5,3,7,11,1,2,6,10,8,3,12,1,8 -R,2,4,4,3,2,8,7,4,5,8,5,7,2,7,4,11 -R,4,9,6,6,5,9,8,3,6,9,3,8,3,6,4,11 -L,2,4,2,3,1,5,4,5,7,2,2,4,1,7,1,6 -A,3,4,5,3,2,8,2,2,2,7,2,8,2,6,3,6 -Q,5,5,7,4,5,7,5,5,5,7,5,9,5,4,7,7 -P,4,8,5,6,4,3,13,6,2,11,8,4,0,9,3,8 -H,7,11,10,8,9,8,7,3,6,10,4,7,4,9,4,9 -I,2,9,2,7,2,8,7,0,9,7,6,7,0,8,3,7 -J,5,10,6,8,4,8,7,3,6,14,5,9,1,6,1,7 -F,8,14,7,8,3,5,10,3,5,12,6,5,2,8,6,4 -K,1,0,1,0,0,4,6,6,2,7,6,11,3,7,2,10 -Q,5,9,6,8,3,8,7,8,6,6,7,9,3,8,5,9 -C,4,9,5,7,4,6,7,6,8,5,8,11,1,7,4,9 -T,3,4,4,2,2,5,12,3,6,11,9,4,2,11,2,5 -B,6,9,8,7,8,8,7,5,5,9,5,6,4,8,7,11 -J,3,9,4,7,1,12,2,9,4,14,5,13,1,6,0,8 -K,3,5,5,3,3,6,7,1,6,10,7,10,3,8,3,8 -X,3,4,4,3,2,8,7,3,9,6,6,8,2,8,6,8 -N,3,3,4,5,2,7,7,14,2,5,6,8,5,8,0,8 -W,3,1,4,2,2,5,11,3,2,8,9,9,6,11,0,8 -H,3,4,4,2,3,8,7,6,6,7,6,8,6,8,4,7 -Z,2,4,4,3,2,7,8,2,9,11,7,7,1,8,5,6 -W,7,9,7,4,4,5,8,2,4,8,10,8,10,10,2,6 -I,8,14,7,8,4,7,9,3,7,14,5,4,3,7,6,8 -W,5,9,7,7,6,5,11,2,2,7,8,9,7,12,1,8 -Y,5,9,6,7,2,9,11,2,2,6,12,8,1,11,0,8 -N,3,7,5,5,3,7,8,6,4,7,6,7,5,9,1,6 -S,3,5,5,4,2,8,7,2,8,11,6,7,1,9,4,8 -W,4,9,6,7,6,7,5,6,2,7,7,8,6,8,4,8 -Y,3,4,4,3,2,4,10,2,7,10,10,6,2,11,4,3 -S,5,9,5,4,2,8,7,4,3,13,7,7,3,10,3,7 -E,5,6,5,8,3,3,7,6,11,7,6,15,0,8,7,7 -X,4,10,5,7,2,7,7,5,4,7,6,8,3,8,4,8 -V,6,7,6,5,3,4,11,1,3,8,10,8,5,11,2,7 -M,3,7,5,5,5,7,9,6,3,7,7,9,5,9,5,10 -L,2,0,2,1,0,2,0,6,4,0,3,4,0,8,0,8 -J,2,4,3,7,1,14,2,6,5,14,1,10,0,7,0,8 -H,5,5,6,6,3,7,6,15,0,7,8,8,3,8,0,8 -P,5,8,7,6,5,9,7,2,5,13,4,6,2,9,3,9 -S,1,3,3,2,1,8,7,3,7,10,7,8,1,9,5,8 -C,5,9,5,7,3,3,8,5,8,11,10,13,1,9,3,7 -T,2,1,2,2,1,7,11,1,6,7,10,8,1,10,1,8 -D,4,7,4,5,4,5,7,8,7,6,5,6,2,8,3,8 -Q,5,11,4,6,3,11,4,3,6,9,4,8,3,9,6,13 -D,2,5,4,4,3,9,7,5,6,10,4,6,2,8,3,8 -A,1,1,2,1,0,8,4,2,0,7,1,8,2,7,1,8 -V,6,9,6,4,2,6,9,4,2,9,7,5,5,12,2,7 -R,4,4,4,6,3,6,9,9,4,7,5,8,3,8,5,10 -O,3,3,4,5,2,7,7,9,6,7,7,7,3,8,4,8 -S,3,10,4,7,4,8,7,7,5,7,7,8,2,8,8,8 -E,3,5,4,5,4,5,9,4,4,8,7,8,4,11,7,7 -P,5,8,7,6,4,9,8,3,7,13,4,5,4,10,5,10 -V,9,12,7,7,3,7,11,6,4,10,10,4,5,12,3,9 -N,5,11,5,8,5,7,7,13,1,6,6,8,6,9,1,6 -G,7,11,7,8,6,6,6,6,6,10,7,12,2,9,4,10 -H,3,8,4,5,2,7,9,15,2,7,3,8,3,8,0,8 -G,2,3,2,2,1,7,6,6,5,7,6,9,2,9,4,9 -Y,3,9,5,7,2,7,10,1,3,7,12,8,1,11,0,8 -K,6,8,9,7,7,10,4,2,3,10,3,8,6,6,7,13 -Q,5,9,5,11,7,8,7,7,3,8,7,9,3,8,6,8 -O,6,12,4,6,3,6,7,7,3,10,7,9,5,10,5,7 -A,6,8,8,7,7,6,7,3,5,7,8,10,8,11,4,7 -L,5,11,7,8,5,7,4,1,8,8,2,10,0,6,3,8 -E,2,3,4,2,2,7,8,2,7,11,7,8,2,8,3,8 -F,5,11,5,8,2,1,15,5,3,12,8,3,0,8,3,6 -W,3,2,5,3,3,8,11,3,2,6,9,8,7,11,0,8 -Z,2,7,3,5,1,7,7,3,13,9,6,8,0,8,8,8 -E,4,11,6,8,6,8,7,5,9,6,5,9,3,8,6,9 -E,7,10,9,8,7,7,7,2,8,11,7,9,3,8,5,8 -R,3,5,5,4,4,8,7,4,5,9,4,7,3,7,4,10 -A,3,5,5,8,2,8,5,3,1,7,0,8,2,7,2,8 -W,4,2,6,3,3,7,11,3,2,7,9,8,8,10,1,8 -V,5,6,5,4,3,2,12,3,3,10,11,8,2,11,1,7 -S,5,10,6,8,3,10,6,4,8,11,3,8,2,8,5,11 -U,6,10,8,8,5,5,8,6,8,7,10,10,3,9,1,8 -B,4,9,4,7,5,6,8,8,6,7,5,7,2,8,7,9 -J,1,2,2,3,1,11,6,2,5,11,3,8,0,7,1,7 -X,1,1,2,1,0,8,7,3,4,7,6,8,2,8,4,8 -W,8,11,8,6,5,8,8,4,4,6,9,6,10,10,3,6 -X,4,8,5,6,3,7,7,4,4,7,6,7,3,8,4,8 -B,5,9,5,5,5,8,8,3,5,9,5,6,6,4,6,8 -L,4,9,5,7,2,2,4,2,9,2,0,8,0,7,1,5 -O,3,4,4,3,2,7,7,7,4,9,6,8,3,8,3,8 -W,5,10,8,8,8,8,11,2,3,6,8,8,8,10,1,8 -E,5,5,5,8,3,3,8,6,12,7,6,15,0,8,7,6 -R,1,1,2,1,1,6,9,8,4,7,5,8,2,7,4,11 -M,5,10,5,8,4,8,7,12,2,6,9,8,8,6,0,8 -D,5,10,7,7,7,9,7,4,6,9,4,6,3,8,3,8 -U,7,9,8,7,5,6,6,6,9,8,6,8,4,8,4,3 -F,8,12,7,6,3,5,10,2,5,12,6,4,2,9,6,4 -H,3,6,4,4,3,7,8,12,1,7,4,8,3,8,0,8 -C,6,9,6,7,3,5,8,7,8,13,9,9,2,11,3,6 -C,2,1,3,2,1,6,8,7,7,9,7,12,1,10,3,9 -O,2,1,2,1,1,8,7,6,5,7,6,8,2,8,3,8 -A,4,11,6,8,4,12,2,3,3,11,1,9,3,7,3,9 -A,6,11,8,8,8,8,7,6,5,6,6,9,6,8,7,3 -W,8,9,8,7,6,5,10,3,3,9,7,7,10,12,3,4 -N,4,4,5,6,2,7,7,14,2,4,6,8,6,8,0,8 -F,3,9,5,6,4,4,10,4,5,11,10,6,2,10,2,6 -J,2,8,3,6,1,9,5,4,7,12,4,11,1,6,1,7 -G,4,8,5,6,3,6,6,7,7,10,7,11,2,11,4,9 -H,3,7,4,5,4,6,6,7,6,6,7,9,3,9,3,8 -S,4,7,5,5,3,8,7,3,6,10,6,8,2,8,4,8 -U,2,0,2,0,0,7,5,10,4,7,13,8,3,10,0,8 -O,5,10,6,8,4,7,7,8,5,10,6,8,3,8,3,8 -N,4,5,5,4,3,7,8,5,5,7,7,6,6,9,2,5 -H,5,4,5,6,2,7,7,15,0,7,6,8,3,8,0,8 -V,3,6,4,4,2,9,11,3,3,4,11,9,2,10,1,8 -T,7,10,6,5,2,4,12,3,7,12,8,4,2,8,3,3 -U,6,10,8,8,11,7,6,4,5,7,7,8,11,9,7,10 -B,2,5,4,3,3,9,7,2,5,10,5,6,2,8,4,9 -R,4,6,6,4,4,9,8,4,6,9,3,7,3,6,4,11 -S,4,10,5,8,5,7,7,7,5,7,7,9,2,8,8,7 -F,3,4,5,3,2,4,12,4,4,13,8,4,1,10,1,7 -M,6,10,7,5,4,13,2,5,2,12,1,9,6,3,1,8 -H,3,3,4,4,2,7,5,14,1,7,9,8,3,9,0,8 -B,2,0,2,1,1,7,8,7,5,7,6,7,1,8,7,8 -K,3,5,5,3,3,5,7,2,7,10,9,11,3,8,3,7 -E,6,12,4,6,2,7,9,6,7,9,6,10,1,9,8,9 -J,4,11,5,8,3,8,9,0,7,14,5,6,1,9,1,8 -A,3,8,5,6,4,11,3,1,2,8,3,9,3,5,2,8 -R,4,4,5,6,3,6,10,9,3,7,5,8,3,8,6,11 -S,5,9,5,5,2,5,9,2,5,13,8,8,2,8,2,6 -K,3,6,4,4,1,4,7,8,1,7,6,11,3,8,2,11 -W,4,4,5,3,3,4,10,2,2,9,9,7,6,11,1,7 -J,6,10,8,8,4,5,9,3,6,15,7,9,2,7,2,6 -U,3,7,5,5,3,8,8,5,7,4,8,8,3,9,0,7 -Z,3,8,4,6,2,7,7,4,13,10,6,8,0,8,8,8 -F,5,9,4,4,2,5,11,3,4,12,7,4,1,8,5,4 -L,3,4,3,3,2,4,3,4,6,2,2,6,0,7,0,6 -L,3,10,4,8,2,0,2,3,6,1,0,8,0,8,0,8 -D,4,6,5,4,4,7,7,6,5,6,5,6,3,8,3,7 -U,6,10,6,8,3,8,4,15,6,7,15,8,3,9,0,8 -S,6,9,5,4,2,11,2,3,4,11,2,10,3,7,3,11 -U,3,2,4,4,2,6,8,5,6,6,8,9,6,10,1,7 -L,3,8,3,6,1,0,1,5,6,0,0,6,0,8,0,8 -K,7,11,6,6,3,7,8,3,6,9,7,8,6,9,3,7 -Q,2,2,3,3,2,7,9,4,2,7,8,10,2,9,4,8 -T,2,7,3,4,1,7,14,0,6,7,11,8,0,8,0,8 -U,2,4,3,3,1,4,8,5,6,11,9,9,3,9,1,7 -H,3,3,5,2,2,7,8,3,6,10,6,7,3,8,3,8 -Y,3,5,4,3,2,4,10,1,7,10,10,6,1,11,3,4 -I,2,5,1,4,1,7,7,1,7,7,6,8,0,8,3,8 -V,3,5,5,8,2,7,8,4,3,7,14,8,3,9,0,8 -I,2,9,3,7,2,7,7,0,8,13,6,8,0,8,1,8 -E,3,3,3,4,2,3,8,6,9,7,6,14,0,8,7,8 -Q,1,2,2,3,1,8,7,5,2,8,7,9,2,9,3,9 -K,5,8,7,6,5,7,7,1,6,10,5,9,3,8,3,9 -C,5,10,5,8,3,4,10,7,8,12,10,9,2,9,2,6 -W,2,1,3,1,1,7,8,4,0,7,8,8,7,9,0,8 -Z,2,2,3,3,2,7,8,5,9,6,7,9,1,9,7,8 -M,6,6,9,6,9,9,8,5,4,7,6,7,11,9,6,3 -N,4,9,5,6,2,7,7,15,2,4,6,8,6,8,0,8 -G,2,5,3,3,2,7,7,7,6,6,6,10,2,8,4,9 -F,5,8,7,6,4,6,10,2,5,13,7,5,2,10,2,7 -Y,4,5,5,7,6,9,9,6,3,6,8,8,5,10,6,4 -K,4,5,7,4,3,6,6,2,7,10,8,11,4,7,4,7 -E,2,3,3,2,2,7,7,2,7,11,7,8,2,9,4,8 -F,2,4,3,3,2,5,10,4,6,10,9,6,1,10,3,6 -G,2,3,2,2,1,7,6,6,5,6,6,9,2,9,4,9 -P,7,10,10,8,6,8,10,7,5,9,4,3,3,10,5,9 -H,3,3,3,5,2,7,9,14,3,7,3,8,3,8,0,8 -Z,3,7,4,5,3,6,8,5,9,7,7,10,1,9,7,8 -O,3,9,4,6,3,7,7,8,6,7,8,8,2,8,3,8 -B,4,8,5,6,5,7,8,5,4,7,5,7,3,8,6,8 -M,3,4,5,3,3,10,6,3,4,9,4,7,6,5,1,8 -L,3,10,4,7,1,0,1,5,6,0,0,7,0,8,0,8 -W,6,7,6,5,4,7,11,4,2,8,7,6,7,12,3,6 -M,12,12,12,6,6,8,10,6,4,5,5,10,11,13,2,7 -L,5,9,7,7,5,5,5,1,8,7,2,11,2,9,3,7 -E,4,10,5,8,3,3,9,6,12,7,5,14,0,8,8,7 -U,4,7,5,5,2,8,4,14,5,6,14,8,3,9,0,8 -X,7,9,6,4,3,8,7,2,8,9,7,8,4,12,3,7 -Q,1,2,2,2,1,8,8,5,2,8,7,9,2,9,3,9 -M,5,10,8,7,7,9,6,2,4,8,5,7,7,6,2,8 -B,4,9,6,6,8,9,7,4,3,6,7,7,6,10,7,6 -U,4,10,6,8,10,7,7,4,4,7,6,8,11,7,8,8 -P,10,13,8,7,4,8,8,6,4,13,3,5,5,9,4,8 -V,6,10,6,8,3,2,11,4,4,11,12,8,2,10,1,8 -X,3,4,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -C,4,11,5,8,3,6,8,9,8,10,8,11,2,12,4,9 -B,5,7,8,6,9,9,6,4,4,7,6,8,7,9,8,7 -N,5,9,8,7,8,7,8,4,5,7,6,7,6,8,7,5 -Y,2,3,4,4,1,9,10,2,2,6,12,8,2,11,0,8 -X,1,3,2,1,1,8,7,4,8,7,6,8,2,8,5,8 -X,4,8,6,6,6,7,7,3,5,6,5,10,2,7,8,8 -G,7,11,6,6,3,9,4,4,3,8,3,5,4,7,4,9 -C,4,7,5,6,5,6,7,4,4,7,6,10,4,10,7,11 -C,2,5,3,3,2,6,8,7,8,8,7,13,1,9,4,10 -V,3,10,5,7,2,7,8,4,3,7,14,8,3,9,0,8 -Q,3,4,4,6,2,7,7,7,6,6,7,7,3,7,6,9 -D,3,2,4,4,3,7,7,7,6,6,6,5,2,8,3,7 -I,7,14,6,8,4,8,7,2,5,11,6,6,2,9,6,11 -U,4,4,4,6,2,7,5,14,5,7,13,8,3,9,0,8 -B,4,6,4,8,4,6,7,10,7,7,6,7,3,8,9,10 -U,7,11,8,8,5,3,8,5,7,10,9,9,3,9,2,6 -E,5,8,7,6,5,7,7,2,7,11,6,9,3,8,4,9 -C,4,7,5,5,3,6,7,6,8,7,6,11,1,9,4,9 -V,6,9,4,5,3,8,9,6,3,7,9,6,6,12,3,8 -A,2,6,3,4,2,11,3,3,3,11,2,10,2,6,3,8 -W,4,10,7,7,5,5,10,2,3,7,9,9,8,11,1,8 -J,3,10,4,7,2,13,3,7,4,13,4,11,1,6,0,8 -N,11,13,9,7,4,5,9,5,6,3,3,12,6,11,2,7 -S,2,4,4,2,2,8,8,2,7,11,6,7,1,8,5,8 -O,3,7,4,5,3,8,8,8,6,7,5,8,2,8,3,7 -F,4,7,5,5,2,5,12,4,6,12,9,3,1,10,3,4 -M,5,3,5,5,3,7,7,12,1,7,9,8,8,6,0,8 -D,4,8,4,6,3,6,7,10,10,7,6,6,3,8,4,8 -X,6,11,8,8,8,7,6,3,5,6,6,9,4,7,11,10 -P,7,10,10,8,5,6,13,7,2,11,5,2,1,11,4,8 -W,7,7,7,5,6,4,10,2,3,10,9,8,7,11,2,6 -J,2,6,2,4,1,13,2,8,4,13,4,12,1,6,0,8 -S,4,6,5,4,5,9,7,4,3,9,5,8,4,8,10,10 -A,2,7,4,5,3,10,3,1,2,7,3,9,1,5,1,7 -M,5,8,8,6,5,3,7,4,5,11,12,11,5,8,2,7 -H,1,1,2,1,1,7,8,11,1,7,5,8,3,8,0,8 -T,2,7,4,4,1,9,15,1,5,6,11,9,0,8,0,8 -N,2,2,3,3,2,7,8,5,4,7,6,7,4,8,1,7 -L,3,8,4,6,1,0,1,6,6,0,0,6,0,8,0,8 -G,5,10,7,8,6,8,7,7,6,6,7,7,2,7,8,13 -L,2,3,3,2,1,7,4,1,8,8,2,10,0,7,2,8 -D,5,10,7,7,5,10,6,4,7,11,3,6,4,6,4,8 -L,3,2,3,3,2,4,4,3,8,2,1,7,0,7,1,6 -U,5,7,6,5,3,4,8,5,7,9,8,9,3,9,2,5 -T,2,6,3,4,2,7,13,0,5,7,10,8,0,8,0,8 -P,4,10,5,8,4,5,11,3,7,11,9,4,0,10,4,7 -Z,5,9,7,6,4,6,9,3,10,11,9,5,2,8,6,5 -X,4,7,6,5,3,11,6,2,8,10,0,6,3,7,3,10 -L,2,5,4,3,2,6,4,1,8,8,2,10,0,7,2,8 -E,3,7,4,5,3,7,7,6,10,6,5,9,2,8,6,8 -A,3,8,5,6,3,12,2,3,2,10,2,9,2,6,2,8 -W,5,11,7,8,9,8,7,6,3,5,8,8,9,8,6,2 -P,5,9,7,7,4,9,7,3,6,13,4,5,5,10,5,10 -W,3,3,5,5,3,5,8,5,1,7,8,8,8,10,0,8 -W,8,8,11,7,11,6,8,6,6,6,6,7,10,9,9,9 -J,2,7,2,5,1,11,7,1,7,11,3,6,0,7,1,7 -F,4,8,6,6,3,4,12,4,5,13,8,4,2,10,2,6 -Y,6,11,6,8,3,3,10,2,7,11,12,6,2,11,3,5 -F,4,8,5,6,5,7,9,6,3,8,6,8,3,10,7,11 -T,3,5,4,4,2,5,12,3,7,11,9,4,1,11,2,5 -N,3,7,4,5,2,7,7,14,2,5,6,8,5,8,0,8 -I,3,10,4,8,3,7,7,0,7,13,6,8,0,8,1,8 -M,6,7,9,5,6,5,7,3,4,10,10,10,10,6,4,8 -L,3,8,5,6,3,3,5,1,8,3,1,9,0,7,1,6 -Q,4,8,6,7,3,8,7,7,6,6,7,8,3,8,5,9 -V,4,11,6,9,4,7,11,2,4,6,11,9,3,9,2,8 -M,6,8,8,7,10,8,7,4,4,7,6,7,11,8,5,5 -Y,3,4,4,6,1,6,12,2,3,9,12,8,0,10,0,8 -Q,4,9,6,8,3,8,5,9,7,6,4,8,3,8,4,8 -A,3,3,5,4,2,6,3,3,2,6,2,8,3,6,3,7 -F,7,12,6,6,4,6,10,3,4,10,7,5,4,9,8,6 -R,4,8,6,6,4,10,8,3,7,10,1,7,3,6,4,10 -X,6,9,9,7,5,7,7,0,8,10,6,8,3,8,3,7 -X,4,6,7,4,3,9,7,1,8,10,4,7,3,8,3,8 -B,2,3,3,2,2,10,6,2,6,10,4,7,2,8,4,10 -N,3,6,3,4,2,7,7,13,1,5,6,8,5,8,0,8 -F,2,3,2,2,1,5,10,3,5,10,9,5,1,10,3,6 -I,5,12,5,7,3,9,8,3,6,13,4,5,2,8,5,10 -Y,5,6,5,4,3,4,9,1,7,10,10,6,1,10,2,4 -A,8,15,6,8,4,9,3,3,2,8,4,11,6,4,5,8 -Z,4,7,6,5,3,7,7,2,9,12,6,9,1,9,6,8 -F,6,10,5,5,4,10,8,4,6,11,3,4,2,9,6,9 -G,2,4,3,2,1,7,8,5,6,9,7,10,2,9,4,10 -L,3,9,5,7,3,8,4,2,7,8,2,8,1,6,2,9 -T,5,5,5,4,2,5,11,3,7,12,9,4,1,11,2,4 -J,6,11,8,8,6,7,7,7,6,8,7,8,3,7,4,6 -F,3,5,5,4,2,4,11,4,6,13,9,6,1,9,2,6 -S,3,9,4,7,2,7,6,6,9,4,6,10,0,9,9,8 -V,3,2,5,3,2,7,12,2,3,7,11,8,3,10,1,8 -E,6,13,5,7,4,7,8,4,4,11,5,9,3,9,8,11 -P,4,11,5,8,3,5,10,11,5,9,6,5,2,10,4,8 -R,5,11,7,8,5,8,9,5,6,8,5,8,3,7,6,11 -K,3,3,3,4,1,3,7,8,3,7,6,11,4,8,2,11 -A,4,7,5,5,3,8,2,2,2,7,2,8,2,7,3,6 -L,1,0,2,1,0,2,1,6,4,0,2,5,0,8,0,8 -R,2,1,3,2,2,6,7,4,5,6,5,7,5,7,3,8 -P,6,9,8,6,7,6,8,7,4,8,7,9,2,9,7,9 -N,4,8,5,6,2,7,7,15,2,4,6,8,6,8,0,8 -E,5,9,4,4,2,8,7,3,4,10,5,9,3,9,8,11 -K,5,7,8,5,5,3,8,2,7,10,11,11,3,7,3,5 -E,3,7,5,5,4,7,8,5,8,6,5,9,3,8,6,9 -I,4,7,5,8,5,8,9,4,4,7,7,9,4,7,7,6 -D,5,11,7,8,7,7,7,5,7,7,7,5,6,8,3,7 -V,3,9,5,6,3,7,9,3,1,7,12,8,3,9,1,8 -X,2,1,2,1,0,8,7,4,4,7,6,8,3,8,4,8 -X,4,11,5,8,4,7,7,4,4,7,6,7,2,8,4,8 -W,3,3,4,2,2,4,11,3,2,9,9,7,6,11,1,7 -O,5,9,6,7,3,9,9,9,9,5,8,10,3,8,4,8 -B,5,8,7,6,6,7,9,5,6,10,6,5,3,7,7,8 -T,8,12,7,7,2,5,11,3,7,13,7,4,2,8,4,4 -I,3,11,3,8,4,8,7,0,7,7,6,8,0,8,3,8 -H,3,4,5,2,2,7,7,3,6,10,6,8,3,8,3,8 -B,4,8,6,6,5,8,9,4,6,10,5,5,2,8,6,9 -V,3,3,4,2,1,5,12,2,2,9,11,7,3,12,1,7 -P,4,8,5,6,2,4,13,8,1,11,6,3,1,10,4,8 -S,5,10,6,8,3,9,8,6,9,5,6,5,0,8,9,7 -M,9,9,13,8,14,6,6,5,4,6,5,8,15,11,7,9 -G,1,0,1,1,0,7,7,6,5,6,5,9,1,7,5,10 -P,3,7,5,5,3,6,10,3,6,10,8,4,4,10,4,7 -N,4,7,5,5,4,7,7,7,5,8,6,6,3,7,3,8 -J,2,11,3,8,2,11,6,1,8,11,2,6,0,7,1,7 -D,5,9,5,5,3,5,8,4,6,9,6,6,4,10,6,5 -L,4,11,6,9,3,3,4,2,10,2,0,8,0,7,1,5 -P,8,13,7,7,5,10,7,4,5,12,4,5,4,11,5,8 -M,7,11,11,8,8,4,7,4,5,10,11,11,9,7,4,8 -V,7,9,7,7,3,3,11,4,4,10,12,7,3,10,1,7 -N,6,5,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -S,2,1,3,2,2,8,8,6,5,7,5,7,2,8,8,8 -I,5,6,7,7,6,7,9,4,5,7,7,7,3,8,8,8 -E,6,14,5,8,4,8,8,4,5,11,5,9,3,9,8,11 -F,3,3,3,4,1,1,12,5,4,11,10,7,0,8,3,7 -F,5,10,8,7,6,9,8,2,6,12,4,5,4,8,4,9 -W,8,8,8,6,6,3,11,2,3,10,9,8,7,11,2,6 -K,7,10,6,5,3,9,8,3,6,9,4,6,5,8,4,7 -S,3,7,4,5,5,8,8,5,3,8,5,8,3,8,10,7 -A,2,3,4,2,1,8,2,2,2,7,2,8,2,6,2,7 -Y,4,8,6,6,6,9,4,7,4,7,9,7,3,9,8,4 -Y,3,4,4,2,2,4,11,2,7,11,10,5,1,11,2,5 -H,4,9,5,6,2,7,6,15,1,7,7,8,3,8,0,8 -D,5,11,6,8,7,8,7,5,5,10,5,5,3,8,3,8 -O,6,10,5,5,3,7,5,6,3,10,6,10,5,9,5,8 -M,5,2,6,3,4,7,6,7,5,7,8,10,8,5,2,9 -H,4,9,6,6,8,7,6,5,3,6,6,8,7,7,8,8 -U,2,3,3,2,1,6,9,5,5,7,9,9,3,10,1,8 -W,1,0,1,0,0,8,8,3,0,7,8,8,3,9,0,8 -N,5,5,5,8,3,7,7,15,2,4,6,8,6,8,0,8 -F,5,10,6,7,6,5,10,3,6,10,10,6,2,10,3,6 -R,4,7,4,5,4,6,8,8,4,6,5,7,2,7,5,11 -V,5,9,7,7,3,5,9,4,1,9,13,8,5,10,2,9 -A,3,8,5,6,3,6,5,3,0,6,1,8,2,6,1,7 -A,3,2,5,4,2,8,2,2,2,7,1,8,2,6,2,7 -R,4,8,6,6,5,7,8,5,6,7,5,7,3,7,5,8 -T,2,0,2,0,0,7,15,2,3,7,10,8,0,8,0,8 -F,4,6,4,8,2,1,14,5,3,12,9,5,0,8,3,6 -T,3,4,4,3,2,7,12,3,5,7,11,8,2,11,1,8 -I,4,10,5,8,3,7,7,0,8,14,6,8,0,8,1,8 -N,4,6,4,4,2,7,7,14,2,5,6,8,6,8,0,8 -X,3,7,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -M,3,7,4,5,3,7,7,11,1,7,9,8,8,6,0,8 -E,4,11,4,8,3,3,7,6,11,7,6,15,0,8,7,7 -N,4,7,4,5,2,7,7,14,2,5,6,8,6,8,0,8 -U,6,8,7,6,4,4,8,5,7,9,8,9,3,9,2,5 -F,3,9,4,7,4,5,10,1,7,10,9,7,1,10,3,6 -V,4,5,5,4,2,4,13,4,4,10,11,7,3,10,1,8 -J,4,10,5,7,3,9,7,2,6,14,4,8,0,7,1,7 -E,4,9,6,7,4,4,10,5,8,11,10,9,2,8,5,3 -M,6,11,9,8,11,7,8,6,4,7,6,8,6,9,9,8 -R,5,9,8,6,5,11,6,3,6,11,1,6,4,5,4,10 -L,5,10,6,8,5,3,4,5,7,2,0,7,1,6,1,6 -V,6,9,6,6,3,3,11,4,4,10,12,8,2,10,1,8 -R,1,0,2,0,1,6,10,7,2,7,5,8,2,7,4,9 -L,2,5,3,4,2,4,4,4,7,2,1,6,0,7,1,6 -C,4,10,5,7,3,6,8,7,7,13,8,8,2,11,3,7 -F,3,7,4,5,2,1,13,4,3,12,10,6,0,8,2,6 -F,2,3,3,1,1,7,9,2,5,13,6,5,1,9,1,8 -Q,3,6,4,8,4,9,7,7,3,5,7,10,3,9,5,10 -P,2,3,2,1,1,5,10,3,4,10,8,4,0,9,3,7 -V,5,11,7,8,2,8,8,5,3,6,14,8,3,9,0,8 -G,2,0,2,1,1,8,6,6,5,6,5,9,1,8,5,10 -I,1,5,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -W,7,12,7,6,5,4,8,1,3,8,9,8,9,10,2,5 -A,7,10,9,8,8,7,7,7,4,7,6,9,4,8,11,1 -M,5,6,7,4,5,11,6,3,4,9,2,6,7,6,2,8 -C,5,9,4,5,3,7,6,4,4,9,9,11,4,10,9,10 -Z,2,5,4,3,2,7,7,2,9,11,6,8,1,8,5,8 -P,3,8,5,6,4,7,8,5,6,8,7,4,2,10,4,7 -I,5,9,4,5,2,8,8,3,6,13,4,6,1,7,4,9 -P,6,10,8,7,7,7,8,7,4,8,7,9,3,9,8,9 -J,2,10,3,7,1,12,3,10,4,13,5,13,1,6,0,8 -L,3,9,5,7,4,5,5,1,8,4,2,8,3,7,2,6 -C,4,7,5,5,3,3,8,5,7,10,9,14,1,8,3,8 -S,5,8,6,6,4,9,7,4,6,10,3,6,2,7,5,10 -V,3,3,4,2,1,4,12,3,3,9,11,7,2,11,1,8 -L,3,9,3,6,1,0,1,5,6,0,0,7,0,8,0,8 -V,6,11,6,6,3,5,10,4,3,10,8,5,4,11,2,8 -S,4,10,4,5,2,9,3,3,4,9,2,9,3,6,4,9 -F,3,7,4,4,1,2,12,5,5,12,10,8,0,8,2,6 -N,4,9,5,7,5,7,7,13,1,7,6,8,5,8,0,7 -Y,3,4,4,3,2,4,11,2,7,11,10,5,1,11,2,5 -B,3,5,5,3,4,9,7,3,5,10,5,7,2,8,5,9 -W,6,11,9,8,14,9,7,5,2,7,6,8,14,11,3,6 -J,5,10,4,8,3,9,8,2,3,11,6,7,2,10,6,12 -L,2,2,3,3,2,4,4,4,7,2,1,6,1,7,1,6 -U,4,9,6,7,3,7,9,6,7,6,10,9,3,9,1,8 -Z,3,9,4,7,4,8,6,5,9,7,6,6,2,7,7,8 -Q,6,10,8,7,7,8,6,8,4,7,7,7,6,6,8,8 -G,4,5,5,8,2,7,6,8,9,6,5,11,1,8,6,11 -Y,5,10,7,8,4,4,9,1,8,11,12,9,1,11,2,6 -L,3,6,4,4,2,7,3,2,7,7,2,8,1,6,2,7 -J,6,8,4,12,3,10,6,3,4,11,3,5,3,8,7,10 -W,9,10,9,7,9,4,10,2,3,9,8,8,8,11,2,6 -P,2,3,4,2,2,7,10,4,3,11,5,3,1,9,2,8 -R,3,7,5,5,3,10,7,4,6,10,2,7,3,7,4,10 -S,4,6,5,4,3,8,7,3,7,10,6,8,2,8,4,8 -B,6,9,8,7,7,8,8,5,5,7,5,6,4,8,6,7 -P,3,5,6,4,3,7,10,4,4,12,5,3,1,10,3,8 -Z,1,0,1,1,0,7,7,2,10,8,6,8,0,8,6,8 -S,4,8,5,6,3,8,8,6,9,5,6,7,0,8,9,7 -D,3,6,3,4,2,5,8,10,8,8,7,5,3,8,3,8 -B,2,3,3,1,2,8,7,2,5,10,5,7,1,8,4,9 -W,5,9,7,7,7,8,5,7,2,6,7,8,7,7,5,3 -Q,3,6,4,6,2,7,7,7,5,6,7,8,3,7,5,9 -E,3,10,4,7,5,7,7,6,8,8,8,9,3,8,6,9 -W,4,7,6,5,3,9,8,5,1,7,8,8,8,9,0,8 -A,3,11,6,8,2,9,5,3,1,8,1,8,3,7,2,8 -F,3,9,5,7,4,6,10,2,6,10,9,5,1,10,3,6 -T,6,14,5,8,3,6,10,2,6,11,7,6,2,9,5,4 -K,4,6,5,8,2,3,7,8,2,7,5,12,3,8,3,10 -A,3,5,5,3,2,8,2,2,2,7,1,8,2,6,2,7 -K,6,9,9,6,5,5,7,2,8,10,9,11,4,7,4,7 -P,10,15,9,8,6,8,9,4,4,12,4,3,5,10,6,6 -P,3,5,5,4,2,7,10,4,4,12,5,3,1,10,2,8 -R,2,4,4,3,3,8,7,5,4,8,5,7,3,7,4,11 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -Z,4,9,6,6,5,9,10,5,4,6,5,7,3,9,9,4 -J,3,7,5,5,2,7,4,5,4,14,9,14,1,6,1,6 -O,7,11,7,8,7,7,8,8,4,10,7,7,5,8,5,10 -J,4,8,5,6,2,9,6,2,8,15,4,8,0,7,0,8 -T,3,6,4,4,3,6,11,4,5,10,8,5,3,12,2,5 -W,5,7,5,5,5,4,9,2,3,9,8,8,6,11,2,6 -R,5,9,8,8,9,9,7,4,4,8,5,7,9,9,7,5 -P,5,10,5,5,3,9,8,3,5,13,4,4,3,10,6,7 -F,4,10,6,8,4,6,10,3,6,13,7,5,2,10,2,7 -N,7,9,6,5,2,5,9,4,6,3,3,10,5,9,2,7 -J,3,7,4,5,3,8,7,1,6,11,5,8,0,7,1,6 -N,7,10,9,9,9,8,9,4,4,7,4,7,9,6,7,6 -S,3,4,4,6,2,9,8,6,9,5,5,6,0,8,9,7 -A,4,8,7,6,5,9,5,2,5,10,2,6,2,6,3,8 -S,7,13,6,7,3,9,2,2,5,8,1,8,3,7,5,10 -U,7,11,6,6,4,8,6,5,5,6,7,8,5,7,3,7 -A,1,3,2,2,1,9,2,2,1,8,2,8,1,6,1,8 -O,7,10,5,5,3,9,6,5,6,9,3,8,5,8,5,8 -W,5,5,6,3,4,4,11,3,2,9,9,8,7,11,1,7 -Q,4,5,5,7,3,9,9,8,6,5,8,9,3,7,6,10 -K,8,12,9,6,5,10,5,4,6,11,2,7,5,8,4,10 -H,6,7,8,9,7,9,8,3,1,8,6,8,4,9,9,9 -V,2,1,4,2,1,8,12,3,3,5,11,9,2,10,1,8 -C,2,1,3,2,1,6,7,6,9,7,6,14,0,8,4,9 -O,6,10,6,7,4,9,6,8,6,10,3,8,4,8,4,6 -I,1,7,1,5,1,8,7,0,8,7,6,7,0,8,3,7 -I,7,12,5,7,3,10,5,4,5,12,3,7,3,8,5,10 -T,2,2,3,3,2,6,11,3,6,8,11,8,2,11,1,7 -Z,4,5,5,7,4,11,5,4,5,10,3,9,2,6,6,10 -R,4,7,5,5,3,6,9,9,5,6,5,8,2,8,5,10 -I,2,11,2,9,2,7,7,0,8,7,6,8,0,8,3,8 -O,7,10,7,7,6,8,6,7,5,10,5,11,5,7,5,6 -S,4,5,5,4,5,8,7,4,5,7,6,8,5,8,8,11 -L,4,4,4,6,1,0,0,6,6,0,1,5,0,8,0,8 -D,4,8,5,6,4,8,7,6,7,10,4,5,3,8,3,8 -E,5,11,7,8,6,6,8,4,7,11,9,8,3,8,4,6 -Z,4,6,5,4,3,9,6,2,9,11,4,9,1,7,6,10 -L,8,14,6,8,4,5,5,3,8,10,4,13,3,6,6,7 -K,4,6,6,4,4,8,6,1,6,10,5,9,4,7,5,8 -E,4,6,6,4,4,6,8,2,8,11,7,9,2,9,4,8 -K,4,5,5,3,3,5,7,4,7,6,6,11,3,8,5,9 -C,4,7,5,6,6,6,5,4,5,7,5,11,5,10,7,11 -Z,1,3,2,2,1,7,7,5,8,6,6,8,1,8,7,8 -W,4,4,6,6,3,11,8,5,1,6,8,8,8,9,0,8 -M,11,15,10,8,6,8,11,5,5,4,5,9,9,9,2,7 -H,2,1,2,2,2,8,7,6,5,7,6,7,3,8,3,6 -E,2,7,4,5,3,6,7,7,9,8,8,9,2,9,6,8 -D,4,2,5,4,4,7,7,7,7,6,6,5,2,8,3,7 -X,5,8,7,6,3,9,7,2,8,10,4,7,3,8,4,8 -T,5,10,7,8,6,7,11,3,7,7,11,8,2,12,1,8 -D,3,5,5,3,3,10,6,3,6,10,3,6,2,8,2,8 -Q,3,5,3,6,3,8,6,6,4,9,6,9,2,9,4,8 -Q,5,8,6,7,3,8,8,8,7,5,7,9,3,7,5,10 -O,2,3,3,2,2,8,7,6,4,9,5,8,2,8,2,8 -W,6,8,6,6,5,4,10,3,3,9,8,7,7,11,2,6 -E,4,11,6,8,5,7,7,2,8,11,6,10,3,7,5,8 -X,9,14,10,8,5,3,9,4,8,12,11,9,4,8,3,5 -B,4,8,4,6,3,6,7,9,7,7,6,7,2,8,9,10 -U,8,11,9,8,6,4,8,6,8,9,7,9,7,9,6,1 -M,4,7,4,5,3,8,7,12,1,6,9,8,8,6,0,8 -R,2,3,4,2,2,8,8,3,5,9,4,7,2,6,3,10 -P,3,5,5,4,3,7,10,4,4,12,4,3,1,10,3,8 -H,4,11,5,9,5,7,7,13,1,7,6,8,3,8,0,8 -V,4,6,5,6,6,7,8,5,5,7,6,8,6,8,6,6 -Z,2,5,3,4,2,7,7,5,9,6,6,8,2,8,7,8 -F,1,1,2,1,0,2,12,4,3,11,9,6,0,8,2,7 -C,7,10,8,8,5,4,8,6,7,12,10,12,2,11,3,7 -R,3,4,3,3,3,7,7,5,5,6,5,7,3,7,4,8 -D,4,6,6,6,5,6,7,5,6,6,5,7,4,7,5,5 -V,3,7,5,5,1,5,8,5,3,9,14,8,3,10,0,8 -Y,6,8,6,6,3,4,10,3,7,11,11,5,1,11,3,4 -O,3,9,4,7,4,7,6,8,5,6,4,8,3,8,3,7 -P,9,14,7,8,3,8,8,7,4,14,3,5,5,10,4,8 -I,2,6,3,4,2,7,7,0,8,13,6,8,0,8,1,8 -Q,6,9,7,11,9,8,4,8,4,6,5,7,5,8,7,11 -E,6,13,5,7,4,6,8,5,5,10,6,9,3,8,8,11 -K,6,11,9,9,6,8,7,2,7,10,4,8,4,7,4,8 -F,3,5,5,4,2,6,11,2,6,14,7,4,1,10,2,7 -G,3,4,4,3,2,6,7,5,5,9,7,10,2,9,4,9 -A,4,10,6,7,2,9,4,3,2,8,1,8,3,7,3,8 -R,1,0,1,1,0,6,8,7,3,7,5,8,2,7,4,11 -L,5,11,5,6,3,6,6,3,6,11,6,11,3,7,6,8 -O,5,10,6,7,5,8,6,8,7,8,4,10,4,9,5,6 -U,3,6,5,4,2,7,9,6,7,5,10,9,3,9,1,8 -P,2,4,2,2,1,5,10,4,4,10,8,4,1,10,3,7 -J,2,4,2,6,1,11,3,10,3,13,7,13,1,6,0,8 -X,4,11,7,8,6,8,8,2,6,7,6,6,6,10,9,8 -N,3,5,5,3,2,5,9,2,4,11,8,8,5,8,0,7 -M,6,10,9,7,6,11,6,2,5,9,3,6,9,8,2,9 -Z,4,9,5,7,5,7,8,5,9,7,7,8,1,8,7,8 -X,3,5,5,4,2,9,6,1,8,10,4,8,2,8,3,9 -M,4,7,5,5,4,9,6,6,5,6,8,6,8,5,2,7 -C,3,9,4,7,3,6,8,8,7,10,7,12,2,10,4,10 -T,2,5,3,4,2,7,12,3,6,7,11,8,2,11,1,8 -A,2,4,4,3,2,10,2,2,2,9,2,9,2,6,2,8 -Z,3,6,5,4,5,7,8,2,7,7,6,8,0,8,8,8 -F,3,7,4,5,3,4,10,3,5,10,10,6,1,10,3,6 -Z,8,12,8,6,5,10,3,4,7,12,3,11,3,6,7,11 -S,3,7,5,5,6,6,6,3,1,7,5,6,2,8,10,3 -O,5,7,6,5,7,8,7,5,1,7,6,8,8,8,5,10 -P,1,3,3,1,1,7,9,4,3,11,5,4,1,9,2,8 -E,3,4,3,7,2,3,7,6,10,7,6,15,0,8,7,7 -L,8,14,7,8,3,8,3,3,5,12,4,13,3,7,6,8 -I,7,15,5,8,3,10,5,6,4,13,3,7,3,8,5,10 -Y,6,6,5,9,3,7,9,2,2,7,10,5,4,10,5,6 -D,2,4,3,3,2,9,6,4,5,10,4,5,2,8,2,8 -K,7,10,10,8,8,4,8,1,7,10,8,10,3,8,4,7 -W,4,5,5,4,4,4,10,3,2,9,8,7,6,11,1,7 -M,5,9,8,7,8,8,7,6,5,6,7,8,8,6,2,8 -S,6,10,6,5,3,11,3,4,3,12,5,9,2,10,2,9 -Z,3,3,4,5,2,7,7,4,14,9,6,8,0,8,8,8 -V,3,7,5,5,2,7,12,3,4,6,11,9,2,10,1,8 -F,4,9,6,6,5,7,9,3,6,12,6,6,3,9,3,7 -I,5,11,4,6,2,10,6,2,5,11,4,6,2,9,4,11 -Z,3,7,5,5,5,8,8,6,3,6,4,6,3,9,8,3 -I,3,5,5,6,4,8,7,4,6,6,6,7,3,9,8,9 -C,6,11,8,8,9,8,6,5,3,8,7,11,10,8,6,5 -G,2,1,2,2,1,7,7,6,5,6,6,10,2,9,4,9 -Q,7,8,9,12,13,8,10,5,1,5,7,10,7,14,8,13 -D,5,10,6,7,3,5,7,10,9,7,6,5,3,8,4,8 -X,3,6,5,4,3,8,7,3,8,6,6,8,2,8,6,8 -R,9,11,7,6,4,8,7,5,5,10,3,8,6,6,6,11 -I,1,8,2,6,2,7,7,0,7,7,6,8,0,8,2,8 -T,7,11,7,8,6,6,12,5,5,11,8,4,3,12,2,4 -V,5,9,5,7,2,2,11,5,4,12,12,8,2,10,1,8 -N,2,4,3,3,2,6,8,5,4,7,7,7,5,9,1,6 -Y,8,10,8,8,4,2,12,5,5,13,12,6,1,11,2,5 -T,4,11,5,8,3,9,14,0,5,6,10,8,0,8,0,8 -U,3,4,4,3,2,7,8,5,6,5,9,9,5,10,1,7 -X,3,3,5,2,2,7,8,1,8,10,7,8,2,8,3,7 -I,1,8,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -M,6,10,8,8,9,8,7,5,5,6,7,7,11,7,4,6 -N,3,8,4,6,2,7,7,14,2,5,6,8,5,8,0,8 -N,5,9,8,7,5,4,10,3,3,9,9,9,6,7,2,7 -C,7,11,9,8,6,7,7,8,6,6,7,11,4,7,4,9 -B,4,10,6,8,7,8,7,4,7,6,6,6,6,8,6,10 -P,2,6,2,4,2,5,11,8,2,10,6,4,1,10,3,8 -O,4,9,6,7,4,7,7,8,4,7,6,11,3,8,4,7 -I,1,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -K,6,9,9,7,5,3,9,3,7,11,11,11,3,8,3,5 -T,6,9,7,8,7,6,8,4,9,8,8,8,3,10,8,7 -P,6,11,6,8,3,4,13,9,2,10,6,3,1,10,4,8 -G,4,9,5,7,3,6,7,7,8,9,8,10,2,10,4,9 -U,12,15,10,8,5,5,3,4,5,4,7,6,6,6,2,7 -K,4,8,6,6,5,4,7,1,6,10,9,11,3,8,3,6 -D,5,8,6,6,5,7,8,4,7,7,6,8,7,8,3,7 -E,4,9,6,7,4,5,8,3,9,10,8,10,2,8,4,6 -I,6,15,4,8,3,11,5,4,5,12,2,7,3,8,5,10 -V,4,6,4,4,2,3,12,4,3,11,11,7,2,10,1,7 -V,5,9,7,7,5,8,11,3,2,5,10,9,5,10,5,8 -U,4,9,6,7,3,6,8,6,7,7,10,9,3,9,1,8 -D,4,8,5,6,4,7,7,7,7,7,6,4,3,8,3,7 -U,7,9,8,7,3,3,10,6,7,13,11,8,3,9,1,7 -O,5,10,7,8,3,9,6,9,8,7,5,10,3,8,4,8 -P,3,5,5,3,3,8,10,3,4,12,4,2,1,10,3,8 -D,4,10,5,8,5,7,7,6,7,7,7,5,6,8,3,7 -J,3,11,5,8,5,8,7,1,6,11,5,9,1,6,1,6 -G,4,5,5,8,3,8,7,8,7,6,7,8,2,7,6,11 -O,5,5,6,7,3,8,7,8,8,6,7,9,3,8,4,8 -Z,3,4,5,6,4,10,7,5,5,8,3,7,3,6,6,7 -C,5,7,6,5,6,5,6,4,4,7,7,9,5,10,4,8 -H,7,10,9,8,6,10,6,3,6,10,3,7,5,6,5,9 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -D,3,3,3,5,2,5,7,10,7,7,6,5,3,8,3,8 -H,6,8,9,10,9,7,5,4,3,6,4,7,7,7,10,9 -A,5,10,5,5,3,11,2,4,1,11,4,11,4,3,4,10 -D,3,4,4,3,2,7,7,7,7,7,6,5,2,8,3,7 -H,3,6,4,4,4,8,7,6,6,7,6,8,3,8,3,8 -R,4,9,5,6,5,7,8,5,5,8,5,8,3,6,6,9 -O,2,1,3,2,2,7,7,7,4,7,6,8,2,8,2,8 -O,7,10,7,8,5,7,7,8,6,10,7,9,3,8,4,7 -E,4,9,4,6,3,3,7,6,11,7,6,15,0,8,7,7 -F,4,11,5,8,2,1,12,5,4,11,10,7,0,8,3,6 -T,2,0,2,1,0,8,15,2,4,6,10,8,0,8,0,8 -B,4,6,5,4,5,7,6,6,7,6,6,6,2,9,6,10 -G,2,5,3,3,2,6,7,6,6,6,6,11,2,9,4,9 -F,3,3,3,4,1,1,14,5,3,12,10,5,0,8,2,6 -Q,9,15,8,8,6,12,4,3,6,10,4,7,4,9,6,12 -A,6,9,5,5,3,8,3,3,2,7,4,12,5,5,4,7 -B,4,9,4,7,3,6,7,9,7,7,6,7,2,8,9,10 -Q,3,3,4,4,3,8,8,6,3,5,7,10,3,8,5,9 -T,1,1,2,1,0,7,14,1,4,7,10,8,0,8,0,8 -A,3,7,5,5,3,6,3,2,2,4,2,7,2,5,2,6 -M,4,10,5,8,6,8,5,11,1,6,8,8,8,5,1,5 -V,4,6,5,4,6,8,6,4,2,8,7,9,7,9,4,8 -E,4,7,5,5,5,7,7,5,8,6,5,9,3,8,6,9 -H,7,11,10,8,9,9,7,3,6,10,4,7,5,6,4,9 -Q,2,4,3,5,2,8,7,5,2,8,7,9,2,10,3,9 -G,5,9,4,5,3,7,9,4,3,8,6,5,3,10,9,7 -H,2,3,4,2,2,6,9,3,6,10,7,8,3,8,3,8 -H,4,6,4,4,2,7,5,14,1,7,9,8,3,9,0,8 -M,6,9,9,6,7,9,6,2,5,9,5,7,8,6,2,8 -O,6,10,8,8,9,7,8,6,2,7,6,7,10,9,6,10 -J,2,3,3,5,1,11,2,10,3,13,8,14,1,6,0,8 -Z,5,10,6,7,3,7,7,4,15,9,6,8,0,8,8,8 -F,4,8,6,6,4,6,10,3,7,10,9,5,2,10,4,5 -B,5,10,7,8,7,8,7,7,6,6,6,5,2,8,7,9 -T,6,10,6,6,2,6,9,3,8,13,6,5,2,9,4,5 -T,3,7,4,4,1,8,15,1,5,6,11,9,0,8,0,8 -O,4,8,4,6,3,7,7,8,5,9,7,10,3,8,3,7 -I,5,10,6,8,4,6,6,2,7,7,6,10,0,9,4,8 -D,3,6,3,4,2,6,8,9,8,8,7,6,3,8,3,8 -D,4,6,5,4,4,8,7,5,5,10,5,5,3,8,3,8 -Q,2,3,3,3,2,8,8,6,2,5,7,10,2,9,5,10 -W,6,10,6,7,6,3,11,2,2,10,9,8,6,11,2,7 -A,4,9,6,7,6,8,9,8,5,6,5,8,3,6,7,5 -I,2,8,3,6,2,6,8,0,6,13,7,7,0,8,1,7 -M,4,5,5,8,4,7,7,12,2,7,9,8,8,6,0,8 -L,4,9,6,6,6,5,7,3,6,8,7,11,7,11,6,7 -O,4,8,5,6,4,8,7,8,5,7,7,9,3,8,3,8 -I,4,8,5,6,3,9,8,2,8,7,6,5,0,8,4,7 -Q,4,8,5,9,5,8,7,7,3,8,7,10,3,9,6,8 -G,4,6,4,4,2,6,7,6,6,9,8,10,2,8,4,9 -Q,2,3,3,4,2,8,8,5,2,8,8,10,2,9,4,8 -C,4,11,5,8,2,5,7,7,10,7,7,13,1,8,4,9 -H,2,4,3,3,2,8,8,6,6,7,5,7,3,8,3,7 -R,1,0,1,0,0,6,10,6,1,7,5,8,1,7,4,10 -Z,2,5,3,4,2,7,8,5,9,6,6,9,2,9,7,8 -A,3,6,6,4,3,7,5,2,3,6,2,6,2,6,3,5 -D,3,6,4,4,4,7,7,4,7,7,6,6,3,8,3,7 -Y,3,10,5,7,1,7,10,2,2,7,13,8,1,11,0,8 -A,7,11,5,6,3,10,0,2,2,10,4,12,3,4,3,8 -P,6,11,8,9,6,8,9,3,5,13,5,3,1,10,3,8 -Z,2,4,4,3,2,7,8,2,9,11,6,8,1,9,5,8 -O,3,5,4,3,2,7,7,7,5,9,7,8,2,8,3,8 -I,2,10,2,7,2,7,7,0,8,7,6,8,0,8,3,8 -R,4,8,6,6,6,7,7,3,7,7,6,6,6,8,4,9 -J,3,8,4,6,3,9,6,2,6,12,3,8,1,6,2,6 -F,3,7,5,5,3,9,9,2,6,13,5,4,1,10,3,9 -X,4,10,5,8,3,7,7,4,4,7,6,8,3,8,4,8 -E,2,5,4,3,2,6,7,2,8,11,7,9,2,8,4,8 -L,2,5,3,4,1,7,3,1,7,8,2,10,0,7,2,8 -S,3,6,4,4,2,7,7,5,8,5,6,9,0,9,9,8 -H,3,2,5,4,4,8,7,6,6,7,6,7,3,8,3,7 -E,5,10,7,9,8,7,7,5,3,7,7,9,6,10,10,12 -E,4,5,5,8,3,3,7,6,11,7,6,15,0,8,7,7 -U,3,7,4,5,3,6,8,6,6,6,9,9,3,9,0,8 -I,0,3,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -B,3,2,4,3,4,7,7,5,5,7,6,6,2,8,6,9 -T,2,3,3,4,1,8,13,0,6,6,11,8,0,8,0,8 -B,2,4,4,3,3,9,7,2,6,11,5,6,2,8,4,9 -Q,4,7,6,7,3,8,8,7,6,5,7,8,3,8,5,9 -Y,4,8,6,6,2,4,10,2,8,10,13,9,1,11,2,7 -H,5,9,7,7,9,8,9,5,3,7,6,6,9,8,9,7 -L,1,4,3,3,1,7,3,1,7,8,2,10,0,7,2,8 -B,2,3,2,1,2,7,7,5,5,7,6,6,1,8,5,9 -R,4,6,6,4,5,8,7,7,3,8,5,7,4,7,7,10 -Q,2,4,3,5,3,8,9,6,2,5,8,10,3,9,5,10 -X,2,3,3,2,1,8,7,3,8,6,6,8,2,8,5,8 -M,3,6,4,4,2,7,7,11,1,7,9,8,8,6,0,8 -I,4,6,6,7,5,8,8,5,6,7,6,8,3,8,8,7 -O,4,6,5,4,6,7,9,5,2,7,7,8,8,9,4,9 -B,6,10,5,6,3,8,6,4,5,10,5,8,6,7,7,10 -V,5,9,7,8,9,7,6,5,4,6,5,8,7,10,7,9 -Z,2,4,3,3,2,8,7,5,9,6,6,7,2,8,7,8 -K,6,10,8,8,6,5,6,1,7,10,8,10,3,8,4,8 -M,4,8,6,6,6,7,7,2,4,9,7,8,7,6,2,8 -L,3,5,4,4,3,8,9,4,5,6,6,9,3,8,7,10 -R,5,8,7,6,5,8,7,6,6,8,6,8,3,8,6,11 -G,2,1,3,2,2,7,6,6,5,6,6,10,2,9,4,9 -X,4,9,6,7,4,7,7,4,9,6,6,8,3,8,7,8 -N,5,9,8,7,5,7,9,2,4,10,5,6,5,9,1,7 -P,1,3,3,1,1,7,9,4,3,11,5,4,1,9,2,8 -L,6,9,5,4,2,8,3,3,4,11,4,13,2,6,6,8 -Z,4,6,6,8,4,11,4,3,5,10,2,8,2,7,5,11 -Z,5,8,7,6,5,8,7,2,9,11,5,8,1,7,6,8 -S,3,7,4,5,3,8,7,7,6,8,6,8,2,8,9,8 -F,3,4,5,3,2,7,9,2,6,13,6,5,1,9,2,7 -Y,3,2,5,3,2,5,10,1,7,9,12,9,1,11,2,7 -L,3,7,3,5,1,0,1,6,6,0,0,6,0,8,0,8 -E,5,11,7,8,6,7,7,2,7,11,7,9,3,8,4,8 -L,3,6,5,4,5,7,8,3,5,6,7,10,5,11,5,6 -X,3,7,5,5,3,4,8,1,7,10,11,9,2,9,3,5 -Q,7,12,6,6,5,11,4,4,6,10,4,7,3,9,7,12 -S,8,13,6,8,3,9,3,4,5,9,2,9,4,6,5,9 -D,7,11,9,8,7,7,7,5,6,7,6,8,7,8,3,7 -Z,5,9,6,7,3,7,7,4,15,9,6,8,0,8,8,8 -Q,4,6,4,8,5,8,10,5,1,5,8,11,2,10,5,10 -M,7,11,11,8,15,9,7,3,3,8,5,7,12,4,5,5 -M,3,6,4,4,2,8,6,12,1,5,9,8,7,6,0,8 -F,4,7,5,5,3,6,10,3,5,13,7,5,2,10,2,8 -E,2,3,2,4,1,3,8,6,10,7,5,15,0,8,6,8 -W,3,6,4,4,4,8,7,6,2,6,8,9,5,8,3,7 -W,4,2,6,3,3,7,11,2,2,6,9,8,7,11,0,8 -B,3,7,5,6,6,7,7,5,4,7,6,8,6,9,7,7 -A,2,9,4,6,2,6,5,3,1,6,0,8,2,7,2,7 -V,6,9,6,7,3,4,11,3,4,9,11,7,2,10,1,8 -L,4,9,5,7,4,7,4,1,7,8,2,9,1,6,2,8 -T,4,6,5,4,2,6,12,3,7,12,9,4,2,11,2,4 -Z,1,3,3,2,1,7,7,2,9,11,6,8,1,8,5,7 -J,4,7,6,8,5,9,9,5,4,6,6,9,3,7,8,6 -P,4,10,6,7,4,5,11,7,4,10,7,3,1,10,4,7 -M,4,1,5,2,3,7,6,7,4,7,7,10,7,6,2,8 -T,4,9,6,7,4,8,10,1,8,6,11,7,0,10,1,7 -G,4,10,5,7,4,7,7,7,6,6,5,8,1,7,6,11 -E,4,6,6,4,4,10,6,1,7,11,4,8,3,8,4,11 -G,3,7,4,5,3,7,7,7,6,6,5,9,1,8,5,11 -G,3,9,4,6,4,7,6,7,6,6,5,8,1,7,6,11 -V,4,8,6,6,7,7,7,4,1,8,7,9,7,10,4,7 -F,2,1,3,2,2,6,9,3,5,10,9,5,4,10,3,7 -K,4,6,6,4,5,8,8,5,4,7,6,7,7,6,6,11 -I,3,11,4,8,2,6,8,0,8,13,7,8,0,8,1,7 -Q,2,2,3,3,2,8,8,5,2,7,7,10,2,9,4,9 -U,6,10,5,5,3,4,4,4,5,4,7,7,4,6,2,8 -X,4,5,5,5,5,9,7,2,4,8,5,7,3,8,7,8 -G,3,5,5,5,4,7,10,5,2,7,7,8,6,11,7,8 -K,8,10,11,8,8,7,7,1,7,10,5,9,5,7,4,7 -J,1,3,2,1,0,8,7,2,4,14,6,9,0,7,0,7 -R,3,8,5,6,4,6,7,5,6,6,5,7,3,7,5,8 -A,4,11,6,8,2,7,6,3,1,7,0,8,3,7,1,8 -G,5,8,7,7,7,7,10,5,2,7,7,8,6,11,6,8 -Y,8,8,7,12,5,6,5,6,5,6,11,7,5,10,4,7 -G,2,5,3,3,2,6,7,5,5,10,7,10,2,9,4,9 -M,5,11,5,8,7,7,5,11,1,8,8,8,9,5,2,10 -D,4,11,6,8,7,8,7,5,6,7,7,4,3,8,3,6 -Y,9,8,8,12,5,10,11,1,4,7,10,5,4,10,5,10 -L,4,9,5,7,4,4,5,3,9,3,1,9,0,7,2,6 -A,4,10,7,7,2,7,7,3,0,6,0,8,2,7,2,8 -R,3,7,4,5,2,6,12,8,4,7,2,9,3,7,5,10 -Y,5,7,6,5,5,8,5,7,6,5,8,8,3,9,9,5 -S,4,8,5,6,2,8,7,5,8,5,6,8,0,8,9,8 -C,5,8,7,6,4,7,8,8,6,4,7,13,5,8,4,8 -B,2,0,2,1,1,7,8,7,5,7,6,7,1,8,7,8 -B,3,5,4,4,4,8,7,5,6,7,6,6,5,8,5,9 -F,4,9,5,6,5,6,10,6,4,8,6,8,2,10,7,10 -R,6,9,8,7,6,10,7,3,6,11,3,7,5,6,5,10 -H,4,6,6,8,6,8,12,4,2,8,7,6,3,11,7,5 -D,2,4,4,3,3,9,6,4,6,10,4,6,2,8,3,8 -S,6,9,7,6,4,9,7,4,8,11,5,8,2,8,5,9 -A,3,5,5,4,2,7,2,1,2,6,2,8,3,5,3,7 -R,2,7,3,4,2,5,10,8,4,7,4,9,3,7,5,11 -P,3,2,4,4,2,5,10,4,4,10,8,4,1,10,3,6 -D,4,8,4,6,2,5,8,10,8,8,7,5,3,8,4,8 -T,8,10,8,8,4,6,13,5,6,12,8,2,2,12,2,4 -L,2,3,2,2,1,4,3,4,6,2,2,5,0,7,0,6 -D,5,10,5,6,4,9,6,3,5,8,5,7,6,9,5,8 -Y,6,9,6,7,3,4,9,2,8,10,11,6,2,10,4,3 -F,3,5,5,4,2,5,10,2,6,13,7,5,1,9,2,7 -Y,2,5,4,4,2,7,10,1,6,7,11,8,1,11,2,8 -F,4,4,4,6,2,1,14,5,3,12,9,5,0,8,3,6 -G,5,8,6,6,5,7,7,7,5,4,7,9,3,6,5,8 -U,5,7,5,5,2,4,8,6,8,9,9,9,3,9,2,4 -Q,4,7,5,6,2,8,7,8,6,6,7,8,3,8,5,9 -B,8,12,7,6,6,8,7,5,5,9,7,8,7,8,9,7 -Q,2,3,3,4,3,8,7,7,3,6,7,9,2,8,5,9 -Z,3,7,5,5,3,8,7,2,9,11,5,8,1,7,6,8 -T,3,7,5,5,5,7,8,4,5,7,7,9,5,9,5,7 -S,3,9,4,6,2,8,9,6,10,5,5,5,0,7,9,7 -U,6,8,7,6,3,4,8,7,8,9,9,9,3,9,3,5 -D,4,8,4,6,3,6,7,10,9,7,6,6,3,8,4,8 -X,3,8,5,6,4,7,7,3,8,6,7,10,3,7,7,8 -R,4,9,6,7,6,7,9,5,6,8,4,8,3,6,5,11 -U,6,10,7,7,5,3,8,5,7,9,8,10,5,8,3,4 -D,4,9,5,7,5,5,7,9,6,6,6,6,2,8,3,8 -C,6,8,6,6,3,5,8,6,8,13,9,9,2,11,2,7 -H,4,9,4,7,4,7,8,13,1,7,5,8,3,8,0,8 -I,1,4,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -L,4,9,5,7,4,9,4,1,7,9,2,10,1,6,3,9 -Y,3,4,5,6,6,9,7,5,3,7,7,7,6,9,6,4 -X,4,8,7,6,4,6,7,1,8,10,8,9,3,8,3,7 -L,3,8,3,6,1,0,1,6,6,0,0,6,0,8,0,8 -I,2,8,5,6,5,11,6,1,6,9,4,5,1,7,5,8 -G,4,5,5,4,3,7,7,6,7,9,6,11,2,10,5,9 -T,8,11,9,8,6,7,9,2,9,10,9,5,2,9,5,5 -E,3,5,5,4,3,5,8,3,9,11,8,10,2,8,4,7 -R,2,0,2,1,1,6,10,7,2,7,5,8,2,7,4,10 -M,4,7,5,5,4,8,6,10,0,6,8,8,7,5,0,8 -T,6,10,8,7,9,8,8,5,6,6,7,9,8,7,9,5 -X,4,8,6,6,3,7,7,1,8,10,6,8,3,8,4,7 -I,3,7,4,5,2,7,9,0,7,13,6,6,0,9,2,7 -C,4,7,5,5,3,5,8,7,7,8,8,14,2,9,4,10 -U,5,8,6,6,2,7,4,13,6,8,15,8,3,9,0,8 -M,7,9,10,6,7,5,6,3,5,9,10,10,8,5,2,7 -O,3,1,4,3,2,7,7,7,5,7,6,8,2,8,3,8 -J,2,9,2,6,2,13,4,5,4,13,2,9,0,7,0,8 -W,3,4,4,3,3,6,10,4,2,8,7,7,6,12,1,6 -A,2,7,4,5,2,8,4,2,1,7,1,8,2,6,1,8 -C,1,0,1,0,0,7,7,5,7,7,6,13,0,8,4,10 -I,2,7,3,5,2,8,6,0,7,13,6,9,0,8,1,8 -D,8,15,7,8,6,10,5,4,7,10,4,7,6,7,9,8 -O,2,3,3,2,2,7,7,6,4,9,6,8,2,8,2,8 -U,6,10,9,8,11,9,7,4,5,6,7,7,9,7,6,6 -A,4,11,7,8,4,12,4,3,3,9,1,9,3,8,3,9 -N,2,5,4,3,2,7,8,2,4,10,5,6,5,9,0,7 -J,2,8,3,6,2,14,4,4,4,13,2,9,0,7,0,8 -G,4,5,5,8,2,8,6,9,8,6,6,12,2,8,5,10 -V,4,11,6,8,8,7,5,5,2,8,7,8,6,9,5,8 -A,3,11,5,8,4,11,4,2,3,9,2,9,3,7,3,7 -D,4,10,6,8,5,8,7,7,7,9,4,5,3,8,4,9 -D,3,8,4,6,2,5,7,10,8,6,5,5,3,8,4,8 -L,3,8,4,6,3,8,4,1,7,9,2,10,1,6,3,9 -A,6,11,6,6,4,12,3,5,2,11,3,10,6,4,4,10 -Q,3,7,4,6,2,8,6,9,6,6,4,8,3,8,4,8 -D,2,5,3,3,2,9,6,3,5,10,4,7,3,7,2,8 -R,4,7,7,6,7,7,7,3,3,7,5,8,6,8,6,6 -E,3,6,4,4,4,6,7,5,7,7,6,9,3,8,5,10 -O,3,3,5,5,2,8,6,8,8,7,4,8,3,8,4,8 -W,3,2,5,3,3,8,11,3,2,6,9,8,7,11,1,7 -T,2,1,3,1,0,8,15,2,4,6,10,8,0,8,0,8 -Z,3,6,4,4,3,8,7,5,10,7,5,8,2,9,8,8 -S,6,8,7,6,4,7,8,4,8,10,7,7,2,9,5,7 -G,2,5,3,3,2,6,7,5,5,9,7,10,2,9,4,9 -R,4,4,5,6,3,5,12,8,4,7,3,9,3,7,6,11 -H,1,1,2,1,1,7,8,11,1,7,5,8,3,8,0,8 -E,5,9,7,7,7,8,10,7,4,6,6,11,5,8,8,9 -Y,4,6,6,4,5,8,5,6,5,8,7,8,5,8,4,6 -E,3,7,3,5,3,3,8,4,8,7,6,13,0,8,6,9 -K,6,9,9,6,5,9,6,2,7,10,3,8,6,8,6,10 -B,4,4,4,6,3,6,7,9,7,7,6,7,2,8,9,10 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -K,4,5,6,4,3,4,8,2,8,10,10,11,4,7,3,6 -D,3,6,4,4,6,8,8,5,4,7,6,6,3,7,8,5 -I,2,11,2,8,4,7,7,0,7,7,6,8,0,8,3,8 -H,3,7,4,5,3,7,7,13,1,7,7,8,3,8,0,8 -L,3,6,5,4,3,6,4,0,8,8,3,11,0,8,2,8 -E,3,10,4,8,2,3,8,6,11,7,5,15,0,8,7,7 -W,5,11,8,8,8,5,11,2,2,7,8,8,7,12,1,8 -S,3,5,5,4,2,8,7,3,8,11,5,7,1,9,5,8 -N,2,6,3,4,3,7,7,11,1,6,6,8,5,9,0,8 -V,5,10,5,7,3,3,11,3,4,10,12,8,2,10,1,8 -W,5,4,7,6,3,6,8,5,1,7,8,8,9,9,0,8 -W,4,6,7,4,4,7,9,4,0,7,9,8,7,12,0,8 -Z,6,8,8,10,7,11,5,4,5,8,2,6,2,7,7,8 -B,8,12,7,6,6,8,8,4,5,9,5,7,7,5,8,7 -L,2,7,3,5,2,5,5,2,8,3,2,7,0,7,1,5 -L,2,5,3,3,1,7,4,1,6,8,2,10,1,6,2,8 -B,4,7,7,6,7,8,8,4,4,7,6,8,6,8,8,5 -F,1,0,1,0,0,3,12,4,2,11,9,6,0,8,2,7 -I,2,10,5,8,5,10,7,2,5,9,5,5,3,8,6,7 -G,9,13,8,7,4,11,3,3,4,10,2,6,4,7,4,11 -F,6,10,9,7,9,8,6,1,6,9,7,7,6,10,4,7 -B,4,6,4,4,3,6,6,8,7,6,6,7,2,8,9,10 -G,3,4,4,3,2,6,6,6,6,6,6,11,2,9,4,9 -U,4,5,5,4,2,6,8,6,8,6,10,9,3,9,1,7 -P,4,6,6,9,8,6,6,5,3,7,6,6,9,13,6,10 -W,9,10,9,7,6,6,10,5,3,8,6,6,11,12,4,4 -A,3,8,5,6,3,11,2,2,2,9,2,9,2,6,3,7 -P,5,9,7,7,5,7,11,6,3,11,5,2,2,11,3,8 -T,8,11,8,8,4,5,14,7,4,11,8,3,2,12,1,4 -U,5,7,5,5,2,4,9,5,7,12,11,8,3,9,1,7 -J,1,6,2,4,2,9,7,0,6,10,5,7,0,7,0,7 -F,6,10,9,7,5,4,12,5,5,13,8,4,2,10,2,5 -O,5,7,6,5,7,8,7,5,2,7,6,8,8,9,4,9 -P,6,11,9,8,7,8,9,4,5,12,5,3,4,10,4,7 -O,6,10,7,8,3,7,10,9,9,8,8,6,3,8,4,8 -A,2,1,3,1,0,7,4,2,0,7,2,8,2,7,1,8 -R,7,13,7,8,5,10,5,2,5,9,4,8,6,8,6,9 -N,4,10,4,8,3,7,7,14,2,5,6,8,6,8,0,8 -R,12,14,9,8,5,9,7,6,5,10,2,8,7,5,6,10 -T,2,7,4,4,1,7,15,1,5,7,11,8,0,8,0,8 -O,2,0,2,1,1,8,7,7,5,7,6,8,2,8,3,8 -M,5,6,8,4,4,9,5,3,5,9,4,7,8,6,2,8 -V,1,0,2,1,0,7,9,3,2,7,12,8,2,10,0,8 -U,1,0,2,0,0,7,5,10,4,7,13,8,3,10,0,8 -T,3,4,4,3,2,5,11,2,7,11,9,5,1,11,2,5 -N,1,0,2,1,0,7,7,11,0,5,6,8,4,8,0,8 -Y,5,8,5,6,2,3,11,3,7,13,11,6,1,10,2,5 -G,2,3,3,1,1,7,7,5,5,9,6,9,2,9,4,10 -K,2,3,4,2,2,5,8,2,7,10,8,9,3,8,2,7 -I,3,9,4,7,2,7,7,0,8,14,6,8,0,8,1,8 -L,2,1,3,3,1,5,2,6,7,1,3,2,1,7,1,5 -R,4,9,6,7,6,9,7,4,5,10,4,7,3,6,4,10 -V,7,9,7,5,3,6,9,5,3,8,7,5,5,12,3,9 -I,3,7,4,5,1,8,5,0,8,14,6,10,0,7,1,8 -K,6,11,6,8,3,4,8,9,2,7,5,11,4,8,2,11 -Q,5,5,7,5,5,7,4,4,5,7,3,8,4,5,4,8 -P,4,8,5,6,2,4,11,9,4,9,6,5,2,10,4,8 -T,5,10,5,7,4,5,11,2,8,11,10,5,1,11,3,4 -W,5,10,8,7,12,7,7,6,2,7,7,8,13,12,4,10 -B,5,8,7,6,6,9,6,4,6,10,5,7,2,8,5,10 -U,3,2,5,3,2,7,8,5,7,5,9,9,5,10,1,7 -A,6,14,5,8,4,9,4,3,2,8,4,11,6,6,4,8 -Q,5,6,6,9,7,10,13,4,2,4,8,12,4,14,5,10 -E,5,11,5,8,6,3,7,5,9,7,7,14,0,8,6,8 -L,3,9,5,6,3,8,3,3,6,8,2,8,1,6,2,8 -M,14,14,14,8,7,7,10,5,5,4,4,11,11,13,2,7 -U,4,9,4,6,2,7,5,14,5,7,14,8,3,9,0,8 -I,2,6,4,4,3,10,7,2,4,8,5,5,3,9,5,7 -D,3,5,5,4,3,9,6,4,6,10,4,6,2,8,3,8 -H,9,15,8,8,5,11,7,4,5,9,3,4,6,8,4,8 -D,3,8,5,6,5,8,7,7,6,8,4,5,4,9,4,8 -P,3,9,4,6,2,4,11,9,3,9,6,4,1,10,4,8 -H,9,12,8,6,4,6,6,6,4,9,11,10,7,11,5,9 -Q,4,10,6,9,3,8,7,8,6,6,7,9,3,7,5,9 -G,2,3,3,2,1,7,7,6,6,6,6,10,2,9,4,9 -Z,2,3,4,2,2,8,7,2,9,12,6,8,1,8,5,8 -Z,3,6,4,4,2,7,7,3,14,9,6,8,0,8,8,8 -Z,4,11,5,8,2,7,7,4,14,10,6,8,0,8,8,8 -J,5,10,7,8,4,6,8,3,6,15,7,10,3,7,3,7 -N,9,12,8,6,3,7,10,5,6,3,4,10,5,9,2,7 -X,4,5,6,3,3,7,7,1,9,10,6,8,2,8,3,7 -Z,4,6,6,8,4,12,4,3,5,11,2,8,2,7,5,12 -Y,5,8,5,6,3,3,10,3,6,12,12,7,1,11,2,5 -Z,3,10,4,8,2,7,7,4,14,10,6,8,0,8,8,8 -N,5,10,6,7,4,6,8,6,5,7,7,9,6,8,2,6 -C,2,3,2,1,1,5,8,5,6,11,9,11,1,9,3,8 -B,4,7,6,5,6,9,6,4,6,10,5,7,2,8,5,10 -O,1,3,2,2,1,8,7,6,3,9,6,8,2,8,2,8 -P,3,6,4,4,3,4,10,4,5,10,9,4,1,10,3,7 -C,3,3,4,5,2,6,6,7,9,9,5,13,1,9,4,8 -M,4,8,5,6,5,8,6,6,4,6,7,8,8,5,2,7 -A,4,10,6,8,4,7,5,3,1,7,1,8,2,7,2,8 -A,3,9,5,6,3,10,3,2,2,8,3,10,2,6,3,7 -D,5,9,6,7,6,9,7,3,5,11,5,5,3,8,3,8 -M,3,4,5,3,3,7,6,3,4,9,7,8,7,5,1,8 -T,4,11,5,8,5,7,11,4,6,7,11,8,3,12,1,8 -N,8,14,9,8,4,4,9,3,4,13,11,10,6,8,0,8 -S,5,6,6,4,3,6,7,4,7,10,10,9,2,10,4,5 -P,3,2,4,3,2,5,10,4,4,10,8,3,1,10,3,6 -P,4,11,5,8,3,3,13,8,2,11,6,3,1,10,4,8 -H,6,8,8,6,5,10,6,3,7,10,3,7,4,9,4,10 -I,4,9,4,5,2,8,8,2,5,13,5,5,1,9,5,10 -S,7,11,9,8,11,8,8,5,3,8,5,8,6,8,13,8 -N,4,5,6,3,2,7,8,2,5,10,6,6,5,8,1,7 -Z,4,8,6,6,3,7,7,2,10,12,5,9,2,10,6,9 -Y,1,1,2,1,1,9,11,1,6,6,11,7,1,11,1,8 -L,1,3,3,1,1,7,4,1,7,8,2,10,0,7,2,9 -O,8,12,5,6,3,8,7,6,5,9,4,7,5,9,5,8 -W,4,7,6,5,3,6,8,4,1,7,8,8,8,10,0,8 -A,7,10,10,9,8,6,8,3,6,7,8,10,6,8,4,8 -U,6,10,8,8,8,8,7,9,5,6,6,9,3,8,5,5 -G,7,9,10,8,11,7,7,6,3,7,7,8,8,10,9,9 -N,2,1,3,3,2,7,9,5,4,7,6,6,4,8,1,6 -N,4,8,5,6,4,7,7,7,5,7,5,6,3,7,3,8 -W,3,2,5,3,3,8,11,2,2,7,9,8,6,11,0,7 -C,4,6,4,4,2,5,9,6,8,12,10,11,1,9,2,7 -G,3,5,4,4,2,6,7,5,5,9,7,10,2,9,4,10 -Q,3,6,4,7,4,9,5,6,3,9,5,11,3,9,5,9 -D,4,8,6,7,5,5,6,6,7,8,6,8,4,5,6,5 -H,2,1,3,2,2,7,7,5,5,7,6,8,3,8,2,8 -J,2,5,4,4,2,8,6,3,5,14,6,10,1,6,0,7 -B,2,1,2,1,1,7,7,7,5,6,5,7,1,8,7,10 -O,2,3,3,2,2,8,7,6,4,9,5,8,2,8,2,8 -A,3,7,5,5,3,12,3,3,2,10,1,9,2,6,2,8 -C,4,6,6,4,5,7,6,4,4,8,7,11,5,9,3,8 -F,3,5,3,4,2,6,10,4,5,10,9,4,2,10,2,6 -O,3,5,4,4,3,7,7,7,5,9,6,8,2,8,3,8 -J,2,10,3,7,2,12,3,6,3,12,5,11,1,6,0,8 -M,5,8,9,6,10,8,6,3,2,8,4,8,14,6,3,7 -F,6,10,8,7,8,7,6,6,4,7,6,8,5,10,8,12 -K,11,13,10,8,4,8,8,3,8,9,4,6,5,7,4,7 -F,3,8,4,5,1,1,12,5,5,12,10,8,0,8,2,6 -P,3,4,5,3,2,7,10,4,4,12,5,3,1,10,3,8 -L,4,9,6,7,7,7,7,3,5,6,7,11,6,11,6,5 -T,5,7,5,5,2,5,11,2,9,12,9,4,0,10,2,4 -S,4,7,6,5,3,8,8,3,7,10,5,6,2,8,5,8 -A,3,8,5,6,3,11,3,2,2,8,2,9,2,5,2,8 -C,8,12,5,7,2,6,8,7,8,10,7,12,2,9,5,9 -Q,4,8,5,7,3,8,6,9,7,6,4,8,3,8,4,8 -R,5,7,6,5,5,8,7,6,3,8,5,6,4,7,7,8 -Q,1,0,2,1,1,8,7,6,3,6,6,9,2,8,3,8 -D,4,8,6,6,5,10,6,2,6,11,3,7,3,8,3,10 -K,1,0,2,1,0,5,7,7,1,7,6,11,2,8,2,11 -K,8,15,8,8,4,6,8,3,7,9,7,9,6,9,3,7 -L,3,6,5,4,2,6,4,2,9,7,2,10,0,7,3,8 -L,3,11,5,8,2,2,2,5,10,0,0,6,0,7,1,5 -F,2,3,4,2,1,4,12,4,4,13,8,5,1,9,1,6 -U,5,6,5,4,2,4,8,6,8,9,9,9,3,9,3,5 -A,6,11,8,9,9,8,7,8,3,7,6,8,3,8,9,3 -G,3,7,4,5,2,8,7,8,7,6,6,9,2,7,5,11 -M,5,10,8,8,6,8,6,2,4,9,6,8,8,6,2,8 -O,3,7,4,5,3,7,7,7,3,9,6,9,3,8,3,8 -T,1,0,2,0,0,7,14,2,4,7,10,8,0,8,0,8 -U,4,5,5,4,2,5,8,6,8,8,10,10,3,9,1,7 -Y,4,11,6,8,2,9,10,1,3,6,12,8,1,11,0,8 -S,3,6,6,4,3,9,7,4,8,11,3,7,1,8,5,10 -U,3,8,5,6,3,4,8,7,7,9,10,11,3,9,0,8 -H,5,9,5,5,4,7,8,3,4,10,6,8,6,8,4,8 -M,4,7,6,5,6,6,6,5,5,7,7,11,10,5,2,9 -P,3,5,4,3,2,6,9,5,4,9,7,3,1,10,4,6 -W,5,5,8,4,8,7,7,5,5,6,6,8,8,10,7,10 -W,3,3,4,4,2,7,8,4,1,7,8,8,8,10,0,8 -U,2,0,2,0,0,7,5,10,4,7,13,8,3,10,0,8 -N,4,3,4,5,2,7,7,14,2,5,6,8,6,8,0,8 -O,4,11,5,8,3,8,8,9,8,6,8,8,3,8,4,8 -L,3,8,5,6,6,7,7,3,5,7,6,10,6,11,6,5 -R,1,0,1,0,0,6,8,6,3,7,5,7,2,7,4,11 -M,6,10,9,8,7,6,6,7,6,7,8,11,9,6,2,9 -S,2,7,3,5,3,8,7,7,5,7,5,7,2,8,8,7 -T,1,0,2,1,0,7,14,1,4,7,10,8,0,8,0,8 -D,10,15,9,8,6,9,5,4,7,9,5,7,6,10,6,8 -J,3,11,4,8,1,14,2,8,5,14,2,11,0,6,0,8 -L,5,10,5,8,3,0,1,5,6,0,0,6,0,8,0,8 -Y,3,4,5,6,4,9,10,7,4,7,7,6,4,10,5,5 -I,1,8,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -A,3,9,5,6,4,8,2,1,2,7,2,7,2,7,3,6 -R,7,9,10,8,11,7,7,4,4,7,5,7,7,9,7,5 -D,4,10,6,8,5,7,7,9,7,7,6,5,3,8,4,8 -A,4,11,6,8,4,12,2,4,3,11,1,9,3,7,3,9 -A,3,7,5,5,3,11,2,2,2,8,3,9,3,5,3,8 -T,5,10,7,8,8,5,8,4,7,7,6,9,5,8,5,6 -H,5,10,6,7,3,7,7,15,0,7,6,8,3,8,0,8 -B,3,5,4,3,3,7,7,5,5,6,6,6,2,8,6,10 -C,3,8,4,6,2,5,8,7,8,7,8,14,1,8,4,10 -P,2,4,3,3,2,6,10,5,4,9,7,2,1,10,4,6 -N,4,5,4,3,3,7,8,5,5,7,6,6,5,10,2,5 -J,2,8,3,6,2,10,7,0,7,11,3,6,0,7,1,7 -S,6,12,6,7,3,7,7,3,5,14,7,8,2,9,3,8 -U,5,10,5,7,2,7,4,15,6,7,14,8,3,9,0,8 -K,4,4,5,3,3,6,7,4,7,7,6,11,3,8,5,9 -Y,5,7,6,5,3,5,9,2,9,9,10,4,1,11,4,4 -W,5,7,5,5,4,3,11,2,2,10,8,7,5,11,2,6 -G,3,7,4,5,3,6,6,6,5,9,7,13,2,9,4,10 -R,2,3,3,2,2,8,7,3,5,9,4,7,2,7,4,10 -H,4,5,4,7,2,7,7,15,1,7,6,8,3,8,0,8 -W,10,10,10,8,7,6,10,5,3,8,6,6,10,12,4,4 -O,4,10,6,8,4,8,6,9,5,7,4,8,3,8,3,7 -B,3,4,4,3,3,7,7,5,6,7,6,6,2,8,6,9 -W,7,11,9,8,7,10,8,5,1,6,10,7,10,12,2,5 -A,4,8,6,6,3,9,3,2,3,8,1,8,2,6,3,7 -L,2,5,3,3,1,6,4,1,8,7,2,10,0,7,2,8 -Q,4,7,5,9,6,8,6,6,4,9,6,9,2,9,4,8 -F,2,4,2,3,2,6,10,4,5,10,9,5,2,9,3,6 -V,5,11,8,8,5,8,12,2,3,4,10,9,6,11,5,8 -O,8,11,8,9,8,8,6,8,4,9,5,8,3,9,3,8 -Y,8,9,8,7,5,5,8,1,8,8,9,5,4,11,6,4 -S,5,7,6,5,4,7,7,3,7,10,8,8,2,9,5,6 -C,3,6,4,6,4,4,8,3,5,7,6,11,3,10,7,7 -I,2,11,2,8,3,7,7,0,7,7,6,8,0,8,3,8 -A,3,10,5,8,3,13,4,5,3,12,0,8,2,6,3,9 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -O,4,6,6,6,4,8,4,4,4,9,3,9,3,7,4,9 -J,2,4,4,3,1,8,7,2,6,14,5,8,2,8,1,8 -Z,3,8,4,6,2,7,7,4,13,9,6,8,0,8,8,8 -S,4,8,5,6,4,8,7,7,7,7,6,8,2,9,9,8 -R,2,4,4,2,2,8,8,3,5,10,4,7,2,6,3,10 -S,3,6,5,4,5,9,7,4,3,8,5,8,4,8,10,9 -L,2,6,3,4,2,8,3,3,6,7,2,7,1,6,2,8 -Q,6,10,6,5,4,9,6,4,7,11,4,9,3,7,8,11 -Q,2,2,3,4,2,8,7,7,3,6,5,9,2,9,3,9 -V,3,8,5,6,2,9,9,4,1,6,12,8,2,10,0,8 -R,3,5,4,6,3,6,11,9,4,7,2,9,3,7,5,11 -O,5,8,7,6,8,8,7,5,1,7,6,8,9,9,6,11 -R,3,4,5,3,3,8,7,3,5,9,4,7,2,7,4,10 -F,7,13,7,7,5,8,10,3,5,11,5,4,4,9,8,7 -N,4,4,5,7,3,7,7,15,2,4,6,8,6,8,0,8 -J,3,11,4,8,3,9,6,2,7,12,3,8,1,6,2,6 -P,4,8,5,6,2,4,15,8,1,12,6,2,0,9,4,8 -B,4,7,4,5,3,6,8,9,8,7,5,7,2,8,9,9 -E,5,10,4,5,3,7,10,5,5,10,5,9,3,8,6,10 -S,3,7,4,5,2,8,7,5,8,5,6,8,0,8,9,8 -N,4,7,6,5,6,7,8,4,4,7,6,7,5,9,5,4 -L,3,11,5,8,3,4,3,5,8,1,0,6,0,6,1,5 -I,5,8,6,9,6,8,9,5,6,6,6,7,3,9,9,8 -C,7,10,7,8,5,3,8,5,7,10,10,14,3,9,4,6 -D,2,5,4,4,3,8,7,5,6,9,5,5,2,8,3,8 -D,3,4,5,3,3,9,6,4,6,10,4,5,2,8,3,8 -R,3,6,4,4,4,8,6,7,3,8,6,7,4,6,7,8 -S,4,8,6,6,4,7,8,3,7,10,4,7,2,7,4,8 -N,5,6,7,4,4,4,10,3,3,9,9,8,5,8,1,7 -N,4,9,6,7,4,9,7,6,5,6,6,4,5,8,2,5 -O,5,10,7,7,8,9,7,6,1,7,7,9,10,9,4,6 -C,3,6,4,4,2,3,9,5,7,11,11,11,1,8,2,7 -I,4,9,4,4,2,7,10,2,5,13,5,4,1,8,5,8 -X,5,9,7,8,8,7,8,2,5,8,6,8,4,6,8,9 -R,6,9,8,7,8,8,8,6,5,8,6,7,7,8,6,12 -J,8,13,6,10,5,11,5,2,5,12,4,8,2,9,6,13 -Z,5,9,7,7,4,7,8,2,10,12,6,9,2,10,6,8 -Z,1,3,2,2,1,7,7,5,8,6,6,8,1,8,7,8 -R,2,1,3,2,2,7,8,4,5,6,5,7,2,6,4,8 -M,5,9,6,7,6,7,5,11,1,7,9,8,9,5,2,8 -C,4,10,5,8,2,6,8,7,10,4,6,13,1,7,4,8 -N,2,1,3,3,2,7,8,5,4,7,6,7,4,8,1,7 -B,4,8,6,6,5,8,7,5,6,9,5,6,3,8,7,9 -Z,6,9,8,7,5,9,5,3,9,11,3,11,3,6,7,9 -N,6,10,9,8,6,5,10,2,4,9,9,8,7,7,2,7 -I,5,10,6,8,4,7,7,0,8,13,6,8,0,8,1,8 -I,1,7,0,5,1,7,7,5,3,7,6,8,0,8,0,8 -O,4,7,6,5,6,9,6,5,1,7,6,9,10,9,4,8 -D,5,11,8,9,12,9,9,5,5,7,6,6,5,8,9,6 -P,7,11,10,8,5,8,11,7,3,11,4,2,2,11,4,9 -N,5,8,7,6,4,7,8,3,5,10,6,7,5,8,1,7 -Q,2,4,3,5,3,8,7,7,3,6,6,9,3,8,5,10 -I,2,7,5,5,4,11,6,1,5,8,4,5,3,8,5,9 -D,5,9,7,7,7,9,6,4,6,9,3,6,3,8,3,8 -P,5,8,5,6,2,4,13,8,1,11,6,3,1,10,4,8 -C,2,1,3,2,1,6,7,6,10,7,6,14,0,8,4,9 -J,5,10,7,8,3,6,7,3,7,15,8,11,1,6,1,7 -K,3,2,4,3,2,5,7,4,7,6,6,11,3,8,5,9 -T,1,0,1,0,0,8,13,1,4,6,10,8,0,8,0,8 -M,6,5,7,8,4,8,7,13,2,7,9,8,9,6,0,8 -K,9,13,10,7,6,4,9,4,6,10,10,11,5,8,4,6 -G,4,9,4,6,3,6,7,7,6,10,8,10,2,9,4,9 -D,2,6,4,4,5,10,7,4,5,7,5,6,3,6,6,5 -J,1,4,2,3,1,10,6,2,5,11,4,9,1,7,1,7 -F,1,3,3,1,1,5,10,2,5,13,7,5,1,9,1,7 -H,6,7,8,5,5,5,9,3,6,10,9,9,4,9,4,7 -Q,3,5,4,6,3,8,7,7,5,8,7,8,2,9,4,9 -X,9,14,10,8,5,5,9,3,8,11,9,8,4,9,4,6 -U,7,9,8,7,5,4,8,5,8,10,9,9,3,9,2,6 -E,5,9,7,6,6,8,7,7,2,7,6,11,5,8,8,9 -K,1,1,2,1,0,4,6,6,2,7,6,11,3,8,2,10 -R,4,11,6,9,5,7,8,5,7,6,5,7,4,5,7,9 -R,4,7,5,5,4,7,8,6,6,6,5,8,3,6,6,9 -R,4,8,6,6,5,9,8,4,6,8,3,8,4,5,5,11 -R,2,4,4,3,2,9,7,2,6,10,3,6,2,7,3,10 -V,3,8,6,6,1,6,8,4,3,7,14,8,3,9,0,8 -X,3,8,4,6,3,7,7,3,8,6,6,10,3,8,6,8 -F,4,9,6,7,7,6,8,1,4,10,8,7,6,11,4,5 -B,3,7,4,5,5,9,6,5,4,7,7,8,6,9,7,7 -L,3,6,5,4,3,6,4,2,6,7,2,9,1,7,3,7 -U,4,2,5,3,2,6,9,6,7,7,10,9,3,9,1,8 -O,3,6,4,4,3,8,7,7,5,7,6,8,2,8,3,8 -Y,4,8,5,6,2,6,10,2,2,7,12,8,2,11,0,8 -Z,2,3,4,2,1,7,7,2,9,11,6,8,1,8,5,7 -P,6,8,8,6,5,7,11,7,3,9,5,3,3,11,4,8 -U,3,4,4,6,2,8,5,13,5,6,14,8,3,9,0,8 -C,6,9,4,4,2,7,9,6,6,11,7,8,2,9,5,9 -L,2,6,3,4,2,4,5,1,8,6,2,10,0,7,3,6 -R,3,5,4,6,3,6,11,10,4,7,3,9,3,7,5,10 -P,4,8,5,6,5,6,9,6,5,9,7,4,2,10,3,7 -R,4,11,5,8,3,6,10,10,4,7,4,8,3,7,5,11 -C,1,0,2,0,0,7,7,5,7,7,6,13,0,8,4,10 -Q,2,1,2,2,1,8,7,7,4,6,6,8,3,8,3,8 -R,2,1,2,2,2,7,8,5,5,6,5,7,2,7,4,8 -E,6,9,8,7,5,7,7,2,9,11,5,9,3,8,5,8 -E,3,7,4,5,4,7,8,6,9,6,4,9,3,8,6,8 -A,2,5,4,4,2,10,2,2,2,9,2,9,2,6,2,8 -L,3,7,4,5,2,7,4,2,6,7,2,8,1,6,2,8 -F,5,6,6,7,6,7,10,5,6,8,6,8,4,8,7,6 -E,2,3,4,2,2,5,8,2,8,11,8,9,2,8,4,6 -V,1,1,2,1,0,8,9,4,2,7,13,8,2,10,0,8 -E,2,6,3,4,3,6,7,6,8,7,6,10,3,8,6,8 -U,4,10,4,7,2,7,6,14,5,7,13,8,3,9,0,8 -A,3,8,6,5,2,8,5,3,1,7,1,8,2,7,2,8 -A,4,11,7,8,6,10,3,1,2,8,3,9,5,5,3,7 -Y,3,5,4,6,5,9,9,5,3,6,7,8,5,10,7,6 -N,2,3,4,2,1,5,10,3,3,10,8,8,4,8,0,8 -U,4,5,4,7,2,7,5,14,5,7,14,8,3,9,0,8 -G,4,8,5,6,3,6,7,6,6,10,8,10,2,9,4,9 -L,2,8,3,6,2,3,5,2,8,3,0,9,0,7,1,6 -O,5,11,6,9,6,7,7,8,3,10,6,8,3,8,3,8 -L,3,7,4,5,2,7,4,1,7,8,2,9,1,6,2,8 -Y,5,10,8,8,4,10,11,2,8,3,11,8,1,11,2,9 -K,3,4,4,6,2,3,7,7,2,7,5,11,3,8,3,10 -G,7,14,5,8,4,8,6,4,3,9,5,9,4,9,8,8 -F,3,9,4,7,4,5,10,3,5,10,9,6,2,10,3,6 -P,4,5,5,8,2,3,13,8,2,11,7,3,1,10,4,8 -U,3,4,4,3,2,6,9,6,6,7,9,9,3,9,1,9 -M,4,11,5,8,7,7,6,10,1,7,8,8,8,4,0,8 -L,3,10,3,8,2,0,2,3,6,1,0,8,0,8,0,8 -F,3,6,5,4,2,6,10,2,6,13,7,5,1,10,2,7 -W,4,3,6,4,2,4,8,5,1,7,9,8,8,10,0,8 -Z,4,10,5,8,3,7,7,4,15,9,6,8,0,8,8,8 -U,7,11,9,8,5,6,10,6,8,7,10,9,3,9,1,8 -H,3,7,5,5,4,8,7,6,6,7,6,9,6,8,3,8 -V,6,9,5,7,2,2,12,5,4,11,12,7,3,10,1,8 -E,4,10,3,5,2,9,6,5,4,11,4,10,3,8,8,13 -O,5,10,6,8,6,8,8,8,4,7,7,6,5,7,4,9 -Q,1,0,2,1,1,8,7,6,3,6,6,9,2,8,3,8 -J,2,6,3,4,1,14,2,5,5,13,2,10,0,8,0,8 -R,3,6,4,4,3,8,8,5,6,7,5,6,3,7,5,8 -E,4,7,6,5,4,7,7,2,7,11,6,9,3,8,4,9 -W,6,9,6,5,4,3,9,2,3,9,10,8,8,11,1,5 -T,2,9,3,6,1,7,14,0,6,7,11,8,0,8,0,8 -B,2,3,3,2,2,8,7,3,5,10,5,6,2,8,3,9 -G,2,0,2,1,1,8,6,6,5,6,5,9,2,8,5,10 -S,4,9,6,6,4,7,6,3,7,9,9,9,2,10,4,6 -B,4,7,6,5,6,9,6,4,6,9,5,6,2,8,6,9 -S,4,9,6,7,4,9,8,4,7,10,4,6,2,8,5,9 -M,2,1,3,2,1,7,6,10,1,7,9,8,7,6,0,8 -D,3,7,5,5,7,10,8,4,5,7,6,6,4,7,7,5 -P,4,11,6,8,5,6,8,5,6,9,8,4,2,10,4,7 -V,4,10,6,7,4,8,9,4,2,6,13,8,2,10,0,8 -E,1,3,3,2,1,7,7,2,6,11,6,9,2,9,4,10 -Z,2,4,4,3,2,7,8,2,9,11,6,8,1,8,5,7 -Q,3,4,4,7,2,7,6,8,6,5,5,8,3,8,4,8 -F,4,8,4,5,2,1,12,5,5,12,10,8,0,8,2,6 -Q,2,3,3,4,3,8,7,7,3,6,6,9,3,8,4,9 -O,3,4,4,3,2,7,7,6,4,9,6,8,2,8,3,7 -L,4,10,5,8,4,6,4,1,7,8,2,10,0,6,3,8 -L,4,10,5,7,3,7,4,0,9,9,2,11,0,7,3,8 -J,2,7,3,5,1,14,3,4,5,12,1,8,0,7,0,8 -A,3,6,5,4,3,8,3,2,2,6,2,7,2,6,2,6 -M,5,9,6,4,4,6,4,2,2,8,4,10,7,3,1,9 -H,7,11,10,8,7,4,9,4,6,10,9,9,3,8,4,7 -Q,4,10,5,9,5,8,7,8,5,6,7,8,3,8,4,9 -H,4,9,5,7,4,7,8,13,1,7,5,8,3,8,0,8 -V,5,11,7,8,4,7,9,4,1,7,13,8,5,9,2,9 -L,3,8,4,6,3,4,4,4,7,2,1,7,1,6,1,6 -M,5,11,7,8,9,8,7,6,5,6,7,8,8,6,2,8 -X,6,10,8,8,7,7,6,3,5,6,6,8,3,9,10,9 -Z,5,8,7,6,4,6,9,3,10,11,9,5,1,8,6,5 -I,3,9,4,7,3,7,8,0,7,13,6,8,0,8,1,8 -R,2,4,4,3,2,8,7,4,5,9,5,7,2,7,4,10 -O,7,10,7,8,6,8,7,7,4,9,5,6,5,9,5,10 -U,5,9,7,8,7,7,7,4,4,6,6,9,4,8,2,9 -J,2,3,2,4,1,10,3,10,3,12,8,13,1,6,0,8 -D,6,9,6,4,3,10,4,6,5,13,4,11,5,6,4,8 -K,5,7,7,5,5,4,7,2,7,10,9,11,4,7,4,6 -R,3,5,5,3,3,8,7,5,4,8,5,7,3,7,4,11 -G,5,11,4,6,3,7,9,4,4,9,6,5,3,9,8,7 -O,6,11,7,8,5,7,7,9,6,7,5,8,3,8,4,8 -A,1,0,2,0,0,7,4,2,0,7,2,8,2,7,1,8 -F,2,4,3,3,2,5,10,4,5,10,9,5,1,10,3,6 -U,5,9,6,6,4,3,9,5,7,10,10,9,3,9,2,6 -B,3,8,5,6,4,9,6,4,6,10,5,6,2,8,6,9 -F,5,9,6,7,6,6,10,5,4,9,6,8,5,9,7,11 -Q,4,8,4,9,5,8,8,6,2,6,8,11,3,9,6,7 -Q,3,8,4,7,4,8,7,8,5,6,5,8,2,9,4,8 -T,3,4,3,2,1,6,11,2,7,11,9,5,2,9,3,4 -S,4,8,5,6,2,7,6,6,9,5,6,10,0,9,9,8 -C,2,1,3,2,1,6,7,6,10,7,6,14,0,8,4,9 -Q,7,12,6,7,3,8,4,4,7,11,4,10,3,7,8,11 -L,4,10,5,8,3,0,2,4,6,1,0,8,0,8,0,8 -F,4,9,6,6,6,11,6,2,5,10,5,6,5,9,4,7 -P,4,6,5,8,8,8,9,5,0,8,7,6,5,10,5,9 -C,4,6,5,4,2,5,8,5,7,12,9,12,2,10,3,8 -V,2,6,4,4,2,6,11,3,3,8,11,8,2,11,1,9 -Q,7,9,7,11,9,8,7,6,2,8,7,11,5,9,8,6 -T,1,6,2,4,1,7,13,0,5,7,10,8,0,8,0,8 -N,5,10,5,8,3,7,7,15,2,4,6,8,6,8,0,8 -Z,4,11,6,8,7,8,7,2,8,7,6,7,1,7,11,7 -S,2,1,2,2,1,8,8,6,4,8,5,7,2,8,8,8 -G,5,10,5,7,4,6,7,7,6,10,8,11,2,9,4,9 -M,9,14,11,8,7,6,4,3,2,8,4,10,10,1,1,8 -R,6,9,6,4,4,5,8,3,5,7,4,10,5,7,6,6 -T,4,7,4,5,3,5,11,3,6,11,9,5,2,11,2,5 -D,5,11,5,8,3,6,7,11,10,6,5,6,3,8,4,8 -X,3,4,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -M,2,3,3,4,2,8,6,11,1,6,9,8,7,5,0,8 -R,4,9,6,6,6,7,7,4,6,7,5,7,3,7,5,8 -P,3,5,5,4,3,8,8,4,4,12,4,4,2,9,3,8 -F,8,13,7,7,3,6,9,3,6,12,5,5,2,8,6,6 -Q,2,2,3,3,2,8,7,7,3,6,6,9,2,9,3,9 -J,1,4,2,3,1,10,6,2,6,12,4,9,0,7,1,7 -Y,3,5,5,7,5,9,10,5,4,7,7,7,5,11,6,5 -I,2,9,2,7,2,7,7,0,8,7,6,8,0,8,3,8 -S,3,8,4,6,3,8,8,7,5,7,6,7,2,8,8,8 -B,4,9,6,6,7,9,6,4,4,6,7,7,7,9,8,6 -Y,3,7,5,5,2,8,10,1,2,6,12,8,1,11,0,8 -I,4,10,5,8,3,5,9,0,7,13,7,6,2,9,3,6 -W,5,9,8,7,4,7,7,5,2,6,8,8,9,9,0,8 -I,5,12,4,6,3,10,6,3,5,13,3,6,2,8,5,10 -B,6,9,9,8,10,7,7,5,4,8,6,8,7,9,9,6 -T,3,8,5,6,2,7,14,1,5,7,10,8,0,8,0,8 -Y,2,9,4,6,1,7,10,1,3,7,12,8,1,11,0,8 -Z,5,8,7,6,4,7,8,2,10,12,6,7,2,8,6,8 -L,6,12,5,7,3,10,2,4,4,13,4,12,2,7,6,9 -Y,2,3,2,1,1,5,10,2,7,10,9,4,1,11,2,5 -M,3,4,5,3,3,8,5,3,3,9,6,8,7,5,1,8 -I,5,15,5,8,3,10,6,2,5,11,4,6,2,9,5,12 -R,2,2,3,3,2,6,7,4,5,7,6,7,5,7,3,8 -U,4,8,6,6,4,5,9,5,6,7,9,9,3,9,1,8 -D,6,12,5,7,4,7,6,4,6,9,5,6,5,9,7,6 -Y,8,11,6,15,5,4,11,2,4,11,10,6,4,10,6,6 -E,5,9,7,6,5,7,8,1,8,11,6,9,2,8,4,9 -L,1,0,1,0,0,2,2,5,4,1,2,6,0,8,0,8 -A,5,11,7,8,5,7,4,3,0,7,1,8,3,8,3,7 -C,4,6,5,4,5,6,6,4,4,7,6,11,5,9,3,8 -O,3,9,5,7,4,7,8,8,6,7,9,7,3,8,4,9 -U,2,6,3,4,1,7,5,13,5,7,12,8,3,9,0,8 -A,3,5,5,5,4,8,8,2,4,7,7,8,5,9,4,7 -E,3,5,6,3,3,5,8,2,9,11,7,9,2,8,4,8 -L,3,6,3,4,1,1,0,6,6,0,1,5,0,8,0,8 -P,4,7,6,11,10,8,10,4,0,9,7,6,7,10,5,8 -K,4,8,6,7,5,9,6,2,3,8,3,8,5,7,6,11 -R,4,9,6,7,6,9,7,4,5,10,4,7,3,7,4,11 -I,5,11,4,6,2,8,8,2,5,13,4,5,2,9,5,9 -K,3,3,5,2,2,6,7,1,7,10,7,10,3,8,2,8 -P,11,15,9,8,4,6,10,6,3,11,4,4,5,10,4,7 -W,7,11,7,6,4,4,8,2,2,8,10,8,9,11,1,6 -Y,5,9,5,5,3,6,7,4,5,9,7,5,3,10,5,4 -C,5,9,4,4,3,7,10,3,4,9,7,9,3,8,6,10 -K,5,10,8,7,5,6,7,3,8,7,6,8,4,8,5,8 -P,4,11,5,8,4,5,11,4,6,11,9,4,0,10,4,7 -R,4,8,5,6,5,8,8,6,5,8,6,7,3,7,5,9 -M,3,7,4,5,3,8,6,11,1,6,9,8,7,6,0,8 -F,1,0,1,0,0,3,11,4,3,11,9,7,0,8,2,8 -J,3,9,4,7,1,11,2,11,3,13,8,14,1,6,0,8 -F,4,8,4,6,3,1,12,4,4,12,10,7,0,8,2,6 -K,5,8,7,7,6,8,5,2,4,8,4,8,4,8,7,11 -U,3,3,4,5,2,8,4,14,5,7,12,8,3,9,0,8 -J,1,3,2,2,1,10,6,2,5,12,4,9,0,7,1,7 -R,5,11,6,8,7,5,9,8,3,7,5,8,2,7,5,11 -Q,5,8,6,10,7,7,10,4,2,6,9,11,3,9,6,8 -W,4,6,6,4,3,6,8,4,1,7,8,8,8,9,0,8 -K,7,11,9,8,5,6,7,2,7,10,7,10,4,8,4,8 -R,6,10,5,6,3,7,7,5,4,9,4,9,6,5,6,11 -M,7,9,9,5,4,12,2,5,2,11,1,9,7,2,1,8 -Q,7,14,7,8,5,12,4,4,6,12,3,9,4,8,7,12 -J,5,10,3,14,4,10,7,2,4,10,5,6,3,8,6,10 -X,4,9,7,7,5,7,7,3,9,5,6,10,3,8,6,8 -G,3,5,4,4,2,6,7,6,6,10,7,10,2,9,4,10 -N,3,7,5,5,3,5,9,6,4,7,7,9,5,9,1,7 -M,2,1,3,3,3,8,6,6,4,7,7,8,6,5,2,8 -Y,3,8,5,6,2,7,10,0,3,7,11,8,1,10,0,8 -N,5,9,6,4,3,2,11,3,3,12,11,9,4,9,0,8 -M,8,9,11,7,8,10,6,2,5,9,3,6,10,8,3,9 -K,5,7,7,6,6,10,5,3,3,10,3,8,5,7,6,12 -Y,4,10,6,8,6,9,3,7,5,7,8,8,3,10,5,4 -X,7,13,8,7,5,9,6,3,8,11,3,7,4,8,4,8 -F,4,9,6,6,4,6,10,1,6,13,7,6,1,10,2,8 -Z,2,1,2,2,2,8,7,5,8,6,6,7,1,8,6,8 -E,3,8,3,6,2,2,8,6,10,7,6,15,0,8,6,7 -S,4,8,5,6,4,8,6,7,7,7,8,9,2,10,9,8 -T,3,6,4,8,1,10,14,0,6,5,11,9,0,8,0,8 -V,3,5,5,3,2,7,12,3,3,7,11,9,2,10,1,8 -G,2,0,2,1,1,8,7,6,5,6,6,9,1,7,5,10 -M,5,10,6,8,4,7,7,12,2,7,9,8,9,6,0,8 -L,2,4,3,3,1,7,4,1,8,8,2,10,0,7,2,8 -M,8,9,11,8,13,8,7,4,4,7,6,7,11,8,6,4 -D,9,13,8,8,6,7,6,4,7,10,5,7,6,8,8,5 -B,3,5,3,4,3,7,7,5,5,6,6,6,2,8,6,10 -V,7,11,7,8,5,2,12,2,3,9,11,8,3,9,2,6 -S,7,10,8,7,4,8,7,4,9,11,4,8,2,8,5,9 -U,6,11,9,8,5,8,8,5,9,4,10,8,4,7,2,7 -N,5,9,7,6,5,6,8,7,7,7,6,7,3,7,3,8 -H,2,0,2,0,0,7,8,11,1,7,5,8,3,8,0,8 -A,2,4,4,3,2,9,2,2,2,9,2,8,2,6,3,8 -S,4,9,5,6,5,8,8,7,5,7,5,7,2,7,8,7 -X,5,7,7,6,7,8,7,2,5,7,6,8,3,9,8,8 -J,3,10,4,8,1,11,2,11,3,12,8,14,1,6,0,8 -I,5,9,3,4,1,10,6,5,4,13,3,7,2,8,5,10 -B,4,7,4,5,5,6,7,8,5,7,6,7,2,8,7,9 -L,4,5,5,4,4,8,6,4,5,7,7,8,2,8,7,10 -U,5,5,6,4,3,4,8,5,8,10,9,9,3,9,2,5 -F,5,10,7,8,4,5,11,4,7,11,10,5,2,10,3,5 -V,4,7,6,5,6,7,7,4,2,8,7,8,7,10,5,7 -A,5,11,8,8,5,12,2,3,3,10,1,9,3,7,4,8 -N,4,6,4,4,2,7,7,14,2,5,6,8,6,8,0,8 -C,5,9,6,6,3,5,8,8,9,9,8,13,2,10,4,9 -J,2,5,4,3,2,11,6,2,7,12,3,7,0,7,1,8 -U,3,3,3,4,1,7,6,13,5,7,13,8,3,9,0,8 -D,6,12,6,6,4,6,8,5,7,9,6,6,5,9,7,5 -U,6,11,6,6,4,8,5,5,5,6,8,8,4,9,3,8 -A,4,11,7,8,4,11,2,2,3,9,2,9,5,6,3,9 -A,2,6,3,4,2,9,5,2,0,8,2,8,2,6,1,8 -I,4,11,5,8,3,7,7,0,9,14,6,8,0,8,1,8 -E,4,10,4,8,4,3,9,5,10,7,6,14,0,8,6,8 -E,5,10,7,7,6,10,6,1,7,11,4,8,4,8,5,11 -L,3,7,4,5,2,5,2,7,8,1,2,2,1,6,1,5 -Y,2,8,4,5,1,9,10,2,3,6,12,8,1,11,0,8 -M,4,4,5,3,3,6,6,6,5,7,7,10,7,6,2,8 -K,3,7,5,5,6,6,8,4,4,6,5,9,5,7,7,7 -K,4,7,5,5,4,7,6,1,6,10,5,10,3,8,4,9 -U,5,8,6,6,3,3,9,6,7,12,11,9,3,9,1,7 -J,1,3,2,2,1,10,7,1,5,11,4,8,0,7,0,7 -F,2,6,3,4,2,1,10,3,5,11,11,9,0,8,2,7 -X,3,4,4,3,2,7,7,3,9,6,6,9,2,8,6,8 -J,4,10,4,8,3,15,3,3,5,12,0,7,0,8,0,8 -P,6,12,5,7,4,6,11,5,2,11,6,3,3,12,5,5 -F,6,9,9,7,8,7,7,5,4,7,6,8,5,11,9,11 -A,6,10,7,7,7,8,8,6,5,6,5,8,5,7,7,5 -D,4,5,5,8,3,5,7,10,8,7,6,5,3,8,4,8 -Q,3,7,4,5,2,8,7,8,6,6,8,9,3,7,5,10 -V,3,4,5,7,1,8,8,4,3,6,14,8,3,9,0,8 -O,2,3,3,2,2,8,7,6,4,9,6,8,2,8,2,8 -P,4,7,5,5,4,5,10,3,6,10,9,5,4,10,3,7 -A,2,3,4,5,1,8,6,3,1,7,0,8,2,7,1,8 -U,7,12,6,6,3,9,7,6,6,3,10,7,5,9,2,6 -D,2,5,4,3,3,9,6,4,6,10,4,6,2,8,3,8 -E,3,2,4,3,3,7,7,5,8,7,6,9,2,8,6,9 -G,1,3,2,1,1,7,7,4,5,9,7,10,1,9,3,10 -G,4,7,4,5,3,7,6,6,6,10,7,11,2,10,4,10 -Z,3,9,4,7,2,7,7,4,14,9,6,8,0,8,8,8 -W,5,5,8,7,4,7,7,5,2,7,8,8,9,9,0,8 -Q,4,9,5,8,5,8,8,8,5,6,6,9,3,8,4,9 -Y,4,10,6,8,4,5,9,0,7,8,12,9,1,11,2,7 -U,3,6,4,4,1,8,4,13,5,7,13,8,3,9,0,8 -N,4,5,6,4,3,7,9,2,5,10,6,6,5,9,1,7 -Y,5,4,6,6,6,9,10,5,3,6,7,7,5,11,7,4 -S,2,4,4,2,1,10,7,2,7,10,5,8,1,9,5,10 -A,2,4,4,3,2,10,2,2,2,9,2,9,2,6,2,8 -Y,5,10,5,7,2,3,11,4,6,12,12,6,1,11,2,6 -M,5,10,7,8,10,8,8,7,4,7,6,8,8,9,9,4 -G,1,0,2,1,1,8,6,6,5,6,5,9,1,8,5,10 -A,5,11,8,8,5,9,3,2,3,8,1,8,2,7,3,7 -U,5,9,6,8,7,7,7,4,4,6,6,8,5,7,2,7 -I,1,3,1,2,0,7,7,1,7,13,6,8,0,8,0,8 -X,2,3,4,1,1,6,8,2,8,11,8,8,2,8,3,7 -D,4,8,5,6,3,9,7,4,7,11,4,5,3,8,3,8 -D,2,3,3,2,2,7,7,6,6,7,6,6,2,8,3,7 -A,5,9,6,7,4,9,4,3,1,8,1,9,2,7,3,8 -F,4,8,4,5,1,1,11,5,7,11,11,9,0,8,2,6 -D,5,8,6,6,5,8,8,5,6,10,5,4,4,9,4,9 -V,3,9,5,7,2,8,8,4,3,6,14,8,3,10,0,8 -D,9,14,8,8,6,9,5,4,6,10,4,7,6,8,9,7 -A,7,11,6,6,3,11,2,3,1,9,4,11,4,4,4,9 -U,6,10,7,8,4,3,9,5,7,11,10,9,3,9,2,6 -Q,5,9,7,11,7,8,6,8,4,5,6,10,3,8,6,10 -M,5,7,8,5,6,9,7,2,4,9,5,7,7,6,2,8 -O,4,10,5,8,5,8,6,8,4,7,4,8,3,8,3,8 -X,6,9,9,7,5,5,8,1,8,10,10,9,4,7,4,6 -B,6,10,9,8,7,9,6,4,7,9,5,7,3,8,7,10 -H,3,7,4,4,2,7,6,14,1,7,7,8,3,8,0,8 -C,3,4,4,6,1,5,7,6,9,7,6,14,1,9,4,9 -K,3,4,5,3,2,5,7,2,7,10,8,10,3,8,3,7 -X,4,4,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -W,4,9,6,7,10,9,7,5,2,7,6,8,13,10,3,6 -L,3,11,5,8,3,5,3,6,7,2,2,4,1,6,1,5 -V,4,8,4,6,2,3,11,3,3,10,11,7,2,10,1,7 -S,5,8,7,6,8,6,7,3,2,8,6,6,3,8,11,1 -I,1,11,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -G,3,6,4,4,2,7,6,6,6,6,6,10,2,9,4,8 -W,3,4,4,3,3,6,10,5,2,9,7,6,5,11,2,6 -T,6,10,5,8,2,4,13,3,7,12,10,4,0,10,1,5 -O,2,3,3,2,1,7,7,7,4,7,6,8,2,8,2,8 -V,5,9,5,6,3,2,12,4,3,11,12,8,3,10,1,7 -M,6,12,7,6,5,7,3,2,2,8,4,10,8,1,2,8 -Z,4,6,6,8,4,13,4,3,7,10,2,7,2,7,5,12 -P,4,10,5,7,3,5,10,10,4,9,6,5,2,10,4,8 -A,3,8,5,6,2,7,6,3,1,7,0,8,2,7,1,8 -S,7,10,9,8,11,8,8,5,3,9,5,7,5,8,12,8 -P,5,9,7,6,6,5,10,5,5,10,8,3,1,10,3,7 -E,3,8,3,6,2,3,7,6,10,7,6,14,0,8,7,8 -P,5,10,6,7,5,5,11,5,5,11,9,3,1,10,4,7 -O,1,0,1,0,0,8,7,6,4,7,6,8,2,8,2,8 -J,1,4,2,3,1,9,6,2,6,12,4,9,1,7,1,7 -M,3,4,6,3,3,7,6,3,4,9,8,9,7,5,2,9 -M,6,10,8,8,9,8,7,7,5,6,5,8,10,8,10,12 -G,4,8,6,6,4,7,7,7,6,6,6,9,2,8,4,8 -T,2,1,2,1,0,8,15,2,4,6,10,8,0,8,0,8 -E,3,7,3,5,2,3,7,6,10,7,6,14,0,8,7,8 -U,3,6,4,4,1,7,5,13,5,7,13,8,3,9,0,8 -J,3,7,4,5,2,8,6,2,6,14,5,9,0,7,0,7 -W,5,7,7,6,9,6,8,6,5,6,6,8,8,9,8,8 -S,3,4,4,6,2,8,7,6,9,4,6,7,0,8,9,8 -M,9,12,12,7,5,10,2,3,2,10,2,9,8,1,1,8 -Z,2,1,2,2,1,7,7,3,12,8,6,8,0,8,7,8 -V,3,8,6,6,1,7,8,4,3,7,14,8,3,9,0,8 -X,4,7,6,5,3,7,8,1,8,10,7,8,2,8,3,8 -Y,3,6,5,9,8,9,7,4,1,6,7,9,4,11,7,8 -Y,3,6,5,4,1,8,10,2,2,7,13,8,2,11,0,8 -H,6,8,9,10,9,7,4,4,2,6,4,6,8,6,11,7 -O,4,7,5,5,3,7,6,8,4,8,5,10,3,8,3,8 -C,6,10,7,7,4,5,7,6,8,11,9,14,2,9,4,5 -S,5,7,6,5,4,9,6,3,7,10,6,9,2,10,5,9 -Q,4,10,4,5,3,10,6,4,7,11,3,9,3,6,7,11 -V,4,6,4,4,2,3,12,5,4,11,12,7,3,10,1,8 -K,8,15,8,8,4,7,6,3,6,9,9,10,6,12,3,7 -G,6,11,7,8,6,6,7,7,5,8,7,11,5,7,6,6 -N,6,9,8,7,5,7,9,6,5,7,6,6,7,8,3,8 -C,3,4,4,3,2,4,8,4,7,10,10,13,1,9,2,7 -Q,6,8,6,10,6,8,6,7,4,9,6,10,4,9,7,6 -A,1,0,2,1,0,8,4,2,0,7,2,8,1,7,1,8 -U,4,5,5,4,2,4,8,5,7,11,10,9,3,9,2,6 -X,9,12,8,6,4,7,7,2,9,9,7,9,4,9,4,7 -I,1,4,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -O,3,8,4,6,3,8,7,8,6,7,5,9,3,8,3,7 -P,5,11,5,8,3,4,10,10,4,9,6,4,2,10,4,8 -L,4,10,5,7,7,7,7,3,5,7,7,10,6,10,6,6 -A,2,3,3,2,1,10,2,2,1,9,2,9,1,6,1,8 -D,1,0,1,0,0,6,7,6,5,7,6,6,2,8,2,8 -S,2,4,4,2,2,8,8,2,7,10,4,7,1,8,4,8 -U,5,9,7,6,6,8,8,8,5,6,7,9,3,8,4,5 -F,6,11,8,8,4,4,14,4,5,13,7,2,1,10,2,5 -Q,4,5,5,7,3,8,6,8,6,6,5,8,3,8,4,8 -E,3,7,3,5,2,3,8,6,10,7,6,14,0,8,7,8 -B,6,10,8,8,7,7,8,6,4,6,4,5,5,8,7,7 -B,1,0,2,1,1,7,7,7,5,6,6,7,1,8,7,9 -P,4,6,5,4,4,7,5,6,5,7,6,9,5,7,4,8 -B,1,0,1,0,1,7,7,6,4,7,6,7,1,8,6,9 -B,3,4,4,6,3,6,8,9,7,7,6,7,2,8,9,9 -Y,2,6,4,4,1,9,11,1,7,4,11,8,1,10,1,8 -Y,6,8,6,6,4,4,9,1,8,10,10,6,0,10,3,4 -R,5,10,6,7,3,5,11,9,4,7,4,8,3,7,6,11 -Y,6,7,8,9,8,10,10,5,3,6,7,8,6,11,8,4 -P,2,3,3,2,1,7,9,4,3,11,4,3,1,10,2,8 -G,6,10,8,7,5,6,6,6,6,6,6,8,4,7,4,8 -V,3,6,4,4,3,8,11,2,2,6,10,9,2,10,2,9 -K,4,5,7,3,4,6,8,1,7,10,7,10,3,8,3,7 -D,4,8,6,6,5,7,7,7,6,6,5,5,3,8,3,7 -Z,3,6,4,4,3,7,7,3,12,8,6,8,0,8,7,8 -N,9,10,8,6,3,5,8,5,7,3,3,11,6,10,3,7 -W,7,8,7,6,5,3,11,2,2,10,9,8,6,12,2,6 -V,7,8,9,7,10,8,7,4,5,7,6,8,7,10,8,5 -M,1,0,2,1,1,8,6,9,0,7,8,8,6,6,0,8 -S,4,9,5,6,3,9,9,6,10,5,5,5,0,7,9,7 -C,2,4,3,3,2,6,8,7,7,8,8,13,1,10,4,10 -K,2,4,3,2,2,5,7,4,7,7,7,11,3,9,5,10 -M,5,5,8,4,4,6,6,3,4,10,9,10,10,5,3,9 -L,6,9,5,5,2,7,4,3,5,10,4,12,2,7,6,7 -T,3,6,5,8,1,6,14,0,6,8,11,8,0,8,0,8 -N,8,11,11,8,5,6,9,3,5,10,8,8,6,8,1,7 -R,4,9,6,7,6,9,8,4,5,9,4,7,3,7,3,11 -G,6,10,7,8,9,8,6,4,4,6,5,9,7,7,8,13 -X,5,9,8,6,4,4,9,3,8,11,12,9,3,9,4,5 -O,4,7,6,5,6,8,7,5,2,7,6,8,8,9,4,7 -S,4,6,5,4,3,6,8,3,8,11,6,7,2,7,5,7 -R,4,10,5,8,5,5,10,8,3,7,4,9,2,7,5,11 -U,5,9,7,7,8,10,6,5,5,6,7,6,10,6,6,5 -J,2,5,3,7,1,13,2,9,4,14,4,12,1,6,0,8 -G,4,7,6,5,5,7,7,6,3,7,6,10,4,8,7,7 -E,2,3,4,1,2,6,8,2,7,11,7,8,1,8,3,7 -S,5,9,6,7,3,6,9,4,9,11,6,7,2,6,5,7 -W,3,3,4,1,2,5,11,3,2,9,8,7,5,11,1,6 -P,2,4,2,2,1,6,10,5,4,9,7,4,1,10,3,7 -G,2,3,4,2,2,7,6,6,5,6,6,9,2,9,4,9 -Q,2,4,3,5,3,8,7,6,3,8,6,9,2,9,4,9 -B,2,4,4,2,3,9,7,2,6,11,5,7,4,7,5,9 -B,4,10,6,8,6,9,7,3,5,10,4,6,2,8,5,9 -Q,1,1,2,1,1,8,7,6,4,6,6,8,2,8,3,8 -L,4,11,6,9,4,5,4,6,7,2,2,5,1,6,1,5 -G,4,9,5,7,4,5,6,6,5,9,7,12,2,8,4,10 -E,4,9,5,7,4,4,8,4,8,11,10,10,2,8,4,5 -E,6,9,8,7,5,9,7,2,10,11,4,9,2,8,5,9 -X,5,11,7,9,6,8,7,3,5,6,7,7,4,10,11,9 -Q,3,4,4,5,3,7,8,5,2,7,9,10,3,9,4,9 -N,10,13,8,7,4,7,10,4,7,3,4,9,5,7,2,7 -K,4,7,4,5,3,4,7,7,3,7,6,11,3,8,2,11 -O,3,3,4,5,2,8,7,9,7,7,5,9,3,8,4,8 -T,4,9,4,6,2,4,12,2,8,12,10,5,0,10,2,5 -P,1,3,3,2,1,7,9,3,4,12,5,4,1,9,2,9 -V,4,5,6,4,5,7,8,5,5,8,6,8,6,9,6,9 -E,4,5,5,7,3,3,7,6,11,7,7,15,0,8,7,7 -U,4,8,4,6,2,8,5,13,5,6,14,8,3,9,0,8 -Z,4,8,6,6,3,8,6,3,10,12,4,10,1,8,6,9 -D,7,10,9,8,8,7,8,6,6,8,7,6,7,8,3,7 -D,2,5,4,3,3,9,7,5,6,9,5,5,2,8,3,8 -N,5,7,6,6,7,7,8,5,3,7,5,7,8,7,5,7 -Q,1,2,2,3,2,8,7,6,3,5,6,9,2,9,3,9 -A,6,10,9,8,9,8,8,8,4,6,6,8,3,8,8,4 -J,2,8,3,6,3,7,7,1,6,11,5,9,1,6,1,6 -Z,5,8,7,10,6,11,5,3,5,9,2,7,2,7,6,9 -V,4,4,6,7,1,9,8,5,3,6,14,8,3,9,0,8 -S,3,5,5,4,2,9,7,3,8,11,3,6,1,9,4,10 -F,4,11,6,8,4,2,13,4,4,12,9,5,1,10,2,5 -D,4,7,6,5,4,8,7,4,7,11,5,7,3,7,4,8 -T,2,3,3,4,1,8,14,0,6,6,11,8,0,8,0,8 -K,2,3,4,2,2,6,8,1,6,10,6,8,3,8,2,7 -Y,3,3,5,4,1,7,11,2,2,7,12,8,1,11,0,8 -V,4,6,5,4,6,7,7,4,2,8,7,9,7,10,3,8 -X,3,8,5,6,3,7,8,4,9,6,6,7,3,9,7,7 -I,1,1,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -A,3,9,6,7,5,8,5,0,4,6,3,7,2,7,4,5 -Z,2,4,4,3,2,8,6,2,9,11,5,9,1,8,6,9 -J,2,4,3,3,1,9,5,4,6,14,6,12,0,7,0,8 -Q,5,11,7,8,7,8,4,7,4,5,7,11,6,6,8,8 -E,4,7,6,5,4,9,6,1,7,11,4,8,3,8,4,11 -F,2,3,3,1,1,6,11,3,5,13,6,4,1,9,1,7 -Q,4,7,4,9,4,8,8,6,3,8,9,11,3,9,6,7 -X,3,3,5,2,2,10,6,2,8,11,3,7,2,8,3,9 -F,3,6,3,4,2,1,13,3,3,12,10,6,0,8,2,7 -J,5,9,7,6,4,7,8,2,6,14,5,7,1,8,1,7 -F,3,3,4,4,1,1,15,5,3,12,9,4,0,8,2,6 -P,4,8,6,6,5,4,11,4,5,11,9,5,0,10,3,7 -L,4,9,4,6,1,0,0,6,6,0,1,5,0,8,0,8 -R,4,6,6,4,6,8,6,7,3,7,5,7,4,7,7,7 -G,8,14,7,8,4,8,4,5,3,8,4,5,4,7,5,8 -E,4,7,5,5,3,7,7,2,9,11,6,9,2,8,5,8 -C,2,1,3,2,1,6,8,7,7,8,8,13,1,9,4,10 -U,4,10,6,7,9,9,6,4,3,6,7,7,9,8,5,6 -N,6,9,8,4,3,8,7,3,4,13,5,8,6,8,0,8 -V,6,9,8,8,10,7,7,5,4,7,6,8,7,9,7,10 -I,5,6,6,4,3,7,6,2,7,7,6,9,0,9,4,8 -N,5,9,7,6,4,9,7,3,5,10,4,6,5,8,1,7 -H,5,8,8,6,6,5,8,3,6,10,8,8,4,8,4,6 -E,0,0,1,0,0,5,7,5,6,7,6,12,0,8,6,10 -Y,1,0,2,0,0,7,10,3,1,7,12,8,1,11,0,8 -G,5,9,7,7,5,6,7,7,5,5,6,11,4,8,4,8 -E,2,4,4,3,2,7,8,2,8,11,7,9,2,8,4,8 -N,5,4,5,6,2,7,7,15,2,4,6,8,6,8,0,8 -B,1,3,2,1,1,8,7,3,4,10,5,7,1,8,3,9 -G,4,7,5,5,3,7,6,7,7,7,5,11,2,9,4,8 -L,4,9,4,6,2,0,2,4,6,1,0,7,0,8,0,8 -E,4,7,6,5,5,8,9,7,3,6,6,11,4,7,7,10 -G,6,8,8,7,9,7,6,6,4,7,7,9,10,8,9,9 -M,4,10,6,8,6,7,6,6,5,7,7,9,8,5,2,8 -D,2,4,4,3,3,9,7,4,6,10,4,6,2,8,3,8 -Y,6,7,6,5,2,3,12,5,5,13,12,6,2,11,2,6 -R,5,5,5,6,3,5,12,8,3,7,2,9,3,7,6,11 -P,4,7,6,10,9,8,11,5,0,9,7,6,4,10,5,8 -D,3,9,5,7,5,8,7,5,7,7,6,5,3,8,3,7 -E,4,9,4,7,3,3,6,6,12,7,7,15,0,8,7,7 -W,4,5,6,4,3,7,11,2,3,7,9,8,7,11,1,8 -D,4,2,5,4,3,7,7,7,7,6,6,5,2,8,3,7 -Q,8,13,7,7,4,7,5,4,8,10,5,9,3,7,9,9 -R,4,7,5,5,5,7,8,5,6,6,4,8,3,6,5,9 -G,4,6,4,4,3,6,7,5,5,9,7,10,2,9,4,10 -Y,3,7,4,5,2,8,10,2,2,6,12,8,2,11,0,8 -R,5,8,7,6,7,7,10,3,5,5,6,9,6,7,7,7 -D,2,0,2,1,1,6,7,8,6,7,6,6,2,8,3,8 -J,4,11,5,8,5,9,6,2,5,11,4,9,1,6,2,5 -C,4,7,5,5,3,6,7,6,8,5,6,13,1,6,5,9 -I,3,7,4,5,1,6,8,1,8,14,7,8,0,8,1,7 -T,6,10,8,8,6,6,7,7,8,7,6,8,5,11,8,8 -C,1,0,1,0,0,7,7,5,7,7,6,14,0,8,4,10 -N,3,4,5,3,2,7,8,2,5,10,6,6,5,9,0,7 -M,5,5,6,4,4,8,6,6,5,6,7,8,10,6,4,6 -B,2,3,2,2,2,7,8,5,5,7,5,6,2,8,5,9 -H,3,7,5,5,4,7,7,5,6,7,6,9,6,8,3,7 -R,4,7,4,5,2,6,10,9,4,7,5,8,2,8,5,10 -Q,6,9,9,8,7,7,4,4,4,7,4,9,5,4,7,7 -A,3,6,5,4,1,9,4,3,1,7,1,8,3,6,2,8 -G,3,8,4,6,3,8,8,7,5,6,7,8,2,7,5,11 -Q,5,12,5,7,4,11,4,4,6,12,3,9,3,8,7,12 -H,3,3,4,4,2,7,8,14,1,7,5,8,3,8,0,8 -K,4,11,4,8,2,4,8,8,2,6,3,11,4,8,2,11 -G,4,10,5,8,3,7,5,8,9,8,4,13,1,9,5,10 -A,4,6,5,4,5,7,6,7,4,7,6,9,2,9,8,4 -A,4,9,6,7,4,10,3,2,2,8,2,10,5,5,3,8 -J,3,11,4,8,3,14,4,4,5,13,1,8,0,7,0,8 -K,4,6,5,4,5,6,5,4,4,6,6,9,3,6,7,11 -W,5,7,5,5,5,4,10,2,3,9,8,8,6,11,2,6 -N,2,1,2,3,2,7,8,5,4,7,6,7,4,8,1,6 -H,4,7,4,4,2,7,5,14,1,7,8,8,3,8,0,8 -L,5,10,4,5,2,9,3,4,4,12,4,13,2,6,6,9 -B,6,9,6,4,5,8,8,4,4,9,6,7,6,7,8,6 -E,5,11,5,8,3,3,8,6,11,7,6,15,0,8,7,7 -Y,5,8,5,6,3,5,9,1,7,9,9,5,1,11,3,5 -J,3,9,5,7,2,8,6,3,6,15,5,9,1,6,1,6 -N,1,0,1,0,0,7,7,10,0,6,6,8,4,8,0,8 -L,6,8,7,7,6,8,7,4,6,7,6,8,3,8,8,11 -S,3,6,5,4,6,6,9,3,3,8,7,6,3,8,9,1 -Q,5,9,6,8,6,8,7,7,5,6,7,8,3,8,4,9 -D,5,11,5,6,4,10,5,3,5,10,4,7,5,8,7,7 -E,6,10,8,8,5,5,9,2,10,10,8,9,3,8,5,5 -L,2,7,4,5,2,7,4,2,7,7,2,8,1,6,2,8 -G,6,10,7,8,5,6,6,6,5,9,6,12,4,8,5,8 -P,4,6,4,8,3,5,9,11,5,8,6,5,2,10,4,8 -K,3,6,4,4,2,3,7,6,3,7,6,11,3,8,3,11 -W,3,2,4,3,3,6,11,2,2,7,9,9,6,11,1,8 -O,3,9,5,6,4,8,8,8,4,7,8,8,3,8,3,8 -W,4,7,7,5,4,4,10,3,3,9,10,9,8,11,1,8 -A,4,9,3,4,2,11,5,4,1,8,4,9,4,6,4,9 -H,2,6,3,4,1,7,7,14,1,7,6,8,3,8,0,8 -T,2,8,4,6,3,7,12,3,6,7,11,8,2,12,1,8 -I,1,1,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -F,3,8,5,6,3,4,11,6,5,11,10,5,2,9,2,5 -I,1,9,1,6,2,7,7,0,7,7,6,8,0,8,3,8 -D,1,3,3,2,1,9,7,4,5,10,4,5,2,8,2,8 -T,5,6,5,4,3,5,10,1,8,11,9,5,1,9,3,4 -P,4,8,6,6,6,6,7,6,4,8,6,8,5,8,6,10 -Z,5,11,6,8,6,7,8,5,9,7,7,9,1,9,7,7 -I,0,4,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -D,4,9,6,7,6,9,7,4,6,10,5,5,3,8,3,8 -F,3,5,5,3,2,5,12,3,5,13,7,4,1,10,1,6 -G,5,7,6,5,3,8,6,6,7,11,6,12,2,10,4,8 -T,6,14,6,8,4,9,7,3,7,11,4,6,2,8,6,6 -C,5,9,6,6,3,4,8,6,8,12,10,12,2,9,3,7 -B,2,1,3,2,2,7,7,5,5,7,6,6,2,8,5,9 -H,2,6,4,4,5,9,6,3,3,6,6,7,5,9,6,7 -N,10,14,9,8,4,8,10,5,5,4,5,10,6,10,3,7 -E,1,3,3,2,1,6,7,2,7,10,7,9,2,8,4,9 -R,5,11,8,8,5,10,7,3,7,11,2,6,3,7,4,10 -U,5,7,6,5,5,8,7,8,5,6,7,9,3,8,4,6 -L,1,3,2,2,1,5,4,4,6,3,3,5,1,7,1,6 -P,3,8,3,6,3,5,9,8,3,9,6,5,2,10,3,8 -C,4,8,4,6,3,6,8,6,7,12,8,12,2,10,3,8 -N,3,2,4,3,2,7,8,5,4,8,7,7,5,8,3,6 -F,2,4,4,2,2,6,10,3,5,13,6,5,1,9,1,7 -I,0,6,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -Z,3,7,4,5,2,7,7,3,12,8,6,8,0,8,7,8 -F,3,4,4,6,2,1,12,5,6,12,11,9,0,8,2,6 -D,3,8,4,6,2,6,7,10,8,6,6,6,3,8,4,8 -G,3,7,4,5,3,7,7,7,6,6,6,9,1,8,5,11 -B,3,7,4,5,4,7,7,8,5,7,6,7,2,8,7,9 -S,4,11,4,8,4,8,6,7,7,7,8,9,2,10,10,7 -T,6,10,5,7,3,6,11,1,9,11,9,4,0,10,3,4 -Q,4,9,5,8,3,9,8,8,5,5,8,9,3,7,5,10 -V,3,10,5,8,2,8,8,4,3,6,14,8,3,9,0,8 -E,4,8,5,6,5,6,8,7,9,6,4,10,3,8,6,8 -A,6,7,8,6,6,7,7,3,6,7,8,9,5,10,3,6 -W,2,0,3,1,1,7,8,4,0,7,8,8,7,9,0,8 -K,7,11,9,8,9,8,7,5,5,7,6,7,7,6,9,14 -Y,4,7,6,9,7,9,10,7,4,7,7,6,5,11,6,3 -K,5,8,7,6,8,6,9,4,5,6,5,9,8,7,7,10 -L,5,10,5,5,2,7,4,3,6,11,4,13,2,6,6,8 -Q,2,0,2,1,1,8,7,6,4,6,6,8,2,8,3,8 -B,4,4,4,7,4,6,8,9,7,7,6,7,2,8,9,10 -S,4,7,5,5,3,8,8,3,7,10,3,6,2,6,5,9 -F,2,2,3,4,2,6,9,3,5,10,9,5,4,10,3,8 -S,3,7,4,5,3,8,7,7,7,7,7,8,2,9,9,8 -Q,6,9,7,11,7,9,5,7,4,9,5,11,4,8,6,6 -L,2,1,2,2,1,4,4,4,7,2,1,6,0,7,1,6 -T,5,10,7,8,4,5,12,3,8,8,12,8,1,12,1,7 -P,6,10,8,8,5,7,10,5,4,12,5,3,1,10,3,8 -A,2,6,4,4,2,8,3,2,2,7,1,8,2,7,3,7 -K,3,5,5,4,3,5,7,1,7,10,8,11,3,8,3,8 -F,2,3,3,2,1,6,10,3,5,13,6,4,1,9,1,8 -D,2,3,3,2,2,7,7,6,6,6,6,4,2,8,3,7 -Q,4,4,6,6,6,9,10,5,0,5,7,10,6,13,4,10 -L,3,6,4,4,2,4,3,7,6,1,2,4,1,6,1,6 -G,6,11,7,8,6,8,7,7,6,6,5,9,2,7,5,11 -C,5,9,7,7,5,7,7,8,6,7,6,13,6,8,5,7 -N,5,9,7,7,4,7,9,6,5,7,7,7,6,8,2,7 -K,5,7,7,5,5,7,6,1,6,10,5,9,3,7,3,9 -I,0,8,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -P,5,10,7,7,6,7,10,5,3,11,5,3,1,10,3,8 -R,3,3,3,4,2,6,9,9,4,7,5,7,3,7,5,11 -O,6,10,6,7,4,9,6,8,6,9,4,7,3,8,4,8 -X,2,3,3,1,1,6,8,2,8,10,8,9,2,8,2,7 -V,4,10,6,8,3,8,12,3,4,5,11,9,3,10,1,7 -H,6,11,8,8,8,7,8,6,8,8,6,8,9,7,4,8 -A,3,5,6,4,2,10,2,2,2,8,2,9,4,6,2,9 -R,2,4,4,3,2,9,7,3,5,10,4,6,2,7,3,9 -Y,4,11,6,8,3,6,10,1,7,7,12,9,1,11,2,8 -K,3,6,5,4,5,6,7,4,4,7,6,8,4,6,8,13 -S,9,14,9,8,4,7,6,4,3,13,9,9,3,10,3,9 -X,5,10,7,8,4,9,6,1,8,10,3,7,3,8,4,8 -E,4,11,5,8,7,5,7,6,8,6,5,11,3,8,5,9 -T,3,4,4,3,1,5,13,3,6,11,9,4,1,11,1,5 -D,3,6,5,4,3,9,7,4,5,11,5,6,3,8,2,8 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -I,2,9,2,7,2,7,7,0,8,7,6,9,0,8,3,8 -W,4,2,6,4,4,5,11,3,2,8,9,9,10,13,1,8 -X,1,1,2,2,1,8,7,3,8,6,6,8,2,8,6,8 -B,4,8,6,6,6,9,6,4,6,10,4,7,3,8,5,10 -I,4,9,6,6,3,9,8,2,8,7,6,6,0,8,4,7 -H,2,3,3,2,2,7,7,5,5,7,6,8,3,8,2,8 -F,4,6,6,4,3,6,11,4,5,12,7,5,2,9,2,6 -S,4,4,5,6,3,8,6,5,9,5,6,8,0,8,9,8 -J,4,8,5,6,2,10,6,2,8,14,3,8,0,7,0,8 -M,8,11,11,8,7,12,5,3,6,10,2,6,10,9,2,9 -N,5,6,7,4,6,5,9,3,4,8,7,9,6,8,4,4 -A,4,9,7,7,4,9,3,2,3,6,1,7,2,6,2,7 -R,2,4,4,3,2,9,8,3,5,10,3,6,2,6,3,10 -J,3,6,5,4,2,7,9,1,6,14,5,6,0,7,0,7 -S,5,10,8,8,10,7,6,3,2,7,5,7,3,8,15,5 -N,3,5,3,4,2,7,9,5,4,7,6,7,5,8,2,7 -K,4,4,4,5,2,3,7,8,2,7,5,11,4,8,2,11 -P,4,7,6,5,3,8,10,3,6,13,4,2,1,10,3,9 -J,5,9,4,6,3,9,8,2,3,12,4,5,2,9,6,9 -N,2,7,3,5,3,7,7,11,1,6,6,8,5,8,0,8 -W,8,11,8,9,8,4,11,2,2,9,8,7,7,12,2,6 -W,1,0,2,1,1,7,8,4,0,7,8,8,5,10,0,8 -G,6,11,8,8,5,6,6,6,7,6,6,8,3,8,4,7 -G,3,4,4,6,2,7,6,8,7,6,6,9,2,7,5,11 -V,6,7,6,5,2,3,11,4,4,10,12,7,2,10,1,7 -N,4,9,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -E,3,7,5,6,5,7,6,5,3,7,6,10,5,10,6,11 -P,4,10,6,8,6,6,10,5,5,10,8,3,1,10,4,6 -H,3,4,5,6,5,8,11,4,2,8,7,6,4,11,8,4 -J,1,3,2,1,0,9,7,2,6,14,5,9,0,7,0,7 -X,2,6,4,4,3,8,8,2,5,7,5,7,3,8,5,7 -L,5,10,5,8,2,0,0,6,6,0,1,5,0,8,0,8 -G,3,5,4,3,2,6,6,6,5,8,7,11,2,8,4,10 -V,3,5,6,4,2,7,12,2,3,6,11,9,4,12,2,7 -Q,3,8,5,7,4,8,7,7,5,6,6,9,3,8,4,10 -Z,3,7,4,5,3,7,7,3,12,8,6,8,0,8,8,7 -D,8,13,7,7,6,9,6,4,6,10,4,7,6,7,9,7 -H,3,7,3,5,3,8,6,12,2,7,8,8,3,9,0,8 -K,3,3,3,4,1,3,6,7,2,7,6,11,3,8,2,11 -T,3,7,4,5,2,4,13,4,6,12,9,4,1,11,1,5 -U,7,8,8,6,3,2,10,6,7,12,12,9,3,9,1,7 -Q,7,15,6,8,5,11,5,4,6,11,4,7,3,9,7,13 -W,6,10,10,8,8,7,11,2,2,6,8,8,8,12,1,8 -E,4,7,6,5,4,7,7,3,8,11,7,9,2,9,5,8 -R,3,6,3,4,2,5,11,7,4,7,3,9,2,7,6,11 -F,3,7,5,5,2,3,12,4,4,13,9,5,1,10,2,6 -K,5,9,7,7,5,6,7,5,7,6,6,10,4,8,5,9 -H,4,8,5,6,4,7,7,13,1,7,6,8,3,8,0,8 -H,4,7,7,5,5,5,9,3,5,10,9,8,3,8,3,5 -W,3,4,4,2,2,5,11,2,2,9,8,7,6,11,1,6 -L,4,8,6,6,7,7,7,3,5,7,7,10,6,10,6,6 -S,8,14,8,8,4,8,6,4,4,13,7,8,3,10,4,8 -R,4,9,6,6,5,9,7,6,3,8,5,6,4,7,7,9 -F,5,10,6,8,4,4,11,4,6,11,10,5,2,10,2,5 -U,8,9,9,7,5,3,9,5,8,10,10,10,3,9,2,6 -X,4,6,6,4,3,7,7,1,8,10,7,9,2,8,3,7 -P,2,1,2,1,1,5,11,8,1,9,5,4,1,9,3,8 -K,3,6,4,4,3,6,7,4,7,6,6,10,3,8,5,9 -U,3,5,4,4,2,6,8,6,7,7,10,9,3,9,1,8 -P,3,6,5,4,3,5,11,4,5,11,8,3,1,10,4,7 -K,7,10,10,8,7,4,7,2,7,10,10,11,3,8,3,6 -W,4,6,6,4,4,10,11,3,2,5,9,7,6,11,1,8 -W,5,10,7,8,6,8,8,4,1,7,9,8,8,11,0,8 -M,2,0,3,1,1,8,6,10,0,7,9,8,7,6,0,8 -U,4,8,5,6,2,7,4,14,5,7,14,8,3,9,0,8 -M,4,6,6,4,5,6,6,3,4,10,8,9,7,5,2,7 -J,5,8,6,6,3,7,6,3,6,15,6,10,1,6,0,7 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -C,7,10,9,8,6,6,8,8,6,5,6,13,6,8,5,6 -U,4,7,6,6,6,7,6,4,4,6,6,8,7,7,1,7 -P,6,10,6,5,4,7,10,4,3,12,5,3,4,11,5,7 -B,4,10,6,8,7,7,8,5,5,9,7,6,4,8,7,8 -N,6,9,8,7,7,6,7,8,6,7,5,6,3,8,3,8 -U,5,10,7,8,5,5,9,6,8,8,10,9,3,9,1,8 -Z,4,8,5,6,4,8,6,2,9,11,5,9,1,8,5,9 -H,7,8,10,10,9,6,4,5,3,6,3,6,6,5,11,7 -A,2,8,4,6,2,7,6,3,1,6,0,8,2,7,1,7 -Q,6,6,8,9,9,9,11,4,1,5,8,11,6,14,7,13 -W,9,12,9,6,5,2,10,3,3,10,11,9,7,10,1,6 -B,4,6,5,4,4,9,7,3,6,9,5,6,2,8,5,8 -B,8,12,6,6,4,10,5,5,5,11,3,9,6,7,6,10 -W,4,3,5,2,2,4,11,3,2,10,9,7,6,11,1,7 -A,4,5,6,4,5,7,8,3,5,7,8,9,7,10,3,7 -X,1,3,2,1,1,7,7,3,7,6,6,9,2,8,5,8 -W,2,3,3,2,2,9,10,3,2,5,9,7,5,11,0,7 -O,10,14,6,8,4,6,6,7,4,10,6,10,5,9,5,8 -V,5,6,5,4,2,2,12,5,4,12,11,7,2,10,1,7 -V,3,7,5,5,1,9,8,4,2,6,14,8,3,10,0,8 -U,3,7,4,5,2,7,5,12,4,6,12,8,3,9,0,8 -G,3,5,4,4,2,6,7,6,6,10,7,10,2,9,4,9 -O,4,5,5,4,4,7,6,5,5,9,5,10,4,6,5,6 -A,2,7,4,4,1,7,6,3,1,6,0,8,2,6,1,8 -Z,8,7,6,11,5,4,13,4,2,12,8,5,2,8,8,6 -I,7,10,9,8,5,9,5,3,7,6,7,4,0,9,4,7 -Y,8,11,8,8,5,3,10,2,7,11,11,6,1,11,3,4 -L,4,9,4,4,3,8,5,3,5,11,5,10,3,5,6,8 -G,3,6,4,4,2,6,7,5,5,5,7,8,2,8,4,8 -R,7,10,7,5,5,6,8,3,4,7,4,10,6,8,6,7 -V,4,9,6,7,4,5,11,3,2,9,10,7,4,10,6,8 -Y,4,8,6,6,3,7,9,1,7,6,12,9,2,11,2,8 -L,3,7,4,5,3,4,4,4,8,2,1,7,4,6,1,6 -P,3,8,3,6,2,5,9,10,5,8,6,5,2,9,4,8 -L,2,1,2,2,1,4,4,5,6,2,2,6,1,7,1,6 -I,4,7,6,5,3,8,8,2,8,7,6,7,0,8,4,7 -O,5,8,5,6,5,8,7,7,4,9,5,8,3,8,3,8 -O,1,3,2,2,1,8,6,6,3,9,5,7,2,8,2,7 -K,4,8,4,5,2,4,7,8,2,7,6,11,4,8,2,11 -Z,6,11,8,8,5,6,9,3,11,11,9,6,2,8,6,5 -Q,7,10,9,8,8,8,5,8,4,6,7,8,4,6,7,8 -D,3,9,5,7,8,9,8,5,4,7,6,6,4,7,8,6 -M,7,10,10,8,6,5,7,3,5,10,10,10,8,5,3,7 -J,2,11,3,8,3,7,7,1,6,11,5,9,1,6,2,5 -N,3,7,5,5,3,6,9,3,4,10,8,8,5,8,1,7 -A,4,11,6,8,3,5,4,3,3,5,1,7,3,6,3,7 -H,5,8,7,6,6,7,7,5,5,7,6,8,9,7,5,10 -K,5,7,7,6,6,6,7,3,4,6,4,9,6,5,9,8 -E,5,7,7,5,5,8,6,1,8,11,4,9,3,8,5,10 -G,2,4,4,3,2,7,7,6,6,6,6,10,2,9,4,9 -K,3,5,4,4,3,5,7,4,7,7,6,11,3,8,5,10 -E,4,9,4,7,4,3,8,5,9,7,6,14,0,8,6,9 -Y,4,6,6,9,9,8,4,5,3,7,8,8,7,8,5,8 -D,4,8,5,6,7,9,8,4,5,7,6,6,4,7,7,4 -L,2,2,3,3,1,4,3,5,6,2,2,5,1,7,0,6 -W,6,9,6,6,5,4,10,2,3,9,8,7,7,11,2,6 -J,2,2,3,4,2,10,6,2,5,12,4,8,1,6,1,6 -T,2,3,3,2,1,7,12,3,6,7,11,8,1,11,1,8 -Y,3,7,6,5,2,9,10,2,7,3,12,8,2,11,2,9 -F,3,5,5,4,2,4,12,4,4,13,8,5,1,10,1,7 -X,4,7,5,5,1,7,7,6,2,7,6,8,3,8,4,8 -J,0,0,1,0,0,12,4,5,3,12,5,11,0,7,0,8 -T,7,9,7,7,5,6,11,4,6,11,9,4,2,12,2,4 -Q,2,2,3,3,2,8,7,6,2,6,6,9,2,9,3,10 -J,2,4,3,3,1,10,6,2,6,12,3,8,0,7,0,7 -L,1,0,1,1,0,1,1,5,5,0,1,6,0,8,0,8 -N,3,7,4,5,3,7,8,5,4,7,6,6,5,9,1,6 -H,4,5,7,4,4,6,7,3,7,11,9,9,5,8,5,6 -Z,3,6,5,4,3,8,7,2,10,11,5,9,1,8,6,9 -Q,2,1,3,2,1,8,7,7,5,6,6,8,3,8,4,8 -N,4,10,6,7,5,7,8,10,5,8,5,5,4,8,4,10 -U,6,7,6,5,3,4,8,6,8,10,10,9,3,9,2,5 -L,8,11,7,6,3,11,1,3,4,12,3,11,2,9,4,10 -G,4,6,5,4,5,9,9,5,2,6,7,8,6,9,4,9 -P,5,9,7,7,7,5,9,6,4,8,7,9,5,9,7,10 -Q,4,6,6,9,3,8,9,7,6,6,9,9,4,7,6,10 -L,4,8,6,6,3,7,4,1,8,8,2,10,0,6,3,8 -R,4,7,4,5,4,5,10,7,3,7,4,9,2,7,5,11 -O,4,7,6,5,4,7,6,8,5,7,4,8,3,8,3,8 -M,3,7,5,5,5,8,7,5,4,6,7,8,7,6,2,7 -F,1,0,1,0,0,3,12,4,3,11,9,6,0,8,2,8 -M,6,8,8,6,8,7,8,7,5,6,6,8,7,9,8,11 -Q,4,9,4,4,3,11,4,4,5,12,3,9,3,8,7,13 -E,5,11,6,8,7,6,7,5,8,7,6,10,3,8,6,9 -Q,4,5,5,8,7,9,7,5,0,6,6,10,7,10,4,9 -G,2,4,3,2,2,6,7,5,5,9,7,10,2,8,4,10 -L,5,9,6,6,4,4,5,2,8,6,2,10,0,7,3,6 -H,8,10,11,8,9,8,7,2,6,10,5,8,3,8,3,8 -A,2,2,4,3,2,8,3,2,3,8,1,8,2,6,2,7 -D,3,1,4,2,2,7,7,6,6,7,6,5,2,8,3,7 -S,4,6,6,4,7,7,7,3,2,8,6,7,2,8,12,3 -U,2,3,3,2,1,5,8,5,6,10,9,8,3,9,2,6 -B,10,13,7,8,5,10,5,5,6,11,3,9,6,7,7,11 -J,4,11,6,8,4,10,5,4,5,14,4,10,0,7,1,6 -X,7,10,10,8,6,4,8,2,8,10,11,10,3,9,3,5 -G,2,2,4,4,2,7,6,6,5,6,6,9,2,9,4,9 -Z,4,11,6,8,4,7,8,2,10,11,8,6,2,7,6,6 -D,5,9,7,7,6,7,7,5,6,7,6,8,7,7,3,7 -M,2,0,2,1,1,7,6,10,0,7,8,8,6,6,0,8 -Q,4,5,4,6,4,8,6,7,4,9,8,9,3,9,6,8 -V,4,11,6,8,3,7,9,4,2,7,13,8,2,10,0,8 -P,4,8,5,6,3,8,8,1,6,13,5,5,1,10,2,9 -X,5,10,6,8,4,7,7,4,4,7,6,8,3,8,4,8 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -I,7,12,5,6,3,11,4,5,5,13,3,8,3,7,4,9 -L,4,3,4,5,1,1,0,6,6,0,1,4,0,8,0,8 -N,3,6,4,4,2,7,7,14,2,5,6,8,6,8,0,8 -H,5,6,7,4,5,9,6,3,6,10,4,7,3,8,3,9 -R,4,7,6,5,5,8,9,6,5,8,5,8,4,7,5,11 -G,5,12,4,6,4,7,6,4,2,8,6,8,4,9,9,7 -A,4,11,6,8,4,7,5,3,0,6,1,8,2,7,1,8 -O,5,10,6,8,5,7,7,9,4,7,6,9,3,8,4,6 -S,6,12,5,6,3,8,3,2,5,8,1,7,3,7,5,8 -O,5,9,7,7,5,8,6,8,4,6,4,7,3,9,4,9 -R,5,9,5,7,5,6,8,8,4,6,5,7,3,8,6,13 -B,4,11,4,8,6,6,6,9,6,7,7,7,2,9,7,10 -K,5,9,8,7,9,8,6,3,5,6,6,8,8,6,9,5 -S,4,7,4,5,2,7,6,5,9,5,6,9,0,9,9,8 -O,3,8,4,6,3,8,8,7,5,7,6,9,2,8,3,8 -I,1,10,0,8,1,7,7,5,3,7,6,8,0,8,0,8 -K,4,9,6,8,7,8,5,2,3,8,4,8,5,6,7,11 -O,3,7,4,5,2,7,9,9,7,8,8,7,3,8,4,8 -E,3,6,5,6,5,6,9,4,4,7,7,11,4,9,7,10 -E,5,11,7,9,6,5,7,7,9,7,6,12,3,8,6,8 -A,5,11,8,8,4,10,2,2,3,9,1,8,3,7,4,8 -Q,6,11,6,6,4,10,5,4,6,10,4,8,3,9,7,12 -A,4,10,6,8,5,12,3,2,2,9,2,8,2,6,2,8 -P,4,9,6,7,4,7,10,4,4,12,5,3,1,10,3,8 -N,4,6,5,4,3,7,8,6,5,7,6,6,5,9,1,6 -K,3,4,5,3,2,4,9,2,7,10,9,11,3,8,3,6 -X,6,11,9,9,6,7,7,0,8,9,6,8,3,8,3,7 -C,4,9,6,8,6,6,7,4,4,7,6,10,5,9,9,11 -D,4,7,6,5,5,8,8,6,5,9,5,4,5,8,5,9 -D,2,4,4,2,2,9,6,3,6,11,4,6,2,8,3,8 -A,5,11,7,8,7,8,7,7,4,7,6,9,3,8,8,3 -E,5,11,7,8,8,8,5,7,3,8,6,11,5,8,8,10 -H,3,5,5,7,5,9,10,3,1,8,6,7,3,10,8,7 -H,3,7,4,5,4,8,7,5,6,7,6,9,3,8,3,8 -S,1,3,2,2,1,8,6,6,5,7,7,9,2,10,8,7 -V,5,10,5,5,3,6,9,4,3,9,7,5,5,12,2,8 -Y,8,10,8,7,5,2,11,2,7,12,12,7,0,10,1,5 -E,1,3,2,1,1,5,8,2,7,10,8,9,1,8,3,7 -Y,1,0,1,0,0,7,10,2,2,7,12,8,1,11,0,8 -Y,1,0,2,0,0,7,10,1,3,7,12,8,1,11,0,8 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -T,3,9,5,6,1,7,15,1,6,7,11,8,0,8,0,8 -Q,1,0,1,1,0,8,7,6,3,6,6,9,2,8,2,8 -A,2,4,4,6,2,7,3,3,3,7,1,8,3,6,3,8 -U,4,7,4,5,3,7,5,13,4,7,11,8,3,9,0,8 -S,2,6,3,4,3,8,8,7,6,7,4,6,2,6,8,8 -U,4,6,5,4,3,6,8,6,8,7,10,9,3,9,1,8 -C,3,6,4,4,1,6,7,6,10,7,6,13,1,8,4,9 -X,4,11,6,8,4,7,8,3,9,6,5,6,4,10,8,6 -Z,4,6,5,4,3,8,6,2,10,12,5,10,1,9,6,9 -D,3,4,5,3,3,8,7,4,6,9,5,6,2,8,3,8 -G,2,0,2,1,1,8,6,6,5,6,5,9,1,8,5,10 -D,2,4,4,3,2,9,6,4,6,11,4,6,2,8,3,8 -A,3,4,5,3,2,10,2,2,2,9,2,9,2,6,2,8 -U,4,7,5,5,4,9,7,7,5,7,6,8,3,8,4,6 -O,6,10,7,8,6,7,7,8,4,7,6,8,3,8,3,8 -C,5,8,6,6,6,5,6,3,5,8,6,12,6,9,4,9 -B,2,4,4,3,3,8,7,3,6,10,5,6,2,8,4,10 -K,6,12,6,6,4,7,7,3,6,10,3,8,5,5,3,8 -J,5,10,6,7,7,9,6,3,4,7,5,5,5,6,6,5 -Z,4,8,4,6,4,9,7,5,9,7,5,6,1,7,7,8 -W,4,5,6,7,4,7,8,5,2,6,8,8,8,9,0,8 -J,2,8,3,6,2,10,6,1,7,11,3,7,0,7,1,7 -X,5,10,7,8,6,8,5,3,5,6,7,7,3,10,9,9 -E,2,6,3,4,2,3,8,5,9,7,6,14,0,8,6,9 -H,5,11,6,8,3,7,5,15,2,7,9,8,3,8,0,8 -M,4,1,5,3,3,9,6,6,4,6,7,5,8,6,2,6 -R,4,8,6,6,8,7,7,3,5,7,6,8,6,9,7,5 -D,3,6,4,4,3,7,7,6,5,7,7,6,3,8,3,7 -U,4,7,6,5,7,8,7,4,3,6,7,8,7,9,5,7 -N,3,7,4,5,2,7,7,14,2,5,6,8,5,8,0,8 -X,5,5,6,7,2,7,7,5,4,7,6,8,3,8,4,8 -S,2,3,4,2,1,9,7,3,7,11,4,8,1,8,4,10 -H,4,8,6,6,6,7,7,5,6,7,6,8,3,8,3,7 -P,3,6,5,4,4,6,9,5,4,9,7,4,1,10,3,7 -G,1,3,2,1,1,7,7,4,4,9,7,10,2,8,4,10 -J,4,8,3,6,2,9,6,2,4,11,6,8,2,10,6,11 -J,1,7,2,5,1,14,2,6,5,13,1,10,0,7,0,8 -C,4,8,6,6,5,6,6,3,4,8,6,11,6,9,3,9 -R,3,5,5,4,5,7,8,3,3,7,5,8,6,8,5,7 -Y,6,9,8,6,7,8,4,6,5,8,7,8,8,9,4,6 -K,5,10,8,7,5,3,8,2,7,10,11,12,4,7,4,5 -N,3,9,4,6,2,7,7,14,2,5,6,8,5,8,0,8 -Z,4,6,6,4,4,9,10,5,5,6,5,7,3,8,6,5 -P,2,3,2,2,1,4,11,3,4,10,8,4,0,9,3,6 -L,5,7,6,5,5,7,8,7,6,6,5,8,6,7,4,10 -Z,4,8,6,6,4,7,8,2,9,11,6,8,1,8,6,8 -X,3,5,4,3,2,8,7,3,9,6,7,9,3,7,7,9 -Z,4,4,5,6,2,7,7,4,14,9,6,8,0,8,8,8 -W,3,3,4,5,3,10,8,4,1,6,8,8,7,10,0,8 -P,5,10,8,8,6,8,10,4,5,13,5,3,1,10,3,8 -D,1,0,2,1,1,6,7,8,6,7,6,6,2,8,3,8 -K,3,5,5,4,3,8,7,2,7,10,4,9,5,10,4,9 -L,2,5,4,4,2,7,4,1,8,8,2,10,0,7,2,8 -K,4,7,6,5,3,8,6,2,7,10,3,9,3,8,4,10 -C,1,0,1,1,0,6,7,6,8,7,6,14,0,8,4,10 -Z,2,5,3,3,2,7,8,5,9,6,6,9,2,8,7,8 -Y,4,7,6,5,2,5,10,2,8,10,12,8,1,11,2,7 -E,2,5,4,3,2,7,7,1,8,10,6,9,2,8,4,8 -I,6,14,5,8,3,7,9,2,6,14,5,6,1,8,5,8 -A,2,7,4,5,2,10,3,2,2,9,2,9,2,6,2,8 -M,6,10,8,7,9,7,10,6,4,7,7,9,8,10,7,11 -A,3,11,6,8,3,11,2,3,3,10,1,9,3,7,3,8 -V,7,10,9,8,5,6,11,3,3,7,11,8,3,10,4,8 -P,3,8,4,6,4,6,9,6,4,9,7,4,2,10,3,7 -N,8,12,9,7,4,8,6,2,4,13,5,8,6,8,0,7 -S,5,10,6,8,4,8,7,5,8,11,3,8,2,7,5,9 -Z,4,9,6,7,5,9,11,6,5,6,5,7,3,9,8,5 -Q,5,10,6,9,5,8,8,7,4,5,8,9,3,8,5,10 -U,4,9,5,7,2,8,5,13,5,6,14,8,3,9,0,8 -M,4,5,7,4,4,8,7,2,4,9,6,8,7,5,2,7 -D,4,4,5,6,3,5,7,10,9,6,6,5,3,8,4,8 -Z,1,1,2,3,1,7,8,5,8,6,6,9,1,9,7,8 -Y,1,0,2,0,0,7,10,3,1,7,12,8,1,11,0,8 -D,1,0,2,1,1,6,7,8,6,7,6,6,2,8,3,8 -J,1,4,2,3,1,10,6,2,6,12,4,8,0,7,1,7 -V,5,7,5,5,2,3,12,5,4,12,12,7,2,10,1,8 -U,4,9,6,6,9,8,7,4,3,6,7,8,7,10,5,7 -J,2,10,3,8,1,12,3,10,3,13,7,13,1,6,0,8 -N,5,11,8,8,9,6,7,3,4,8,8,9,7,10,7,6 -G,6,9,6,6,4,5,7,6,6,9,8,10,2,8,5,9 -O,4,8,6,6,5,8,7,8,4,7,6,7,3,8,3,7 -D,5,11,6,8,3,5,7,11,9,7,7,5,3,8,4,8 -D,2,1,2,1,1,7,7,6,6,7,6,5,2,8,2,7 -M,6,9,7,7,6,8,5,11,0,7,9,8,12,4,4,8 -N,7,8,9,7,8,7,8,5,5,7,5,7,6,9,5,4 -Q,3,6,4,5,3,8,7,7,5,6,4,9,2,8,4,9 -I,4,11,5,8,3,7,7,0,7,13,6,8,0,8,1,8 -P,5,10,7,8,6,7,11,6,3,11,5,3,2,11,3,9 -V,3,9,5,7,1,6,8,4,3,7,14,8,3,9,0,8 -E,3,7,4,5,2,3,8,6,11,7,6,15,0,8,7,7 -F,2,8,3,5,1,1,13,4,3,12,10,5,0,8,3,7 -J,4,7,5,5,2,7,7,3,6,15,6,10,1,6,1,7 -S,3,10,4,8,4,8,6,8,5,7,7,9,2,9,8,8 -S,5,6,6,6,6,8,9,4,5,7,7,8,4,10,9,10 -B,2,3,4,2,2,8,7,3,5,10,5,6,2,8,4,9 -P,5,9,6,7,6,7,5,7,4,7,6,8,3,8,7,10 -Q,1,0,2,1,0,8,7,6,3,6,6,9,2,8,3,8 -B,3,8,5,6,4,7,8,5,6,9,7,5,2,8,7,6 -K,4,9,6,8,6,9,6,2,4,9,3,8,5,6,7,11 -G,5,7,7,6,6,8,10,5,3,6,7,10,8,11,7,8 -E,5,5,5,7,3,3,7,6,12,7,6,15,0,8,7,6 -Y,2,4,4,3,1,7,11,1,7,7,11,8,1,11,2,8 -O,1,3,2,1,1,8,7,6,4,7,6,8,2,8,2,8 -K,6,8,9,6,5,7,5,2,8,10,4,10,5,5,5,9 -N,8,11,11,8,7,4,11,3,4,10,10,8,6,8,1,7 -X,5,10,6,7,2,7,7,5,4,7,6,8,3,8,4,8 -J,6,11,7,8,3,9,5,4,7,15,4,11,1,6,1,7 -A,3,7,5,5,3,12,2,2,2,10,2,9,2,6,3,8 -Z,4,7,5,5,3,8,6,2,10,11,5,10,2,8,6,9 -R,2,1,2,2,2,6,8,4,5,6,5,7,2,6,4,9 -E,2,1,2,1,1,4,7,5,8,7,6,13,0,8,7,9 -D,4,7,5,5,4,10,6,3,6,11,4,7,3,8,3,9 -X,7,15,8,8,5,11,7,2,7,11,3,5,3,11,4,9 -O,5,9,5,7,4,7,7,8,5,10,7,8,3,8,3,8 -A,2,6,4,4,2,12,3,4,2,11,1,8,2,6,2,9 -F,4,8,4,6,2,1,11,5,7,12,11,9,0,8,2,6 -S,7,13,5,7,3,8,2,1,5,7,2,7,3,7,4,10 -N,1,1,2,2,1,7,7,11,1,5,6,8,4,8,0,8 -F,6,10,6,6,4,10,7,3,5,11,4,5,3,9,6,9 -Y,2,1,4,3,2,8,11,1,7,5,11,8,1,11,2,8 -K,7,10,11,8,7,2,8,3,7,11,12,12,4,7,4,4 -W,3,6,5,4,4,7,11,2,2,7,8,8,6,11,1,8 -U,4,5,5,3,2,6,8,5,8,6,10,9,3,9,1,7 -A,3,8,6,6,3,11,2,2,3,9,2,9,3,5,3,8 -V,11,14,9,8,4,8,9,6,5,7,10,5,7,13,3,8 -U,4,8,5,7,6,7,7,5,3,6,7,8,4,8,1,7 -X,2,3,3,2,1,7,8,1,7,10,7,8,2,8,2,7 -K,5,10,6,7,2,4,8,8,2,7,4,11,4,8,2,11 -Y,9,10,7,14,6,6,6,6,4,6,12,6,5,10,6,5 -T,8,13,7,7,4,6,10,3,7,12,7,6,3,9,5,4 -S,5,9,6,6,4,7,7,4,7,10,9,9,2,10,5,6 -Q,5,8,6,7,3,8,9,8,6,5,8,9,3,7,6,10 -Q,5,6,5,8,6,8,6,6,3,9,6,9,3,8,5,8 -L,5,5,5,8,1,0,0,6,6,0,1,5,0,8,0,8 -A,3,3,5,5,2,9,4,3,1,8,1,8,2,7,2,8 -R,3,7,5,5,5,5,8,3,4,6,5,9,4,7,6,5 -F,6,7,8,8,8,7,9,4,4,7,6,7,4,9,9,8 -P,4,8,6,6,5,6,9,7,4,9,7,4,2,10,3,7 -X,3,5,4,4,4,8,8,2,5,8,6,7,2,7,6,7 -O,1,0,2,0,0,7,6,6,4,7,6,8,2,8,3,8 -W,7,7,7,5,5,6,10,4,3,8,7,7,9,13,3,4 -P,8,9,6,4,3,8,7,5,4,11,3,6,5,8,4,8 -U,5,8,6,6,5,8,8,8,5,6,7,9,3,7,4,6 -V,7,10,9,8,6,9,10,4,2,4,10,9,6,10,5,10 -S,4,10,4,7,2,8,7,6,9,5,6,7,0,8,9,8 -O,1,3,2,2,1,8,7,6,3,8,6,8,2,8,2,8 -O,3,5,4,4,3,7,7,8,5,7,6,8,2,8,3,8 -R,3,3,4,2,2,7,8,5,5,7,5,7,2,7,4,8 -S,4,9,4,7,3,8,7,8,7,8,6,8,2,9,9,8 -Q,4,6,5,5,4,5,4,4,5,5,4,7,4,4,6,6 -H,3,5,4,4,4,7,8,6,6,7,6,8,3,8,3,8 -Z,5,9,6,7,7,8,7,3,8,8,6,8,1,7,12,9 -F,3,6,3,4,1,1,13,5,4,12,10,7,0,8,2,6 -P,5,9,7,6,4,9,8,4,6,12,4,4,2,9,4,9 -N,2,3,2,2,1,6,8,5,4,8,7,7,4,8,1,6 -T,7,9,7,7,4,5,11,2,8,11,10,5,1,11,2,4 -F,5,7,7,5,3,7,9,2,7,14,5,5,2,8,3,8 -M,5,9,7,7,6,7,6,3,4,10,8,9,11,5,3,9 -S,3,7,4,5,2,7,6,5,9,5,6,10,0,9,9,8 -S,3,5,5,3,2,8,6,2,7,10,7,9,2,9,5,8 -S,7,10,8,7,5,8,7,3,6,10,5,7,2,8,5,9 -X,4,10,5,7,2,7,7,5,4,7,6,8,3,8,4,8 -D,2,3,2,2,2,7,7,6,6,7,6,5,2,8,2,7 -L,1,0,1,0,0,2,2,5,4,1,2,5,0,8,0,8 -I,1,6,2,4,1,7,7,0,7,13,6,9,0,8,1,8 -Z,2,6,3,4,1,7,7,3,13,9,6,8,0,8,8,8 -Q,4,9,5,8,5,8,6,8,6,5,4,7,2,8,4,8 -F,3,8,3,5,1,0,13,4,4,13,11,7,0,8,1,6 -A,3,8,5,6,2,8,5,3,1,7,0,8,2,7,2,8 -E,2,4,2,2,2,7,7,5,8,6,5,8,2,8,6,9 -Y,3,8,5,6,1,4,10,3,2,9,13,8,2,11,0,8 -S,4,3,5,5,2,8,10,6,10,5,5,5,0,7,8,9 -J,5,9,6,7,3,9,7,2,6,14,3,7,0,7,0,8 -X,4,10,7,7,4,9,7,0,8,9,4,7,3,8,3,8 -C,1,0,2,1,0,6,7,6,8,7,6,14,0,8,4,10 -L,5,5,5,8,1,0,0,6,6,0,1,4,0,8,0,8 -T,3,4,4,2,1,5,11,2,7,11,9,4,1,10,2,5 -R,5,10,6,8,6,5,8,6,6,6,4,10,4,6,6,10 -L,2,2,2,4,1,0,1,5,6,0,0,6,0,8,0,8 -Y,7,9,7,7,3,3,10,4,7,12,12,6,2,11,2,6 -E,3,7,4,5,2,3,7,6,11,7,6,15,0,8,7,7 -J,4,5,6,5,5,8,9,4,5,7,6,8,3,7,8,8 -E,5,9,7,7,7,7,7,3,7,7,7,11,5,10,8,9 -P,5,10,7,8,7,6,9,6,5,9,7,4,2,10,4,7 -T,2,3,3,1,1,5,12,3,5,11,9,5,1,10,1,5 -S,4,9,5,6,3,6,9,5,8,11,8,7,2,9,5,5 -V,5,5,6,4,2,5,12,2,3,8,11,7,3,10,1,7 -J,4,11,4,8,3,14,3,5,5,13,1,9,0,7,0,8 -H,8,13,8,7,4,11,7,4,5,9,4,5,6,9,4,8 -C,2,1,3,2,1,6,8,7,8,8,7,13,1,9,4,10 -U,6,8,6,6,4,4,8,5,7,10,8,9,3,9,2,5 -F,3,4,5,3,2,6,10,2,6,13,6,4,1,10,3,7 -F,4,3,4,4,3,5,11,3,6,11,9,5,1,10,3,6 -R,4,7,6,5,4,10,7,4,6,10,3,6,3,7,4,10 -X,7,15,7,8,4,10,7,2,8,9,4,7,4,10,4,10 -E,4,7,6,5,3,4,9,3,9,11,9,10,2,8,4,5 -K,4,9,4,7,2,3,7,7,3,7,7,12,3,8,3,10 -O,5,12,4,6,3,6,6,6,3,10,6,9,5,9,5,7 -L,3,5,4,4,3,6,8,4,5,6,6,9,2,8,7,9 -K,4,4,6,3,3,5,8,2,7,10,8,9,3,8,2,7 -Y,6,7,6,5,3,5,9,1,9,10,10,5,1,10,4,3 -L,3,6,3,4,1,1,0,6,6,0,1,5,0,8,0,8 -K,3,8,5,6,4,5,6,4,7,7,7,11,3,8,5,9 -T,2,3,3,2,1,5,12,3,6,11,9,5,1,11,2,5 -J,3,6,5,4,2,9,7,1,6,14,4,6,0,8,0,8 -I,7,14,6,8,4,10,6,4,6,14,3,6,2,8,6,10 -A,5,11,7,8,3,9,3,3,3,7,2,9,3,7,3,9 -F,3,5,6,4,2,6,12,3,5,13,7,3,1,10,2,6 -U,7,10,8,8,5,5,7,6,8,9,7,9,5,11,5,3 -P,4,4,5,6,5,9,10,2,3,7,9,5,4,10,5,5 -J,2,4,4,3,1,9,6,3,6,14,5,10,0,7,0,8 -A,1,1,2,1,0,7,4,3,0,7,1,8,2,7,1,8 -R,2,3,4,1,2,9,7,4,5,9,4,7,2,6,4,10 -G,4,11,5,8,4,7,7,7,6,6,5,9,2,7,5,11 -K,5,10,7,8,7,7,7,3,7,6,6,7,7,8,6,10 -T,5,7,6,5,5,6,7,7,7,7,8,8,3,10,5,9 -O,1,0,2,1,0,7,7,6,5,7,6,8,2,8,3,8 -P,3,4,5,2,2,8,10,4,3,11,4,3,1,10,2,8 -G,3,4,4,3,2,6,7,5,5,9,7,10,2,9,4,9 -R,4,10,4,7,3,5,11,9,4,7,3,9,3,7,6,11 -L,3,8,4,6,2,2,4,3,9,2,0,8,0,7,1,6 -U,5,10,6,8,2,7,4,15,6,7,14,8,3,9,0,8 -M,6,9,9,6,7,9,6,2,5,9,5,7,8,6,2,8 -N,4,5,5,5,5,7,8,4,3,6,4,8,6,8,4,7 -R,3,6,4,4,4,8,6,6,3,7,5,7,4,6,6,7 -D,3,1,4,2,2,7,7,6,7,7,6,5,2,8,3,7 -E,5,7,6,5,5,8,9,6,3,6,6,10,4,8,7,9 -J,1,3,3,2,1,7,7,3,5,14,6,9,1,7,1,7 -Z,3,5,4,7,2,7,7,4,14,10,6,8,0,8,8,8 -D,1,3,3,2,1,9,6,4,6,10,4,6,2,8,2,8 -N,6,10,8,8,5,7,8,6,6,7,7,6,6,9,2,6 -S,5,10,7,7,8,9,5,5,4,8,6,9,5,7,12,8 -B,2,1,3,3,2,7,7,5,5,6,6,6,2,8,5,9 -H,5,8,8,6,5,10,7,4,6,10,3,6,3,8,3,8 -I,1,5,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -A,3,2,5,3,2,8,2,2,2,7,1,8,2,6,2,7 -U,4,5,5,3,2,6,8,6,7,7,10,9,3,9,0,8 -P,7,11,9,8,8,6,8,7,4,8,7,9,3,9,7,9 -I,3,9,4,6,3,7,7,0,7,13,6,8,0,8,1,8 -G,1,3,2,2,1,7,6,5,4,7,6,10,2,9,3,9 -O,3,2,5,4,3,8,7,8,5,7,6,8,2,8,3,8 -W,6,8,6,6,6,4,9,2,3,9,8,8,7,11,2,6 -B,4,8,4,6,5,6,7,8,6,6,6,7,2,8,7,9 -A,2,8,4,6,3,13,3,4,2,11,1,8,2,6,3,9 -W,6,5,9,8,4,8,7,5,2,7,8,8,9,9,0,8 -U,6,10,6,8,5,8,5,12,4,7,13,8,3,8,0,7 -Q,4,6,5,7,5,10,10,6,3,4,8,11,3,10,6,9 -I,2,10,3,8,2,9,6,0,7,13,5,8,0,8,1,8 -F,6,9,8,6,5,9,8,2,7,13,4,5,4,9,4,9 -P,2,1,3,2,1,6,10,5,4,10,7,3,1,9,4,6 -E,6,11,8,9,7,9,6,1,8,11,4,9,4,7,6,10 -M,4,4,6,3,4,8,6,2,4,9,6,8,7,5,2,8 -C,6,10,8,7,5,7,7,8,7,7,6,11,4,8,4,9 -V,2,1,4,2,1,7,12,2,2,6,11,9,4,11,2,7 -D,4,8,6,6,8,9,8,4,5,7,6,6,4,6,7,5 -J,2,8,2,6,1,15,3,5,5,13,0,8,0,7,0,8 -L,2,1,2,2,1,4,4,4,8,3,2,6,0,7,1,6 -J,1,1,2,3,1,10,6,3,5,11,4,9,1,7,1,7 -F,4,10,4,7,2,1,13,5,3,12,9,6,0,8,3,6 -Q,3,6,4,8,4,8,6,7,5,9,6,7,3,8,5,7 -G,3,6,4,4,2,6,7,6,5,10,8,11,2,9,4,10 -S,7,10,8,8,4,8,7,4,8,11,6,7,2,9,5,8 -Z,4,10,5,8,3,7,7,4,15,9,6,8,0,8,8,8 -O,3,1,4,3,2,7,7,7,4,7,6,7,2,8,3,7 -I,4,8,6,9,6,9,8,6,7,7,4,7,3,10,9,9 -O,3,5,4,3,3,7,7,7,4,9,5,8,2,8,3,7 -Q,2,3,3,4,2,8,8,4,2,7,8,10,2,9,4,8 -U,5,11,8,8,6,7,8,4,7,4,7,9,6,9,1,8 -M,7,9,11,6,8,4,7,3,5,11,10,11,10,9,5,7 -M,5,8,8,6,7,9,7,2,4,9,5,7,7,7,2,8 -X,4,8,5,6,1,7,7,5,4,7,6,8,3,8,4,8 -V,9,11,7,6,3,7,11,6,5,8,10,4,5,12,3,9 -V,3,7,4,5,2,5,11,3,4,9,12,8,2,10,1,8 -D,4,7,5,5,5,7,7,5,7,7,6,6,6,8,3,7 -F,7,10,6,6,4,9,7,3,5,11,5,6,4,9,6,9 -X,1,0,2,0,0,7,7,4,4,7,6,8,2,8,4,8 -L,4,8,6,6,6,7,7,3,5,7,7,9,6,10,6,6 -K,4,8,4,5,2,3,8,8,2,7,5,11,4,8,3,10 -J,2,1,3,2,1,10,6,2,7,11,4,8,1,7,1,7 -H,8,11,12,8,7,9,7,3,6,10,4,7,3,8,3,8 -D,2,3,3,2,2,9,6,4,6,10,4,6,2,8,2,9 -C,3,6,4,4,2,5,9,6,7,12,9,11,2,10,3,7 -C,5,9,6,7,4,4,7,5,7,10,8,14,3,8,4,7 -P,3,6,3,4,2,4,12,7,1,10,6,4,1,10,3,8 -P,5,5,6,7,7,8,7,4,3,7,7,7,6,10,5,6 -L,2,0,2,1,0,2,0,6,4,0,3,4,0,8,0,8 -B,1,1,2,1,2,7,7,4,5,7,6,6,1,8,4,9 -L,4,8,6,6,3,5,4,3,10,5,1,7,1,6,3,5 -S,3,10,4,7,2,7,7,6,9,4,6,8,0,8,9,7 -O,3,5,4,4,3,8,7,7,4,9,6,8,3,8,3,8 -D,2,4,4,3,2,10,6,3,7,10,3,6,2,8,3,9 -L,3,7,4,5,2,3,4,3,9,2,1,7,0,7,1,5 -I,4,11,5,8,2,9,5,0,8,14,5,10,0,8,1,9 -H,7,9,6,4,3,11,7,4,5,8,3,5,5,9,4,8 -Y,3,9,5,6,1,7,10,2,3,7,13,8,1,11,0,8 -J,1,1,2,2,1,10,6,2,5,11,4,8,1,7,1,7 -U,2,4,3,3,1,7,8,7,7,8,10,7,3,9,1,8 -D,2,1,2,2,1,6,7,8,7,6,6,6,2,8,3,8 -H,3,7,4,5,5,7,8,6,6,7,5,8,3,8,3,7 -K,6,11,6,8,5,3,6,7,4,7,8,12,3,8,3,11 -J,2,7,4,5,1,7,6,4,6,15,7,12,1,6,0,7 -R,2,1,3,2,1,6,10,8,2,7,5,8,2,7,5,10 -N,4,7,6,5,4,6,7,6,7,7,5,9,6,7,3,7 -A,4,11,7,8,3,7,4,3,2,7,1,8,3,6,3,8 -K,8,13,7,7,4,10,7,3,7,9,3,6,6,8,4,8 -A,3,9,5,7,4,12,3,2,2,10,2,9,2,6,3,7 -N,2,3,4,2,1,9,7,3,4,10,3,6,5,9,0,7 -U,5,11,6,8,5,7,5,13,5,7,12,8,3,9,0,8 -B,4,6,4,4,3,7,6,9,7,7,7,7,2,8,8,9 -R,2,1,2,2,2,7,7,5,5,6,5,7,2,7,4,8 -G,1,3,2,2,1,7,7,4,4,9,7,10,2,8,3,10 -N,5,10,6,8,6,7,7,13,1,6,6,8,5,8,0,8 -W,8,9,8,7,7,5,11,3,3,9,8,7,7,12,3,6 -L,3,7,5,5,4,7,6,7,5,6,6,8,3,8,4,10 -L,4,7,4,5,2,1,1,5,5,1,1,6,0,8,0,8 -U,3,2,4,4,1,7,5,12,5,7,14,7,3,9,0,8 -I,3,8,4,6,2,7,7,0,8,14,6,8,0,8,1,8 -Y,7,10,8,8,4,3,11,2,8,11,11,5,1,11,3,4 -P,4,3,4,4,2,4,14,7,1,11,6,3,1,10,4,8 -I,4,11,7,9,8,10,8,2,6,9,4,5,4,7,8,4 -U,8,11,8,8,6,3,8,5,8,10,8,10,5,10,4,4 -U,4,4,5,3,2,4,8,5,8,10,9,9,3,9,2,6 -G,6,11,8,8,9,8,4,5,4,7,5,11,7,9,6,13 -L,4,9,6,7,4,4,4,3,8,2,1,8,0,6,1,6 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -W,8,9,12,8,13,7,7,5,5,6,5,8,10,9,9,8 -K,5,8,8,7,7,10,7,4,4,10,2,8,5,5,4,10 -N,4,7,4,5,2,7,7,14,2,4,6,8,6,8,0,8 -L,3,8,4,6,2,7,3,1,8,9,2,11,0,7,2,9 -W,8,9,8,6,6,5,11,3,3,9,8,7,8,11,3,6 -E,6,10,8,8,5,5,8,4,9,12,9,9,3,8,5,6 -D,1,3,3,2,1,8,7,5,6,9,5,5,2,8,3,8 -J,6,13,5,10,4,7,10,2,3,13,5,5,2,8,7,8 -Y,1,3,2,1,1,7,10,1,5,7,11,8,1,11,1,8 -B,5,11,6,8,8,8,7,5,6,7,6,5,3,8,6,9 -B,2,3,4,2,2,8,7,3,5,10,5,6,2,8,4,9 -B,6,9,5,5,5,8,8,3,5,9,5,7,6,5,7,7 -D,1,0,1,1,0,6,7,8,5,7,6,6,2,8,2,8 -S,6,9,7,6,4,9,6,3,8,10,6,8,2,10,5,8 -T,5,10,7,8,6,8,11,2,7,6,11,8,1,12,1,8 -H,5,10,5,7,3,7,7,15,1,7,6,8,3,8,0,8 -A,3,8,5,6,5,8,7,7,4,7,6,9,5,7,7,4 -V,4,9,6,7,3,6,11,2,4,7,12,9,3,10,1,8 -A,4,8,6,7,6,9,8,3,4,6,7,7,5,8,5,5 -Z,3,6,5,9,4,11,3,2,6,8,2,6,1,8,6,9 -A,4,10,5,7,4,7,5,3,0,7,1,8,2,7,3,8 -R,4,10,5,7,3,5,12,9,4,7,2,9,3,7,6,11 -W,8,9,8,7,6,2,12,2,3,10,10,8,7,11,2,7 -T,3,4,4,3,2,6,10,2,7,11,9,5,2,10,3,4 -L,3,10,3,8,1,0,1,5,6,0,0,7,0,8,0,8 -C,2,5,3,3,2,6,8,7,7,8,7,13,1,9,4,10 -U,5,7,5,5,3,4,8,5,7,10,9,9,3,9,2,6 -Y,2,7,4,4,1,8,11,1,3,6,12,8,1,10,0,8 -E,1,0,1,0,1,5,8,5,7,7,6,12,0,8,6,9 -R,2,6,4,4,3,8,7,3,5,9,4,7,3,7,4,10 -C,5,9,5,7,3,4,8,6,8,12,10,12,1,9,3,7 -L,3,8,5,6,3,6,4,1,8,8,2,10,0,7,2,8 -K,4,10,6,8,7,6,6,5,3,7,6,9,4,5,10,8 -M,4,5,5,3,4,8,6,6,4,7,7,8,8,5,2,7 -N,2,5,3,4,2,7,8,5,4,7,6,7,4,8,1,7 -J,6,8,8,9,7,9,8,5,6,7,5,8,4,8,9,7 -P,1,3,3,2,1,6,10,6,2,10,5,4,1,9,3,7 -J,1,8,2,6,2,9,6,3,5,11,4,9,1,6,1,6 -G,5,9,4,4,3,8,6,4,2,9,6,8,3,9,8,8 -H,5,8,7,6,7,7,7,6,6,7,6,8,3,8,3,7 -B,2,1,3,1,2,7,7,5,5,7,6,6,1,8,5,9 -I,3,7,4,5,2,8,6,0,7,13,6,9,0,7,2,8 -D,1,0,1,1,1,6,7,8,6,7,6,6,2,8,3,8 -O,4,4,5,6,2,8,8,9,8,5,8,10,3,8,4,8 -B,4,5,4,7,4,6,7,10,7,7,6,7,2,8,8,9 -M,6,8,9,6,5,10,6,3,5,9,4,6,8,6,2,8 -T,2,1,3,2,1,7,12,2,6,7,11,8,1,11,1,8 -V,3,7,4,5,2,7,12,3,4,7,11,8,2,10,1,8 -Z,7,14,7,8,4,10,4,3,8,12,4,10,3,9,4,11 -S,4,9,3,4,2,7,3,1,5,6,2,7,2,8,5,9 -Q,6,8,6,10,8,8,5,7,3,9,6,9,3,8,5,8 -Y,4,10,7,7,1,7,10,3,2,7,13,8,2,11,0,8 -E,6,10,8,8,6,4,10,4,8,11,10,8,3,8,4,4 -G,3,3,4,5,2,7,7,8,7,6,5,11,2,8,5,10 -Q,5,8,5,10,6,8,7,6,3,8,9,11,3,8,6,8 -F,3,7,3,4,1,1,11,5,6,11,10,9,0,8,2,6 -H,4,5,4,7,3,7,8,15,1,7,5,8,3,8,0,8 -V,2,4,4,3,1,7,12,2,3,6,11,9,2,10,1,8 -M,14,15,14,8,7,6,10,5,5,4,4,11,11,13,2,8 -L,5,9,6,7,5,6,6,8,5,6,5,9,3,7,5,11 -U,3,5,4,3,2,6,8,6,7,6,9,9,3,9,1,7 -S,2,8,3,6,3,7,7,7,5,7,6,8,2,9,8,8 -Z,4,10,5,8,2,7,7,4,15,9,6,8,0,8,8,8 -U,5,7,5,5,3,4,8,6,7,9,9,9,3,9,2,5 -W,5,10,7,8,4,5,8,5,2,7,8,8,8,9,0,8 -H,1,0,1,0,0,7,7,10,1,7,6,8,2,8,0,8 -T,4,10,5,8,3,7,13,0,6,7,10,8,0,8,0,8 -N,5,10,6,8,6,7,7,6,6,7,6,8,6,7,3,8 -G,6,8,8,7,8,7,10,6,2,7,7,8,6,11,7,8 -T,3,4,4,3,2,7,12,4,6,7,11,8,2,11,1,7 -D,5,6,6,6,5,5,7,6,7,6,5,6,4,7,5,6 -D,3,2,4,3,2,7,7,6,7,7,6,5,2,8,3,7 -R,4,10,5,7,6,6,7,5,6,6,4,8,3,6,5,9 -E,3,7,4,5,4,8,8,4,7,7,5,8,3,8,5,10 -J,5,9,6,7,3,8,4,5,6,15,7,14,1,6,1,7 -Q,3,5,4,6,4,8,8,5,2,7,7,12,2,9,5,9 -K,4,5,5,4,4,5,7,4,7,6,6,10,3,8,5,8 -N,6,11,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -X,8,12,8,6,4,10,6,3,9,9,2,5,4,6,4,10 -H,3,3,5,1,2,9,6,3,5,10,4,8,3,8,2,9 -A,5,9,7,7,4,8,5,3,0,6,1,8,2,7,1,8 -L,4,9,5,6,4,5,5,1,8,7,2,10,1,7,3,7 -I,2,7,2,5,1,7,7,0,7,13,6,8,0,8,1,8 -H,6,8,8,6,7,6,8,7,6,8,5,7,6,7,5,10 -G,5,8,5,6,4,7,6,6,7,10,7,11,2,10,4,9 -R,5,5,6,7,3,6,11,9,3,7,3,8,3,7,6,11 -X,4,10,6,8,6,6,7,2,6,7,7,9,3,7,6,8 -D,4,8,4,6,4,5,7,9,7,7,7,6,2,8,3,8 -R,3,10,4,7,3,6,9,11,5,7,5,8,3,8,5,10 -F,5,8,8,6,4,6,10,3,6,13,7,4,2,10,2,7 -C,3,6,5,5,4,6,6,4,5,7,6,11,4,10,7,10 -O,2,4,3,3,2,7,7,7,4,7,5,8,2,8,3,8 -V,2,6,4,4,2,9,11,3,4,4,11,8,2,10,1,8 -M,7,10,9,8,9,8,7,6,5,6,7,8,8,6,2,7 -R,4,7,5,5,3,11,7,3,6,11,2,6,3,7,3,10 -O,4,8,6,6,5,7,7,8,4,7,7,9,3,8,3,7 -H,1,0,2,1,0,7,7,11,1,7,6,8,3,8,0,8 -W,6,6,6,4,4,2,11,2,2,10,10,8,5,11,1,7 -Q,3,4,4,5,3,8,8,5,1,8,8,10,2,9,4,8 -Y,3,5,4,7,7,8,5,4,2,7,7,9,5,10,4,7 -Q,1,3,2,4,2,7,7,5,2,8,8,10,2,9,4,9 -H,5,10,8,8,7,8,6,7,7,7,7,5,3,8,4,6 -A,3,9,5,6,3,10,3,2,2,8,2,10,3,5,3,7 -S,4,8,5,6,4,8,8,7,5,7,6,8,2,8,8,8 -P,6,11,5,6,3,5,11,5,4,13,6,4,3,9,4,8 -K,8,12,7,6,4,9,8,3,7,9,4,6,6,9,4,8 -Y,2,2,4,4,2,6,10,1,7,8,11,8,1,11,2,7 -B,8,10,7,6,6,7,9,4,5,9,6,7,6,6,7,6 -W,4,9,6,7,3,5,8,5,1,7,8,8,8,9,0,8 -O,4,9,5,7,2,7,6,9,7,6,5,7,3,8,4,8 -G,5,11,7,8,4,6,6,8,8,8,5,13,3,11,5,8 -I,1,10,2,8,2,7,7,0,8,7,6,8,0,8,3,8 -P,8,11,6,6,3,7,10,5,3,12,4,4,5,10,4,8 -Q,2,5,3,6,3,8,6,7,3,5,6,9,2,9,5,10 -A,4,9,3,4,2,13,3,4,1,10,3,10,3,5,3,10 -O,4,7,5,5,4,7,7,8,6,7,6,6,3,8,4,8 -Q,10,15,9,9,5,7,5,4,9,10,4,10,4,6,9,9 -I,1,3,2,1,0,7,7,1,7,13,6,8,0,8,1,8 -L,1,0,1,1,0,2,1,5,5,0,2,5,0,8,0,8 -W,6,5,8,5,8,9,8,5,5,7,5,8,9,9,8,6 -V,5,9,7,7,4,7,12,2,3,5,10,9,4,12,2,7 -N,3,3,4,2,2,7,8,6,4,7,7,6,5,9,2,6 -G,5,11,7,8,8,7,7,6,2,7,6,11,7,9,10,6 -N,6,9,8,7,9,8,7,4,4,7,6,6,7,10,7,5 -I,3,7,5,5,2,8,6,2,7,7,6,7,0,9,4,7 -F,5,11,7,8,5,5,11,2,8,10,9,5,4,10,4,6 -R,8,11,7,6,5,10,6,3,5,9,4,8,6,8,6,9 -V,2,1,3,1,0,7,9,4,2,7,13,8,2,10,0,8 -R,5,11,7,8,5,8,9,4,6,8,4,9,4,6,6,11 -H,4,9,4,7,4,7,7,13,1,7,6,8,3,8,0,8 -Q,6,10,8,8,7,8,3,8,5,6,5,9,4,9,4,7 -R,3,6,3,4,3,6,9,8,4,7,5,8,2,7,4,11 -P,3,7,4,5,3,6,10,6,5,10,8,4,1,10,4,7 -Y,4,6,6,8,7,9,9,6,3,7,7,8,6,11,7,4 -F,5,7,7,5,4,6,11,5,6,12,8,5,2,9,2,6 -Z,5,9,5,4,3,8,6,2,8,11,6,9,3,7,6,7 -O,7,13,5,7,3,9,7,7,5,9,4,8,5,9,5,9 -W,5,8,8,6,5,7,8,4,1,7,9,8,7,11,0,8 -C,4,9,5,7,4,4,8,6,7,9,9,15,1,9,4,10 -R,2,4,4,3,3,8,8,3,5,10,4,7,3,6,3,9 -Y,4,6,4,4,1,3,11,3,7,11,11,5,1,11,2,4 -I,1,4,1,3,1,7,7,1,8,7,6,9,0,8,3,8 -V,7,10,7,8,3,3,11,4,4,10,12,8,2,10,1,8 -Q,4,6,5,8,4,8,7,6,3,8,7,10,3,8,6,8 -G,4,6,4,4,3,7,6,6,5,9,6,13,2,8,4,10 -W,4,10,6,8,4,10,8,5,2,7,8,8,8,9,0,8 -Q,2,1,3,2,1,8,6,7,5,6,6,8,3,8,4,8 -G,9,14,8,8,5,7,4,6,3,8,5,4,4,8,6,6 -S,4,8,6,6,7,6,9,3,3,8,7,6,3,8,11,1 -S,3,4,3,2,2,8,8,6,5,7,6,7,2,8,9,8 -D,5,6,6,6,5,6,6,5,7,7,6,8,4,6,6,5 -W,8,12,8,6,4,1,9,3,2,11,12,9,7,10,0,6 -A,3,1,5,3,2,8,2,2,2,7,1,8,2,7,2,7 -C,4,6,5,4,3,6,7,5,6,11,8,13,2,10,3,9 -Q,1,2,2,3,1,8,8,5,1,5,7,9,2,9,4,9 -R,5,10,7,7,6,7,8,5,7,7,5,6,6,6,5,9 -L,3,2,4,4,2,4,4,4,7,2,1,6,0,7,1,6 -D,5,10,6,7,5,7,7,8,8,6,5,5,3,9,4,8 -P,8,12,7,6,4,8,9,3,4,12,5,4,3,10,6,6 -U,4,7,5,5,5,8,7,8,5,6,7,9,3,8,4,6 -Z,2,4,4,3,2,7,7,2,9,12,6,8,1,8,5,7 -S,4,9,4,7,2,8,7,6,9,4,6,8,0,8,9,7 -D,4,7,5,5,2,5,8,9,9,7,6,6,3,8,4,8 -S,4,9,6,7,7,5,9,3,3,8,7,5,4,8,12,0 -C,9,13,7,7,5,7,9,4,4,9,8,9,3,9,8,11 -R,3,4,4,3,2,7,7,5,5,6,5,6,2,7,4,8 -A,1,0,2,0,0,7,3,2,0,7,2,8,2,6,1,8 -U,5,6,5,4,2,4,9,6,7,10,10,9,3,9,2,5 -H,3,6,4,4,3,7,8,7,5,8,5,7,3,7,5,11 -J,2,6,3,4,2,10,5,3,5,12,3,8,0,7,2,7 -Y,3,8,5,6,1,9,12,2,3,4,12,9,0,10,0,8 -E,4,5,6,4,3,7,7,2,8,11,7,9,2,8,4,8 -J,3,9,5,7,3,9,5,3,6,15,4,10,0,7,1,7 -M,5,6,5,8,4,7,7,12,2,7,9,8,8,6,0,8 -S,6,12,6,6,3,8,7,4,3,13,8,8,3,10,3,8 -U,4,6,4,4,1,7,5,13,5,7,15,8,3,9,0,8 -L,2,7,3,5,2,4,4,4,7,2,1,6,1,6,1,6 -R,6,11,9,8,7,7,8,5,7,7,5,6,3,6,6,9 -D,4,7,6,6,6,7,8,5,6,6,4,7,4,7,7,5 -X,5,9,8,7,4,8,7,1,8,10,4,7,3,8,4,8 -V,2,3,4,4,1,5,8,4,2,8,13,8,3,10,0,8 -H,2,2,3,3,2,8,7,6,6,7,6,8,6,8,3,7 -R,3,5,6,4,5,8,7,3,4,8,5,7,6,9,5,5 -M,3,6,3,4,2,8,6,11,1,6,9,8,7,6,0,8 -L,3,7,4,5,2,6,3,1,8,8,2,11,0,7,2,8 -H,2,4,4,3,3,7,7,3,5,10,6,8,3,8,2,7 -Z,6,9,8,7,8,9,8,4,4,6,4,6,4,8,10,4 -F,2,4,2,2,1,5,10,4,4,10,9,5,1,10,3,7 -G,2,1,3,2,1,8,6,6,6,6,5,9,1,7,5,10 -M,4,5,5,3,4,8,6,6,4,6,7,7,8,6,3,6 -Y,7,6,6,9,4,7,10,2,3,7,10,4,4,10,6,7 -O,4,8,5,6,2,7,7,8,8,7,6,7,3,8,4,8 -E,6,11,4,6,3,6,9,4,5,10,6,8,3,8,7,8 -D,3,5,4,3,3,7,7,7,7,6,6,5,2,8,3,7 -O,3,5,4,4,3,7,7,8,5,7,6,8,2,8,3,8 -C,6,11,6,8,3,5,8,7,8,13,10,11,2,10,3,7 -X,4,8,6,6,3,6,8,1,8,10,8,9,3,8,3,7 -L,7,13,6,8,3,10,2,4,4,13,4,13,2,8,6,9 -T,3,1,4,3,2,7,12,4,6,7,11,8,2,11,1,8 -B,6,9,8,7,6,10,6,3,7,10,3,7,6,8,7,11 -M,1,0,2,0,0,7,6,9,0,7,8,8,5,6,0,8 -U,4,6,5,4,4,7,8,8,6,5,7,11,3,8,4,7 -S,6,8,8,7,9,8,7,4,5,7,7,8,5,10,9,11 -J,3,5,5,4,2,9,5,3,6,14,5,10,0,7,0,7 -Q,5,9,6,8,3,7,5,9,8,5,4,7,3,8,4,8 -T,3,7,5,5,3,6,12,3,7,8,11,8,1,11,1,7 -Y,6,8,6,6,3,5,9,0,8,10,9,6,0,10,3,4 -M,4,6,7,4,8,6,5,4,2,6,4,8,12,6,3,7 -Q,6,10,8,8,7,8,4,8,4,6,6,8,4,7,6,9 -S,3,9,4,7,4,8,6,8,5,7,7,9,2,9,8,7 -J,2,8,3,6,1,11,3,10,3,12,8,13,1,6,0,8 -A,2,3,4,2,2,9,1,2,1,8,2,10,2,6,2,7 -H,6,11,8,8,8,7,8,7,6,8,6,7,7,8,5,9 -M,5,10,5,7,4,7,7,12,2,7,9,8,8,6,0,8 -Y,5,11,6,8,7,9,5,6,5,7,8,7,3,9,8,3 -C,4,7,5,5,2,5,8,7,8,7,8,14,1,8,4,9 -J,2,6,3,4,1,15,3,3,5,12,1,8,0,8,0,8 -K,5,8,8,7,7,6,8,3,4,6,3,9,8,3,10,9 -Y,5,9,5,6,2,3,11,3,6,12,11,5,1,11,2,5 -M,5,10,6,8,4,7,7,12,2,7,9,8,8,6,0,8 -X,3,8,5,6,3,8,7,4,9,6,6,6,3,8,7,7 -J,6,9,4,12,4,11,6,2,4,10,4,6,3,9,6,10 -H,4,4,5,5,2,7,10,15,2,7,2,8,3,8,0,8 -H,3,4,5,3,3,5,9,3,5,10,8,8,3,9,3,7 -G,4,6,5,4,2,7,6,6,7,11,6,12,2,9,4,9 -R,5,6,7,6,7,5,7,4,4,6,5,9,7,9,6,9 -J,1,4,2,2,1,8,6,3,6,14,6,10,1,7,1,7 -V,3,5,4,4,1,4,12,3,3,10,11,7,2,10,1,8 -X,7,9,8,5,4,8,7,3,8,12,4,7,4,9,4,8 -F,2,7,3,4,1,1,11,4,6,11,11,10,0,8,2,6 -S,2,3,3,2,2,8,7,6,4,7,7,8,2,9,9,8 -R,4,9,4,6,3,5,11,8,4,7,4,9,3,7,6,11 -Y,3,7,5,5,2,7,10,2,2,7,12,8,1,11,0,8 -Y,4,5,5,3,2,4,10,2,8,10,10,5,3,11,4,3 -N,9,14,8,8,4,10,11,6,6,3,6,9,5,10,3,6 -Z,4,9,6,7,4,9,5,2,9,11,4,10,1,8,6,10 -L,4,9,6,8,5,8,7,4,5,7,6,8,3,8,8,11 -W,4,8,6,6,4,7,10,2,3,7,9,8,8,11,1,8 -N,2,1,2,1,1,7,7,11,1,5,6,8,4,8,0,8 -H,7,9,10,7,7,9,7,3,7,10,4,7,5,8,5,9 -J,0,0,1,0,0,12,4,6,3,12,4,11,0,7,0,8 -N,6,8,8,7,9,8,6,5,5,7,6,7,8,11,7,3 -I,7,13,5,8,3,10,4,5,4,13,3,9,3,8,4,9 -C,1,0,2,0,0,7,7,6,8,7,6,13,0,8,4,10 -O,3,7,4,5,3,7,7,8,5,7,6,8,3,8,3,8 -U,5,10,6,7,2,7,4,14,5,7,14,8,3,9,0,8 -R,8,14,6,8,5,8,7,5,5,9,4,9,7,5,6,11 -E,2,3,3,5,2,3,7,6,10,7,6,14,0,8,7,8 -B,10,15,10,8,8,9,7,4,5,9,5,7,7,5,9,8 -U,5,7,5,5,3,3,9,5,6,10,10,9,3,9,2,7 -D,1,0,2,1,1,6,7,8,6,7,6,6,2,8,3,8 -R,1,0,2,0,1,6,10,7,2,7,5,8,2,7,4,9 -N,8,10,10,5,3,4,10,5,4,14,11,9,5,9,0,8 -C,2,3,3,2,1,4,8,4,6,10,9,12,1,9,2,8 -E,3,10,4,8,2,2,8,6,11,7,6,15,0,8,7,7 -D,5,10,8,7,7,9,7,3,6,11,5,6,3,8,3,8 -G,5,10,4,5,3,9,5,4,3,9,4,5,4,7,5,8 -K,3,7,4,5,2,3,8,7,2,7,5,11,3,8,3,11 -Y,9,8,7,12,5,8,6,6,6,4,11,7,5,9,3,8 -X,3,8,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -Z,4,8,6,6,6,8,8,3,7,7,7,7,1,9,10,8 -X,4,6,5,4,4,7,6,3,5,6,6,9,2,8,8,8 -F,3,5,3,3,2,5,11,3,6,11,9,5,1,10,3,6 -N,4,11,5,8,5,8,7,13,1,6,6,7,6,8,1,10 -K,3,6,5,4,3,6,7,1,7,10,7,10,3,8,3,8 -R,4,3,5,5,3,5,11,8,3,7,4,8,2,7,6,11 -O,4,8,6,6,4,7,8,8,6,7,7,8,2,8,3,8 -V,5,9,5,6,3,3,10,3,4,10,12,8,3,10,1,7 -J,3,7,5,5,2,8,4,6,4,14,8,14,1,6,1,7 -M,2,1,2,1,1,7,6,10,0,7,8,8,6,6,0,8 -P,7,11,9,8,7,9,7,2,6,11,4,6,4,8,4,9 -Y,7,9,7,7,2,3,12,6,6,14,11,5,2,11,2,6 -D,5,11,7,8,11,8,8,6,4,7,6,6,7,8,9,6 -S,4,9,5,7,4,10,7,4,6,10,3,7,2,8,5,10 -X,4,10,5,7,1,7,7,5,4,7,6,8,3,8,4,8 -S,4,7,5,5,2,6,9,4,7,10,7,7,2,8,5,5 -Y,8,11,8,8,5,3,11,2,6,11,11,6,1,11,2,5 -Q,5,9,6,8,5,8,8,8,5,6,6,10,3,8,4,9 -T,5,6,6,4,3,5,11,3,7,11,9,5,2,11,2,4 -A,3,9,4,7,3,6,4,2,1,6,1,8,2,6,2,7 -R,4,5,4,3,3,7,7,5,6,7,5,6,5,7,4,7 -U,2,6,4,4,2,7,9,6,6,6,10,9,3,9,1,7 -I,4,9,4,5,2,6,11,3,4,13,6,4,1,9,5,8 -D,1,0,1,0,0,5,7,7,5,6,6,6,2,8,2,8 -E,2,3,4,2,2,7,7,2,7,11,7,9,2,8,4,8 -V,6,8,8,6,5,6,12,3,2,8,10,8,6,11,6,8 -D,5,11,5,6,4,8,6,3,5,9,5,7,5,9,5,8 -G,6,6,8,6,7,7,10,5,3,7,7,8,6,11,7,8 -D,9,15,8,8,6,8,6,3,7,10,5,7,6,8,9,6 -K,5,9,5,4,3,10,7,2,5,10,5,7,5,10,3,9 -T,6,11,6,8,4,4,12,3,7,12,10,4,1,11,2,4 -K,4,11,4,8,2,3,7,8,2,7,5,11,3,8,3,10 -Z,3,6,5,4,4,8,8,2,7,7,6,7,0,8,8,9 -N,5,11,6,8,6,8,8,13,1,6,6,8,6,8,1,10 -N,6,8,8,7,8,7,8,4,4,7,5,6,7,8,7,2 -M,2,4,4,3,3,10,6,3,4,9,4,6,6,5,2,8 -O,6,11,6,9,5,8,6,8,5,10,5,9,4,9,5,6 -T,3,6,5,5,5,6,9,3,7,8,7,9,3,8,7,5 -A,3,6,5,8,2,7,6,3,1,7,0,8,3,7,1,8 -R,3,2,4,3,3,7,7,5,5,6,5,6,3,7,4,8 -A,3,8,5,6,3,8,3,2,2,6,1,8,2,6,2,7 -J,3,4,4,6,1,11,2,11,3,12,9,14,1,6,0,8 -D,4,4,5,6,3,5,7,9,9,6,5,5,3,8,4,8 -B,4,10,5,7,7,8,7,6,5,7,6,6,6,8,6,10 -J,4,4,5,5,4,7,9,4,5,7,7,8,3,7,6,6 -V,3,7,5,5,2,9,9,4,1,6,13,8,2,10,0,8 -B,5,8,7,6,7,7,7,5,4,7,5,7,4,9,6,7 -I,1,9,0,6,1,7,7,5,3,7,6,8,0,8,0,8 -U,5,8,6,6,3,5,8,7,9,10,11,9,3,9,1,7 -M,4,8,5,6,5,8,5,11,1,6,9,8,8,5,1,6 -W,6,9,8,7,4,4,8,5,2,7,9,8,9,9,0,8 -C,5,11,6,8,4,3,8,6,6,12,10,13,2,9,3,7 -N,6,10,8,8,4,7,8,2,5,10,7,8,5,8,1,8 -R,5,10,8,9,9,6,9,3,3,7,5,9,8,6,7,9 -D,6,10,8,8,6,9,6,5,8,10,3,6,3,8,4,8 -B,2,1,2,1,1,7,7,7,5,6,6,7,1,8,7,8 -Z,2,1,3,2,1,7,7,5,9,6,6,8,1,8,7,8 -T,7,10,7,8,6,6,11,3,6,11,9,5,2,12,2,4 -T,5,9,7,8,8,7,7,4,8,7,6,9,5,4,11,5 -T,9,12,8,6,3,4,12,3,8,13,8,4,2,8,4,3 -W,7,10,7,7,6,5,10,4,3,9,7,7,9,13,3,4 -U,3,8,5,6,2,6,9,7,7,8,10,9,3,9,1,7 -F,2,2,3,3,2,5,11,3,5,11,9,5,1,10,3,6 -H,2,3,3,2,2,7,7,6,5,7,6,8,3,8,2,7 -U,4,8,4,6,3,7,6,11,4,7,13,8,3,9,0,8 -Z,2,1,3,2,2,7,7,5,9,6,6,8,2,8,7,8 -Z,5,9,6,7,5,7,7,5,10,7,6,8,1,8,7,8 -M,4,6,5,4,3,8,7,12,1,6,9,8,8,6,0,8 -D,6,10,8,7,5,9,7,5,8,10,3,5,3,8,4,8 -C,6,11,8,9,6,7,8,8,6,4,7,12,5,6,4,8 -C,3,5,4,7,2,5,7,7,10,7,5,14,1,8,4,9 -G,6,10,8,8,8,7,10,6,3,5,6,10,4,7,7,7 -B,3,5,3,3,3,7,7,5,5,6,6,6,2,8,6,10 -E,4,7,6,5,4,9,7,2,7,11,5,8,3,9,4,11 -F,4,7,6,5,3,6,10,1,6,13,7,5,1,10,2,8 -G,4,9,6,6,2,7,6,7,9,7,5,11,1,8,5,10 -O,5,10,7,8,5,7,6,9,4,7,5,9,3,9,4,6 -M,5,5,8,3,4,10,6,3,5,9,5,7,10,6,2,8 -R,5,7,7,5,4,9,8,4,7,9,3,7,3,6,4,11 -M,6,10,10,8,13,9,6,3,2,8,4,8,11,7,3,7 -M,4,5,7,3,4,5,7,3,4,10,10,10,9,7,3,8 -V,1,3,3,1,1,7,12,2,2,7,10,8,2,10,1,8 -Y,7,9,8,7,4,3,10,2,7,10,12,7,2,11,2,6 -T,7,12,6,6,4,5,11,2,7,12,7,5,2,9,5,4 -V,2,0,3,1,0,8,9,4,2,6,13,8,2,10,0,8 -W,5,6,5,4,4,4,10,3,2,9,9,7,7,11,2,6 -G,4,9,5,7,6,9,5,5,2,7,6,10,7,8,5,10 -T,4,8,5,6,4,6,7,8,6,6,6,8,4,9,6,10 -C,2,7,3,5,1,5,7,6,8,6,6,12,1,7,4,9 -D,2,3,4,2,2,8,7,5,6,9,5,5,2,8,3,7 -P,4,9,4,4,3,8,9,3,3,11,5,5,4,11,5,7 -V,3,8,5,6,2,6,11,2,4,8,12,8,2,10,1,8 -L,4,8,5,6,3,2,4,2,8,2,0,9,0,7,1,6 -P,5,5,5,7,3,4,13,9,2,10,6,3,1,10,4,8 -S,5,10,7,8,5,7,7,4,7,10,9,9,3,9,5,6 -P,6,12,6,6,4,6,10,3,4,12,6,4,3,11,5,6 -G,4,8,5,6,4,8,7,7,6,6,6,9,2,7,5,11 -G,5,10,6,7,3,8,7,8,8,6,7,9,2,7,5,10 -V,3,7,4,5,2,5,11,3,3,9,11,8,2,11,1,8 -L,3,2,4,4,2,4,4,5,8,2,1,6,0,7,1,6 -Y,7,9,7,7,3,5,9,1,9,9,10,5,1,11,4,3 -L,4,10,6,8,4,7,4,1,7,8,2,10,1,6,3,8 -X,2,3,3,2,2,7,7,3,8,6,6,8,2,8,5,8 -K,6,9,9,7,9,6,8,5,4,7,5,8,4,6,10,9 -A,6,8,8,7,7,8,7,4,6,7,9,6,5,11,4,5 -Q,5,8,5,9,7,8,6,7,4,9,7,8,4,9,5,7 -X,5,10,8,8,5,7,7,4,10,6,6,8,3,8,7,8 -E,2,5,4,3,2,7,7,2,8,11,7,9,2,9,4,8 -G,4,8,6,6,3,8,8,8,8,6,7,8,2,7,6,11 -F,4,8,5,6,5,6,9,5,4,8,6,8,5,10,6,12 -R,2,3,2,2,2,7,7,4,5,6,5,6,2,7,4,8 -S,5,10,6,8,8,8,8,5,3,8,5,7,5,9,12,8 -K,6,11,8,8,5,4,7,2,7,10,9,11,4,7,4,6 -B,6,9,8,6,7,9,7,4,6,9,5,6,3,7,6,10 -R,2,3,3,2,2,9,7,3,4,10,4,7,2,7,3,10 -L,4,10,5,8,4,7,4,2,8,7,2,8,1,6,3,8 -V,6,11,8,9,4,8,9,5,2,6,13,8,3,10,0,8 -R,6,9,9,8,10,9,7,4,4,8,4,7,8,10,7,4 -I,1,1,1,3,1,8,7,1,7,7,6,7,0,8,2,7 -M,3,3,4,2,2,9,6,7,3,6,7,6,6,6,1,5 -P,1,1,2,1,1,5,11,8,2,9,6,4,1,9,3,8 -D,3,7,4,5,4,8,8,6,5,9,6,4,3,8,3,6 -D,5,11,8,8,7,10,6,3,6,11,4,7,4,8,4,9 -O,2,3,3,2,1,8,7,6,4,9,6,8,2,8,2,8 -V,3,11,5,8,2,9,8,4,3,6,14,8,3,10,0,8 -X,2,2,4,4,2,7,7,3,9,6,6,8,2,8,6,7 -T,8,12,7,6,4,5,11,2,7,12,7,5,2,7,4,4 -J,3,10,4,8,4,9,6,2,5,11,4,9,1,6,2,6 -F,2,4,4,3,1,5,12,3,5,13,7,3,1,10,1,6 -I,0,0,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -L,4,11,5,8,3,3,3,5,9,1,0,7,0,7,1,6 -E,2,5,4,3,2,6,8,2,8,11,7,9,2,8,4,8 -R,3,1,3,2,2,7,8,5,5,7,5,7,2,6,4,8 -S,3,6,5,4,5,6,5,3,2,6,5,6,2,8,7,4 -R,3,6,5,4,3,10,7,3,5,11,2,6,3,7,2,10 -V,2,3,3,2,1,5,12,4,3,10,11,7,2,10,0,8 -P,4,8,6,6,5,6,7,5,4,7,6,9,5,8,6,10 -L,2,8,4,6,3,7,4,1,6,8,2,9,1,6,2,8 -F,4,9,5,7,5,6,8,6,4,8,6,8,3,11,8,10 -N,3,7,4,5,3,9,8,6,4,6,5,5,5,9,2,6 -X,3,4,5,3,2,10,7,2,8,10,3,7,2,7,3,9 -Q,3,5,4,6,4,8,7,7,3,5,7,10,3,8,5,10 -A,4,9,6,6,2,7,6,3,1,7,0,8,3,7,2,8 -N,6,10,9,8,9,6,8,3,5,8,7,7,9,8,8,4 -X,7,11,8,6,4,7,8,2,8,11,7,8,5,11,4,7 -R,5,10,7,8,6,7,8,6,5,8,5,9,4,6,6,12 -Y,5,6,4,9,3,9,9,2,3,6,10,5,3,10,5,8 -M,4,6,7,4,5,4,7,3,4,11,10,10,5,7,2,6 -S,3,7,4,5,2,8,7,5,9,5,6,8,0,8,9,7 -J,2,4,4,3,1,8,6,3,6,14,6,10,0,7,0,7 -B,4,8,5,6,6,6,7,8,5,7,6,7,2,8,7,9 -N,7,9,9,7,4,7,8,3,5,10,7,7,6,9,1,7 -Q,7,12,7,6,4,11,3,4,5,12,3,9,3,9,7,12 -Y,2,4,3,3,1,4,10,2,6,10,10,6,1,11,2,5 -Z,3,7,4,5,3,7,7,3,11,9,6,8,0,8,7,8 -C,3,6,4,4,2,6,8,8,8,9,8,13,2,10,4,9 -C,3,2,4,4,2,6,8,7,8,8,8,14,1,9,4,10 -W,2,0,2,0,1,7,8,4,0,7,8,8,6,9,0,8 -R,1,0,2,1,1,6,9,7,3,7,5,7,2,7,4,10 -P,4,6,6,4,4,9,7,2,6,13,5,6,1,10,3,10 -P,5,8,6,6,5,4,11,4,5,11,9,4,0,10,4,7 -D,5,8,6,6,4,8,8,7,7,10,5,4,3,8,4,8 -B,4,8,5,6,5,8,8,4,4,7,5,7,4,8,5,7 -Q,4,6,5,8,5,7,8,5,3,7,9,11,3,8,6,8 -B,4,7,5,5,5,7,7,7,6,7,6,7,2,8,6,10 -S,1,3,3,2,1,8,8,2,6,10,6,8,1,8,5,8 -O,6,12,4,6,3,6,8,5,5,9,5,6,5,9,5,8 -H,5,11,7,8,7,6,6,6,5,6,5,8,6,6,7,10 -I,1,4,2,3,1,7,7,0,7,13,6,8,0,8,1,8 -I,5,8,6,6,3,7,5,2,7,7,7,9,1,10,4,8 -G,2,1,2,2,1,8,6,6,6,6,5,10,1,7,5,10 -W,3,3,5,5,3,7,8,4,1,7,8,8,8,10,0,8 -A,1,1,2,1,0,7,4,2,0,7,2,8,2,7,1,8 -J,2,6,2,4,1,15,4,3,5,12,1,7,0,8,0,8 -Q,5,7,7,10,11,8,6,5,2,6,6,8,11,12,10,15 -L,1,4,2,3,1,7,4,1,7,7,2,10,0,7,2,8 -I,0,6,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -D,7,11,10,8,6,8,7,7,8,9,5,4,4,8,6,11 -N,8,15,10,8,5,12,5,2,5,12,3,7,5,6,0,8 -I,1,3,1,4,1,7,7,0,7,7,6,8,0,8,2,8 -U,3,5,4,3,2,5,8,5,7,10,9,9,3,9,2,6 -I,1,5,2,4,1,7,7,0,7,13,6,8,0,8,1,7 -D,5,9,8,6,6,9,8,4,6,11,5,5,4,7,4,9 -E,3,6,5,4,4,8,7,5,2,7,6,9,4,8,7,10 -G,6,8,8,7,8,7,8,5,3,7,7,9,7,11,7,8 -V,4,7,5,5,2,9,12,2,3,4,11,9,3,12,1,7 -S,3,5,3,4,2,8,7,7,5,7,6,7,2,8,9,8 -R,3,6,5,4,4,8,9,4,5,8,4,8,3,5,4,11 -E,2,3,3,1,1,6,8,2,7,11,7,8,1,8,4,8 -M,5,9,5,6,6,8,5,11,0,6,8,8,8,6,1,6 -Y,6,7,6,5,3,4,9,1,8,10,10,6,1,10,3,4 -I,3,7,4,5,2,7,7,0,8,14,6,8,0,8,1,8 -E,5,10,7,8,5,10,7,2,9,11,3,8,3,8,5,12 -Q,5,7,6,9,6,8,5,8,4,6,5,9,4,8,6,9 -Z,1,3,2,2,1,7,7,5,8,6,6,8,2,8,6,8 -S,2,6,3,4,2,9,9,5,9,5,5,5,0,7,8,8 -W,7,11,7,8,7,2,10,2,3,10,10,8,7,11,1,7 -G,5,11,4,6,3,8,7,5,3,9,6,7,3,9,8,8 -T,5,7,6,5,3,4,13,4,5,12,9,4,2,12,2,5 -Q,5,9,7,11,7,8,7,8,4,5,6,10,3,8,7,10 -X,4,6,5,5,5,6,8,2,4,8,7,9,2,8,7,8 -A,3,7,5,5,3,11,3,2,2,9,1,9,3,5,2,8 -A,2,6,4,4,2,10,3,1,2,8,3,9,2,6,2,8 -W,4,5,6,8,4,4,8,5,2,7,8,8,8,10,0,8 -A,2,5,4,4,2,7,2,2,2,6,2,8,2,7,2,7 -Y,3,8,5,6,2,5,10,1,3,8,11,8,1,11,0,8 -L,4,9,5,6,4,6,4,4,8,3,2,5,4,6,2,5 -Z,6,7,4,11,4,8,5,4,4,11,6,8,3,9,10,8 -B,2,1,3,1,2,7,7,5,5,7,6,6,1,8,5,9 -X,4,5,7,4,3,9,6,1,9,10,4,7,2,8,3,8 -E,3,8,4,6,4,6,7,6,8,7,6,10,3,8,6,8 -J,2,10,3,8,1,12,3,10,3,13,6,13,1,6,0,8 -G,4,8,6,6,6,8,5,4,3,7,5,11,6,8,4,11 -X,5,10,6,8,4,7,7,4,4,7,6,7,3,8,4,8 -G,4,9,5,7,6,7,7,6,2,7,6,11,4,9,8,7 -Q,4,5,5,7,3,9,7,8,6,6,6,10,3,8,5,9 -Q,4,5,5,7,3,9,8,8,6,5,8,10,3,8,5,9 -Y,8,13,6,7,4,9,7,5,6,9,5,4,4,10,6,5 -U,4,9,4,6,2,8,5,14,5,6,14,8,3,9,0,8 -I,6,12,6,7,4,9,8,2,5,11,5,6,3,9,6,11 -A,2,7,4,5,3,11,2,2,2,9,2,9,2,6,2,7 -W,8,8,8,6,5,3,10,3,4,11,10,8,8,10,2,6 -Z,4,4,4,6,2,7,7,4,14,9,6,8,0,8,8,8 -O,5,10,6,7,3,8,8,9,8,7,7,8,3,8,4,8 -X,4,8,6,6,3,9,7,1,8,10,2,7,3,8,4,9 -T,4,10,6,7,2,8,15,1,6,7,11,8,0,8,0,8 -O,8,14,5,8,4,6,6,6,3,9,7,9,5,9,5,8 -H,2,0,2,0,0,7,8,11,1,7,5,8,3,8,0,8 -V,6,11,9,8,5,7,11,3,2,6,11,9,3,10,3,9 -E,2,3,3,5,2,3,7,6,10,7,6,15,0,8,7,8 -K,1,0,1,0,0,4,6,6,2,7,6,11,3,7,2,10 -O,6,10,7,8,3,7,9,9,9,7,8,8,3,8,4,8 -W,4,3,5,5,3,8,8,5,1,7,8,8,8,9,0,8 -D,4,10,6,8,4,9,7,5,7,9,4,4,3,8,4,8 -P,6,10,5,5,3,6,10,6,2,11,5,5,4,10,4,8 -F,4,9,5,6,4,5,10,5,6,11,10,5,2,9,2,5 -M,1,0,2,0,1,7,6,9,0,7,8,8,5,6,0,8 -Y,3,3,4,2,1,4,11,2,7,11,10,5,1,11,2,5 -J,2,9,3,6,2,9,6,2,7,12,4,8,0,6,2,6 -Q,3,6,4,5,2,9,6,9,6,7,5,9,3,8,4,8 -M,8,9,11,7,7,6,7,3,5,9,9,9,8,6,2,8 -K,5,9,6,7,7,7,9,5,4,7,5,7,5,7,8,11 -T,4,9,5,7,3,5,14,1,6,9,10,7,0,8,0,8 -Y,3,6,4,4,1,8,11,2,2,5,12,8,1,11,0,8 -J,3,5,4,6,4,9,9,5,6,7,5,8,3,10,8,9 -J,3,11,4,8,3,9,6,3,7,12,4,9,1,6,2,6 -A,6,12,6,6,5,9,4,5,3,10,5,12,7,3,6,11 -F,9,13,7,7,4,6,11,3,5,13,6,4,2,8,6,6 -W,5,9,7,7,11,10,7,5,2,7,7,8,13,10,3,6 -N,5,10,5,8,6,7,7,13,1,6,6,8,5,9,0,7 -W,7,7,7,5,4,3,11,3,3,10,10,8,7,10,2,6 -G,7,9,7,7,5,6,7,6,6,10,8,11,2,9,4,10 -S,2,7,3,5,3,8,7,7,5,7,6,8,2,8,8,8 -D,3,1,4,3,3,7,7,6,7,7,6,5,2,8,3,7 -G,7,9,6,5,3,10,5,4,5,11,3,7,4,7,5,9 -H,6,7,9,5,6,9,7,3,6,10,4,7,5,7,4,9 -P,4,9,6,7,5,7,10,4,4,12,5,3,1,10,3,8 -M,3,3,5,2,3,7,6,3,4,9,8,9,6,5,2,9 -C,5,11,6,8,5,5,7,6,9,8,5,13,1,9,4,9 -G,6,9,8,7,8,7,10,6,3,5,5,11,5,7,8,7 -R,4,2,5,3,4,6,7,5,6,6,5,7,3,7,4,8 -H,4,5,7,4,4,8,8,3,6,10,6,8,3,8,3,8 -S,3,4,4,3,2,6,8,3,7,11,7,8,1,9,4,5 -W,4,9,6,7,3,8,8,5,2,6,8,8,8,10,0,8 -W,6,9,6,7,5,2,10,2,3,10,11,9,6,10,1,7 -M,3,2,4,3,3,8,6,5,4,7,7,8,7,5,2,7 -A,2,6,3,4,2,12,4,3,2,10,1,9,2,6,1,8 -N,6,11,7,9,3,7,7,15,2,4,6,8,6,8,0,8 -W,6,9,6,7,7,4,9,2,3,9,8,8,7,11,2,6 -Y,6,9,8,7,7,9,8,6,4,5,9,7,3,8,10,5 -H,8,13,8,7,6,9,6,4,5,11,3,7,7,8,5,8 -Z,5,6,4,9,4,9,4,4,3,11,6,9,2,10,8,8 -X,3,5,6,4,3,8,7,1,9,10,4,8,2,8,3,8 -C,4,7,5,5,3,7,9,8,6,5,6,12,4,8,3,8 -A,2,5,4,4,2,5,3,2,2,5,2,8,2,6,2,6 -N,3,7,5,5,5,7,8,3,4,8,7,8,6,9,5,4 -J,1,3,3,2,1,8,6,3,6,14,6,10,0,7,0,8 -D,4,6,5,5,5,7,8,4,7,6,4,8,4,8,5,5 -D,4,8,6,6,5,7,8,6,5,10,6,5,5,9,5,10 -E,4,8,4,6,4,3,6,5,9,7,7,14,0,8,6,9 -B,4,7,6,5,5,8,6,5,6,9,6,7,3,8,7,9 -U,4,8,5,6,3,6,9,5,6,7,9,9,3,9,1,8 -K,7,9,10,7,6,6,8,2,7,10,7,9,3,8,3,7 -P,1,0,2,1,0,5,11,7,1,9,6,4,1,9,3,8 -D,4,10,6,8,7,8,7,5,7,6,5,6,6,8,3,7 -H,2,1,3,2,2,8,8,6,5,7,6,8,3,8,3,8 -C,9,14,6,8,3,5,11,6,9,12,8,7,2,8,6,8 -P,3,6,4,4,3,5,11,7,3,10,7,2,1,10,3,6 -C,4,7,5,5,5,5,7,4,4,7,6,10,6,9,5,9 -U,7,10,7,8,4,4,8,6,8,10,10,9,3,9,2,5 -V,2,3,3,2,1,4,12,3,2,10,11,7,2,11,1,8 -N,6,7,8,6,7,7,8,5,4,7,5,7,7,9,6,3 -D,2,1,2,2,1,6,7,9,6,6,6,6,2,8,3,8 -M,5,11,6,8,4,8,7,12,2,6,9,8,8,6,0,8 -W,4,4,5,2,3,4,11,3,2,9,9,7,6,11,1,6 -H,7,11,9,8,6,7,7,6,7,7,6,6,6,8,4,7 -N,5,11,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -S,4,5,6,3,3,8,7,2,8,10,5,7,1,8,5,8 -I,5,12,4,6,2,12,4,3,5,12,2,7,2,8,2,11 -L,4,11,6,8,3,4,4,3,9,5,1,9,1,6,3,6 -Q,2,3,3,4,3,8,9,6,1,5,8,10,3,9,5,10 -O,3,5,4,3,3,8,7,7,5,7,6,8,2,8,3,8 -F,4,8,4,6,3,1,11,3,4,11,11,8,0,8,2,7 -M,11,15,11,8,6,7,10,4,5,4,5,10,10,11,2,7 -S,3,6,4,4,2,8,7,5,8,5,6,8,0,8,9,8 -M,6,8,8,6,8,8,9,6,4,7,7,8,6,9,6,7 -U,4,6,5,4,3,5,9,5,6,6,9,10,3,9,1,7 -L,5,12,5,6,3,9,3,3,5,11,4,11,2,8,5,9 -M,5,8,7,6,6,9,7,6,5,6,7,4,10,7,4,5 -L,1,0,1,1,0,1,1,5,5,0,1,6,0,8,0,8 -I,1,3,1,2,0,7,7,1,7,7,6,9,0,8,2,8 -U,6,8,7,6,3,3,9,6,8,12,12,9,3,9,1,7 -I,1,2,1,4,1,7,7,1,7,7,6,8,0,8,2,8 -X,5,11,7,8,4,5,8,2,8,10,11,10,3,8,4,5 -A,4,10,6,7,2,5,4,3,2,5,1,7,3,7,3,7 -M,7,7,10,5,7,5,7,3,5,10,10,10,11,8,4,8 -J,3,9,4,7,1,12,2,10,4,13,6,13,1,6,0,8 -M,4,8,5,6,5,7,6,6,5,7,7,10,7,5,2,8 -A,4,7,5,5,5,7,7,7,4,6,6,9,2,8,7,4 -M,4,7,7,5,4,4,6,4,4,11,11,11,6,6,2,7 -I,1,5,2,4,1,7,7,0,7,13,6,8,0,8,1,8 -P,4,9,6,7,4,10,7,3,5,12,4,5,3,8,4,9 -C,3,6,4,4,1,6,7,6,9,6,6,13,1,7,4,8 -Y,3,5,4,4,2,4,10,2,7,11,11,6,1,11,2,5 -Y,6,9,6,4,3,7,6,4,4,9,9,5,3,10,4,4 -O,4,4,6,6,3,6,8,9,8,7,6,6,3,8,4,8 -Z,6,9,6,4,4,9,5,4,8,11,4,9,3,6,6,9 -R,4,5,4,6,3,6,10,10,4,7,4,8,3,7,5,10 -L,2,4,4,3,2,7,3,2,7,8,2,10,0,7,2,8 -N,1,0,2,1,0,7,7,11,0,5,6,8,4,8,0,8 -P,3,7,5,5,3,7,10,3,5,13,5,3,1,10,3,9 -Q,3,6,4,4,3,8,5,7,4,6,6,8,3,8,3,8 -H,5,9,7,6,6,4,9,3,6,10,10,9,4,9,4,5 -J,8,12,6,9,4,10,6,2,5,12,5,7,2,10,6,12 -Z,7,14,7,8,5,6,7,2,9,12,7,8,4,6,7,6 -S,4,6,5,5,5,10,7,5,5,7,6,9,4,8,8,11 -H,8,10,8,5,4,9,8,4,5,8,3,5,6,7,4,8 -Z,3,9,4,6,3,7,7,6,11,6,6,8,1,8,8,8 -W,10,10,10,5,4,2,10,4,2,11,12,8,8,10,0,7 -D,3,8,5,6,4,10,6,3,6,10,3,5,3,8,3,8 -Y,6,8,8,11,12,8,9,4,2,7,8,9,4,11,9,8 -S,3,6,4,4,4,8,10,5,4,8,5,6,3,9,7,7 -F,5,10,8,8,8,10,6,2,5,9,5,6,5,9,4,7 -I,2,2,1,3,1,7,7,1,8,7,6,8,0,8,3,8 -U,6,10,9,8,12,8,8,4,4,6,7,8,10,5,9,8 -C,5,11,4,6,3,5,9,4,4,9,7,9,3,9,8,8 -F,1,1,2,2,1,6,10,4,4,10,8,5,1,9,3,7 -C,3,7,4,5,2,5,8,6,7,11,8,13,1,9,3,8 -I,2,9,2,7,2,7,7,0,9,7,6,8,0,8,3,8 -U,8,9,9,7,5,5,6,6,9,8,6,8,5,9,5,2 -K,5,5,5,8,2,4,6,9,2,7,7,11,4,7,3,11 -X,5,9,6,6,5,7,6,3,5,6,6,9,3,7,10,9 -C,4,7,5,5,2,5,8,7,10,6,7,11,1,7,4,8 -X,3,1,4,2,2,8,7,3,9,6,6,8,3,8,6,8 -F,1,3,3,2,1,8,9,2,5,13,5,5,1,9,2,9 -M,10,13,12,8,6,10,2,2,2,9,3,9,7,2,1,9 -W,2,1,4,3,2,9,10,3,2,6,9,7,5,11,0,8 -I,2,7,3,5,1,8,6,0,7,13,6,9,0,8,1,8 -H,2,1,3,2,2,7,7,6,6,7,6,8,3,8,4,8 -S,4,4,5,6,3,7,5,6,9,6,6,11,0,9,9,8 -F,4,8,6,9,7,7,8,4,4,7,6,7,5,9,10,8 -Q,6,9,6,5,4,12,4,3,5,10,3,8,3,9,6,12 -W,6,11,6,6,4,4,9,1,3,9,9,8,8,12,1,6 -R,4,3,4,4,2,5,11,8,3,7,4,8,2,7,6,11 -I,1,9,0,6,1,7,7,5,3,7,6,8,0,8,0,8 -X,4,9,6,6,5,7,7,3,9,5,6,8,3,8,6,8 -P,4,6,6,4,4,9,7,3,5,11,4,5,2,9,4,9 -D,1,0,1,1,0,5,7,7,5,6,6,6,2,8,2,8 -Z,2,4,4,3,2,7,8,2,9,11,7,7,1,8,6,6 -B,2,3,3,2,2,8,7,2,5,10,5,7,2,8,3,9 -B,2,5,4,3,3,9,7,2,6,10,5,6,2,8,5,9 -Y,4,6,5,8,7,10,9,5,3,6,7,8,6,11,7,5 -A,4,9,6,6,2,8,4,3,2,7,1,8,3,6,3,8 -F,2,1,2,2,1,6,10,5,5,10,9,5,1,9,3,6 -M,3,7,4,5,4,9,6,5,4,6,7,6,7,5,2,6 -C,7,14,5,8,5,6,6,4,4,10,9,12,4,9,9,8 -N,6,9,9,7,4,7,8,3,5,10,6,7,6,9,1,7 -P,6,8,8,6,5,5,14,6,2,12,6,2,1,10,3,7 -O,4,2,5,4,3,8,7,8,5,7,6,8,2,8,3,8 -O,4,8,5,6,4,7,8,7,4,10,7,9,3,8,3,7 -B,5,8,7,6,6,10,6,3,6,10,4,7,3,8,5,10 -G,6,8,8,6,7,7,10,6,5,6,6,8,5,6,7,7 -S,3,10,4,7,4,8,6,8,6,7,8,10,2,10,9,7 -Z,6,10,6,5,3,9,5,2,8,11,5,9,2,9,5,9 -H,8,11,11,8,6,10,6,4,7,11,1,7,6,8,5,10 -Q,4,7,5,8,5,9,7,7,3,5,7,10,3,8,6,10 -L,3,7,4,5,3,9,3,1,7,9,2,10,0,6,2,10 -Z,4,6,5,4,3,9,5,3,8,11,4,9,2,7,6,10 -Q,3,3,4,5,3,8,7,7,3,5,6,9,3,8,5,9 -Q,2,5,3,6,3,9,10,6,1,3,7,11,2,10,5,11 -Y,6,8,6,6,4,4,9,1,8,11,10,6,1,10,2,4 -F,1,0,1,0,0,3,12,4,2,11,8,5,0,8,2,7 -M,3,7,4,5,4,8,6,5,4,7,7,8,7,5,2,7 -U,2,1,3,1,1,7,5,11,5,7,14,8,3,10,0,8 -F,3,4,3,5,1,1,12,5,4,11,10,7,0,8,3,6 -H,4,9,6,6,7,7,8,6,7,7,5,8,3,8,3,8 -F,4,10,6,8,5,7,9,3,5,12,7,6,2,9,2,7 -V,6,8,6,6,3,3,12,4,4,10,12,7,2,10,1,8 -X,3,4,5,3,2,7,8,1,8,10,7,8,2,8,3,7 -I,1,3,0,2,0,7,7,1,7,7,6,8,0,8,2,8 -E,5,9,4,4,2,9,6,4,4,11,4,10,3,8,6,11 -E,6,9,8,8,9,7,7,5,4,7,7,10,9,12,11,12 -E,4,8,6,6,4,5,8,5,8,11,10,9,3,8,5,5 -I,4,6,6,4,3,6,7,3,8,7,6,11,0,8,4,8 -X,3,9,4,7,3,8,7,4,4,7,6,9,2,8,4,8 -H,5,7,7,5,5,7,7,2,6,10,6,8,3,8,3,7 -U,2,1,3,2,1,7,9,5,6,7,10,9,3,9,0,8 -H,8,10,11,8,9,5,8,3,7,10,10,9,7,11,6,6 -S,5,8,7,6,8,8,5,4,4,9,6,10,4,8,9,9 -O,4,10,5,8,3,8,7,9,7,7,6,8,3,8,4,8 -Q,6,7,6,9,5,7,10,5,3,7,10,11,4,10,7,8 -Z,6,11,7,8,6,7,8,3,13,9,6,8,0,8,8,7 -N,3,5,4,4,3,7,8,5,5,7,7,6,5,9,2,6 -Z,1,0,2,1,0,7,7,2,10,8,6,8,0,8,6,8 -I,0,8,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -Q,5,11,5,6,4,11,5,4,6,10,4,7,4,9,6,12 -U,9,12,8,7,3,6,5,4,6,3,8,6,6,7,2,7 -T,6,8,6,6,3,5,14,5,6,12,9,2,2,12,2,4 -C,4,9,5,6,2,6,8,7,10,4,6,14,1,7,4,9 -I,1,5,2,3,1,7,7,0,7,13,6,8,0,8,1,8 -Z,7,8,5,11,5,8,5,5,5,11,7,8,3,9,10,7 -I,1,5,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -C,3,5,4,3,2,6,7,7,7,8,7,14,2,9,4,10 -Y,9,10,8,8,4,3,10,4,7,13,12,6,2,11,3,6 -V,7,9,5,4,3,9,7,6,4,7,9,7,7,12,3,7 -R,5,11,6,8,4,6,9,10,5,6,5,8,3,8,6,11 -Q,4,8,6,6,5,8,4,8,5,6,6,8,3,8,3,8 -C,2,1,2,2,1,6,8,6,7,8,7,13,1,9,3,10 -M,9,10,13,8,10,3,8,4,5,10,11,11,12,8,6,6 -Q,5,12,5,6,4,10,5,4,6,11,4,8,3,8,8,11 -Y,3,3,4,1,1,4,10,2,7,10,10,5,1,10,3,4 -T,3,5,5,4,4,6,8,5,6,8,8,8,3,10,6,7 -E,5,11,5,8,3,3,8,6,12,7,6,15,0,8,7,6 -U,4,7,5,5,4,6,8,8,5,5,6,11,4,9,5,5 -Z,4,7,6,5,3,7,7,2,10,11,6,8,1,8,6,8 -R,5,9,6,7,6,7,7,4,6,6,5,7,3,7,5,9 -W,6,11,8,8,4,5,8,5,2,7,8,8,9,9,0,8 -I,5,7,7,8,6,9,8,5,5,6,5,8,3,8,9,7 -W,2,3,3,1,2,5,10,4,2,9,8,7,5,10,1,6 -F,3,7,6,5,5,8,8,1,4,9,6,6,3,10,4,4 -K,3,5,5,4,3,5,8,1,6,10,8,10,3,8,3,8 -G,4,8,4,6,3,7,7,6,7,11,6,10,2,10,4,9 -Y,3,8,6,6,3,5,9,2,6,8,12,10,2,11,2,7 -N,2,1,2,2,1,7,8,6,4,7,6,7,4,8,1,7 -R,6,10,8,7,8,8,8,7,5,7,5,8,5,9,7,12 -B,5,8,8,6,6,11,5,2,6,10,3,7,5,7,6,12 -R,2,4,4,3,2,8,8,3,5,9,4,7,2,6,3,10 -Z,1,3,2,1,1,8,7,1,8,11,6,8,1,8,5,8 -K,6,11,8,8,6,4,7,2,7,10,10,12,3,8,4,7 -F,3,5,5,3,2,7,9,2,6,13,6,5,4,9,3,7 -N,3,2,4,4,3,7,9,5,4,7,7,7,5,9,2,6 -L,2,0,2,1,0,2,1,6,5,0,2,4,0,8,0,8 -P,2,1,2,2,1,5,11,5,3,10,7,3,0,9,3,6 -G,4,4,5,7,2,7,7,8,8,6,6,11,1,8,5,11 -Z,4,11,6,8,7,8,7,2,8,7,6,8,0,8,9,8 -Q,1,0,1,0,0,8,7,6,2,6,6,9,2,8,2,8 -X,1,1,2,1,0,7,7,4,4,7,6,8,2,8,4,7 -Y,1,0,2,1,0,7,9,1,2,6,12,8,1,10,0,8 -F,4,6,6,4,3,7,9,3,6,13,6,5,2,9,2,7 -S,5,9,8,7,9,5,7,3,2,7,6,5,3,8,9,2 -P,12,13,9,8,4,7,9,6,4,12,3,4,5,10,5,8 -Z,4,10,5,8,2,7,7,4,14,10,6,8,0,8,8,8 -N,6,10,8,5,3,12,4,5,3,13,1,7,5,7,0,8 -Z,8,12,8,6,5,8,5,2,8,12,6,10,3,7,7,8 -K,4,9,6,6,6,7,6,5,4,6,6,7,7,6,8,12 -I,1,3,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -H,5,9,6,6,3,7,10,15,2,7,3,8,3,8,0,8 -I,0,4,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -D,7,12,7,7,5,9,6,4,7,10,5,7,6,8,8,6 -O,3,7,5,5,6,8,6,5,2,7,6,8,8,9,5,10 -J,2,8,3,6,2,14,4,4,4,13,2,8,0,7,0,8 -D,2,3,2,2,1,7,7,6,6,7,6,4,2,8,3,6 -T,3,7,5,5,3,6,11,4,6,8,11,8,2,12,1,7 -V,3,9,5,6,1,7,8,4,3,7,14,8,3,9,0,8 -B,4,10,5,8,7,6,8,8,5,7,5,7,2,8,7,9 -J,2,8,3,6,1,13,3,8,4,14,3,11,0,7,0,8 -P,5,10,7,7,4,8,9,2,7,14,5,4,3,9,4,9 -O,6,10,7,7,5,8,6,8,6,10,6,9,4,8,5,5 -G,6,11,6,8,4,6,7,7,6,9,8,11,3,7,6,8 -Y,3,7,5,5,4,8,6,5,4,6,8,7,2,8,8,4 -C,2,4,3,3,1,6,8,7,7,8,8,13,1,10,4,10 -Y,7,11,8,8,5,3,9,2,7,9,11,7,2,11,3,5 -Y,5,7,7,11,10,8,11,3,3,6,8,9,4,11,11,7 -G,5,11,6,8,9,7,5,4,4,7,5,11,7,8,9,14 -I,1,3,0,2,0,7,7,1,7,7,6,8,0,8,2,8 -E,3,2,3,4,3,7,7,5,8,7,6,8,2,8,6,9 -T,2,4,2,2,1,8,12,3,5,6,10,8,2,11,1,8 -C,4,9,5,7,2,5,7,7,10,7,7,12,1,8,4,8 -H,11,14,10,8,5,8,7,4,5,9,6,7,7,10,5,9 -K,4,10,6,8,7,7,7,5,4,7,6,7,7,6,8,13 -Z,3,8,4,6,2,7,7,4,13,9,6,8,0,8,8,8 -U,8,13,8,7,5,6,6,4,5,6,7,8,5,6,3,7 -A,3,5,5,4,2,10,2,2,2,9,2,9,2,6,2,8 -K,4,9,6,7,6,5,6,4,7,6,6,10,3,8,6,10 -Q,3,6,4,5,3,9,8,7,4,5,7,10,2,8,4,9 -M,3,6,4,4,2,8,6,11,1,6,9,8,7,6,0,8 -F,6,10,8,7,4,5,13,2,6,13,6,2,1,10,2,6 -H,4,5,5,4,4,7,7,6,6,7,6,8,3,8,3,7 -Y,3,8,5,6,2,8,10,2,2,6,12,8,1,11,0,8 -S,1,3,2,2,1,8,7,6,5,7,6,7,2,8,8,8 -Y,3,9,5,6,1,7,10,3,2,7,13,8,2,11,0,8 -K,4,8,6,6,5,8,5,1,6,10,4,9,3,8,4,10 -Y,3,9,5,6,1,7,11,1,3,7,12,8,1,10,0,8 -J,3,6,5,4,2,7,4,5,3,13,9,14,1,6,1,6 -W,5,11,7,8,4,7,7,5,2,7,8,8,9,9,0,8 -O,4,7,6,6,4,8,4,3,4,9,3,8,3,7,4,9 -N,11,15,9,8,4,7,10,5,5,4,5,11,6,11,2,6 -Q,7,12,7,6,5,9,6,4,7,11,5,8,4,8,9,10 -E,4,10,4,7,3,3,8,6,11,7,5,15,0,8,7,7 -P,3,4,5,6,5,8,9,3,2,7,8,6,5,10,5,5 -K,6,8,8,6,4,3,9,3,7,11,11,11,4,7,4,5 -Q,7,15,6,8,4,10,4,4,7,10,4,8,3,9,7,13 -P,5,8,7,11,12,7,11,5,0,9,7,6,5,10,6,8 -Z,3,8,4,6,3,9,6,5,10,7,5,6,1,7,8,8 -S,6,10,7,8,4,8,7,4,8,11,6,7,2,8,5,8 -P,3,7,3,4,2,3,13,7,2,11,6,3,1,10,4,8 -U,4,4,4,6,2,7,5,13,5,7,14,8,3,9,0,8 -Z,3,2,4,4,2,7,7,5,10,6,6,8,1,8,7,8 -O,4,7,6,6,4,8,5,3,4,8,3,7,3,7,5,9 -D,3,7,5,5,4,8,8,5,5,9,6,4,3,8,3,7 -Q,4,6,4,8,5,8,5,6,4,9,5,9,3,8,5,7 -R,4,8,4,5,2,5,12,8,4,7,3,9,3,7,6,11 -A,3,5,6,4,3,11,1,2,2,9,2,9,3,7,3,9 -A,2,2,4,4,2,8,2,2,2,8,2,8,2,6,3,7 -G,3,4,4,2,2,6,7,5,5,10,7,9,2,9,4,9 -N,5,10,6,8,6,6,7,8,5,7,5,6,3,7,3,8 -E,7,10,9,8,6,7,8,2,10,11,6,9,2,8,5,8 -V,3,1,5,3,1,7,12,3,3,6,11,9,2,10,1,8 -Y,5,7,7,11,10,8,9,3,2,5,8,10,6,13,9,9 -C,5,10,4,5,3,8,7,4,2,8,8,10,3,9,7,13 -R,4,6,4,8,3,5,12,9,4,7,2,9,3,7,6,11 -F,2,3,3,1,1,7,9,2,5,13,6,5,1,9,2,8 -O,5,11,6,8,6,7,8,7,3,10,8,8,4,7,5,10 -D,3,8,4,6,4,5,7,9,6,7,6,5,3,8,3,9 -H,4,7,5,5,4,6,7,6,4,6,5,8,3,7,6,10 -C,4,9,4,4,3,7,8,4,3,9,8,10,3,9,8,11 -V,2,3,3,2,1,8,12,2,2,5,10,9,2,11,0,8 -O,2,0,2,1,0,7,7,6,5,7,6,8,2,8,3,8 -X,3,4,5,3,2,7,7,1,8,10,6,8,2,8,3,8 -M,8,10,12,8,9,10,6,2,5,9,5,7,8,7,2,8 -L,1,4,3,2,1,6,4,1,7,8,2,11,0,7,2,9 -E,4,7,6,5,3,8,7,2,9,11,5,8,2,8,5,10 -O,4,8,6,6,2,8,5,8,8,7,4,9,3,8,4,8 -Z,3,3,4,5,2,7,7,4,13,9,6,8,0,8,8,8 -X,4,5,6,4,3,7,7,1,9,10,6,8,2,8,3,7 -F,5,10,7,7,4,7,10,3,6,13,7,5,2,10,2,7 -D,3,4,4,3,3,7,7,7,6,7,6,4,2,8,3,7 -J,2,8,2,6,1,13,3,8,4,13,3,11,1,6,0,8 -V,4,6,5,4,2,4,12,3,3,10,11,7,2,10,1,8 -N,4,6,4,4,2,7,7,14,1,5,6,8,6,8,0,8 -P,5,10,7,8,6,5,11,7,4,10,7,2,2,11,4,7 -L,2,6,4,4,2,6,4,1,9,8,2,11,0,7,2,8 -N,4,7,6,5,3,11,6,4,5,10,1,5,5,9,1,7 -M,7,6,7,8,4,8,7,13,2,6,9,8,9,6,0,8 -J,3,11,4,8,2,9,4,5,8,12,4,12,1,6,2,6 -Z,2,6,3,4,1,7,7,3,13,9,6,8,0,8,8,8 -V,6,9,5,7,3,3,11,3,4,10,12,8,2,10,1,8 -X,3,2,4,3,2,7,7,3,9,6,6,8,3,8,6,7 -C,4,10,6,8,5,8,6,9,6,8,6,11,4,9,4,8 -M,6,5,8,4,7,9,8,5,4,7,6,7,9,8,5,3 -Z,2,2,3,4,2,8,7,5,9,6,6,8,1,8,7,8 -G,5,7,6,5,6,7,6,5,3,7,6,9,5,8,7,7 -I,4,11,5,8,3,9,6,0,8,14,5,8,0,8,1,8 -G,5,9,7,7,4,6,7,7,7,6,6,12,3,9,5,7 -E,4,10,4,7,4,3,7,5,9,7,7,13,0,8,7,9 -D,3,2,5,3,3,7,7,6,7,7,6,5,2,8,3,7 -B,5,7,7,5,6,8,6,6,6,9,7,7,3,8,7,9 -R,6,9,8,7,8,8,6,7,3,8,5,7,4,6,7,10 -U,4,5,5,4,2,4,8,5,7,10,9,8,3,9,2,6 -D,2,4,4,3,2,9,6,4,6,10,5,6,2,8,2,9 -S,1,3,3,2,1,7,8,3,7,10,7,8,1,8,4,6 -A,5,11,4,6,3,10,2,3,1,9,4,11,3,4,4,8 -K,6,9,8,6,7,9,6,1,6,10,3,8,6,7,5,9 -L,1,0,1,1,0,2,1,5,5,0,2,5,0,8,0,8 -F,3,2,4,3,2,5,11,4,6,11,9,5,1,10,3,6 -C,3,4,4,6,2,6,7,7,9,8,5,13,1,9,4,9 -T,2,5,4,4,3,7,8,4,7,7,7,8,3,9,6,7 -Q,3,7,4,6,2,8,8,8,5,5,8,9,3,7,6,10 -M,3,2,4,3,4,8,6,6,4,7,7,8,7,6,2,7 -M,11,14,11,8,6,9,11,6,4,4,6,9,11,12,3,7 -C,3,4,4,3,2,4,7,5,7,10,8,13,1,9,3,8 -O,3,5,4,4,3,7,7,7,4,9,5,7,2,8,3,7 -B,5,10,7,8,7,8,8,4,5,7,6,7,7,7,6,9 -U,5,8,5,6,2,7,4,14,6,7,14,8,3,9,0,8 -O,4,7,6,5,4,7,5,8,5,8,5,11,3,8,4,8 -O,4,6,6,5,4,7,5,5,4,8,4,7,3,7,4,8 -C,5,10,6,7,4,5,7,7,10,7,6,11,2,8,5,11 -K,6,10,9,7,7,4,8,2,7,10,10,11,4,7,4,6 -E,3,2,4,4,3,7,7,5,8,7,5,9,2,8,6,10 -C,3,7,4,5,2,3,7,5,6,9,8,14,1,8,3,9 -H,3,6,5,4,6,9,7,4,4,6,6,8,7,8,6,7 -A,4,9,6,6,2,6,4,3,1,6,1,8,3,7,2,7 -R,4,7,4,4,2,5,10,8,3,7,4,8,3,7,6,11 -E,3,6,4,4,4,7,7,5,8,7,7,9,3,8,6,9 -S,6,9,7,7,5,7,8,3,7,10,7,8,2,8,5,6 -E,2,7,3,5,3,3,8,5,9,7,6,13,0,8,6,9 -B,5,9,8,8,9,7,7,5,4,7,6,8,7,9,9,6 -S,7,12,7,7,3,7,7,5,3,13,9,10,3,10,3,8 -Z,2,5,4,4,2,7,8,2,9,11,7,7,1,8,5,7 -H,6,11,9,9,8,10,6,3,6,10,3,7,6,8,5,10 -V,8,11,8,8,5,3,12,2,3,9,10,7,5,11,2,6 -K,5,8,8,6,4,4,8,3,7,10,10,11,4,8,4,6 -O,3,7,5,5,3,8,6,7,4,7,5,8,3,8,3,7 -K,4,9,6,7,8,7,7,3,4,6,6,8,7,8,8,7 -A,9,15,7,8,4,8,1,2,2,9,4,12,4,5,5,6 -M,7,10,9,8,11,8,6,6,5,7,5,8,6,9,8,8 -S,4,6,5,4,2,8,7,3,8,11,6,7,2,8,5,8 -X,2,3,3,4,1,7,7,4,4,7,6,8,2,8,4,8 -C,2,6,3,4,1,4,7,7,9,7,6,11,1,9,4,9 -E,4,9,4,7,3,3,7,6,10,7,6,14,0,8,8,7 -B,4,9,4,7,3,6,6,9,7,6,6,7,2,8,9,10 -W,2,1,3,2,2,8,10,2,2,6,9,8,5,11,0,8 -K,4,10,6,8,6,7,7,5,4,7,5,8,4,7,9,10 -Z,4,9,4,6,2,7,7,4,14,9,6,8,0,8,8,8 -C,6,10,6,8,4,4,9,7,7,13,10,8,2,10,2,7 -A,3,4,6,6,2,7,5,3,1,7,0,8,2,7,2,8 -K,2,3,4,2,2,5,9,1,6,10,8,9,3,8,2,8 -P,4,7,6,5,4,7,10,2,6,13,6,4,0,10,3,9 -E,5,9,7,7,8,6,7,3,6,7,7,11,4,10,8,7 -V,6,12,6,7,3,5,11,4,3,10,8,5,4,11,2,8 -V,4,8,5,6,3,7,9,4,1,7,13,8,2,10,0,8 -S,3,9,4,7,2,7,6,6,10,5,7,10,0,9,9,8 -S,4,10,5,8,4,7,7,5,8,5,6,9,0,8,8,8 -X,4,8,7,6,3,8,6,1,8,10,4,8,3,8,3,8 -K,3,4,4,6,2,3,7,8,3,7,6,11,4,8,2,11 -I,1,4,2,3,1,7,8,0,7,13,6,8,0,8,1,7 -P,3,4,3,5,2,4,11,8,3,10,6,4,1,10,3,8 -L,3,7,4,5,2,8,4,1,7,9,3,9,1,6,2,9 -L,3,8,5,6,6,7,7,3,5,6,7,10,6,11,6,6 -F,5,10,5,6,4,7,10,2,5,11,6,5,4,10,7,7 -R,2,1,2,1,1,6,9,8,3,7,5,7,2,7,4,10 -H,4,4,6,3,3,8,7,3,6,10,6,8,3,8,3,8 -B,2,3,2,1,2,7,8,5,5,7,5,6,1,8,5,9 -Q,2,4,3,5,3,7,8,5,1,7,8,10,2,9,4,8 -Y,2,5,4,4,2,6,10,1,7,7,11,9,1,11,2,9 -V,4,7,6,6,6,6,8,5,5,8,6,8,6,9,8,7 -H,4,8,4,5,2,7,8,15,1,7,5,8,3,8,0,8 -I,1,9,0,6,0,7,7,4,4,7,6,8,0,8,0,8 -N,2,3,2,2,2,7,9,6,3,7,6,8,4,8,1,7 -N,1,0,2,1,1,7,7,11,1,5,6,8,4,8,0,8 -U,4,9,6,6,3,4,9,7,7,10,11,9,3,9,1,8 -U,4,7,5,5,2,7,3,14,6,7,13,8,3,9,0,8 -F,2,3,3,1,1,6,12,3,4,13,7,3,1,9,1,7 -J,1,1,2,2,1,10,6,3,5,12,4,10,1,7,1,7 -L,6,11,8,9,6,10,3,1,7,10,2,10,3,6,4,10 -P,3,4,3,6,2,3,14,8,2,12,7,3,0,10,4,8 -W,11,11,10,6,4,6,11,2,3,7,10,6,8,12,1,7 -W,9,10,13,9,15,8,7,5,5,7,6,8,12,10,10,4 -P,2,4,4,3,2,6,10,3,4,12,5,3,1,10,2,8 -I,0,7,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -T,6,9,5,4,2,5,10,2,7,13,7,5,2,8,4,4 -Z,5,8,7,6,4,8,7,2,10,12,6,7,1,7,6,7 -F,4,8,6,6,4,6,10,2,5,13,7,5,2,10,2,7 -I,2,2,2,4,2,7,7,1,8,7,6,8,0,8,3,8 -H,6,10,7,6,5,8,7,3,5,10,7,7,7,11,5,8 -S,3,6,5,4,5,8,7,4,3,8,5,8,4,9,10,10 -N,8,12,10,6,4,3,11,6,3,14,12,9,6,10,0,8 -E,6,11,4,6,3,7,8,4,4,10,5,9,3,9,7,10 -U,5,10,5,7,4,7,5,13,5,7,12,8,3,9,0,8 -K,1,0,2,1,0,5,7,7,1,7,6,11,3,8,2,11 -O,2,0,2,1,0,7,7,6,5,7,6,8,2,8,3,8 -X,4,9,5,6,1,7,7,5,4,7,6,8,3,8,4,8 -V,2,1,3,3,1,7,12,2,2,7,11,8,2,10,1,8 -X,1,0,1,0,0,7,7,3,5,7,6,8,2,8,4,8 -R,3,7,4,5,4,6,8,8,4,7,5,7,2,7,4,11 -A,6,8,8,6,7,6,7,7,5,7,5,9,4,8,11,3 -L,2,4,3,3,1,4,4,4,7,2,2,6,0,7,1,6 -J,1,1,2,2,0,10,6,2,5,12,4,9,0,7,1,7 -F,4,9,7,7,7,5,8,2,4,10,8,7,8,10,4,4 -C,3,9,4,7,2,5,7,7,9,6,6,13,1,7,4,8 -C,6,9,8,8,8,5,9,4,6,6,6,11,4,11,8,9 -X,6,11,8,8,7,8,6,3,6,6,7,7,4,8,10,10 -R,5,7,7,5,4,10,6,2,6,11,2,7,3,6,3,10 -M,7,8,9,7,10,7,9,4,4,7,6,7,10,7,6,5 -E,2,0,2,1,1,5,8,5,8,7,6,12,0,8,7,9 -W,6,9,6,4,3,2,8,2,3,9,11,9,7,9,1,6 -Y,9,14,8,8,4,6,8,4,4,10,9,5,5,10,5,4 -G,4,6,5,4,3,5,9,5,5,10,8,7,2,8,5,9 -P,6,11,9,8,7,8,10,4,4,12,5,3,1,10,3,8 -B,5,9,6,7,5,6,8,9,8,7,5,7,2,8,9,9 -V,4,8,6,6,3,5,11,3,4,8,12,9,2,10,1,8 -L,4,8,5,6,2,4,5,2,9,5,1,9,1,7,3,6 -V,3,7,5,5,5,7,7,4,2,8,8,8,5,10,4,8 -L,3,10,5,8,3,9,3,1,8,10,2,10,0,6,3,10 -X,4,3,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -N,5,8,7,6,5,7,9,5,5,7,6,6,7,8,3,7 -Y,7,10,7,8,4,5,9,2,9,10,11,5,4,9,6,3 -X,5,7,7,5,3,7,7,1,8,10,5,8,3,8,3,7 -J,3,5,4,8,2,11,3,11,3,12,8,13,1,6,0,8 -E,1,3,3,2,1,6,7,2,7,11,7,9,1,8,4,9 -C,5,7,5,5,3,6,8,6,8,12,8,12,2,10,3,7 -L,3,10,5,7,3,6,4,1,8,7,1,9,0,6,2,8 -R,4,10,5,8,3,5,9,9,4,7,6,8,3,8,6,11 -F,5,7,7,5,3,7,10,2,7,14,5,4,2,9,4,7 -D,4,7,4,5,2,5,8,10,9,8,7,5,3,8,4,8 -K,5,11,5,8,5,3,7,7,3,7,6,11,3,8,3,11 -R,2,1,3,3,2,6,7,4,5,6,5,7,2,6,4,8 -T,2,6,3,4,2,8,12,2,8,5,11,9,1,11,1,8 -Q,5,7,6,9,7,9,8,7,2,5,7,10,3,8,6,10 -F,5,11,7,8,5,7,9,1,6,13,6,5,1,10,2,8 -T,3,4,4,2,1,5,12,2,7,11,9,4,1,10,2,5 -X,3,7,4,4,1,7,7,5,4,7,6,8,3,8,4,8 -U,6,10,7,8,4,4,8,6,8,9,9,9,3,10,2,5 -B,4,7,6,5,4,7,8,6,5,9,6,6,3,8,6,8 -P,3,9,4,6,2,5,10,10,3,9,6,4,2,10,4,8 -E,3,8,3,6,2,3,7,6,11,7,6,15,0,8,6,7 -H,5,9,7,7,7,7,7,5,7,7,6,7,6,8,4,7 -H,5,4,6,6,2,7,7,15,0,7,6,8,3,8,0,8 -S,5,5,6,7,3,7,6,6,10,5,6,10,0,9,9,8 -U,7,9,7,7,4,4,7,6,8,9,9,9,3,9,3,5 -K,4,11,4,8,2,3,7,8,2,6,5,11,4,8,2,11 -K,1,0,1,0,0,4,6,5,2,7,6,10,2,7,1,10 -R,3,8,4,5,2,6,10,9,4,7,4,8,3,7,5,11 -P,6,11,8,8,5,7,12,8,3,11,4,2,1,10,5,7 -M,6,7,9,6,9,6,8,5,3,6,5,8,12,8,5,8 -Y,5,6,7,9,10,8,4,5,3,7,8,9,8,8,6,8 -H,4,7,5,5,4,6,6,6,4,6,5,8,2,7,6,9 -X,6,11,9,8,5,8,6,1,9,10,4,8,3,8,4,8 -P,8,11,6,6,3,9,7,6,4,13,3,6,5,9,4,8 -B,4,9,6,6,6,8,8,4,5,10,5,6,3,8,5,10 -I,1,7,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -U,3,4,4,3,2,4,8,5,7,9,8,9,3,10,2,5 -I,2,9,3,7,4,7,7,0,7,7,6,8,0,8,3,8 -Z,5,5,6,8,3,7,7,4,15,9,6,8,0,8,9,8 -Z,4,5,5,8,2,7,7,4,14,10,6,8,0,8,8,8 -K,2,3,4,2,2,6,7,2,6,10,7,10,3,8,2,7 -H,3,7,4,5,4,7,7,7,6,7,7,8,3,8,3,7 -B,5,7,8,6,8,7,7,5,4,7,6,8,6,9,8,6 -G,4,4,5,6,2,8,5,7,9,8,4,12,1,9,5,10 -B,2,4,4,2,2,9,7,2,5,10,5,6,2,8,4,9 -Z,2,7,3,5,1,7,7,3,12,9,6,8,0,8,8,8 -L,5,11,6,8,5,4,4,4,8,2,1,6,1,6,1,5 -X,6,12,6,6,3,10,6,3,8,9,2,6,4,6,4,10 -T,2,7,3,5,2,6,13,0,5,8,10,8,0,8,0,8 -C,4,4,6,7,2,5,7,7,10,7,6,12,1,9,4,9 -B,3,6,5,5,5,6,9,6,6,8,7,7,5,9,7,8 -L,2,8,3,6,1,0,1,5,6,0,0,7,0,8,0,8 -U,6,10,9,8,11,8,5,4,4,7,7,7,11,8,6,10 -V,2,6,4,4,2,8,12,2,2,5,10,9,2,11,0,9 -O,6,10,8,8,5,7,7,9,4,7,6,8,3,8,4,8 -K,2,1,2,2,2,5,7,4,6,7,6,10,3,8,3,10 -Z,2,4,3,3,2,7,7,5,9,6,6,8,2,8,7,8 -N,5,10,5,8,5,7,7,13,1,6,6,8,6,9,0,6 -R,2,0,2,1,1,6,10,8,2,7,5,8,2,7,4,10 -T,4,9,6,7,5,6,11,2,7,8,11,8,1,12,1,8 -P,3,8,5,6,4,6,9,3,6,9,8,5,4,10,4,7 -S,1,3,3,2,1,8,7,3,6,10,6,7,1,8,5,8 -A,5,9,5,5,3,10,2,4,2,11,5,12,5,3,5,10 -Y,2,1,3,3,1,8,11,1,7,6,11,7,1,11,2,7 -A,4,11,7,8,2,7,5,3,1,6,1,8,3,7,2,7 -D,6,12,6,6,5,8,6,3,6,10,5,7,5,8,8,6 -R,4,8,6,6,7,5,6,3,4,7,5,9,6,10,7,5 -U,5,7,7,5,8,7,7,4,4,7,7,8,10,9,6,8 -L,3,3,3,5,1,0,1,6,6,0,0,6,0,8,0,8 -H,5,7,8,5,6,9,7,3,7,10,3,7,5,8,4,9 -L,2,7,2,5,1,0,1,5,6,0,0,7,0,8,0,8 -T,6,7,6,5,4,7,10,2,7,11,9,5,3,11,4,4 -V,3,8,4,6,3,7,11,2,3,6,11,9,2,10,1,9 -X,3,4,5,3,2,7,8,4,9,6,6,7,4,9,7,7 -D,4,8,4,6,3,5,8,10,9,8,7,6,3,8,4,8 -M,2,1,3,2,2,8,6,6,3,7,7,9,6,5,1,8 -D,4,6,5,4,4,9,7,4,6,10,4,5,3,8,3,8 -D,4,11,6,8,7,9,7,4,5,10,4,6,4,7,3,8 -H,3,3,5,2,2,5,9,3,5,10,9,8,3,9,3,6 -R,4,9,6,7,5,10,7,3,6,10,3,7,3,6,4,10 -U,2,3,3,2,1,4,8,4,6,11,10,9,3,9,1,7 -K,3,5,5,4,3,5,7,4,8,7,6,11,3,8,5,9 -X,8,11,8,6,4,4,10,4,8,11,10,9,4,9,3,5 -C,4,7,4,5,2,4,7,6,7,9,8,15,1,8,3,8 -J,2,8,3,6,2,14,4,4,4,12,2,9,0,7,0,8 -D,3,7,4,5,4,10,6,3,6,10,4,7,3,8,3,9 -N,1,0,1,1,0,7,7,10,0,5,6,8,4,8,0,8 -U,4,5,5,4,2,3,8,4,6,11,11,9,3,9,1,6 -S,4,9,4,5,2,7,8,4,3,13,8,8,2,10,3,8 -C,2,1,2,2,1,7,8,7,6,8,7,11,2,9,3,10 -Q,4,8,5,9,5,8,6,7,4,9,7,9,3,9,6,9 -Q,5,8,7,9,6,8,5,8,5,6,6,9,3,8,6,10 -B,5,9,5,7,7,6,7,8,6,6,6,7,2,8,7,10 -Q,4,9,5,10,5,9,8,8,2,5,7,11,4,9,6,8 -K,3,1,4,2,3,6,7,4,7,7,6,10,6,8,4,9 -I,2,7,3,5,1,9,6,0,7,13,5,8,0,8,1,8 -M,3,3,4,5,3,7,7,12,1,8,9,8,8,6,0,8 -O,3,6,4,4,3,7,7,7,5,7,6,8,2,8,3,7 -F,3,7,5,5,3,9,8,2,6,13,4,5,2,10,3,9 -B,4,8,6,6,4,8,8,4,7,10,5,6,2,8,6,10 -Q,2,4,3,5,3,8,7,6,3,8,6,9,2,9,3,9 -T,2,6,3,4,1,7,12,0,5,7,10,8,0,8,0,8 -D,1,0,2,0,0,6,7,7,6,7,6,6,2,8,3,8 -F,3,7,3,5,1,1,11,4,6,11,11,9,0,8,2,6 -W,7,9,7,7,6,5,10,3,2,9,7,7,9,13,3,4 -S,4,7,5,5,6,9,4,5,3,8,6,9,3,8,10,11 -X,5,11,8,8,6,7,8,3,9,5,5,7,4,9,8,7 -M,5,9,7,6,7,7,7,5,5,6,7,9,8,6,2,8 -E,3,6,5,4,4,6,7,3,7,11,8,9,3,8,4,8 -P,9,14,8,8,4,9,8,7,5,13,3,5,5,10,4,8 -W,4,7,6,5,4,10,8,4,1,7,9,8,7,10,0,8 -B,1,1,2,1,1,7,7,7,5,6,6,7,1,8,6,8 -B,2,5,4,4,3,8,7,3,5,10,5,7,2,8,4,10 -D,7,12,6,6,4,8,5,4,6,8,4,7,5,6,6,10 -P,8,12,6,7,3,8,8,5,4,12,4,6,5,9,4,8 -J,3,5,4,8,1,11,2,11,3,13,7,14,1,6,0,8 -U,5,5,6,7,2,8,4,14,6,6,15,8,3,9,0,8 -M,4,5,6,3,4,8,6,6,5,6,7,8,9,6,3,7 -B,5,9,7,7,10,9,9,5,4,7,8,6,6,10,10,10 -P,3,5,5,7,7,8,10,4,0,8,7,6,7,10,4,7 -V,3,5,4,4,2,5,12,2,3,8,11,7,2,11,1,8 -H,6,7,9,5,6,10,6,3,6,10,3,7,3,7,3,9 -B,5,11,7,9,8,8,7,5,6,6,6,5,3,8,6,10 -A,2,5,4,4,3,9,8,3,4,6,7,8,4,8,4,6 -T,4,7,5,5,1,4,14,4,7,12,9,3,0,10,1,5 -G,1,0,2,1,0,8,6,6,5,6,5,9,1,7,5,10 -S,5,11,6,8,3,7,6,6,9,4,6,9,0,9,9,8 -Y,4,6,6,8,1,8,12,2,3,7,12,8,1,10,0,8 -V,4,5,5,4,2,4,12,3,3,10,11,7,2,10,1,8 -S,5,8,6,6,4,8,8,4,7,10,3,7,2,6,5,9 -H,9,15,8,8,5,6,8,4,6,9,8,9,6,8,6,10 -O,6,9,6,7,5,7,7,7,5,10,6,10,5,8,4,6 -U,10,14,9,8,5,6,6,5,5,6,8,9,7,7,4,10 -N,3,7,5,5,4,7,6,6,5,7,5,9,4,8,3,7 -N,3,3,4,5,2,7,7,14,2,5,6,8,5,8,0,8 -P,4,10,6,7,4,6,9,7,5,9,7,3,2,10,4,7 -T,5,10,5,7,3,4,14,5,5,12,9,3,1,11,1,5 -J,2,3,4,4,2,10,6,2,6,12,4,9,1,6,1,7 -Q,4,6,5,8,4,8,7,6,3,8,8,10,3,8,6,8 -J,5,10,5,8,4,9,8,2,4,11,6,7,2,10,6,12 -K,8,11,11,8,6,8,6,2,8,11,4,8,4,8,5,10 -X,4,9,6,7,4,7,7,4,9,6,7,11,4,6,8,9 -I,4,11,5,8,3,7,7,0,8,14,6,8,0,8,1,8 -Z,5,8,7,6,6,9,7,5,4,7,5,7,4,8,10,5 -Q,5,5,7,8,3,8,8,7,7,6,8,9,3,7,6,9 -T,6,10,5,5,3,7,9,2,7,12,7,6,2,9,4,6 -D,5,10,7,8,10,9,8,5,5,7,6,6,4,7,7,5 -E,3,5,4,4,3,7,7,5,7,7,6,9,2,8,6,10 -A,3,8,5,5,2,9,6,3,1,7,0,8,2,7,1,8 -D,4,7,6,5,4,8,7,6,7,10,5,5,3,8,3,8 -D,5,9,5,5,3,10,5,4,5,11,3,7,4,7,4,10 -Q,5,9,7,7,6,8,3,8,4,6,6,7,3,8,3,8 -D,3,3,3,4,2,5,7,9,8,6,5,5,3,8,4,8 -I,1,2,1,3,1,7,7,1,8,7,6,8,0,8,3,8 -S,2,4,3,3,1,7,8,3,7,10,7,7,1,9,5,7 -L,4,10,6,9,5,8,6,4,4,6,7,8,3,9,8,10 -I,1,1,1,1,0,7,7,2,6,7,6,8,0,8,2,8 -Q,2,3,3,4,2,8,9,6,1,5,7,10,2,10,5,10 -O,4,4,5,6,2,8,9,8,8,6,8,9,3,8,4,8 -F,3,2,4,4,2,5,10,4,6,11,9,5,1,10,3,6 -R,4,8,5,6,3,6,9,9,4,6,5,8,3,8,6,11 -P,5,10,7,8,7,6,9,5,5,9,7,3,2,10,4,6 -J,6,10,7,8,3,9,3,6,6,15,7,15,1,6,1,7 -Q,1,0,1,1,0,8,7,6,2,6,6,8,2,8,2,8 -J,2,8,3,6,1,11,3,10,3,12,8,13,1,6,0,8 -L,2,5,4,3,2,7,3,1,7,8,2,10,0,7,2,8 -Z,4,7,6,10,6,10,5,4,4,8,3,7,2,6,7,8 -D,5,10,5,8,5,6,7,9,8,6,4,6,3,8,3,8 -X,8,12,9,7,5,6,8,2,8,11,7,8,5,8,4,6 -N,5,11,5,8,3,7,7,15,2,4,6,8,6,8,0,8 -Q,4,11,6,9,3,9,8,9,6,5,7,10,3,8,5,9 -G,6,10,8,7,6,6,6,6,6,6,6,10,4,8,5,9 -A,3,8,4,6,3,8,3,2,2,7,1,8,2,6,2,7 -P,1,0,2,0,0,5,11,6,1,9,6,5,1,9,3,8 -T,5,9,5,7,3,6,11,2,8,11,9,4,1,11,3,4 -N,4,9,6,6,4,7,9,2,5,9,5,6,5,8,1,7 -Q,3,6,4,7,4,9,9,7,2,4,7,11,3,10,5,10 -Q,3,7,4,9,5,8,5,8,4,6,5,8,3,7,5,9 -P,8,10,7,5,3,7,9,5,4,12,4,5,4,9,4,8 -I,1,5,1,3,1,7,7,1,8,7,6,8,0,8,3,8 -C,5,4,6,7,2,6,9,7,11,5,7,12,1,6,4,8 -M,8,10,10,6,5,9,3,3,2,9,3,10,8,1,2,9 -P,4,11,6,9,6,7,9,5,5,9,8,3,2,10,4,6 -N,10,13,11,7,5,7,7,3,5,13,9,9,6,8,0,8 -L,1,3,2,1,1,6,4,1,7,7,2,9,0,7,2,8 -I,1,5,2,4,1,7,9,0,7,13,6,6,0,8,1,7 -I,2,6,4,4,3,11,6,1,5,9,4,5,1,8,5,9 -P,2,1,3,1,1,5,11,8,2,9,5,4,1,9,3,8 -N,11,13,9,7,4,6,9,4,7,3,4,11,6,10,2,7 -V,4,8,6,7,7,8,8,5,4,7,6,8,7,7,10,4 -Q,4,8,5,6,5,8,4,7,4,6,6,11,2,8,3,9 -S,5,9,4,5,2,9,3,2,5,8,1,7,3,7,4,10 -Q,3,7,4,9,5,9,8,7,2,4,8,11,3,9,6,10 -C,4,8,5,6,5,5,7,4,5,7,7,9,7,9,5,9 -Z,3,8,4,6,2,7,7,4,13,9,6,8,0,8,8,8 -Q,3,5,5,7,5,8,12,3,3,5,8,11,3,13,4,9 -W,5,5,8,8,4,9,7,5,2,6,8,8,9,9,0,8 -G,6,10,6,8,4,6,7,6,7,10,8,11,2,9,5,9 -X,3,6,5,5,4,5,8,2,5,8,6,9,3,6,7,8 -C,4,4,5,6,2,6,6,7,10,9,6,14,1,9,4,8 -P,4,9,4,4,3,9,8,4,3,11,5,5,4,11,5,7 -X,5,11,9,8,8,9,6,3,6,7,5,5,6,10,8,9 -D,6,9,5,5,4,6,7,5,6,9,6,7,5,9,6,5 -G,3,8,5,6,4,8,7,7,5,6,6,9,2,7,5,11 -G,3,4,4,2,2,6,7,5,6,6,6,9,2,8,3,8 -H,2,4,4,2,2,7,7,3,5,10,6,8,3,8,2,7 -J,4,8,6,6,3,8,4,5,4,14,6,13,1,6,0,7 -P,4,10,5,8,5,6,9,6,5,9,7,4,5,10,4,7 -D,4,6,6,5,5,6,8,5,7,6,5,7,4,7,5,5 -G,2,0,2,1,1,8,7,6,5,6,6,9,1,7,5,10 -Z,2,5,3,3,2,7,7,5,9,6,6,8,2,8,7,8 -T,5,8,5,6,4,5,12,4,5,12,9,5,2,12,1,5 -W,4,6,4,4,4,3,10,2,2,10,9,7,5,11,2,6 -T,7,12,6,6,2,5,11,3,7,12,8,4,2,9,4,3 -I,1,6,0,4,1,7,7,5,3,7,6,8,0,8,0,8 -C,3,6,5,4,4,6,6,3,4,8,6,11,5,9,3,8 -Q,2,2,2,3,2,8,8,5,3,8,7,8,2,9,2,7 -M,1,0,1,0,1,8,6,8,0,6,8,8,5,7,0,8 -T,2,8,3,6,2,6,12,0,6,8,10,8,0,8,0,8 -A,6,10,6,5,4,12,3,6,2,12,2,10,5,3,3,10 -B,3,6,4,4,3,6,6,8,6,6,6,7,2,8,9,10 -X,6,9,9,7,5,7,7,0,8,10,7,9,2,8,3,7 -O,7,11,9,8,6,7,7,9,5,6,7,11,5,8,5,7 -W,6,7,6,5,5,6,11,4,2,8,7,6,9,12,4,5 -F,6,9,9,7,4,7,10,2,8,14,6,3,1,10,3,8 -E,0,0,1,1,0,5,7,5,7,7,6,12,0,8,6,10 -Q,4,6,4,8,5,8,6,6,2,8,6,10,3,8,5,9 -X,5,10,8,7,6,7,8,2,6,7,6,7,6,9,8,7 -S,2,2,2,3,2,8,7,6,5,8,6,7,2,8,8,8 -V,7,10,7,6,3,6,9,4,3,9,8,5,5,12,2,8 -R,3,6,4,4,3,7,7,4,5,7,6,6,3,7,4,9 -S,4,9,4,7,4,7,7,5,8,5,6,10,1,10,9,9 -F,6,8,8,10,9,7,9,5,5,8,6,7,4,9,8,8 -E,5,11,7,8,7,6,7,7,10,6,4,11,3,8,6,8 -J,2,6,3,4,2,10,6,1,8,12,3,7,0,7,0,8 -M,5,7,8,5,5,8,6,2,5,9,6,8,8,6,2,8 -H,4,8,4,5,2,7,9,15,1,7,4,8,3,8,0,8 -N,8,11,11,8,5,7,8,3,5,10,6,7,7,7,2,7 -H,4,8,4,6,4,7,7,12,1,7,6,8,3,8,0,8 -F,3,6,4,4,3,5,10,3,4,12,8,6,2,10,1,7 -F,5,8,7,6,3,7,10,2,7,14,5,4,1,10,2,8 -Z,3,7,4,5,2,7,7,3,12,8,6,8,0,8,7,7 -I,5,9,6,6,4,5,7,3,7,7,6,12,0,8,4,9 -G,5,7,5,5,3,6,7,6,6,9,7,10,2,8,4,9 -J,1,6,2,4,1,12,3,9,3,13,6,12,1,6,0,8 -G,3,8,4,6,4,8,7,7,5,6,6,8,2,8,5,11 -G,4,8,5,6,6,8,7,4,2,6,6,8,7,8,7,11 -B,1,0,2,0,1,7,7,6,4,6,6,7,1,8,6,8 -M,6,10,9,8,8,8,7,2,4,9,7,8,8,6,2,8 -Z,5,9,6,4,3,10,3,3,7,12,4,10,2,9,4,11 -R,3,8,4,6,4,5,10,7,3,7,3,9,2,6,4,11 -I,1,8,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -Q,3,4,4,5,3,8,8,7,2,5,7,10,3,9,5,10 -W,4,6,6,4,2,5,8,4,1,7,9,8,8,9,0,8 -Z,7,11,7,6,4,8,6,2,8,11,6,9,3,9,5,8 -F,3,3,4,4,1,2,12,5,5,12,10,8,0,8,2,6 -A,3,4,5,3,2,10,1,3,2,10,2,10,2,6,3,8 -S,4,11,5,8,5,8,7,8,5,7,6,8,2,8,8,8 -W,9,10,9,5,4,3,10,3,2,10,11,8,9,12,1,6 -W,4,6,5,4,4,4,10,3,2,9,8,7,6,11,1,7 -I,1,2,1,4,1,7,7,1,7,7,6,9,0,8,3,8 -W,8,12,8,6,6,9,9,4,4,6,9,6,10,9,3,6 -S,4,9,5,6,3,10,6,3,6,10,4,8,2,9,5,10 -E,4,8,6,6,4,7,7,3,8,11,7,9,3,8,5,8 -A,3,7,5,5,2,9,3,3,3,7,2,8,3,6,3,8 -Z,4,11,5,8,6,6,8,5,8,8,8,9,1,10,7,8 -S,5,9,5,5,2,10,5,4,4,13,5,8,2,9,2,8 -B,2,3,3,2,2,8,8,5,6,7,5,5,2,8,7,8 -I,1,4,2,2,1,7,7,1,7,13,6,8,0,8,1,8 -U,3,5,4,3,2,5,8,5,7,10,9,9,3,9,2,6 -Q,6,9,7,11,7,8,7,7,4,9,7,9,3,8,6,8 -J,3,11,4,9,3,9,7,2,7,11,3,7,1,6,2,6 -Y,2,6,4,4,1,7,9,2,2,7,12,8,2,11,0,8 -H,3,6,4,4,5,9,9,4,3,6,7,7,6,9,5,6 -P,5,9,6,6,3,5,10,10,5,8,5,5,2,10,4,8 -S,5,11,7,8,7,8,7,7,5,6,6,8,3,8,9,7 -N,5,8,7,6,4,6,9,2,4,9,8,8,6,7,2,7 -I,4,7,6,8,6,8,9,4,5,7,7,9,3,6,8,7 -G,4,5,5,3,3,7,6,6,7,7,6,10,2,9,3,8 -D,5,9,7,6,6,8,7,5,6,10,6,5,3,8,4,9 -W,3,4,5,3,3,9,11,3,2,5,9,8,6,11,1,8 -A,5,10,5,5,3,11,4,4,2,11,3,10,6,4,4,10 -Y,9,13,8,7,5,8,7,4,6,9,5,5,4,9,6,5 -E,2,5,4,3,2,6,8,2,7,11,7,9,2,8,4,8 -Z,4,10,5,7,4,7,8,6,11,7,6,9,1,9,8,7 -V,4,8,6,6,7,7,7,4,1,8,7,9,7,10,4,8 -O,4,8,4,6,4,6,8,7,4,9,8,8,3,8,2,7 -E,3,7,4,5,5,6,8,3,5,6,7,11,4,11,8,8 -R,3,10,4,7,3,6,9,10,5,7,5,8,3,8,5,11 -Q,4,6,5,7,5,9,9,6,2,4,7,11,3,9,6,10 -F,4,9,5,6,3,8,9,2,6,14,5,4,2,10,3,8 -V,4,7,4,5,2,3,12,5,4,12,11,7,3,10,1,8 -G,7,10,7,7,5,7,6,7,8,11,6,11,2,11,5,9 -G,5,6,6,6,7,7,9,6,2,7,7,7,9,12,9,7 -K,5,7,8,5,4,7,6,2,7,10,5,10,4,7,5,9 -U,4,5,5,4,3,6,9,5,7,6,10,9,3,9,1,8 -K,6,10,8,7,6,8,7,1,7,10,4,8,4,7,4,8 -Z,8,15,8,8,6,7,7,2,9,12,7,8,6,5,8,5 -I,2,4,3,3,1,7,7,0,7,13,6,8,0,8,1,7 -C,4,7,4,5,2,4,8,6,8,10,9,14,1,8,3,8 -P,5,8,7,10,10,7,8,4,3,7,7,7,6,11,5,6 -R,4,9,6,6,4,9,7,4,6,9,4,7,3,7,5,10 -O,3,3,4,4,2,7,7,8,6,7,6,8,3,8,4,8 -B,4,8,6,6,8,8,7,5,3,7,7,7,6,10,8,9 -K,2,1,3,2,2,5,7,4,6,6,6,10,3,8,4,9 -O,2,4,3,2,2,7,7,7,5,7,6,8,2,8,3,8 -V,4,11,6,8,2,7,8,4,3,7,14,8,3,9,0,8 -A,2,3,4,2,2,7,2,1,2,7,2,8,2,7,2,7 -H,3,4,3,5,2,7,9,14,3,7,3,8,3,8,0,8 -G,5,10,6,7,5,6,5,6,7,6,6,10,3,9,4,7 -F,3,6,4,4,4,6,9,5,4,8,6,8,2,9,7,12 -B,2,2,3,3,2,7,7,5,5,6,6,6,2,8,6,10 -P,4,7,5,5,3,10,7,3,5,12,4,5,2,9,3,9 -S,8,14,8,8,4,11,4,3,3,12,6,9,3,10,3,9 -G,3,7,4,5,2,6,6,6,6,10,8,11,2,10,4,9 -E,4,9,4,7,4,2,7,5,8,7,6,14,0,8,6,9 -S,4,7,5,5,2,8,7,5,9,5,6,8,0,8,9,8 -U,5,10,5,8,4,7,5,14,5,7,11,8,3,9,0,8 -X,7,11,11,8,5,7,7,1,9,10,6,8,3,8,4,7 -I,2,10,2,8,2,7,7,0,8,7,6,8,0,8,3,8 -T,8,11,8,8,5,7,11,4,8,12,9,4,2,12,4,4 -X,3,9,5,7,4,8,7,3,8,6,7,8,3,8,7,9 -D,3,10,5,8,9,9,9,4,4,7,6,6,4,8,7,5 -E,3,8,5,6,5,7,7,3,5,6,7,10,4,10,8,8 -W,4,6,6,4,2,7,8,4,1,7,8,8,8,9,0,8 -U,5,6,5,4,2,4,9,5,7,12,11,8,3,9,1,6 -D,5,4,5,6,3,5,7,10,9,6,6,5,3,8,4,8 -T,2,3,3,1,1,5,11,1,7,11,9,5,0,9,2,5 -S,3,6,5,5,5,9,8,5,5,7,6,8,5,8,9,11 -Y,6,11,6,8,3,2,11,4,5,12,12,7,2,11,2,6 -N,2,1,2,2,1,7,7,11,1,5,6,8,4,8,0,8 -S,6,9,5,4,2,11,2,2,5,10,2,9,2,8,3,11 -H,4,11,5,8,3,7,7,15,1,7,7,8,3,8,0,8 -S,4,7,5,5,5,9,6,4,3,8,5,8,3,9,9,9 -G,4,11,5,9,3,8,8,9,7,5,7,9,2,7,5,11 -G,4,6,6,4,3,6,6,5,7,6,5,9,3,9,4,8 -S,10,15,10,8,5,8,6,4,6,13,6,8,4,7,4,8 -H,6,11,6,8,6,7,9,14,2,7,4,8,3,8,0,8 -C,3,10,4,8,3,5,8,7,8,7,8,14,1,8,4,10 -A,2,1,3,1,1,7,4,2,0,7,2,8,3,6,1,8 -Q,6,11,5,6,3,10,3,4,6,10,3,9,3,8,6,13 -I,2,7,3,5,1,7,5,0,7,14,7,10,0,7,1,8 -A,2,4,4,3,2,7,2,2,2,5,2,8,2,5,2,7 -Q,3,5,5,4,3,6,4,4,4,5,4,7,3,5,5,7 -N,7,10,9,8,10,6,8,3,4,8,7,8,8,10,7,4 -H,5,6,8,8,6,9,11,4,2,8,7,6,3,10,8,6 -K,7,12,7,7,5,8,7,2,6,10,4,8,5,8,4,8 -Y,3,8,5,6,3,10,10,1,6,3,11,8,1,11,2,9 -Q,6,9,8,8,7,5,4,4,4,4,3,7,4,8,6,5 -V,4,9,6,7,3,6,12,3,4,8,12,8,3,10,1,9 -S,7,11,5,6,3,7,3,2,5,7,2,7,3,7,5,9 -B,5,7,7,5,5,10,6,3,7,11,3,6,4,6,6,11 -U,2,0,2,1,0,8,5,11,4,7,13,8,3,10,0,8 -K,8,10,8,6,3,4,7,5,7,9,12,12,6,11,3,6 -F,6,9,9,7,9,6,8,1,5,10,8,7,8,9,4,6 -G,6,10,7,7,5,5,7,6,5,9,8,11,2,8,4,10 -Q,3,4,4,5,3,8,8,6,2,8,6,9,2,9,3,8 -F,4,7,5,8,6,7,9,5,4,8,6,7,4,9,8,7 -H,8,14,7,8,4,8,8,4,6,8,5,6,6,8,5,8 -I,3,10,4,8,3,6,8,0,7,13,7,8,0,8,1,7 -F,7,10,9,8,6,9,8,2,6,13,5,5,5,9,4,9 -L,1,0,1,1,0,1,1,5,5,0,1,6,0,8,0,8 -P,4,4,6,6,6,9,11,2,3,7,9,6,4,10,5,5 -Z,3,10,4,8,5,8,7,5,9,7,5,7,1,7,7,8 -P,5,8,6,10,9,8,9,3,2,6,8,7,6,10,6,4 -M,3,5,5,3,4,7,6,3,4,9,7,8,7,6,1,8 -V,8,11,7,8,5,3,11,1,3,8,10,7,6,11,2,7 -Y,4,5,5,4,2,4,12,3,6,12,10,4,1,11,2,5 -X,3,4,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -V,1,0,2,1,0,8,9,3,2,6,12,8,2,10,0,8 -J,2,5,4,4,2,10,6,2,6,12,4,9,1,6,1,7 -O,2,3,2,2,1,7,7,6,3,8,6,8,2,8,2,7 -M,5,6,7,4,5,9,6,2,4,9,6,7,7,6,2,7 -V,5,5,6,4,2,4,12,3,3,10,11,7,2,10,1,8 -Q,5,8,7,7,5,7,4,4,4,5,3,8,3,7,5,8 -N,3,7,4,5,2,7,7,14,2,5,6,8,5,8,0,8 -L,4,7,5,5,3,7,4,1,7,8,2,9,1,6,2,8 -X,7,13,7,7,4,7,7,2,9,9,5,8,4,7,4,8 -E,6,11,9,8,5,5,9,3,11,11,8,8,2,8,5,5 -A,4,10,7,7,6,10,5,2,5,10,2,5,3,6,6,8 -L,2,7,4,5,2,6,4,3,8,6,1,7,1,6,2,7 -Z,2,3,4,2,1,7,7,2,9,11,6,8,1,8,5,7 -O,3,9,4,6,4,7,7,8,6,7,7,8,2,8,3,7 -Y,7,13,6,7,4,8,7,4,6,9,6,5,3,9,5,5 -K,5,9,7,7,5,6,7,5,8,6,5,10,3,8,5,9 -C,2,4,3,3,1,4,8,4,6,11,9,11,1,9,3,7 -X,4,8,4,6,3,7,7,4,4,7,6,8,3,8,4,8 -M,5,7,7,6,8,6,8,5,3,6,5,8,10,8,5,7 -C,3,7,4,5,2,4,8,7,7,7,8,14,1,8,4,10 -J,2,6,2,4,1,11,3,10,3,12,8,13,1,6,0,8 -H,4,9,5,7,4,7,7,13,1,7,6,8,3,8,0,8 -S,5,8,7,6,3,5,9,3,9,11,7,6,2,7,5,5 -H,3,6,5,4,4,6,7,5,5,7,5,8,3,7,6,12 -F,4,8,5,6,5,7,9,3,6,9,9,6,5,10,3,7 -T,9,12,7,7,3,7,8,4,9,13,6,8,2,7,5,6 -B,6,9,5,5,3,7,8,5,6,10,5,9,6,6,6,9 -U,6,10,7,8,4,5,7,6,8,9,7,9,4,9,3,3 -N,7,9,9,8,10,8,7,6,5,7,6,7,9,9,8,0 -K,5,6,5,9,2,3,6,8,2,7,7,12,3,8,3,11 -D,3,4,4,6,2,5,7,10,8,7,6,5,3,8,4,8 -B,5,10,5,8,4,7,8,9,7,7,5,6,2,8,9,10 -R,4,9,4,7,5,6,9,8,3,7,4,8,2,7,5,11 -Q,5,9,6,8,3,9,6,9,8,7,4,9,3,8,4,8 -N,3,7,4,5,3,7,8,6,5,7,6,7,5,8,1,6 -V,4,10,7,8,2,7,8,4,3,7,14,8,3,9,0,8 -C,0,0,1,0,0,6,7,5,6,7,6,13,0,8,3,10 -W,8,8,10,7,12,7,7,5,5,6,6,8,10,9,9,8 -M,1,1,2,1,1,8,6,10,0,6,8,8,6,6,0,8 -G,1,3,2,1,1,7,7,5,5,6,6,9,2,8,3,9 -T,3,11,4,8,1,6,14,0,6,8,11,8,0,8,0,8 -I,2,5,3,3,1,7,7,0,7,13,6,8,0,8,1,7 -C,5,9,7,7,8,7,5,4,3,7,7,11,8,9,4,7 -U,4,3,4,4,1,7,5,13,5,7,14,8,3,9,0,8 -H,8,11,11,8,7,7,6,3,7,10,5,8,5,6,5,7 -D,4,6,4,4,2,5,8,9,8,8,7,5,3,8,4,8 -L,4,8,6,6,4,8,4,1,8,9,3,10,1,6,3,9 -D,2,3,4,2,2,9,6,4,6,10,4,6,2,8,3,8 -X,1,0,1,0,0,8,7,3,5,7,6,8,2,8,3,7 -U,5,9,4,4,2,6,6,4,5,4,8,7,5,8,2,6 -D,4,4,5,6,3,6,8,10,9,8,7,6,3,8,4,8 -P,2,7,3,4,1,3,13,8,2,11,7,3,0,9,3,8 -B,3,4,5,3,4,7,8,3,5,10,6,6,2,8,5,8 -M,4,8,4,6,5,8,6,10,1,6,8,8,7,5,0,7 -F,5,9,7,7,4,4,11,1,5,13,7,5,1,10,1,7 -G,4,11,5,8,5,7,7,8,6,5,7,9,2,7,6,10 -X,5,10,7,8,4,10,7,1,8,10,2,6,3,9,4,10 -I,4,10,5,8,2,7,7,0,9,14,6,8,0,8,1,8 -B,3,6,5,4,4,7,9,4,5,9,6,6,2,8,5,6 -Z,2,5,4,6,4,9,6,5,4,7,3,6,2,7,7,6 -J,3,8,5,6,2,8,5,4,5,14,7,12,1,6,0,7 -D,3,8,5,6,4,8,7,7,6,6,5,3,3,8,3,6 -U,3,8,5,6,7,8,5,4,3,7,7,8,7,8,4,7 -H,3,2,4,4,3,8,7,6,6,7,6,8,3,8,3,8 -E,2,7,2,5,3,3,6,4,8,6,6,13,0,8,6,10 -Z,2,1,2,2,1,7,7,3,12,8,6,8,0,8,7,8 -T,2,4,3,5,1,7,14,0,6,7,11,8,0,8,0,8 -Q,2,2,2,3,2,7,8,4,2,8,8,9,2,9,4,8 -K,6,11,7,6,4,11,7,2,6,10,3,6,5,10,3,10 -R,4,8,6,6,4,10,7,4,7,10,1,7,3,6,4,11 -G,4,7,4,5,3,5,7,5,4,8,7,11,2,8,4,10 -S,3,4,3,3,2,8,8,6,5,7,6,7,2,8,9,8 -Z,4,5,6,7,5,11,5,3,5,9,3,7,2,7,6,9 -Q,1,0,1,0,0,8,8,6,3,6,6,9,2,8,3,8 -U,5,10,6,8,2,7,5,13,6,8,15,8,3,9,0,8 -K,6,9,8,7,6,6,6,1,7,10,7,10,3,8,4,8 -V,2,3,3,2,1,5,12,2,2,8,10,7,2,11,0,8 -C,3,4,4,3,1,4,8,5,7,11,9,12,1,9,2,7 -A,5,10,7,8,5,7,3,2,3,4,2,7,2,6,2,6 -Q,5,6,8,6,6,8,4,4,4,7,4,10,6,6,7,7 -T,6,13,5,7,3,8,7,3,7,11,5,7,2,9,5,6 -J,1,2,2,3,1,10,6,2,6,12,4,8,1,6,1,7 -R,2,3,4,2,2,8,7,3,4,9,4,7,2,7,3,10 -R,4,8,5,6,3,6,10,9,4,7,5,8,3,8,6,11 -C,3,7,4,5,2,7,7,7,10,8,6,14,1,9,4,9 -I,3,8,4,6,2,7,7,0,7,13,6,8,0,8,1,8 -Z,4,9,6,6,3,7,8,2,10,11,7,9,1,9,6,8 -K,3,4,5,3,2,6,6,1,7,10,7,10,3,7,3,8 -F,5,11,6,8,6,5,10,5,6,10,10,6,2,9,3,5 -P,3,5,3,4,2,5,10,5,4,10,8,4,1,10,3,7 -B,6,9,8,6,8,7,8,5,5,7,5,7,4,9,6,7 -L,4,11,5,8,4,7,4,1,7,8,2,10,1,5,3,8 -P,2,7,3,4,1,4,12,8,2,10,6,3,1,10,3,8 -F,5,8,6,6,6,7,8,6,4,8,6,8,3,11,8,11 -X,5,10,8,8,6,10,7,3,7,7,6,6,6,12,8,9 -R,2,4,4,3,2,8,7,3,5,10,4,7,2,7,3,10 -U,4,5,5,4,2,4,8,5,7,11,10,9,3,9,2,7 -K,3,5,4,3,3,5,7,4,7,6,6,11,3,8,4,10 -D,1,0,1,0,0,6,7,6,4,7,6,6,2,8,2,8 -V,5,10,7,7,4,5,10,3,2,9,11,7,4,9,5,8 -B,3,9,4,7,3,6,6,9,7,6,7,7,2,8,9,10 -X,1,1,2,1,0,8,7,3,4,7,6,8,2,8,4,8 -P,6,6,6,8,3,5,10,10,6,8,6,5,2,10,4,8 -R,4,7,4,4,2,6,11,8,3,7,4,8,3,7,6,11 -U,3,9,4,7,2,7,6,14,5,8,13,7,3,9,0,8 -W,7,8,7,6,6,2,10,2,3,10,10,8,7,11,2,7 -R,3,4,5,3,3,8,7,4,5,9,4,7,2,7,4,10 -A,5,10,7,8,8,8,7,8,4,6,6,8,3,8,8,3 -Q,5,9,5,4,3,10,5,4,6,11,4,8,3,8,7,11 -B,6,6,6,8,5,6,6,9,7,6,6,7,3,8,10,10 -E,2,5,3,4,3,7,7,6,7,7,6,9,2,8,6,10 -L,5,6,6,6,5,8,9,3,6,6,6,9,3,9,7,9 -N,5,8,8,6,4,10,7,3,5,10,2,4,5,9,1,7 -D,3,7,5,5,6,8,8,5,4,7,6,6,6,8,7,6 -J,2,5,5,3,2,9,5,4,5,14,6,12,1,6,0,7 -T,1,1,2,2,1,7,12,3,6,7,10,9,1,11,1,8 -F,3,3,4,4,1,2,13,5,4,12,10,6,0,8,2,6 -E,3,6,4,4,3,8,7,2,6,11,6,9,3,8,4,10 -I,0,7,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -D,3,3,4,2,2,7,7,6,7,7,6,5,2,8,3,7 -U,5,10,8,8,11,9,6,4,4,7,7,7,8,8,5,7 -T,2,3,3,2,1,6,11,4,5,8,10,7,2,11,1,7 -F,3,8,3,5,1,1,13,5,3,12,10,6,0,8,2,6 -K,7,10,10,7,7,4,8,1,7,9,8,11,3,8,3,6 -T,5,10,7,8,8,8,8,5,6,6,7,9,7,7,8,3 -S,4,11,5,8,5,7,7,6,8,5,6,11,1,11,10,9 -M,3,7,4,5,3,7,7,11,1,7,9,8,8,5,0,8 -H,9,15,9,8,7,4,10,3,5,10,8,10,5,8,4,6 -Z,4,5,6,7,5,10,5,3,5,7,3,6,3,7,6,7 -Y,2,7,4,5,2,7,10,2,2,7,11,8,1,11,0,8 -N,3,4,5,3,2,6,9,2,4,10,7,7,5,8,1,8 -K,4,10,6,8,6,5,6,3,7,6,6,10,4,7,7,11 -J,5,7,6,5,4,8,6,8,6,7,7,8,2,7,4,6 -M,7,9,10,7,6,8,6,2,5,9,6,8,10,8,3,8 -G,4,9,6,7,6,7,5,6,3,8,6,11,4,8,7,8 -Z,4,7,4,5,2,7,7,4,14,9,6,8,0,8,8,8 -I,2,8,3,6,2,7,7,0,8,13,6,8,0,8,1,7 -U,9,11,10,8,4,3,9,6,9,12,12,9,3,9,2,7 -J,3,7,5,5,5,10,8,3,4,8,4,6,4,8,6,5 -I,2,6,2,4,1,5,8,0,7,13,7,8,0,8,1,7 -T,2,3,3,2,1,5,11,3,6,11,9,5,1,11,1,5 -R,5,9,7,7,5,10,6,3,6,10,3,7,4,6,5,10 -K,3,3,4,5,1,3,7,7,2,7,6,11,3,8,2,10 -D,7,10,7,5,3,10,4,4,5,11,3,8,5,7,5,11 -F,1,0,1,0,0,3,11,4,3,11,9,7,0,8,2,8 -Q,3,4,4,5,4,8,7,6,3,8,8,9,3,8,4,8 -R,2,3,3,1,2,8,8,3,5,9,4,7,2,6,3,10 -G,3,4,4,2,2,6,7,5,5,9,7,10,2,8,4,9 -H,3,7,5,5,6,9,8,4,3,6,7,8,7,8,7,7 -L,9,15,7,8,4,7,4,3,6,11,3,12,2,7,6,7 -L,7,13,7,7,4,8,4,3,4,11,8,12,3,10,5,10 -U,4,8,6,6,7,9,6,5,5,6,7,6,6,8,5,6 -I,1,8,2,6,2,7,7,0,7,7,6,8,0,8,2,8 -D,4,11,6,8,4,8,8,8,8,8,7,2,3,7,4,8 -P,4,6,6,9,8,6,13,5,1,10,8,5,4,11,4,9 -Z,6,7,5,10,4,8,5,5,4,11,6,7,3,9,10,7 -J,4,8,3,12,3,8,7,3,3,11,4,5,3,8,6,10 -W,6,8,6,6,4,2,10,2,3,11,11,9,6,10,2,6 -N,5,9,8,7,4,3,10,3,4,10,10,9,5,8,1,7 -G,9,15,8,8,5,10,3,3,3,9,3,6,4,7,5,9 -D,3,7,4,5,4,6,7,9,7,8,8,6,2,9,3,8 -O,2,4,3,2,2,8,7,7,4,7,6,8,2,8,2,8 -U,4,5,5,4,3,6,8,6,7,7,9,10,3,9,1,8 -G,6,11,7,8,6,7,7,8,7,6,5,10,2,7,5,11 -R,1,1,2,1,1,6,9,7,3,7,5,8,2,7,4,10 -G,2,1,3,2,2,7,6,6,5,6,6,9,2,9,4,9 -X,8,13,7,7,4,8,8,2,9,9,6,7,4,10,4,8 -M,3,6,4,4,4,7,5,10,0,7,8,8,6,5,0,8 -U,4,2,5,3,2,7,8,6,8,7,10,9,3,9,1,8 -E,1,3,3,2,1,7,7,2,6,11,6,9,1,8,4,9 -M,4,7,6,5,4,6,6,7,5,7,8,11,8,5,2,9 -A,3,9,5,7,4,6,4,3,1,6,1,8,2,6,2,7 -G,4,9,5,7,4,5,7,6,5,10,8,11,2,9,4,10 -P,5,8,7,6,6,8,5,7,5,7,6,6,4,8,6,10 -F,3,5,6,4,2,6,11,2,6,13,7,4,1,10,2,7 -I,1,6,0,4,1,7,7,5,3,7,6,8,0,8,0,8 -R,3,2,4,3,3,7,7,5,5,6,5,6,3,7,4,8 -K,5,9,5,6,2,4,7,9,2,7,5,11,4,8,2,11 -W,5,8,8,6,5,9,11,2,3,5,9,7,10,13,1,6 -S,3,3,4,4,2,7,6,5,9,5,6,9,0,9,9,8 -C,4,10,5,8,3,5,8,7,8,7,8,15,1,8,4,9 -N,7,11,9,6,4,5,8,2,4,12,7,9,6,8,0,7 -P,5,6,5,8,3,3,14,8,1,11,7,2,0,10,4,8 -P,5,9,7,7,4,9,8,3,5,12,4,4,2,9,4,8 -N,4,9,6,7,7,9,7,4,4,7,6,6,5,10,6,5 -Y,8,8,7,12,5,5,5,7,4,6,12,6,5,10,4,8 -J,6,9,8,7,5,9,4,7,6,8,6,5,2,7,4,6 -M,7,7,10,6,10,6,9,5,3,7,5,8,12,5,6,8 -A,6,9,9,8,8,8,8,3,5,7,7,8,5,8,4,5 -S,9,15,7,8,4,9,2,2,5,8,1,8,3,7,5,10 -Z,8,13,9,7,6,5,9,2,9,12,8,8,6,5,8,2 -O,3,7,5,5,3,7,7,8,5,6,5,6,3,8,3,8 -R,3,8,4,6,2,5,11,8,4,7,3,9,3,7,6,11 -I,1,7,0,5,1,7,7,5,3,7,6,8,0,8,0,8 -U,1,0,2,0,0,7,6,10,4,7,13,8,2,10,0,8 -K,10,12,9,6,4,5,9,3,8,9,7,9,6,6,3,6 -E,5,10,7,7,7,8,9,6,3,6,6,9,4,7,7,9 -F,5,11,5,8,4,1,12,4,5,12,11,8,0,8,1,6 -J,2,2,3,3,1,10,6,2,6,12,4,9,0,7,1,7 -Z,4,6,6,4,3,6,9,3,9,11,9,6,1,9,6,5 -I,3,6,5,7,4,8,8,4,5,7,6,8,3,8,8,8 -U,1,0,1,0,0,8,7,9,3,7,11,8,2,10,0,8 -Q,9,14,8,8,5,7,5,4,9,10,4,9,3,7,9,9 -V,8,10,8,8,5,3,12,2,3,9,11,8,4,12,2,7 -E,6,11,8,8,6,8,7,3,9,12,6,9,2,9,5,8 -L,5,5,6,8,2,0,0,7,6,0,1,4,0,8,0,8 -B,3,7,4,5,4,6,7,8,5,7,6,7,2,8,7,9 -O,6,11,6,8,5,8,6,8,5,10,5,8,3,8,3,7 -X,5,10,7,7,6,7,6,3,5,6,6,8,3,9,9,9 -X,6,11,6,6,3,11,7,3,8,10,3,6,4,11,4,10 -J,4,11,5,9,3,7,8,2,7,15,5,8,1,6,1,7 -N,5,6,8,4,4,8,8,2,5,10,4,6,5,9,1,7 -K,6,10,8,8,5,6,6,2,7,10,6,10,4,8,4,8 -U,7,15,6,8,5,7,6,4,5,7,7,8,5,7,3,7 -A,3,3,5,4,1,7,5,3,0,7,1,8,2,7,2,8 -Z,3,10,4,8,4,7,7,6,10,6,6,8,1,8,8,8 -A,5,10,5,6,3,10,2,4,2,11,6,13,5,4,5,10 -O,4,8,4,6,4,8,7,8,3,10,6,8,3,8,3,8 -P,7,8,9,10,11,8,8,3,3,7,8,7,7,11,7,7 -A,1,1,2,1,0,7,4,2,0,7,2,8,2,7,1,8 -G,4,11,6,8,6,7,6,7,5,4,7,9,3,6,5,9 -M,6,9,8,7,6,8,6,2,5,9,6,8,8,6,2,8 -V,5,6,5,4,2,3,12,3,3,10,11,8,2,11,1,8 -J,3,7,4,5,4,9,8,3,4,9,4,7,4,8,6,5 -A,3,8,4,6,3,11,3,2,2,9,1,8,2,6,3,8 -F,5,11,5,8,2,1,11,5,7,11,11,9,0,8,2,6 -J,4,9,6,7,6,9,8,4,4,8,5,6,4,8,6,4 -U,5,7,5,5,2,4,9,5,8,12,10,8,3,9,1,6 -G,6,10,7,8,6,7,7,8,7,6,6,9,2,7,5,11 -D,3,7,4,5,3,8,7,6,6,10,4,5,3,8,3,7 -H,4,4,6,6,4,9,8,3,1,7,6,8,4,9,9,7 -I,4,9,5,7,3,9,6,0,7,13,5,8,0,8,1,8 -E,3,5,6,3,3,7,7,2,8,12,7,9,2,9,4,8 -K,4,6,6,5,5,8,7,2,3,8,3,8,4,5,6,10 -L,4,9,5,7,3,4,4,5,10,2,0,6,0,6,2,5 -L,1,0,2,1,0,2,1,6,5,0,2,4,0,8,0,8 -P,5,5,6,7,7,8,8,3,2,7,8,7,5,10,5,5 -X,4,11,6,8,4,8,7,4,9,6,6,6,3,8,7,7 -M,3,4,4,3,3,8,6,6,4,6,7,8,7,6,2,8 -L,3,6,3,4,1,1,0,6,6,0,1,5,0,8,0,8 -T,4,5,5,3,2,6,11,2,8,11,9,5,4,10,4,4 -S,6,11,6,6,3,9,5,4,4,13,6,9,3,10,3,8 -N,6,11,8,8,5,7,9,6,5,7,7,8,6,9,1,7 -E,5,9,7,7,5,10,6,2,9,11,4,8,2,8,5,12 -C,5,7,6,5,6,8,4,6,3,8,6,11,8,8,4,7 -Q,9,14,8,8,5,7,4,4,8,9,5,9,3,8,9,9 -Y,5,8,7,12,11,8,8,4,2,7,8,9,4,11,8,8 -G,2,2,3,4,2,7,6,6,5,6,6,9,2,9,4,9 -M,4,9,5,7,6,7,5,10,1,7,8,8,6,5,0,8 -D,3,2,4,3,3,7,7,6,7,6,6,5,2,8,3,7 -K,2,3,4,2,2,5,8,2,6,10,8,10,3,8,2,8 -W,2,3,4,2,2,8,11,3,1,6,8,8,6,12,0,7 -P,3,3,3,2,2,5,10,4,4,10,8,4,1,10,3,7 -H,5,10,8,8,5,8,8,3,7,10,6,7,3,8,3,8 -C,5,9,6,7,2,6,7,7,12,7,6,15,1,8,4,9 -S,6,9,7,6,4,8,7,4,8,11,6,8,2,9,5,8 -Q,1,2,2,3,1,7,8,4,1,7,8,10,1,9,3,8 -I,2,8,3,6,2,7,7,0,7,13,6,8,0,8,1,8 -L,3,7,5,5,5,7,8,3,4,6,6,9,5,11,7,5 -I,3,9,4,6,2,7,7,0,8,14,6,9,0,8,1,8 -F,5,7,6,9,7,7,9,5,5,8,6,8,3,9,7,6 -A,4,10,7,7,3,12,3,4,3,11,1,9,2,7,3,9 -N,2,4,4,3,2,7,9,2,4,10,6,7,5,9,0,7 -J,2,7,4,5,3,10,6,2,5,8,4,5,3,8,6,7 -L,3,6,5,5,4,7,8,3,5,7,6,8,3,9,7,11 -U,7,13,6,7,5,9,6,5,6,6,7,6,5,8,4,6 -O,3,6,4,4,3,7,8,6,4,10,7,6,3,9,3,8 -P,8,11,6,6,3,8,7,5,4,11,4,6,5,8,4,8 -N,4,5,6,5,5,7,8,5,3,6,5,8,6,8,4,7 -P,7,11,9,8,5,6,11,4,6,14,6,2,0,10,3,9 -W,4,5,7,4,4,7,11,2,2,6,9,8,7,11,0,8 -O,4,9,5,7,4,7,7,8,5,10,6,7,3,8,3,8 -F,3,2,4,3,2,5,10,4,6,11,9,5,1,10,3,6 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -R,3,7,4,5,4,7,8,5,6,6,5,7,3,7,5,8 -D,2,4,4,3,2,9,6,3,5,10,4,6,3,7,3,8 -W,3,8,5,6,4,5,10,2,3,8,9,9,7,11,1,7 -M,5,9,8,7,8,5,7,3,4,9,9,9,7,5,2,7 -P,10,13,8,8,4,7,10,6,3,12,4,4,5,10,4,8 -T,2,9,3,6,1,9,14,0,6,6,11,8,0,8,0,8 -P,4,8,5,6,3,7,10,2,7,14,6,4,0,10,2,9 -A,2,4,3,3,1,10,2,2,1,8,2,9,1,6,1,8 -Y,3,5,5,8,6,7,10,3,2,7,8,9,3,11,8,5 -F,3,7,4,5,3,5,11,4,6,11,10,4,2,10,2,5 -P,9,14,9,8,6,10,8,4,4,12,4,4,5,10,5,8 -G,4,8,6,6,5,7,6,6,4,7,7,9,5,9,7,8 -U,3,7,4,5,1,7,5,13,5,7,13,8,3,9,0,8 -S,3,5,5,4,2,8,7,3,7,10,6,7,1,9,5,8 -Y,2,6,4,4,1,6,10,3,2,7,13,8,2,11,0,8 -P,6,10,6,8,6,4,11,8,3,9,6,5,1,10,3,8 -U,7,11,6,6,4,6,5,5,4,7,9,10,6,7,3,10 -A,3,10,5,7,2,6,6,3,1,6,0,8,2,7,1,7 -H,4,2,5,4,4,7,8,6,6,7,6,8,3,8,3,8 -R,2,4,3,3,2,8,7,4,5,9,4,7,2,7,3,10 -R,3,4,5,2,3,9,8,3,5,9,4,6,2,6,4,10 -X,6,10,9,8,5,3,9,2,8,11,12,10,3,9,3,5 -J,1,3,2,5,1,11,3,9,3,13,7,13,1,6,0,8 -S,2,3,4,2,2,8,8,2,6,10,6,7,1,9,5,8 -N,3,8,3,6,3,7,7,12,1,6,6,8,5,8,0,8 -Y,5,6,8,9,10,8,8,4,2,7,8,9,6,12,8,8 -A,3,5,5,3,2,11,2,3,2,10,2,9,2,6,2,8 -D,8,14,7,8,6,7,7,4,7,10,6,7,6,7,8,4 -U,6,10,9,7,6,6,7,7,6,6,6,12,6,8,8,2 -L,4,8,5,7,4,6,7,4,6,7,6,8,3,9,8,10 -F,3,7,4,4,1,2,13,5,3,12,9,6,0,8,2,6 -G,4,7,4,5,2,7,6,6,6,11,6,12,2,10,4,10 -F,2,3,4,2,1,6,10,2,5,13,6,4,1,9,1,7 -V,7,10,7,7,3,3,11,3,4,9,11,8,4,12,1,7 -P,4,7,4,5,2,4,12,8,2,10,6,4,1,10,4,8 -S,5,10,6,7,4,6,8,3,6,10,7,7,3,7,5,6 -F,3,1,3,2,2,5,10,4,5,11,9,5,1,10,3,6 -T,3,5,4,4,2,6,12,3,6,7,11,9,2,11,1,8 -C,2,4,3,3,1,4,9,5,7,11,9,12,1,9,2,7 -K,3,3,4,5,2,3,6,7,3,7,7,12,3,8,3,10 -G,3,3,4,4,2,7,8,7,6,6,6,7,2,7,6,11 -H,5,10,8,8,5,8,5,3,6,9,5,8,4,7,4,8 -W,2,0,2,1,1,7,8,4,0,7,8,8,6,10,0,8 -O,6,10,7,8,7,7,8,9,4,7,7,8,3,7,3,7 -V,4,8,6,6,3,6,12,3,3,6,12,9,3,10,1,8 -L,3,5,4,4,2,4,4,4,8,2,1,7,0,7,1,6 -I,2,6,3,4,2,7,7,0,6,13,6,8,0,8,1,8 -B,1,3,3,2,2,7,8,2,4,10,6,6,2,8,4,8 -J,6,10,7,8,3,10,6,2,9,15,3,8,0,7,0,8 -V,7,12,6,6,4,8,9,3,3,8,8,5,5,12,2,8 -V,3,10,5,8,2,7,8,4,3,7,14,8,3,10,0,8 -B,4,7,6,5,4,9,7,3,7,10,4,7,2,8,5,11 -P,4,7,6,5,3,9,8,3,5,13,4,4,1,10,3,9 -T,2,7,3,4,1,7,13,0,6,7,11,8,0,8,0,8 -B,3,8,5,6,5,8,8,5,4,7,5,5,3,8,6,5 -Y,8,11,7,6,4,7,8,4,6,10,6,4,4,10,5,5 -Z,7,11,9,8,6,6,9,3,10,12,8,6,1,8,6,6 -G,2,3,2,1,1,7,7,5,5,7,6,9,2,9,4,9 -D,2,4,4,3,2,9,6,3,6,10,4,6,3,7,3,8 -F,2,1,2,2,1,5,10,4,5,10,9,6,1,9,3,7 -T,3,3,4,2,1,7,12,2,7,7,11,8,1,11,1,7 -T,3,6,4,4,3,6,12,4,6,8,11,8,2,12,1,8 -P,6,11,8,8,6,6,13,6,3,12,6,2,1,11,3,8 -B,1,0,2,0,1,7,8,6,4,7,6,7,1,8,6,8 -N,5,11,7,8,6,7,6,8,5,6,4,7,4,8,3,7 -S,5,8,6,6,3,7,8,4,9,11,4,7,2,6,4,8 -B,5,10,7,8,6,10,6,3,6,10,4,7,3,7,5,11 -S,5,9,8,6,9,6,7,3,2,8,6,6,3,8,11,1 -C,2,5,3,4,2,6,9,7,8,9,8,13,1,10,4,10 -R,4,9,5,6,7,7,8,3,4,7,6,8,6,9,7,5 -O,3,7,4,5,3,8,7,7,3,9,6,8,3,8,3,8 -R,5,9,8,6,9,7,7,3,4,6,6,9,6,9,7,6 -N,5,9,8,7,5,6,9,5,5,7,7,7,6,9,1,6 -G,4,9,5,7,3,8,8,8,8,6,7,8,2,7,6,11 -W,1,0,2,0,0,7,8,4,0,7,8,8,5,9,0,8 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -H,4,7,6,5,4,4,9,4,5,10,10,9,3,8,3,5 -Z,4,7,6,5,4,7,9,2,9,11,8,5,1,8,6,5 -G,7,10,7,8,6,5,7,6,5,8,8,11,2,7,5,10 -U,6,9,6,6,3,4,9,5,7,13,11,9,3,9,1,7 -Z,1,0,1,1,0,7,7,2,9,9,6,8,0,8,6,8 -R,4,7,6,5,6,8,6,6,3,8,6,8,4,7,7,10 -D,4,7,6,5,5,7,7,5,6,7,6,8,6,8,3,7 -B,3,3,4,4,3,6,6,8,7,6,6,7,2,8,9,10 -Z,6,9,5,12,5,5,11,3,3,12,8,6,3,8,11,6 -U,5,9,5,6,4,7,5,14,5,7,11,8,3,9,0,8 -T,8,11,8,9,7,6,11,2,8,11,9,5,4,10,4,4 -H,1,0,1,0,0,7,7,10,2,7,6,8,2,8,0,8 -O,6,10,4,5,3,6,8,6,5,9,7,9,5,10,5,8 -E,2,3,4,2,2,6,8,2,8,11,8,9,2,9,4,7 -Y,6,9,6,6,3,2,11,4,6,13,12,6,1,11,2,5 -M,4,2,5,3,3,8,6,6,4,6,7,8,7,6,2,6 -E,5,5,5,8,3,3,8,6,12,7,6,15,0,8,7,6 -A,2,3,4,2,1,11,2,3,1,9,2,9,1,6,2,8 -J,2,8,2,6,1,14,3,6,5,14,0,9,0,7,0,8 -F,5,8,7,6,7,7,9,1,4,10,7,6,5,10,3,5 -X,4,9,5,6,1,7,7,4,4,7,6,8,3,8,4,8 -H,3,8,4,6,3,7,7,12,1,7,6,8,3,8,0,8 -A,1,3,2,2,1,12,2,3,1,11,2,9,2,6,2,8 -X,4,7,5,6,6,9,8,2,5,8,5,6,2,6,7,8 -K,2,1,2,2,2,5,7,3,6,7,6,10,3,8,4,10 -U,4,9,6,6,7,10,7,5,4,6,7,7,7,9,5,5 -T,4,7,4,5,2,6,11,4,5,11,9,4,2,12,2,5 -Z,3,8,4,6,4,9,6,5,9,7,5,6,1,7,7,8 -V,4,4,5,3,2,5,12,2,3,9,11,7,4,11,1,7 -I,1,4,2,3,1,7,7,0,7,13,6,8,0,8,1,8 -F,5,8,8,6,7,7,9,1,4,10,6,6,5,11,3,5 -S,3,4,3,3,2,8,7,7,5,7,6,8,2,8,9,8 -B,3,7,4,5,4,8,7,6,6,7,6,5,2,8,7,9 -J,1,3,2,5,1,15,3,5,5,13,0,9,0,7,0,8 -C,2,1,2,1,1,6,8,6,7,8,8,12,1,9,3,10 -T,3,6,5,8,2,5,15,1,6,9,11,7,0,8,0,8 -M,5,8,7,6,5,8,6,6,6,6,7,6,9,7,3,6 -O,4,9,5,6,3,7,5,9,8,6,4,7,3,8,4,8 -N,3,5,5,3,2,9,7,3,5,10,3,5,5,9,1,7 -N,3,5,6,4,3,7,9,2,5,10,6,6,5,9,1,7 -N,4,6,5,4,3,7,8,6,6,7,7,6,6,9,2,6 -U,5,7,5,5,2,4,8,6,7,9,10,9,3,9,2,5 -P,9,12,7,7,3,6,10,6,4,13,6,4,4,10,4,8 -L,4,8,6,6,4,8,4,1,6,9,2,9,1,6,3,9 -W,4,9,6,7,3,9,8,4,1,7,8,8,8,9,0,8 -L,3,4,3,3,1,4,4,4,8,2,1,6,0,7,1,6 -M,7,8,10,6,7,12,6,3,5,9,2,5,9,6,2,8 -N,2,5,3,3,2,7,8,5,4,7,6,6,5,9,1,6 -O,4,10,5,8,5,8,7,7,4,9,5,6,3,8,3,7 -W,5,7,5,5,5,5,10,3,2,9,8,7,6,11,2,6 -L,1,3,2,1,1,7,5,1,7,8,3,10,0,7,2,9 -F,1,0,1,0,0,3,12,4,2,11,8,6,0,8,2,7 -U,6,7,6,5,3,3,9,6,7,11,11,9,3,9,1,6 -Y,5,10,8,7,4,8,10,1,7,4,11,9,2,12,3,8 -J,1,4,3,3,1,9,6,2,6,14,4,9,0,7,0,7 -Q,7,9,8,11,7,8,5,7,5,9,6,9,3,7,6,8 -K,5,9,7,7,6,5,7,1,6,9,8,10,3,8,3,8 -L,5,10,7,7,4,5,4,3,8,6,2,8,1,6,3,6 -H,8,12,7,6,4,7,8,5,4,9,10,9,7,11,5,9 -R,4,7,6,5,4,7,8,5,7,7,4,7,3,6,5,8 -H,8,11,12,8,10,10,6,3,7,10,3,7,5,7,5,10 -S,6,10,8,8,5,8,8,3,6,10,4,7,2,7,5,9 -L,2,6,2,4,1,0,1,5,6,0,0,7,0,8,0,8 -W,2,0,2,1,1,8,8,4,0,7,8,8,6,9,0,8 -F,1,0,1,0,0,3,11,4,3,11,9,7,0,8,2,8 -T,4,10,6,8,4,9,14,0,5,6,10,8,0,8,0,8 -I,0,8,0,5,0,7,7,4,4,7,6,8,0,8,0,8 -Y,5,6,7,9,9,8,10,4,3,6,8,9,5,13,8,8 -U,4,4,4,3,2,4,8,5,7,10,9,9,3,9,2,6 -K,3,5,5,3,2,5,8,1,7,10,8,10,3,8,3,7 -G,5,10,6,8,6,6,5,7,6,7,5,11,3,10,4,9 -K,5,8,7,7,7,7,7,2,4,8,4,8,6,4,9,11 -B,2,7,3,5,4,6,7,7,5,7,6,7,2,8,6,9 -R,2,0,2,1,1,6,10,7,2,7,5,8,2,7,4,10 -T,6,9,6,7,4,6,11,3,7,11,9,5,1,12,2,4 -F,5,10,7,8,6,4,10,2,6,11,10,6,1,10,3,6 -N,6,9,9,6,5,7,9,2,5,10,5,6,6,9,1,7 -U,5,9,7,8,7,7,6,4,4,6,7,8,4,8,1,8 -U,2,4,3,3,1,7,8,6,6,7,9,8,3,9,1,8 -A,3,4,5,3,2,10,2,3,1,9,2,9,2,6,2,8 -L,3,7,4,5,2,3,4,3,8,2,1,7,0,7,1,5 -V,2,2,4,4,1,8,9,4,2,7,13,8,3,10,0,8 -S,8,13,7,7,3,6,2,3,4,6,2,6,3,7,6,7 -R,5,8,8,6,6,10,7,3,6,10,2,7,5,7,5,10 -M,6,11,9,8,7,7,6,6,6,6,7,7,10,8,3,6 -F,4,8,4,6,3,1,12,3,4,11,10,7,0,8,2,6 -V,5,11,7,9,4,9,9,4,2,5,13,8,3,10,0,8 -I,4,8,5,6,3,8,9,1,7,7,6,7,0,7,4,7 -J,9,14,7,11,6,9,9,2,4,12,4,5,2,9,8,9 -Y,4,11,6,8,1,8,10,3,2,6,13,8,2,11,0,8 -W,2,3,3,1,2,5,10,4,2,9,8,7,5,11,1,6 -Z,1,3,3,2,1,8,7,2,9,11,6,9,1,8,5,7 -Z,7,9,5,13,5,7,8,5,3,11,7,7,3,9,11,6 -R,3,5,5,3,3,8,7,4,5,9,4,7,3,7,3,11 -C,3,4,4,2,1,5,8,5,7,10,8,13,1,9,3,8 -X,3,4,5,3,2,5,8,2,8,10,10,9,3,8,3,5 -R,2,3,3,2,2,7,8,5,5,6,5,7,2,6,5,8 -E,4,8,5,6,6,8,7,4,7,7,5,8,6,8,6,10 -J,1,4,2,3,1,10,6,2,6,12,4,9,0,7,1,7 -M,6,9,7,4,3,12,2,3,2,10,3,9,6,4,1,9 -T,6,10,8,8,9,6,7,4,6,7,7,10,7,7,7,6 -E,4,8,5,6,5,7,7,5,8,6,5,9,3,8,6,9 -Q,4,5,6,7,6,9,12,4,2,4,8,12,4,13,5,12 -N,3,4,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -G,3,1,4,2,2,7,7,5,6,7,6,9,3,7,4,8 -F,2,6,3,4,1,1,13,4,3,12,10,6,0,8,2,6 -K,3,8,4,6,2,3,7,8,3,7,6,11,4,8,3,11 -J,2,7,3,5,1,12,2,9,4,14,5,13,1,6,0,8 -C,3,7,4,5,1,5,7,6,9,6,6,14,1,8,4,9 -W,5,9,7,7,5,7,8,4,1,7,9,8,8,10,0,8 -Y,3,5,5,7,1,7,10,1,3,7,12,8,1,11,0,8 -Q,4,7,5,6,3,9,7,8,6,6,6,10,3,8,5,9 -G,6,8,6,6,4,7,6,6,7,10,6,12,2,10,4,9 -M,14,15,14,8,7,10,11,7,4,4,6,10,10,13,3,6 -D,4,9,6,7,4,9,6,5,7,9,3,6,3,8,3,8 -A,3,8,5,6,3,11,3,3,2,10,2,9,2,7,3,9 -J,2,7,4,5,1,9,6,3,6,15,4,9,0,7,1,7 -M,5,7,7,6,8,5,8,5,4,6,5,9,11,9,4,8 -F,5,9,7,6,4,5,12,2,6,13,7,4,1,10,2,7 -K,4,8,6,6,6,7,7,4,4,7,5,7,4,6,9,10 -M,2,1,3,2,2,7,6,6,4,6,7,7,7,6,2,7 -S,7,9,9,8,9,10,7,4,7,7,6,8,5,9,8,12 -D,7,10,9,8,6,11,5,3,8,11,3,6,4,6,4,9 -E,3,10,5,8,5,7,7,5,8,7,7,10,3,8,6,9 -C,4,9,6,7,6,6,6,3,4,8,7,11,6,9,3,9 -I,5,13,4,8,2,9,6,5,4,12,4,7,3,8,5,10 -T,3,5,4,4,3,9,12,3,6,6,11,8,2,11,1,8 -Z,1,3,2,2,1,8,7,5,8,6,6,7,1,8,7,8 -M,4,9,5,6,5,7,6,10,1,7,8,8,8,4,1,7 -T,10,14,8,8,3,4,12,3,8,12,8,4,2,9,3,4 -Q,2,3,2,3,2,8,8,5,2,5,7,10,2,9,5,9 -H,5,11,8,8,7,8,7,3,6,10,5,8,3,9,4,8 -E,2,4,3,3,2,7,7,5,7,7,6,9,2,8,5,10 -V,4,5,5,4,5,7,7,5,4,6,5,7,6,9,6,11 -Z,1,3,2,2,1,7,7,1,8,11,6,8,1,8,5,8 -W,12,13,12,7,5,2,10,3,3,10,12,8,9,10,0,7 -V,3,2,5,4,2,7,12,2,3,7,11,9,2,10,1,8 -F,4,6,4,8,2,0,12,4,5,12,11,8,0,8,2,6 -T,4,10,5,7,3,5,14,1,5,9,10,7,0,8,0,8 -R,4,9,6,6,5,6,8,6,6,6,4,9,3,6,6,9 -G,5,8,6,6,4,6,6,7,6,6,6,11,2,8,4,9 -L,3,7,3,5,2,0,2,4,5,1,1,7,0,8,0,8 -Y,8,11,8,8,5,3,11,3,7,12,11,6,1,11,2,5 -A,3,6,5,4,1,9,4,3,1,8,1,8,3,6,2,8 -N,1,0,2,1,1,7,7,11,1,5,6,8,4,8,0,8 -M,8,10,12,8,9,4,8,3,5,10,10,10,13,8,5,8 -P,3,6,4,4,2,7,11,7,3,11,5,3,1,10,4,7 -V,8,12,6,7,3,8,10,5,5,8,10,5,5,12,3,7 -V,5,10,5,8,4,3,11,2,3,9,11,8,3,10,1,7 -G,7,10,9,8,9,9,4,6,3,8,5,10,11,6,5,8 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -F,3,7,4,5,3,7,9,2,5,13,6,5,2,10,2,8 -A,1,0,2,1,0,7,4,2,0,7,2,8,2,7,1,8 -Z,4,5,5,8,2,7,7,4,14,9,6,8,0,8,8,8 -V,8,10,8,8,3,4,12,5,5,12,12,7,3,9,2,8 -O,1,1,2,2,1,7,7,6,4,7,6,8,2,8,2,8 -S,7,13,6,7,3,10,3,3,5,10,1,9,3,6,5,10 -Z,4,10,6,7,6,8,8,2,8,7,7,7,1,8,10,8 -X,3,7,5,5,4,7,7,3,8,5,6,9,3,7,7,9 -G,6,10,6,8,5,7,6,6,5,10,7,13,4,8,6,7 -O,4,7,4,5,4,8,7,7,4,9,5,8,3,8,3,8 -N,3,4,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -O,5,8,5,6,4,7,9,7,4,10,7,6,4,9,4,8 -L,4,9,6,8,6,7,6,5,4,7,7,8,3,8,8,10 -Z,3,8,4,6,3,7,8,3,12,8,6,8,0,8,7,7 -I,5,9,4,4,2,7,10,2,5,13,5,4,1,9,5,8 -P,8,12,7,6,4,9,8,4,5,13,4,4,4,10,6,7 -G,3,5,4,3,2,6,7,5,5,9,7,10,2,9,4,9 -P,4,10,5,7,2,3,13,8,2,11,7,3,1,10,4,8 -O,4,8,6,7,5,8,4,5,5,9,4,10,4,7,5,7 -Y,4,10,6,7,1,9,10,3,2,6,13,8,2,11,0,8 -Y,6,11,5,6,3,7,8,4,5,10,7,5,3,9,4,4 -O,1,3,2,2,1,8,6,6,3,9,6,8,2,8,2,8 -E,5,7,6,6,7,7,8,5,4,7,7,10,7,10,9,10 -X,3,7,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -T,2,3,3,2,1,6,12,2,6,11,9,4,1,10,2,5 -S,7,10,6,5,3,7,3,4,4,7,2,7,3,6,5,8 -I,2,6,3,4,2,7,8,0,7,13,6,8,0,8,1,8 -C,4,8,5,6,3,5,8,7,7,8,8,14,2,9,4,10 -O,6,10,7,7,6,7,7,7,4,9,6,10,5,8,5,6 -F,3,6,5,4,4,8,8,1,4,9,6,6,5,10,4,5 -Y,5,8,5,6,2,3,11,2,7,12,11,6,0,10,2,5 -A,3,7,5,4,2,7,4,3,1,7,1,8,2,7,2,8 -E,3,7,3,5,3,3,6,5,9,7,7,13,0,8,7,9 -E,3,5,5,4,3,8,7,2,8,11,5,8,2,8,4,10 -C,3,7,4,5,1,6,7,7,9,7,6,13,1,8,4,9 -O,3,6,4,4,3,7,8,7,5,8,8,6,3,8,3,8 -J,4,10,5,7,5,10,6,3,4,9,3,6,3,7,6,7 -X,5,10,6,7,1,7,7,5,4,7,6,8,3,8,4,8 -T,3,3,4,2,1,5,11,2,7,11,9,5,1,10,2,5 -D,4,9,6,7,4,9,7,5,7,10,4,5,3,8,3,8 -X,4,6,5,5,5,7,8,2,4,7,6,8,2,7,7,7 -Z,2,3,4,2,1,7,7,2,9,11,6,8,1,8,5,7 -P,3,6,4,4,3,3,13,5,1,11,7,4,0,9,3,8 -P,2,4,3,3,1,7,9,3,4,12,5,3,1,10,2,8 -Y,5,8,5,6,3,3,10,2,7,11,11,6,1,11,2,5 -A,2,6,3,4,2,11,3,2,2,9,2,9,2,6,2,8 -P,3,7,3,4,2,4,12,8,2,10,6,4,1,10,4,8 -U,6,10,9,8,12,8,6,4,4,7,7,8,11,9,6,8 -P,4,5,6,7,6,8,10,2,3,8,9,6,5,10,5,5 -G,2,3,3,2,2,7,7,5,5,6,6,9,2,9,4,9 -C,3,4,4,3,1,4,8,5,8,11,9,12,1,9,3,7 -E,2,1,2,2,1,4,7,5,8,7,6,13,0,8,7,9 -W,12,13,11,7,5,8,11,3,3,5,10,7,8,12,1,6 -R,10,15,10,8,8,6,8,3,6,8,4,9,8,4,7,6 -U,4,6,5,4,2,4,9,5,6,12,11,9,3,9,1,7 -V,5,11,8,8,4,7,12,3,4,6,12,9,3,10,1,8 -N,6,8,8,7,8,7,7,5,4,7,5,8,8,8,6,6 -I,5,12,5,6,3,6,11,3,5,13,6,4,1,8,5,8 -Q,6,7,8,10,11,9,7,6,1,6,6,9,9,11,6,9 -M,5,9,8,7,7,10,6,2,4,9,5,7,7,6,2,8 -V,7,11,6,6,3,9,9,6,4,6,10,6,6,13,3,6 -X,2,3,3,2,1,7,7,3,8,6,6,8,2,8,5,8 -C,6,8,6,6,3,3,8,4,7,10,10,13,1,7,3,7 -A,5,12,6,6,3,13,1,4,1,12,3,11,2,3,3,11 -R,8,15,8,8,6,8,6,3,5,9,4,8,6,8,6,7 -G,4,6,5,4,3,6,7,6,6,10,7,11,2,9,4,10 -L,3,6,4,4,2,5,5,1,9,7,2,11,0,8,3,7 -B,4,3,5,5,4,6,7,9,7,7,6,7,2,8,9,9 -W,3,4,5,3,3,7,11,2,2,7,9,8,7,11,1,8 -V,9,13,9,7,4,6,10,4,3,8,8,5,5,12,3,8 -X,6,10,6,6,3,7,7,2,7,11,6,8,4,9,4,7 -A,3,10,5,8,4,12,3,1,2,9,2,9,3,6,2,8 -Z,5,11,7,8,4,7,7,2,11,11,6,8,1,8,6,7 -R,5,10,6,8,7,8,6,6,4,8,6,8,7,7,6,11 -B,2,1,3,2,2,8,7,5,5,7,6,5,2,8,6,9 -C,4,7,6,5,3,7,7,8,6,6,6,10,3,8,4,9 -V,3,3,4,2,1,4,12,3,3,9,11,7,2,10,0,8 -E,4,7,5,5,4,6,8,7,9,6,4,10,2,8,6,8 -R,3,8,5,6,4,8,7,5,7,7,6,6,3,8,5,8 -V,3,5,5,3,2,4,12,3,3,9,11,7,2,11,1,8 -V,5,9,5,7,3,3,11,2,3,10,11,8,2,11,1,8 -N,5,10,7,8,6,6,8,8,6,8,6,7,3,7,3,8 -P,4,8,6,11,10,9,6,6,2,7,6,7,7,9,8,11 -P,7,11,9,8,5,6,12,3,6,14,6,2,0,10,3,9 -H,5,6,7,4,4,8,8,3,6,10,5,7,3,8,3,8 -F,3,7,4,5,3,5,10,4,5,10,10,6,2,10,3,6 -A,5,11,9,8,7,8,4,1,4,6,2,6,5,8,6,6 -U,3,7,3,5,2,7,5,14,5,7,12,8,3,9,0,8 -Z,2,2,3,4,2,8,7,5,9,6,6,8,1,8,7,8 -W,4,2,6,3,3,9,11,3,2,5,9,8,8,11,2,8 -Z,4,9,5,7,4,7,7,3,12,9,6,8,0,8,8,8 -S,5,11,7,8,9,6,5,3,2,6,5,6,5,8,15,3 -B,5,6,6,8,5,6,6,9,8,6,7,7,3,8,10,10 -F,4,9,4,4,3,7,9,2,4,11,6,5,3,10,6,6 -B,5,9,7,7,5,9,7,4,6,10,5,6,2,8,6,10 -E,4,7,6,5,5,10,6,1,7,11,4,8,3,8,5,11 -C,5,10,6,8,2,5,7,7,11,7,6,14,1,8,4,9 -K,2,4,4,3,2,6,7,2,6,10,7,10,3,8,2,8 -I,1,4,2,2,1,7,7,1,7,13,6,8,0,8,1,8 -Z,8,12,8,7,5,8,6,2,9,12,6,9,3,7,7,7 -J,1,1,2,2,1,11,6,2,5,11,4,8,0,7,1,7 -P,6,11,5,6,3,5,11,5,3,13,6,4,4,10,4,8 -P,9,11,7,6,4,6,10,6,3,11,5,5,5,9,4,8 -C,2,4,3,2,1,6,8,7,8,8,8,13,1,9,4,10 -S,7,11,9,8,5,7,8,4,9,11,5,7,2,7,5,8 -R,2,3,3,2,2,9,6,4,5,9,4,7,2,7,4,10 -Z,4,8,5,6,4,8,6,2,9,11,5,9,2,8,6,9 -N,6,7,8,5,3,5,9,3,5,11,9,9,6,8,1,8 -B,3,7,4,5,4,6,6,8,6,6,7,7,2,9,7,9 -G,4,4,5,6,3,7,6,8,7,6,6,7,2,8,6,11 -K,6,10,8,8,8,6,7,4,7,6,6,10,3,8,6,10 -A,4,9,6,7,4,12,2,3,3,10,2,9,2,6,4,8 -U,3,3,3,5,1,8,5,13,5,6,13,8,3,9,0,8 -E,3,7,4,5,4,7,7,5,8,6,5,10,2,8,5,9 -X,2,7,4,5,4,7,6,2,6,7,5,8,3,7,5,9 -K,3,6,4,4,1,3,6,7,3,7,7,11,3,8,2,10 -X,4,9,6,6,4,7,7,3,8,5,6,7,3,9,7,6 -T,3,4,4,3,1,5,11,2,7,11,9,4,1,10,2,5 -N,5,8,7,6,7,6,8,3,4,8,7,9,6,9,5,5 -V,6,11,6,8,4,3,11,3,4,9,11,8,3,11,1,7 -U,3,5,4,3,2,7,9,6,7,7,9,9,3,9,1,8 -U,4,11,6,8,4,8,8,6,7,4,8,9,6,10,1,8 -Z,3,5,5,7,4,9,5,4,4,7,3,6,2,8,7,6 -S,5,10,6,7,3,9,6,5,8,11,3,7,2,8,5,11 -V,4,6,4,4,2,1,11,5,3,12,12,8,2,10,1,7 -N,3,6,4,4,3,8,8,6,5,6,6,5,5,9,2,5 -I,1,3,1,1,0,8,7,1,7,13,6,8,0,8,0,8 -G,4,9,4,6,3,6,7,6,5,10,8,10,2,9,4,9 -V,2,3,4,5,1,7,8,4,2,7,13,8,3,10,0,8 -Z,10,10,7,14,6,7,8,4,2,11,7,7,3,8,13,5 -B,4,10,4,8,4,6,7,9,6,7,6,7,2,8,9,10 -Z,3,5,4,4,3,7,7,5,9,6,6,8,1,8,7,8 -C,2,1,2,2,1,6,7,6,9,7,6,14,0,8,4,9 -H,5,10,6,7,3,7,6,15,1,7,8,8,3,8,0,8 -C,3,8,4,6,2,5,8,7,7,8,8,14,2,10,4,10 -X,3,8,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -F,1,0,2,1,0,3,12,5,2,11,8,6,0,8,2,7 -X,4,5,7,4,3,5,8,2,9,11,10,9,3,7,4,5 -L,5,8,6,6,5,6,6,6,6,6,5,8,5,8,4,9 -I,3,8,4,6,2,6,9,0,7,13,7,7,0,8,1,7 -S,3,5,4,3,3,8,8,7,5,7,6,8,2,8,9,8 -E,5,4,5,6,3,3,7,6,11,7,6,15,0,8,7,7 -W,3,8,5,6,9,7,7,6,1,7,6,8,8,12,2,11 -R,2,1,2,2,2,6,7,4,4,6,5,6,2,7,3,8 -L,4,7,5,5,2,8,3,2,8,9,2,9,1,6,3,9 -Y,6,9,8,7,7,9,3,7,5,7,9,7,3,8,8,3 -X,3,9,4,7,3,7,7,4,4,7,6,8,3,8,4,8 -U,9,14,8,8,5,6,5,5,5,6,8,9,6,8,4,9 -O,7,14,5,8,4,5,8,7,4,10,8,9,5,10,5,8 -X,4,10,7,8,4,10,6,2,8,10,1,7,3,8,4,9 -A,3,10,5,7,2,7,5,3,1,6,0,8,3,7,2,7 -A,4,10,7,8,5,7,3,1,2,5,2,8,4,5,4,6 -N,3,9,4,7,4,7,7,12,1,6,6,8,5,8,0,7 -P,7,9,9,7,5,8,11,7,4,11,4,3,2,10,4,8 -E,4,9,6,7,5,6,8,3,7,11,8,8,3,8,5,6 -K,3,6,5,4,3,5,6,6,7,7,7,12,3,8,5,11 -Q,4,7,5,6,2,8,8,8,6,5,8,9,3,8,5,10 -G,7,10,6,5,4,8,4,4,3,8,6,10,4,9,6,7 -K,6,10,8,8,5,5,8,2,7,10,8,11,3,8,3,7 -B,4,8,6,6,5,10,6,2,6,10,3,7,4,8,5,11 -H,7,9,10,7,7,6,8,3,7,10,9,9,8,9,6,6 -D,3,8,5,6,3,11,6,3,7,11,3,6,3,8,3,9 -A,2,7,4,5,3,11,3,2,2,9,2,9,1,6,2,8 -T,2,3,3,2,2,8,11,3,6,6,10,8,2,11,1,8 -I,1,6,2,4,1,7,7,1,8,7,6,8,0,8,3,8 -B,3,5,4,4,3,8,7,6,6,6,6,5,2,8,7,8 -O,6,11,7,8,5,7,7,8,5,10,6,8,3,8,3,8 -Z,4,9,5,7,5,8,8,3,8,7,7,7,1,8,11,7 -Q,3,3,4,4,3,7,8,5,3,8,8,10,3,9,5,8 -K,9,15,9,8,6,2,9,3,6,9,9,12,4,7,3,6 -N,6,10,9,7,5,10,7,3,5,10,3,5,6,9,1,7 -X,3,4,5,3,2,7,7,4,9,6,6,8,2,8,6,8 -U,8,14,7,8,5,7,6,5,5,6,7,8,5,7,3,7 -T,6,11,6,8,5,4,12,3,6,12,10,5,2,12,2,4 -X,3,6,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -D,4,6,6,4,4,9,7,3,6,11,4,6,3,8,3,8 -P,6,9,8,7,4,7,10,5,4,12,5,3,1,10,3,9 -N,4,5,6,4,3,7,8,2,5,10,6,6,5,9,1,7 -K,8,14,8,8,4,7,7,3,6,9,9,9,6,11,4,7 -W,8,8,11,7,12,7,7,5,5,6,5,8,10,9,9,8 -Z,2,5,4,3,2,8,7,2,9,11,6,8,1,7,6,7 -H,3,5,5,4,3,7,8,5,7,7,6,8,6,8,3,8 -G,2,3,3,2,1,7,7,6,6,7,5,10,2,9,4,9 -K,4,9,4,6,2,3,8,7,2,7,5,11,3,8,3,10 -W,4,9,7,7,5,9,10,2,3,6,9,8,7,11,1,8 -U,2,1,2,1,1,7,8,6,5,7,9,9,3,10,0,8 -E,5,9,5,7,3,3,7,6,11,7,6,14,0,8,8,7 -T,3,3,3,2,1,5,11,2,6,11,9,5,1,10,2,5 -Z,1,3,3,2,1,8,7,1,9,11,6,8,1,8,5,7 -R,4,10,5,7,3,5,11,9,4,7,3,9,3,7,6,11 -S,7,10,9,8,5,7,8,4,9,11,5,6,2,6,5,8 -L,5,11,7,8,4,6,4,0,9,8,2,11,0,7,2,8 -X,5,8,7,6,5,8,6,3,5,6,7,8,2,9,8,9 -C,6,11,7,8,5,5,7,7,9,8,6,13,2,11,5,8 -M,5,9,8,7,11,8,6,3,2,8,4,8,13,6,3,7 -Z,4,8,5,6,5,9,6,5,9,7,5,7,1,7,7,8 -J,5,7,7,9,6,9,8,5,5,6,5,8,3,8,9,7 -A,3,6,5,5,4,9,7,4,5,6,8,5,4,10,4,5 -F,5,11,7,8,7,5,9,4,6,10,10,6,2,9,3,6 -X,3,5,4,4,3,8,7,3,9,6,6,8,2,8,6,8 -C,4,9,5,7,4,5,7,8,7,10,8,13,2,11,4,10 -E,9,14,7,8,5,7,9,5,5,10,6,10,3,8,7,10 -H,3,6,5,4,4,5,9,3,6,10,8,8,3,8,3,6 -S,4,6,5,4,3,8,7,3,7,10,6,8,2,9,4,8 -I,1,4,1,3,1,7,7,1,7,7,6,8,0,8,2,8 -X,5,11,6,6,3,4,9,3,7,11,10,9,4,10,3,5 -O,7,15,5,8,4,6,7,7,4,9,7,9,5,10,5,8 -Q,5,10,7,8,4,8,9,8,7,5,9,9,3,7,6,10 -F,2,3,4,2,1,6,11,3,5,13,7,4,1,9,1,7 -S,3,4,3,2,2,8,8,6,5,7,6,7,2,8,9,8 -E,7,11,10,8,6,9,7,2,9,12,4,8,5,7,7,10 -W,4,6,6,4,5,8,7,6,3,6,8,8,6,8,3,7 -Y,4,11,7,8,1,9,10,3,2,6,13,8,2,11,0,8 -O,7,11,8,8,6,8,6,8,6,10,4,8,4,9,5,6 -W,4,3,6,4,2,11,8,5,1,6,9,8,8,10,0,8 -Z,6,7,5,10,4,8,5,5,5,11,6,7,3,9,9,8 -N,2,3,4,1,1,5,9,3,4,11,8,8,5,8,0,7 -V,4,8,4,6,3,4,11,2,2,9,10,8,3,12,1,8 -N,9,13,8,7,4,5,9,4,6,3,4,11,6,10,2,7 -P,9,10,7,5,3,7,9,7,5,14,4,4,4,10,4,8 -K,1,0,1,0,0,4,6,6,2,7,6,11,3,7,2,10 -F,5,10,8,8,5,6,10,3,6,13,7,5,2,9,3,7 -R,5,9,5,4,3,8,8,3,5,9,2,6,5,6,5,7 -D,4,7,6,5,4,9,7,4,6,10,5,5,3,8,3,8 -Z,3,3,4,4,3,7,7,5,10,6,6,8,2,8,7,8 -E,4,9,6,7,7,7,8,3,6,5,7,10,5,11,7,8 -V,3,11,5,8,4,8,11,2,3,5,10,8,3,12,1,8 -I,5,7,6,8,6,8,10,4,5,6,7,9,3,6,8,6 -L,3,3,4,5,1,0,0,6,6,0,1,5,0,8,0,8 -G,2,1,3,2,2,7,7,5,4,7,6,9,3,6,4,9 -G,4,5,5,8,2,7,6,8,9,6,5,11,1,8,6,11 -F,3,6,5,4,4,7,10,1,4,9,6,6,4,9,2,5 -U,5,5,6,7,2,7,4,14,6,7,15,8,3,9,0,8 -D,5,8,5,6,4,6,7,9,8,7,7,6,2,8,3,8 -W,8,9,8,4,3,7,10,3,2,7,10,7,9,12,1,6 -D,5,5,6,8,3,5,7,10,9,7,6,5,3,8,4,8 -I,2,2,1,3,1,7,7,1,8,7,6,8,0,8,3,8 -L,2,2,3,3,1,4,4,4,7,2,1,6,0,7,1,6 -T,5,8,7,7,7,6,7,3,8,7,6,9,4,6,9,4 -M,8,11,10,8,13,7,7,7,4,7,5,8,7,11,9,8 -D,4,11,4,8,3,5,7,11,8,7,6,5,3,8,4,8 -F,6,9,8,7,4,5,11,1,6,13,7,4,1,10,2,7 -D,2,4,4,3,2,8,7,4,6,10,5,6,2,8,2,8 -Z,2,4,4,3,2,7,8,2,9,12,6,8,1,8,5,7 -F,3,4,5,3,2,5,11,3,5,13,7,5,1,9,1,7 -H,4,9,6,6,5,7,6,7,7,7,7,9,3,8,3,9 -Q,3,5,4,6,2,8,8,7,5,5,8,9,3,8,5,9 -X,2,2,4,3,2,8,7,3,9,6,6,8,2,8,6,8 -A,4,8,6,7,6,7,8,2,4,7,8,8,5,8,5,6 -G,4,6,6,4,5,7,7,5,3,6,6,10,4,8,7,8 -V,9,13,7,7,4,7,8,7,4,8,9,6,7,13,3,9 -Y,7,8,5,12,4,10,10,1,4,7,10,5,3,9,5,10 -M,4,7,5,5,5,8,6,6,4,7,7,8,8,5,2,7 -G,3,9,5,6,4,6,6,6,6,7,5,12,2,9,4,9 -V,1,0,2,1,0,7,9,3,2,7,12,8,2,10,0,8 -A,2,1,4,2,1,8,2,2,2,8,1,8,2,6,2,7 -A,3,5,5,4,2,11,2,2,2,9,2,9,2,6,2,8 -O,4,9,6,6,4,7,6,8,5,7,4,8,3,8,3,8 -I,1,5,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -M,4,4,5,3,3,7,6,6,5,6,7,7,8,6,3,7 -W,4,7,6,5,5,7,9,6,4,8,8,7,6,8,3,8 -W,5,7,7,5,3,6,8,5,1,7,8,8,8,9,0,8 -X,3,9,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -L,4,10,6,8,3,5,4,1,9,7,2,11,0,7,3,7 -U,6,9,8,8,8,7,6,4,5,6,6,8,7,9,2,8 -I,2,9,3,7,2,9,7,0,7,13,5,8,0,8,1,8 -I,1,3,1,2,0,7,7,1,8,7,6,8,0,8,3,8 -Q,3,8,4,7,2,8,7,8,5,6,7,8,3,8,5,9 -U,4,4,5,3,2,4,7,5,8,10,8,9,4,11,3,4 -G,3,6,4,4,4,7,8,5,3,6,6,9,3,7,6,8 -L,4,9,5,8,5,7,6,5,5,7,7,8,3,9,8,11 -A,2,7,3,5,2,12,3,2,2,10,2,9,2,6,2,8 -I,1,5,2,3,1,7,7,0,7,13,6,8,0,8,1,8 -U,2,3,3,2,1,5,8,5,6,10,9,9,3,10,2,6 -B,5,9,7,7,6,9,7,3,7,10,4,6,2,8,5,10 -I,0,7,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -O,6,11,6,8,5,8,7,8,5,10,5,8,4,9,4,6 -C,5,11,6,8,3,6,7,7,11,5,6,14,1,7,4,8 -G,4,9,5,7,3,8,7,8,7,6,6,9,2,7,6,10 -D,4,8,6,6,4,6,8,7,7,11,7,5,3,8,4,8 -C,4,8,5,6,3,5,8,7,8,8,8,14,2,9,4,9 -M,4,7,6,5,4,4,7,4,5,10,11,10,6,5,2,6 -S,4,11,5,8,4,8,8,8,7,8,4,7,2,7,9,8 -R,3,4,4,2,3,7,7,5,5,7,5,7,2,7,4,8 -Q,5,6,7,9,10,8,9,5,2,6,7,9,9,14,10,14 -B,7,11,10,8,7,11,6,3,8,11,3,7,3,8,5,12 -O,1,0,2,0,0,7,7,6,4,7,6,8,2,8,3,8 -U,5,8,5,6,4,8,6,12,4,7,12,8,3,9,0,8 -I,3,8,4,6,2,7,7,0,7,13,6,8,0,8,1,7 -M,8,12,9,6,5,3,8,5,6,4,2,11,8,8,2,8 -K,5,6,7,4,3,9,7,2,7,11,3,7,3,8,3,9 -C,1,0,1,1,0,6,7,6,7,7,6,13,0,8,4,10 -W,2,0,3,1,1,8,8,4,0,7,8,8,6,10,0,8 -A,3,9,5,6,3,12,2,4,2,11,2,9,3,7,3,9 -J,2,6,3,4,2,7,7,3,5,14,6,10,1,6,0,7 -E,7,10,5,5,2,7,8,5,7,10,6,8,1,9,7,8 -H,5,9,8,7,8,7,7,6,6,7,6,8,3,8,3,8 -S,2,3,3,1,1,7,9,3,7,11,7,7,1,9,4,6 -T,4,7,5,5,4,8,10,3,6,10,8,5,2,12,3,5 -P,12,13,9,8,4,7,9,6,4,11,4,5,5,9,5,8 -T,2,3,3,2,1,7,12,3,5,7,10,8,2,11,1,8 -F,3,9,4,6,1,1,14,5,3,12,10,5,0,8,2,6 -O,2,2,3,4,2,7,7,7,4,7,6,8,2,8,3,8 -N,5,11,5,8,5,7,7,13,1,6,6,8,6,8,1,9 -Q,4,8,5,8,3,8,6,9,7,7,4,9,3,8,4,8 -E,4,7,5,6,5,6,7,4,4,7,7,9,4,11,8,11 -V,8,11,7,8,4,4,11,3,4,9,11,7,2,10,1,8 -D,4,11,5,8,5,8,7,6,7,7,6,5,6,8,3,7 -T,5,10,5,5,3,7,9,2,6,11,6,7,2,9,4,6 -P,4,9,6,6,4,7,11,7,3,11,5,3,2,10,4,8 -J,5,10,7,8,3,7,7,3,6,15,6,10,3,8,2,8 -T,3,4,4,3,1,5,11,2,7,11,9,5,1,10,2,5 -I,2,9,2,6,2,7,7,0,8,7,6,8,0,8,3,8 -B,3,5,5,4,5,7,8,4,4,7,6,8,6,9,7,8 -R,5,8,7,6,7,7,6,3,5,7,6,8,6,9,6,7 -T,3,10,5,7,1,10,15,1,6,4,11,9,0,8,0,8 -K,3,8,5,6,3,5,7,5,7,6,6,11,3,8,5,9 -C,4,8,5,6,3,6,8,7,8,8,8,14,2,10,4,9 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -I,0,6,0,4,0,7,7,5,3,7,6,8,0,8,0,8 -F,4,10,4,8,3,1,13,4,3,12,10,6,0,8,2,6 -I,4,10,6,8,7,8,9,3,5,9,5,4,6,9,7,2 -W,3,2,5,4,3,7,10,2,2,7,9,8,7,11,0,8 -S,4,10,5,7,4,7,7,5,8,4,6,10,1,10,9,9 -U,3,5,4,4,2,7,8,5,6,5,9,9,5,10,1,7 -V,5,9,7,7,4,7,12,2,3,5,11,9,4,10,2,7 -Y,1,1,2,1,1,7,10,1,5,7,11,8,1,11,1,8 -L,5,10,8,8,9,7,7,3,6,6,7,11,6,12,6,6 -I,0,0,0,0,0,7,7,4,4,7,6,8,0,8,0,8 -E,4,9,5,7,4,4,9,3,8,10,8,10,2,8,4,6 -M,3,4,4,3,3,7,6,6,4,6,7,8,7,5,2,8 -G,4,9,5,7,2,8,6,8,8,6,6,12,2,8,5,10 -E,6,9,8,7,8,8,10,6,3,6,6,9,5,7,7,9 -D,3,6,5,4,6,9,9,4,4,7,6,6,3,8,7,5 -H,5,10,8,8,8,7,7,5,7,7,6,8,6,8,4,8 -Y,3,8,5,5,1,8,10,2,3,7,12,8,1,11,0,8 -B,4,6,6,4,3,10,7,3,8,11,3,6,2,8,5,10 -G,6,9,7,7,4,6,7,7,8,10,7,11,2,9,4,9 -N,4,9,5,4,2,7,8,3,3,12,9,9,5,9,0,8 -P,4,7,4,5,2,4,14,8,1,11,6,3,0,10,4,8 -L,5,9,7,8,6,7,8,3,6,6,7,9,3,8,8,8 -T,4,7,5,5,4,7,7,7,6,7,8,8,3,10,5,9 -U,6,11,6,8,3,8,4,14,6,6,15,8,3,9,0,8 -K,4,5,5,4,3,5,6,4,8,7,7,11,3,8,5,10 -K,5,11,6,8,5,4,8,8,3,6,3,11,3,8,2,11 -I,0,7,0,4,0,7,7,4,4,7,6,8,0,8,0,8 -B,2,5,3,4,3,7,7,5,5,6,6,6,2,8,5,9 -J,5,11,7,8,8,8,6,4,4,8,5,5,6,6,6,3 -S,4,10,5,8,2,7,7,6,9,4,6,8,0,8,9,8 -Q,3,5,4,6,4,7,8,5,2,7,8,11,2,9,5,8 -L,4,10,5,7,3,0,2,4,6,1,0,8,0,8,0,8 -K,6,10,6,5,4,9,6,3,6,11,2,8,5,6,4,9 -Z,1,3,2,2,1,7,7,1,8,11,6,9,1,9,5,8 -K,5,5,5,8,2,4,6,8,2,7,7,12,3,8,3,11 -L,3,6,4,4,2,6,5,1,9,7,2,10,0,7,3,8 -S,2,3,4,1,1,8,8,2,7,10,6,7,1,9,4,8 -H,1,0,1,0,0,7,8,10,1,7,6,8,2,8,0,8 -N,4,8,5,6,5,6,6,7,5,6,5,7,3,7,3,8 -H,9,11,12,8,8,7,7,3,6,10,7,9,3,8,4,8 -K,4,9,6,7,7,7,6,5,5,6,5,7,7,6,8,14 -C,4,9,6,7,2,6,6,7,11,9,5,13,1,10,4,9 -S,2,3,3,1,1,8,8,2,7,10,6,7,1,9,4,8 -S,4,7,6,5,7,7,8,3,3,8,6,7,3,7,12,2 -H,1,1,2,1,1,7,7,11,1,7,6,8,3,8,0,8 -Z,9,10,6,14,6,6,9,5,2,12,8,7,3,8,12,5 -B,3,7,4,5,4,8,8,6,6,7,5,6,2,8,6,9 -Q,5,8,6,7,3,9,7,9,7,6,6,10,3,8,5,9 -D,3,6,4,4,3,8,7,5,7,10,5,6,3,8,3,9 -G,7,12,6,6,4,7,8,4,3,9,5,6,3,9,10,7 -D,3,6,4,4,4,8,7,5,8,7,7,5,3,8,3,7 -S,5,11,6,8,4,8,7,3,6,10,7,9,2,10,5,8 -U,4,9,6,6,5,8,8,8,5,6,7,9,3,8,4,6 -E,4,9,3,4,2,8,7,3,4,10,5,8,3,9,8,11 -B,1,3,3,2,2,9,6,3,5,10,5,7,2,8,4,9 -I,3,7,4,5,2,6,8,0,7,13,7,8,0,8,1,7 -Z,2,4,3,2,2,7,7,5,9,6,6,8,2,8,7,8 -C,3,7,4,5,2,5,8,7,8,7,8,14,1,8,4,10 -H,6,8,9,6,5,5,8,4,7,10,10,10,5,10,4,6 -O,3,6,4,4,2,9,9,8,7,5,8,10,3,8,4,8 -Z,2,3,4,2,1,7,7,2,9,12,6,9,1,9,5,7 -F,6,11,6,6,4,10,7,2,5,10,5,6,4,8,6,9 -X,4,8,4,6,3,7,7,4,4,7,6,8,3,8,4,8 -W,7,9,8,4,4,4,8,2,3,8,10,8,9,11,2,5 -Z,5,7,4,11,4,7,8,4,2,12,7,7,3,9,11,5 -A,4,9,6,8,6,10,7,4,6,6,9,5,5,11,4,4 -A,4,11,7,8,4,12,2,3,3,10,2,9,3,7,4,9 -N,3,5,6,4,3,6,9,2,4,10,7,7,5,8,1,8 -C,5,5,6,8,3,5,7,7,11,7,6,12,1,8,4,9 -R,4,7,5,5,4,8,9,6,6,8,5,8,3,7,6,11 -R,5,5,5,8,3,6,10,10,4,7,5,8,3,8,6,11 -U,7,11,10,8,8,8,7,8,6,6,7,9,4,9,5,6 -G,5,4,6,6,3,8,8,8,8,6,7,8,2,7,6,11 -B,4,8,5,6,5,10,7,3,6,10,4,6,2,8,4,10 -M,2,3,3,2,2,8,6,6,4,7,8,8,6,5,2,8 -R,2,4,4,3,3,8,7,4,5,8,5,7,3,7,4,11 -X,10,13,9,7,4,6,7,2,9,9,7,9,4,6,4,6 -N,4,7,6,5,4,8,8,6,5,7,6,5,5,9,2,6 -H,3,2,5,3,3,8,7,6,6,7,6,7,3,8,3,7 -W,5,9,8,6,3,4,8,5,2,7,9,8,8,9,0,8 -E,4,9,4,6,4,3,9,5,10,7,6,14,0,8,6,8 -L,3,7,5,5,3,4,3,8,6,1,3,3,1,6,0,6 -I,7,13,6,8,3,10,7,2,5,11,5,6,2,10,5,11 -X,4,6,6,4,4,7,7,2,6,7,5,8,3,6,6,8 -E,4,6,5,4,5,7,7,3,6,7,7,11,4,9,7,8 -L,2,5,4,3,2,6,4,1,8,8,2,10,0,7,2,8 -B,2,1,2,2,2,7,7,4,4,6,6,6,2,8,4,10 -K,4,7,6,6,6,10,6,2,3,9,3,8,5,6,6,13 -R,2,4,3,3,2,10,6,3,5,10,3,7,2,7,3,10 -O,4,11,5,8,4,7,7,9,5,7,6,8,3,8,3,8 -C,7,10,5,6,2,5,10,5,8,11,8,9,2,8,5,8 -D,5,8,6,6,5,8,7,6,9,7,6,5,6,8,3,7 -V,2,7,4,5,2,9,11,3,3,3,11,9,2,10,1,8 -Z,1,0,2,1,0,7,7,2,10,8,6,8,0,8,6,8 -Q,4,8,5,9,5,8,7,7,4,9,6,9,3,8,6,8 -L,7,13,7,7,5,9,3,4,3,11,6,10,4,8,7,9 -L,5,10,7,8,3,8,3,2,8,9,2,9,1,6,3,8 -O,4,5,6,7,3,9,6,9,8,8,4,9,3,8,4,8 -N,6,11,8,8,5,7,8,6,6,7,7,5,7,10,3,4 -U,1,0,2,1,0,7,5,10,4,7,12,8,3,10,0,8 -D,6,11,6,6,4,6,8,4,7,10,6,7,5,8,6,5 -A,2,6,4,4,2,8,3,2,2,7,1,8,2,6,2,6 -L,4,10,6,7,4,9,3,2,7,8,2,9,3,4,4,9 -Z,3,5,6,4,3,7,7,2,10,12,6,8,1,8,6,8 -E,2,1,2,3,2,7,7,6,6,7,6,8,2,8,5,10 -E,2,4,2,3,2,7,7,5,7,7,6,8,2,8,5,10 -N,1,0,2,1,1,7,7,11,1,5,6,8,4,8,0,8 -W,4,9,6,6,3,7,8,4,1,6,8,8,8,9,0,8 -B,5,9,6,7,6,8,8,6,7,7,6,6,6,8,7,11 -Q,5,9,7,11,8,9,8,8,3,5,6,10,3,9,6,10 -V,4,9,6,7,2,8,8,5,3,6,14,8,3,9,0,8 -G,4,8,5,6,4,8,7,8,6,6,7,9,2,7,5,10 -X,6,9,10,7,4,8,8,1,9,10,5,7,3,8,4,8 -J,6,9,8,10,7,7,8,4,6,7,7,7,4,8,10,10 -R,3,2,4,4,3,7,7,5,5,6,5,6,3,7,4,8 -E,3,6,5,4,3,5,8,3,8,11,8,9,2,8,4,7 -M,7,13,8,7,5,9,3,2,2,9,4,9,6,2,1,9 -W,6,9,6,5,3,2,10,2,3,10,11,9,6,11,1,6 -K,8,11,11,8,7,5,7,2,7,10,8,11,3,8,3,7 -C,3,6,5,4,1,6,6,6,10,7,5,13,1,9,4,9 -D,2,5,4,3,3,9,6,3,5,10,4,6,3,7,3,8 -I,1,2,1,3,1,7,7,1,7,7,6,8,0,8,2,8 -J,3,5,5,4,2,8,6,3,7,15,5,10,1,6,1,7 -T,5,7,6,5,4,7,9,1,9,10,9,5,0,9,3,5 -J,3,6,4,4,1,8,6,5,6,15,7,12,1,6,1,7 -L,3,11,5,8,4,3,5,2,8,3,1,9,0,7,1,6 -F,7,10,6,5,4,8,9,3,4,11,6,5,3,9,6,7 -Z,2,4,5,3,2,8,7,2,9,12,6,8,1,8,5,8 -E,3,7,5,5,3,8,7,2,9,11,5,8,2,8,5,9 -V,9,14,8,8,5,6,9,4,4,8,8,5,5,13,3,7 -E,4,11,6,8,5,10,6,2,7,11,4,9,3,7,6,12 -X,6,8,8,7,8,8,8,2,5,8,6,8,4,8,8,8 -D,3,5,4,4,3,7,7,7,7,6,6,5,2,8,3,7 -K,7,9,10,6,7,9,7,1,6,10,3,8,6,7,5,10 -B,2,5,4,4,3,9,7,2,6,11,5,7,4,7,5,9 -K,4,8,6,6,6,6,8,5,4,7,5,8,4,6,9,9 -I,5,12,5,6,3,9,8,2,5,12,4,5,2,10,5,11 -L,6,10,8,8,9,6,7,3,6,7,7,11,6,12,6,7 -X,5,5,6,8,2,7,7,5,4,7,6,8,3,8,4,8 -Q,8,13,7,7,6,9,6,4,7,10,6,7,4,8,10,9 -W,8,9,8,6,5,1,10,2,3,10,11,9,7,10,1,7 -G,5,11,6,8,3,7,6,8,9,5,5,10,1,8,6,11 -P,3,7,3,4,2,4,12,8,2,10,6,4,1,10,3,8 -D,3,5,4,4,3,7,7,7,6,6,6,5,2,8,3,7 -G,4,4,5,6,2,7,5,7,8,6,5,11,1,8,6,11 -U,4,6,5,4,4,7,8,7,5,5,7,11,4,9,5,5 -Z,4,6,5,4,3,7,7,2,9,11,6,8,1,9,6,8 -U,3,7,3,5,2,8,6,10,4,7,12,9,3,9,0,8 -M,4,6,6,4,4,11,7,2,4,9,3,6,7,6,2,8 -A,2,1,3,1,1,7,4,2,0,7,2,8,3,6,1,8 -V,5,11,8,8,5,7,12,2,3,5,10,9,4,11,2,7 -K,5,9,8,6,4,3,8,3,8,12,12,12,3,8,4,5 -A,1,0,2,0,0,7,4,2,0,7,2,8,2,6,1,8 -W,5,8,7,6,3,10,8,5,1,7,8,8,8,9,0,8 -R,3,8,5,6,4,8,7,4,5,9,3,8,3,7,4,11 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -D,5,9,6,7,7,7,7,7,6,7,6,4,3,8,3,8 -W,4,5,6,4,6,8,7,4,4,6,5,8,9,8,6,9 -E,5,9,6,8,7,6,8,4,4,8,7,9,5,10,9,11 -G,5,11,7,8,9,8,7,5,2,6,6,10,7,8,6,12 -O,4,10,6,7,3,8,7,9,8,7,6,8,3,8,4,8 -C,4,7,5,5,2,6,7,6,7,12,8,13,2,10,3,8 -J,5,8,6,6,3,7,6,3,5,15,7,11,1,6,1,7 -O,4,4,5,6,2,7,7,8,8,6,5,7,3,8,4,8 -I,3,10,6,8,6,9,6,2,4,8,5,5,5,8,5,6 -A,5,9,8,6,6,9,5,2,5,8,1,6,3,7,4,7 -S,2,3,2,1,1,8,8,6,4,7,6,7,2,8,8,8 -P,7,12,6,6,4,8,9,4,4,12,5,4,4,10,6,6 -V,2,3,3,2,1,5,12,2,2,8,10,7,2,11,0,8 -V,4,11,6,8,4,6,11,2,3,6,11,9,2,10,1,8 -T,7,13,6,7,4,7,8,2,7,11,6,7,3,8,5,5 -M,6,8,9,7,10,9,8,5,4,7,6,7,13,10,7,5 -G,3,8,4,6,3,6,6,5,4,5,6,9,2,8,4,8 -D,5,10,8,8,5,9,6,3,7,11,4,6,3,8,3,9 -O,7,10,5,6,3,10,5,6,5,9,3,8,5,9,5,9 -T,1,0,2,1,0,7,14,1,4,7,10,8,0,8,0,8 -B,3,5,5,4,3,9,7,2,6,11,5,7,2,8,4,10 -L,2,6,2,4,1,0,1,5,6,0,0,6,0,8,0,8 -C,4,8,5,6,2,6,8,6,10,6,6,13,1,8,4,8 -X,6,11,9,8,5,7,7,1,9,10,6,8,3,8,4,7 -Y,2,6,4,4,0,9,10,2,2,6,12,8,1,11,0,8 -P,3,7,4,5,3,4,12,6,4,12,8,3,1,10,3,6 -B,5,11,5,6,5,8,7,3,4,9,6,7,6,7,8,7 -K,2,6,3,4,1,3,7,7,2,7,6,11,3,8,2,11 -Y,4,11,6,8,3,6,11,2,3,8,12,8,1,11,0,8 -Q,2,3,3,4,2,7,9,5,2,7,9,10,2,9,5,8 -P,7,13,6,7,4,9,8,4,5,13,4,4,4,10,6,6 -U,2,3,3,2,1,6,8,5,7,9,7,8,3,9,3,6 -R,4,8,6,6,5,6,8,5,6,7,5,7,6,7,5,8 -S,7,11,8,9,6,9,7,3,6,10,5,8,3,10,6,9 -X,5,10,7,8,6,8,7,3,5,6,7,6,4,10,10,9 -B,4,10,6,8,7,8,8,4,5,10,5,6,3,8,5,10 -A,5,11,8,8,4,10,2,2,3,9,1,8,2,7,3,7 -P,3,2,3,4,3,6,9,4,4,9,8,4,4,10,3,7 -K,4,2,5,3,3,5,7,4,8,7,6,11,3,8,5,9 -K,3,4,5,3,3,9,6,2,6,10,4,9,4,7,4,9 -A,2,4,4,5,2,8,6,3,1,7,0,8,2,7,2,8 -Y,4,11,6,8,4,7,9,2,6,6,12,9,2,11,2,8 -Q,7,9,7,11,8,7,10,4,4,7,10,11,5,11,10,9 -E,4,11,5,8,6,7,7,5,8,7,6,9,3,8,6,9 -W,5,8,5,6,4,1,10,3,3,11,11,9,5,11,1,7 -J,5,10,7,7,3,6,8,3,6,15,7,10,1,6,1,6 -C,7,9,7,7,3,3,8,4,9,10,10,13,1,7,3,7 -U,4,6,4,4,2,7,4,14,5,7,13,8,3,9,0,8 -H,3,4,5,2,2,7,6,3,5,10,6,9,3,7,3,8 -F,3,6,5,4,2,6,11,2,5,13,7,4,1,10,2,8 -S,5,10,6,8,5,7,7,5,8,5,6,11,1,10,10,9 -M,5,9,6,7,4,8,7,13,2,6,9,8,8,6,0,8 -G,7,10,7,8,5,5,7,6,6,9,7,12,2,9,4,10 -C,4,9,6,6,2,7,8,7,10,5,6,13,1,7,4,9 -W,4,7,6,5,3,5,8,4,1,7,9,8,8,9,0,8 -R,6,10,8,7,8,8,5,6,4,8,6,8,7,6,6,11 -R,5,8,7,6,6,6,7,6,6,6,5,7,3,8,5,8 -D,2,1,3,3,2,7,7,6,6,6,5,5,2,8,3,7 -T,3,9,4,6,1,8,15,1,6,6,11,8,0,8,0,8 -E,6,11,9,8,6,6,7,2,9,11,6,9,2,8,5,8 -O,5,6,7,5,4,7,5,4,5,9,5,8,3,6,5,7 -D,3,4,4,2,2,7,7,7,7,7,6,5,2,8,3,7 -R,4,6,5,4,4,7,7,5,7,7,6,6,3,7,5,8 -A,4,9,6,7,6,7,8,8,4,6,6,9,3,7,8,5 -M,4,5,7,4,4,6,6,3,4,9,9,10,7,5,2,8 -G,3,5,4,4,2,6,6,5,5,9,7,11,2,8,4,10 -X,3,10,5,7,4,7,7,3,8,6,6,8,3,8,7,7 -G,3,7,4,5,3,6,6,5,4,6,6,9,2,8,3,8 -Y,2,7,4,5,1,8,11,0,3,6,11,8,0,10,0,8 -N,8,11,11,8,5,7,8,3,5,10,6,7,7,9,2,7 -P,2,3,3,2,2,6,10,6,2,11,5,4,1,9,2,9 -D,5,10,5,5,3,9,5,4,5,12,3,8,5,7,5,10 -L,5,10,7,8,5,7,4,1,8,8,2,10,0,6,3,8 -G,5,5,6,7,3,7,7,8,7,6,6,7,2,7,7,11 -A,2,7,4,5,3,12,4,3,2,9,2,9,2,6,2,8 -Q,3,3,4,4,3,8,7,6,2,8,7,10,2,8,4,9 -N,3,4,4,6,2,7,7,14,2,5,6,8,6,8,0,8 -A,3,2,5,4,2,8,2,2,2,7,2,8,2,7,2,7 -C,2,3,2,2,1,4,8,4,6,11,9,11,1,9,2,7 -Z,2,3,2,1,1,8,7,5,8,6,6,7,1,8,6,8 -A,4,8,7,6,5,6,5,2,3,4,2,6,2,6,3,4 -I,3,9,5,6,3,7,7,0,7,13,6,9,0,8,1,8 -Y,3,5,4,4,2,5,9,1,8,10,9,5,2,10,4,4 -O,3,5,5,4,3,6,6,6,5,9,5,8,3,6,4,7 -S,4,9,4,4,2,8,3,3,4,8,2,8,3,6,5,8 -K,7,11,10,8,8,10,6,1,6,10,3,8,6,8,6,11 -D,2,1,3,2,2,7,7,6,6,7,6,5,2,8,2,7 -H,4,7,4,5,4,7,8,12,1,7,4,8,3,8,0,8 -K,2,6,3,4,1,3,7,7,3,7,7,11,3,8,2,10 -H,1,0,1,0,0,7,8,10,1,7,6,8,2,8,0,8 -Q,2,3,3,5,3,8,7,7,3,6,6,9,3,8,5,10 -S,5,9,7,6,3,8,8,4,8,11,6,7,2,8,5,7 -N,3,1,3,3,2,7,9,5,4,7,6,7,4,8,1,7 -X,5,6,7,4,3,7,8,1,8,10,6,8,3,8,3,7 -O,5,9,7,7,5,7,7,9,4,7,6,8,3,8,3,8 -A,1,0,2,0,0,7,4,2,0,7,2,8,2,7,1,8 -C,4,9,5,6,2,6,6,7,10,9,5,14,1,10,4,9 -X,4,10,7,8,6,6,8,2,6,7,6,10,4,6,7,7 -Q,5,10,7,8,7,8,5,8,3,6,7,8,4,7,7,8 -O,5,10,4,6,3,6,7,6,3,9,7,9,5,9,5,8 -S,4,6,5,4,3,7,7,3,7,10,5,7,2,8,5,8 -E,4,6,6,6,6,6,8,4,4,8,7,9,4,11,8,10 -I,1,6,2,4,2,7,7,1,8,7,6,9,0,8,3,8 -L,4,6,5,5,4,8,5,5,6,6,7,8,3,8,6,9 -X,5,9,8,7,6,6,8,3,6,7,7,11,5,6,8,6 -D,4,9,5,7,5,10,6,4,5,10,3,6,3,7,3,8 -C,5,10,6,8,2,6,7,7,10,7,6,15,1,8,4,9 -N,8,10,9,6,4,8,6,3,4,13,4,8,6,8,0,7 -Y,2,7,4,5,1,9,10,1,3,6,12,8,1,11,0,8 -T,5,7,5,5,3,7,10,1,10,11,9,5,1,9,4,4 -T,5,6,7,6,6,8,10,5,8,7,6,8,3,10,7,7 -M,5,11,9,8,12,10,6,3,3,8,4,7,11,6,5,4 -J,7,11,6,8,4,10,6,2,5,11,6,8,2,9,7,12 -J,2,5,3,3,1,10,5,2,6,14,4,9,0,7,0,8 -G,4,8,4,6,3,7,7,6,6,10,7,11,2,9,4,9 -I,2,8,3,6,1,7,7,0,7,13,6,8,0,8,1,8 -J,6,10,9,7,6,8,6,4,6,8,6,7,3,6,4,7 -E,4,10,6,8,4,7,7,3,8,11,7,9,3,8,5,8 -R,4,8,5,6,4,6,8,5,5,6,5,8,3,7,5,9 -X,4,9,7,7,5,8,7,3,8,5,6,8,2,8,6,8 -X,5,10,8,7,5,4,7,1,8,10,10,10,4,7,4,5 -Q,2,0,2,1,1,8,7,7,4,6,6,9,2,8,3,8 -K,2,7,3,4,1,4,8,8,2,6,4,11,3,8,2,10 -C,3,7,4,5,2,6,8,9,8,9,7,10,2,11,4,9 -N,5,6,7,6,6,6,9,4,3,6,5,9,8,7,5,9 -J,1,3,2,1,0,8,6,3,5,14,7,11,1,7,0,7 -U,4,8,5,6,5,8,8,7,6,5,8,9,6,8,3,7 -Q,2,3,3,4,2,8,8,5,2,7,8,10,2,9,4,8 -Z,4,6,5,4,3,6,9,3,9,11,8,6,1,8,6,6 -A,5,11,8,8,5,10,1,2,3,8,2,8,4,8,4,9 -N,6,5,6,8,3,7,7,15,2,4,6,8,6,8,0,8 -V,3,7,4,5,2,9,9,4,2,5,13,8,2,10,0,8 -S,3,2,3,3,2,8,8,7,5,8,5,7,2,8,8,8 -T,2,3,3,1,1,5,12,2,7,11,9,4,0,9,1,5 -X,4,6,6,4,3,7,7,1,8,10,8,8,3,8,3,7 -Y,5,10,7,7,4,4,10,2,8,11,12,9,3,9,2,6 -Q,6,14,6,8,4,10,3,4,7,11,3,8,3,9,6,13 -Q,4,9,5,8,3,8,9,8,6,6,9,9,3,7,6,10 -B,4,8,5,6,5,7,6,5,4,6,5,7,4,9,6,7 -L,9,14,8,8,4,10,2,4,4,13,5,13,2,7,6,9 -J,4,9,4,7,3,7,10,2,3,13,5,5,2,8,7,9 -P,6,9,8,7,7,6,7,7,5,8,7,8,3,9,7,9 -F,3,7,6,5,6,10,7,1,5,9,5,6,4,10,5,7 -S,5,8,6,6,7,8,9,5,4,8,5,6,4,10,9,7 -L,3,5,4,4,3,8,5,5,5,7,7,7,4,9,6,10 -D,2,4,4,3,2,8,7,4,6,10,4,5,2,8,2,8 -O,5,8,7,6,8,8,10,5,3,7,7,8,7,9,4,9 -B,2,3,3,1,2,7,8,5,5,7,6,6,1,8,5,9 -C,5,8,7,7,7,5,7,4,5,7,7,11,4,9,7,9 -D,6,9,8,7,5,10,6,4,9,11,3,6,3,8,3,9 -J,4,8,5,6,3,9,7,2,6,14,3,7,0,7,0,8 -T,2,4,3,3,2,7,12,3,6,7,11,8,2,11,1,8 -Y,3,3,4,2,1,4,11,2,7,11,10,5,1,11,2,5 -V,2,3,3,2,1,4,12,3,2,10,11,7,2,11,0,8 -V,4,11,6,8,9,7,6,5,2,8,7,9,8,10,4,9 -K,3,8,4,6,3,3,7,6,2,6,5,10,3,8,2,11 -C,3,9,4,7,2,5,7,7,10,7,6,13,1,9,4,9 -B,5,8,6,6,6,8,8,7,6,7,6,5,3,7,7,9 -Z,2,2,3,3,2,8,7,5,9,6,6,7,2,8,7,8 -W,8,8,8,6,5,4,11,3,3,9,9,7,8,11,2,6 -T,4,5,5,4,2,6,11,2,8,11,9,5,1,11,3,4 -Y,2,4,3,3,1,4,12,3,6,12,10,5,1,10,1,5 -A,2,6,4,4,2,11,3,2,2,9,2,9,2,6,2,8 -W,6,10,9,8,14,9,7,5,2,7,6,8,11,11,4,8 -J,5,10,7,8,4,10,2,6,5,15,5,13,0,7,0,7 -N,5,9,6,5,3,2,10,5,3,13,12,9,4,9,0,8 -R,2,3,2,1,1,7,7,4,5,6,5,7,2,7,4,8 -J,1,0,1,1,0,12,3,5,3,12,5,11,0,7,0,8 -Y,4,11,6,8,1,10,10,2,2,6,13,8,1,11,0,8 -X,4,9,5,7,3,7,7,4,4,7,6,7,3,8,4,8 -B,4,8,5,6,4,6,7,9,7,7,6,7,2,8,9,9 -W,2,3,4,2,2,7,11,2,2,7,9,8,5,11,0,8 -V,8,10,8,7,3,3,11,5,5,12,12,7,3,10,1,8 -M,7,9,10,7,6,4,7,3,5,10,10,10,8,5,2,7 -M,9,9,12,8,13,8,8,4,4,7,6,7,12,9,7,3 -D,4,8,6,6,8,9,8,5,6,7,6,6,4,7,8,8 -G,6,10,6,7,5,5,7,6,5,9,7,12,2,9,5,8 -O,3,7,3,5,2,8,7,8,5,9,4,6,3,8,3,8 -W,3,2,4,3,3,5,10,2,2,8,9,9,6,11,0,8 -B,3,2,4,3,3,8,7,5,6,7,6,6,2,8,6,10 -U,5,10,6,8,4,6,8,6,7,6,10,9,3,9,1,7 -A,6,11,11,8,8,7,5,2,5,5,1,6,6,8,6,6 -A,3,8,5,6,3,12,3,3,2,11,2,9,2,6,2,9 -Y,3,8,5,6,2,8,10,1,7,5,12,8,1,11,2,8 -H,4,7,5,5,4,8,6,13,1,7,7,8,3,8,0,8 -M,4,8,6,6,5,8,6,2,4,9,6,8,7,6,2,8 -N,5,7,6,6,6,8,6,5,4,7,5,8,7,9,6,3 -Q,3,6,4,5,3,8,7,7,5,6,7,9,2,8,4,9 -Z,5,11,7,8,4,9,6,3,10,12,4,8,1,7,6,9 -L,5,9,7,7,7,6,6,3,7,8,7,11,7,10,6,7 -R,4,8,5,6,6,7,7,7,3,8,5,7,4,7,7,10 -P,2,3,3,2,1,7,9,3,4,13,5,4,0,9,2,9 -V,4,9,6,7,1,7,8,4,3,7,14,8,3,9,0,8 -C,7,12,5,7,4,7,7,4,3,9,9,11,4,10,9,11 -Q,5,7,6,6,5,8,4,3,5,7,3,8,4,8,4,8 -L,2,1,2,3,1,4,4,4,6,2,2,6,0,7,1,6 -B,11,13,8,7,5,7,8,5,7,10,5,8,6,6,8,11 -S,5,8,6,7,7,8,8,4,5,7,7,8,5,10,10,9 -Y,8,15,7,8,4,6,8,5,3,10,9,5,4,10,4,4 -K,2,4,3,3,2,5,7,4,7,6,6,11,3,8,5,9 -B,3,7,3,5,4,6,6,8,5,6,7,7,2,9,7,10 -B,9,12,8,7,7,10,7,4,6,10,3,6,7,4,8,8 -K,4,6,6,4,4,7,6,1,6,10,6,9,3,8,3,8 -K,6,11,8,8,10,7,7,4,5,6,6,9,8,9,8,7 -N,8,12,10,7,4,12,4,3,3,13,1,7,5,7,0,8 -M,5,7,7,5,5,8,7,2,4,9,7,8,7,6,2,8 -S,5,7,7,6,8,7,8,5,5,7,7,7,5,9,11,12 -E,5,9,7,6,6,8,8,6,3,6,6,10,5,8,9,8 -U,6,13,6,7,5,6,6,5,5,7,8,8,5,8,3,9 -M,6,12,8,7,5,13,2,5,2,11,1,9,7,2,1,8 -D,5,10,6,8,7,7,7,6,6,7,6,5,3,8,3,7 -R,6,11,7,8,4,6,10,9,4,7,5,8,3,8,6,11 -I,1,6,0,4,0,7,7,5,3,7,6,8,0,8,0,8 -O,5,8,5,6,5,8,6,7,3,9,5,7,3,8,3,7 -M,5,10,7,8,9,7,9,6,5,7,6,8,7,9,6,10 -R,1,1,2,1,1,6,9,7,3,7,5,8,2,7,4,11 -T,2,1,2,1,0,8,15,1,4,6,10,8,0,8,0,8 -E,4,8,6,6,6,6,8,6,8,6,4,11,3,8,6,9 -H,5,5,6,7,3,7,7,15,0,7,6,8,3,8,0,8 -W,4,3,4,1,2,3,11,3,2,10,10,8,6,11,1,7 -U,3,2,4,4,2,6,8,5,7,6,9,9,3,9,1,7 -A,4,10,7,8,4,14,3,4,3,12,0,8,2,6,2,9 -L,5,9,6,8,5,8,8,3,6,6,6,9,3,8,7,9 -T,3,6,3,4,2,5,12,4,5,11,9,5,2,12,1,5 -V,8,11,8,8,5,3,12,2,3,9,11,8,6,11,3,6 -T,2,1,3,2,2,7,12,3,6,7,10,8,2,11,1,8 -T,7,10,7,8,6,6,11,4,6,11,9,5,3,12,2,4 -J,2,5,4,4,2,9,7,2,6,14,5,9,1,6,1,8 -E,3,5,4,4,3,7,7,6,8,7,6,9,2,8,6,9 -N,5,4,5,7,3,7,7,15,2,4,6,8,6,8,0,8 -B,6,9,8,6,7,9,8,3,6,10,5,5,3,7,5,9 -R,5,10,7,8,7,7,8,5,6,7,5,6,6,7,5,8 -H,4,5,4,8,3,7,8,15,1,7,5,8,3,8,0,8 -F,4,8,4,5,1,1,15,5,3,13,10,5,0,8,2,5 -F,7,10,9,8,4,6,11,3,6,14,6,3,2,10,2,7 -P,4,9,4,4,3,8,8,3,4,12,5,4,3,11,5,7 -P,3,6,3,4,2,4,12,7,1,10,6,4,1,10,3,8 -N,7,9,6,4,2,7,10,4,5,4,5,10,5,9,2,7 -Z,2,6,3,4,2,7,7,3,12,8,6,8,0,8,7,8 -F,1,0,1,1,0,3,12,4,3,11,9,6,0,8,2,7 -B,1,0,1,0,0,7,7,6,4,7,6,7,1,8,5,9 -U,1,0,1,0,0,7,6,10,4,7,12,8,3,10,0,8 -H,3,5,4,4,4,9,7,6,6,7,6,6,3,8,3,7 -D,3,8,4,6,2,6,7,10,9,6,6,6,3,8,4,8 -P,3,8,3,6,3,5,11,8,2,9,5,4,1,9,3,7 -M,5,8,5,6,5,8,5,11,0,7,8,8,7,5,0,8 -O,3,6,5,4,5,8,6,5,2,7,6,8,7,9,3,9 -D,5,8,6,7,6,6,7,5,6,7,5,9,5,4,8,4 -B,8,12,6,6,4,8,6,5,5,11,5,9,6,6,7,11 -N,4,2,5,4,3,7,8,5,6,7,6,5,6,9,2,6 -T,2,7,4,5,2,6,11,2,8,8,11,8,1,10,1,7 -D,1,4,3,2,2,9,6,3,5,10,5,6,2,8,2,8 -E,2,1,2,2,2,7,7,5,7,6,5,8,2,8,6,10 -G,4,7,5,5,3,5,7,5,5,9,8,10,2,8,4,9 -Y,3,10,5,7,1,7,10,2,2,7,13,8,2,11,0,8 -H,3,4,4,6,4,11,5,2,2,8,5,9,3,8,5,11 -E,4,9,3,5,3,8,6,3,5,10,5,8,3,9,8,11 -J,4,10,6,8,5,7,8,4,5,8,7,7,3,7,4,6 -X,4,7,5,5,4,8,7,3,8,6,5,6,3,9,6,8 -M,6,9,9,7,11,6,5,4,2,6,4,9,14,6,4,6 -C,3,4,5,7,2,5,7,7,10,7,6,12,1,9,4,9 -G,5,11,6,8,5,5,7,6,5,8,7,12,4,7,5,8 -I,2,10,2,8,3,7,7,0,8,7,6,8,0,8,3,8 -W,4,8,7,6,6,7,11,2,2,6,8,8,7,12,1,8 -W,3,8,5,6,4,9,10,2,2,6,8,8,7,11,1,8 -L,4,8,5,7,5,8,5,5,5,7,7,8,3,8,7,11 -T,3,4,4,2,1,5,13,3,6,12,9,3,1,10,1,5 -Z,3,8,4,6,3,7,8,3,11,8,6,8,0,8,7,7 -E,3,4,4,6,2,3,8,6,11,7,5,15,0,8,7,7 -P,5,11,5,8,4,3,13,7,1,11,6,3,0,10,3,8 -I,0,1,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -S,7,11,8,8,4,7,8,4,8,11,7,8,2,9,6,6 -D,6,11,6,8,4,5,7,10,10,7,6,6,3,8,4,8 -H,4,7,6,5,4,6,8,3,6,10,8,9,3,8,3,7 -H,7,10,10,8,6,10,6,3,6,10,3,7,5,7,5,9 -U,4,9,6,6,5,6,8,8,5,6,5,12,5,8,7,4 -N,2,2,3,3,2,7,9,5,4,7,6,6,4,9,1,6 -O,2,4,3,2,2,7,7,7,4,9,6,8,2,8,3,8 -D,5,9,6,6,5,5,8,9,7,7,7,6,2,8,3,8 -M,4,6,5,4,4,7,5,11,0,7,9,8,8,6,1,8 -Z,4,5,6,7,4,11,4,4,4,10,3,9,2,7,5,10 -E,5,7,7,5,4,6,8,2,9,11,6,9,2,8,4,8 -Q,4,5,5,6,4,8,8,5,2,8,8,10,3,9,5,7 -N,5,8,7,6,5,8,8,6,6,6,5,3,8,10,5,8 -T,5,10,7,7,8,6,7,3,6,7,7,10,5,8,5,6 -R,2,3,3,2,2,8,8,3,5,9,4,7,2,7,3,10 -R,6,10,8,8,6,7,9,5,7,5,4,9,4,4,7,8 -C,7,9,8,8,8,5,7,4,5,7,6,11,5,9,8,9 -L,5,11,6,9,5,4,3,8,7,1,2,4,1,6,1,6 -G,4,7,6,5,3,7,6,7,8,8,5,12,2,10,4,8 -N,4,8,6,7,6,6,8,5,3,6,5,9,8,7,5,9 -N,4,8,5,6,4,7,7,13,1,6,6,8,5,8,0,8 -G,4,8,4,6,3,6,7,6,5,9,8,10,2,7,4,9 -C,6,10,8,8,5,8,7,8,7,7,6,9,4,8,4,9 -D,5,8,6,6,6,10,6,5,6,9,3,6,3,8,3,8 -R,9,15,9,8,7,9,7,4,6,9,2,7,6,5,7,7 -B,4,10,4,8,6,7,6,9,6,6,7,7,2,9,8,10 -W,7,9,9,7,6,7,8,4,1,7,9,8,8,10,0,8 -F,3,2,4,3,2,6,10,4,6,10,8,5,4,9,3,7 -D,2,4,3,3,2,8,7,5,6,9,5,5,2,8,3,7 -L,4,11,6,8,3,4,4,4,9,2,0,6,0,7,1,5 -R,2,0,2,1,1,6,10,7,2,7,5,8,2,7,4,10 -W,5,11,7,8,4,5,8,5,2,7,8,8,8,10,0,8 -B,4,9,4,7,4,7,7,10,7,7,6,7,2,8,9,9 -A,4,7,6,5,6,8,5,7,4,8,6,8,5,9,7,4 -W,4,9,7,6,5,7,8,4,1,7,9,8,7,11,0,8 -C,5,10,6,8,4,5,8,9,9,9,9,12,2,10,4,9 -Y,3,6,4,4,2,3,11,2,7,11,10,6,1,11,2,5 -A,4,10,7,8,5,12,3,2,2,9,2,8,2,6,2,8 -M,6,11,10,8,14,8,7,3,3,8,4,7,12,4,4,6 -Z,4,8,5,6,4,7,8,2,9,11,7,8,1,9,6,7 -Y,5,7,5,5,3,3,10,2,7,11,11,7,1,11,2,5 -H,4,2,5,4,4,9,7,6,6,7,6,6,3,8,3,7 -R,4,9,6,7,6,6,7,3,4,7,6,8,6,10,7,5 -S,3,9,4,7,2,7,6,6,9,4,6,9,0,9,9,8 -B,2,0,2,1,1,7,7,7,5,7,6,7,1,8,7,8 -F,5,5,5,8,2,1,14,5,3,12,10,5,0,8,2,5 -T,8,11,8,8,7,6,11,3,7,11,9,5,5,11,4,3 -H,5,9,8,7,8,8,7,5,7,7,6,9,6,8,4,8 -C,2,3,3,2,1,5,9,5,7,12,9,10,1,10,2,7 -D,5,11,5,8,3,5,8,11,9,7,7,5,3,8,4,8 -T,3,5,4,4,2,7,12,2,8,7,11,8,1,11,1,7 -A,1,0,2,0,0,8,3,2,0,7,2,8,2,6,1,8 -I,1,1,1,3,1,7,7,1,7,7,6,8,0,8,2,8 -A,4,9,6,7,4,13,2,4,2,11,1,8,3,7,3,9 -H,7,9,7,4,4,7,8,3,5,11,7,8,6,9,4,8 -T,6,8,7,6,8,6,8,4,6,8,6,9,5,8,5,7 -T,5,10,7,8,6,6,7,7,7,6,8,9,4,10,7,6 -F,4,10,4,7,2,1,11,5,6,11,11,9,0,8,2,6 -Q,2,5,3,6,3,8,8,7,2,4,6,10,3,9,5,9 -U,5,9,5,5,3,8,6,4,5,6,7,8,4,8,3,7 -O,6,5,7,8,3,7,6,8,9,6,5,7,3,8,4,8 -M,3,4,5,3,3,8,6,2,4,8,5,7,8,7,2,8 -V,4,10,6,8,4,7,11,1,3,6,10,9,3,11,1,8 -R,3,4,4,6,3,5,11,8,4,7,2,9,3,7,6,11 -S,2,1,2,2,1,8,7,6,5,7,7,8,2,9,8,8 -R,7,11,9,8,7,9,8,6,6,8,5,7,4,8,6,12 -K,8,10,8,5,3,10,7,4,7,8,1,5,5,7,4,9 -R,5,9,8,6,8,6,6,3,4,7,5,8,7,10,7,6 -W,6,8,6,6,5,4,10,2,3,9,9,8,7,11,2,6 -X,7,10,9,8,8,7,6,3,5,6,6,10,5,5,12,10 -A,3,10,5,7,4,11,3,2,2,9,2,10,3,7,3,8 -Y,3,7,4,5,2,7,10,1,7,6,12,8,1,11,2,8 -P,5,7,6,9,8,7,8,4,3,7,7,7,7,12,6,7 -U,4,6,5,4,4,7,7,8,6,7,6,10,3,9,5,5 -S,3,4,4,7,2,9,8,6,9,4,6,7,0,7,9,8 -P,1,0,1,0,0,5,11,6,1,9,6,5,0,9,2,8 -U,3,2,4,4,2,5,8,6,6,8,10,10,3,9,0,8 -D,7,11,7,6,4,10,4,6,6,13,4,10,5,7,5,9 -Y,7,7,9,10,9,10,12,6,4,6,7,6,5,10,8,5 -H,3,4,5,3,3,8,7,3,6,10,4,8,3,7,3,8 -G,3,4,4,7,2,6,5,8,8,6,5,10,1,8,6,11 -V,5,7,7,6,7,6,9,6,6,8,7,8,5,9,6,11 -G,2,0,2,1,1,8,6,6,5,6,5,9,1,8,5,10 -X,9,12,8,6,4,7,7,2,9,9,5,8,4,5,4,8 -R,7,10,9,8,7,8,8,5,6,9,5,7,4,7,6,12 -U,4,10,5,8,2,7,5,14,5,7,15,8,3,9,0,8 -C,5,10,7,8,8,7,5,4,4,8,6,11,7,9,4,8 -O,5,9,6,7,3,7,7,9,8,7,6,8,3,8,4,8 -V,9,12,8,7,4,5,10,4,4,10,8,5,4,11,2,8 -M,3,7,4,5,3,7,7,11,1,7,9,8,8,5,0,8 -W,6,5,7,4,4,5,11,4,2,9,8,7,7,11,2,6 -R,5,11,6,8,4,6,9,10,6,6,5,8,3,8,6,10 -V,4,9,6,7,2,7,8,4,3,7,14,8,3,9,0,8 -M,4,4,5,6,3,7,7,12,1,7,9,8,8,6,0,8 -Y,2,1,4,2,1,7,11,1,7,7,11,8,1,11,2,8 -V,5,7,5,5,3,3,11,2,3,10,11,8,2,11,1,8 -C,6,9,7,7,3,3,9,5,8,10,10,12,1,8,3,7 -F,0,0,1,0,0,3,12,4,2,11,9,6,0,8,2,8 -T,4,5,5,4,3,6,11,2,8,11,9,5,3,10,4,4 -Z,3,7,4,5,4,6,6,3,7,7,6,10,1,7,10,7 -W,3,7,5,5,5,7,11,2,2,6,8,8,6,11,1,8 -E,4,9,6,6,5,8,7,1,7,11,5,9,3,8,5,10 -X,4,6,6,4,4,9,8,3,5,7,7,7,4,11,6,7 -X,3,3,5,2,2,5,8,2,8,11,9,9,2,9,3,6 -S,5,10,6,7,4,6,8,3,6,10,8,7,2,8,5,5 -F,6,9,8,7,4,3,13,4,5,13,9,4,1,10,2,6 -X,3,4,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -B,4,8,6,6,6,8,7,4,5,7,6,7,4,8,6,9 -T,5,7,5,5,2,5,12,2,8,12,9,4,1,10,2,4 -G,3,6,3,4,2,7,7,6,6,10,7,11,2,9,4,10 -T,2,6,3,4,2,9,11,3,7,5,11,8,2,11,1,8 -J,2,5,4,3,1,7,7,3,6,14,6,10,1,6,1,7 -M,5,5,7,4,6,9,8,4,5,6,6,7,8,6,6,5 -Y,5,8,6,6,6,9,6,5,4,7,9,7,3,8,8,4 -E,6,9,8,8,8,5,8,4,4,8,7,9,4,10,9,10 -Q,6,11,8,8,8,8,6,8,3,6,8,9,5,5,8,9 -K,7,12,6,7,3,9,7,3,6,9,6,7,6,10,4,7 -Z,4,8,6,6,4,8,7,2,9,12,6,7,1,7,6,8 -U,4,7,5,5,2,4,8,5,6,11,11,10,3,9,1,7 -W,10,11,10,8,7,1,11,3,3,11,11,9,8,10,1,7 -N,4,8,6,6,6,7,9,3,4,7,6,7,6,8,6,4 -F,4,10,4,7,2,1,14,5,4,13,10,5,0,8,2,5 -Q,3,5,4,5,2,8,8,7,5,6,7,8,3,8,5,9 -D,8,11,8,6,4,10,3,6,5,13,4,11,5,7,5,9 -N,4,6,5,4,3,11,7,4,5,10,1,4,5,9,1,7 -P,7,11,10,8,7,9,7,3,6,12,4,5,5,9,5,9 -C,3,6,4,4,1,5,6,6,9,7,5,11,1,9,4,8 -K,6,11,6,8,3,4,8,8,2,7,4,11,4,8,2,11 -Q,1,2,2,3,2,8,8,5,2,8,7,9,2,9,3,9 -O,4,7,5,5,6,9,7,6,1,7,7,9,7,9,3,9 -T,4,6,5,4,5,7,8,4,6,7,6,8,5,7,5,6 -Z,3,10,4,7,3,7,8,3,11,9,6,8,0,8,7,8 -G,3,3,4,5,2,7,8,8,7,6,7,8,2,7,5,10 -Q,5,9,6,11,6,8,7,6,3,8,8,11,3,8,6,8 -X,4,9,6,7,5,8,6,3,5,6,7,7,2,8,9,9 -Q,3,3,4,5,4,8,7,7,3,5,7,9,3,8,5,10 -L,3,2,4,4,1,5,2,7,8,1,3,2,1,6,1,5 -I,3,9,5,6,5,9,5,3,5,7,6,5,6,6,5,6 -U,9,13,8,7,5,8,5,5,5,6,9,8,5,9,3,8 -U,3,1,4,2,2,6,8,6,7,7,9,9,3,9,1,8 -B,4,8,5,6,6,8,7,7,6,7,6,5,2,8,7,9 -D,4,8,6,6,4,9,6,3,7,11,4,6,3,9,4,9 -S,3,5,5,4,2,8,7,3,7,10,6,7,1,9,5,8 -Z,1,0,1,0,0,8,7,2,9,8,6,8,0,8,5,8 -R,6,11,6,8,4,5,13,8,3,7,2,9,3,7,6,11 -B,5,11,7,8,8,7,8,6,4,6,4,6,5,7,7,7 -U,5,8,5,6,3,3,8,4,6,10,10,9,3,9,1,7 -Q,6,7,6,8,5,7,7,7,5,9,9,9,4,8,7,9 -G,6,10,7,8,5,6,7,7,7,5,7,10,2,7,4,8 -Y,4,10,7,7,3,7,10,1,8,7,12,8,1,11,2,8 -N,2,3,3,1,1,8,8,2,4,11,5,6,4,8,0,7 -Z,4,6,6,4,3,8,6,2,9,11,5,9,1,8,5,9 -N,3,8,4,6,4,7,7,12,1,6,6,8,5,8,0,8 -R,3,8,5,6,3,9,8,4,6,9,3,8,3,6,4,11 -B,2,3,3,2,2,8,7,2,5,10,5,6,2,8,4,9 -I,3,9,4,6,3,7,7,0,7,13,6,8,0,8,1,8 -E,1,1,1,1,1,4,8,5,7,7,6,12,0,8,6,10 -X,2,3,3,2,1,5,8,2,7,10,10,9,2,9,2,6 -F,7,13,6,7,4,8,9,2,5,11,5,4,3,10,7,7 -N,4,7,6,5,3,5,9,3,4,10,8,8,5,9,1,7 -T,9,15,8,8,5,8,8,3,9,12,5,6,3,7,6,6 -U,9,10,9,8,7,5,7,5,9,8,6,9,8,9,6,1 -I,4,9,5,7,3,7,8,2,8,7,6,8,0,7,4,8 -P,4,5,5,6,6,6,8,5,2,7,7,6,6,11,5,7 -H,3,5,4,3,3,7,7,6,6,7,6,8,3,8,4,8 -F,3,6,5,4,4,6,8,6,3,8,6,9,3,10,8,11 -S,4,5,5,7,3,7,6,6,9,5,6,10,0,9,9,8 -A,4,9,7,7,5,8,5,2,4,6,1,5,3,5,4,5 -X,6,9,9,7,4,10,5,2,8,11,1,7,3,8,4,9 -X,2,8,4,6,3,7,7,4,8,6,6,8,3,8,6,8 -A,4,9,6,7,6,8,6,6,4,7,6,9,5,8,7,3 -M,5,9,7,7,8,8,7,6,4,6,7,8,8,6,2,7 -R,4,6,5,4,3,8,9,5,6,8,5,8,3,7,5,10 -L,3,7,4,5,2,5,4,4,9,3,2,6,1,6,2,5 -G,2,4,3,3,2,6,7,5,5,9,7,10,2,8,4,9 -U,9,11,9,8,6,3,8,5,8,11,10,10,3,9,2,6 -U,5,7,5,5,3,4,8,6,6,9,8,9,3,9,3,5 -R,5,11,7,8,5,9,8,4,6,10,3,7,3,7,4,11 -M,6,10,7,8,4,7,7,13,2,7,9,8,9,6,0,8 -J,3,5,5,4,2,9,6,3,6,14,5,10,1,6,0,7 -C,5,9,6,7,3,5,8,7,8,7,8,14,2,9,4,9 -C,1,0,2,0,0,7,7,6,8,7,6,13,0,8,4,10 -O,4,8,5,6,3,8,7,8,4,7,6,6,3,8,3,7 -H,4,6,5,4,3,10,6,4,6,10,3,7,3,8,3,10 -N,6,9,5,5,3,8,11,5,4,4,6,10,6,11,2,6 -C,6,9,7,7,7,6,7,3,4,6,7,10,7,8,6,7 -G,5,7,6,6,7,7,9,5,2,7,7,8,6,11,7,8 -L,5,11,6,8,5,8,4,0,8,9,2,11,2,5,4,9 -I,1,10,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -Q,4,6,6,5,4,7,4,3,4,5,3,7,3,6,4,7 -H,4,2,5,4,4,8,7,6,7,7,6,8,6,8,4,7 -E,3,1,3,3,2,7,7,5,8,7,7,8,2,8,6,9 -V,3,4,4,3,1,4,12,3,3,10,11,7,2,11,1,8 -Y,4,5,6,7,8,7,8,3,2,8,8,9,4,11,8,5 -H,5,5,5,7,3,7,7,15,1,7,7,8,3,8,0,8 -V,6,8,5,6,3,3,12,3,3,10,11,8,2,11,1,8 -J,5,9,6,7,4,10,4,6,5,8,6,5,2,8,4,6 -U,4,4,5,3,2,4,8,5,7,10,9,9,3,9,2,5 -C,3,5,5,4,4,6,7,4,4,6,6,11,4,10,7,11 -V,3,9,5,7,2,7,11,3,4,9,12,8,3,10,1,9 -I,4,7,6,8,6,8,8,5,6,7,5,8,3,9,8,9 -T,1,0,2,0,0,7,14,2,3,7,10,8,0,8,0,8 -F,3,5,5,3,2,6,12,4,5,13,6,2,1,10,2,6 -V,9,14,8,8,5,6,8,4,4,8,8,5,6,12,3,8 -S,1,0,1,1,0,8,7,4,6,5,6,7,0,8,7,8 -W,6,5,8,5,9,8,7,5,5,7,5,8,9,9,7,9 -W,6,9,8,7,7,8,4,6,2,7,6,7,7,7,6,5 -J,2,8,2,6,1,14,3,4,5,12,1,9,0,7,0,8 -T,1,0,2,0,0,7,15,2,4,7,10,8,0,8,0,8 -I,0,0,0,1,0,7,7,4,4,7,6,8,0,8,0,8 -R,6,11,9,8,8,10,7,3,6,10,3,6,3,7,4,10 -I,1,3,2,2,1,7,7,1,7,13,6,8,0,8,1,8 -S,3,3,4,4,2,8,8,6,8,5,6,7,0,8,9,7 -W,5,8,5,6,4,7,10,4,2,8,6,6,6,11,2,6 -F,2,1,3,2,2,5,11,3,5,11,9,5,1,10,3,6 -C,2,0,2,1,0,6,7,6,9,7,6,14,0,8,4,10 -F,3,5,5,4,2,7,10,1,6,13,6,5,3,8,3,7 -U,4,9,5,7,2,7,5,13,5,7,14,8,3,9,0,8 -J,3,9,4,7,1,11,2,11,3,12,9,14,1,6,0,8 -T,3,4,4,6,1,6,15,1,6,8,11,7,0,8,0,8 -N,5,9,7,7,5,4,9,3,4,9,10,9,6,7,1,8 -X,3,8,5,6,3,5,8,2,8,10,10,9,3,9,3,6 -J,5,9,6,6,2,8,3,6,4,14,9,15,1,6,1,6 -O,3,8,4,6,2,7,6,8,7,7,4,8,3,8,4,8 -J,2,4,4,3,1,9,4,4,5,14,6,12,0,7,0,8 -Z,4,5,6,7,4,11,4,4,5,10,3,9,2,7,6,10 -N,7,9,10,7,5,10,8,3,6,11,1,3,5,9,1,7 -P,2,4,4,3,2,7,8,3,4,12,5,4,1,10,2,8 -S,1,3,3,2,1,7,7,3,7,10,5,8,1,8,4,8 -H,4,4,6,3,3,7,7,3,6,10,7,8,5,9,4,8 -T,1,0,2,0,0,7,14,2,3,7,10,8,0,8,0,8 -Y,2,3,4,5,1,7,10,1,3,7,12,8,1,11,0,8 -X,6,10,10,8,5,9,6,1,8,10,3,7,3,8,4,9 -P,4,4,4,6,2,4,12,8,2,10,6,4,1,10,4,8 -A,4,7,5,5,5,7,6,8,4,7,5,8,4,8,10,2 -P,4,6,6,4,3,6,11,5,3,11,5,3,1,10,3,8 -F,2,5,4,4,2,8,9,2,6,13,5,5,1,9,2,8 -Z,1,1,2,2,0,7,7,2,11,9,6,8,0,8,6,8 -C,4,5,5,4,2,4,9,5,8,12,10,12,1,8,2,7 -H,6,7,9,5,5,9,6,3,7,10,5,8,3,8,3,8 -M,10,11,10,6,5,7,11,5,5,4,4,10,9,10,2,7 -N,4,5,5,8,3,7,7,14,2,4,6,8,6,8,0,8 -R,2,6,3,4,3,5,10,7,3,7,4,9,2,6,4,11 -X,4,9,5,6,1,7,7,5,4,7,6,8,3,8,4,8 -W,4,7,7,5,5,9,12,2,2,6,8,8,8,13,1,7 -P,4,9,6,6,3,4,13,5,4,13,6,2,0,9,4,7 -P,6,6,6,8,3,3,14,8,1,11,6,3,1,10,4,8 -S,6,10,8,7,5,8,8,3,7,10,5,7,2,8,5,8 -F,3,8,3,6,2,1,11,3,4,11,11,9,0,8,2,7 -Z,3,5,5,4,3,7,8,2,9,12,6,8,1,8,5,7 -M,6,10,6,8,4,7,7,12,2,7,9,8,9,6,0,8 -K,7,13,7,8,4,6,7,3,6,9,9,10,6,10,3,7 -I,6,8,7,6,4,5,6,3,7,7,6,12,0,9,4,8 -V,3,5,4,3,1,4,12,3,3,10,11,7,2,10,1,8 -J,6,10,5,7,3,7,10,2,3,12,5,5,2,8,7,9 -R,4,8,7,7,7,6,8,4,3,6,5,9,8,7,6,9 -U,5,4,6,7,2,7,4,14,6,7,15,8,3,9,0,8 -Z,5,10,5,5,3,5,8,2,9,11,8,8,3,6,6,5 -W,4,2,5,3,3,5,11,3,2,8,9,9,7,10,1,8 -W,7,7,7,5,4,4,10,3,3,10,9,8,7,11,2,6 -Q,4,7,6,5,5,8,5,7,4,6,7,9,3,7,6,9 -P,6,9,5,4,2,5,12,5,1,12,6,4,4,10,3,8 -M,3,1,4,3,3,6,6,6,4,7,7,10,7,5,2,9 -E,3,5,5,4,5,7,6,4,3,7,6,9,5,10,7,12 -U,5,7,5,5,3,4,8,5,7,9,8,9,4,8,3,4 -G,4,7,4,5,2,6,7,6,5,9,8,10,2,8,4,9 -Z,4,10,6,8,4,6,9,2,9,11,8,7,2,10,7,6 -L,5,8,7,7,6,7,7,4,5,6,7,9,3,9,8,7 -F,3,5,5,3,2,6,12,3,5,13,7,3,1,10,2,6 -M,2,3,3,1,2,8,7,6,3,6,7,8,6,5,1,7 -J,4,11,5,8,3,9,7,2,7,15,4,8,0,6,1,7 -D,2,6,3,4,2,5,7,10,7,7,6,5,3,8,3,8 -X,4,9,6,7,4,8,7,4,9,6,7,8,4,6,8,9 -U,3,5,4,4,4,8,6,5,4,6,6,8,3,9,1,7 -V,4,6,6,5,6,7,7,5,4,7,6,8,6,9,7,8 -Q,4,9,5,11,7,8,6,8,4,5,6,7,4,8,6,10 -J,2,7,4,5,4,8,8,3,3,8,5,6,4,8,5,4 -S,2,7,3,5,2,6,7,5,8,6,7,11,0,9,8,7 -B,2,3,4,2,2,9,7,2,5,11,5,7,2,8,4,9 -N,4,7,4,5,2,7,7,14,2,5,6,8,6,8,0,8 -F,2,5,4,4,2,5,12,3,5,13,7,4,1,9,2,6 -Z,4,7,6,9,4,11,4,2,6,9,2,6,1,8,6,9 -S,5,9,6,6,4,6,8,4,6,10,9,8,2,8,5,5 -P,2,1,2,1,1,5,11,7,2,9,6,4,1,9,3,8 -H,4,5,7,4,4,8,6,3,6,10,5,8,5,7,4,8 -O,3,4,4,3,2,8,7,7,4,9,6,8,2,8,3,8 -H,5,7,8,5,5,7,7,3,6,10,7,8,3,9,3,7 -Q,5,10,6,9,5,8,8,8,5,5,8,10,4,7,6,8 -L,5,10,7,8,5,8,4,1,7,9,2,9,1,6,3,9 -X,4,6,7,4,3,7,7,2,8,10,7,9,3,8,3,7 -F,4,8,6,6,4,4,11,2,6,11,10,6,1,10,3,6 -Q,2,6,3,5,3,7,7,8,6,5,4,6,2,8,3,7 -L,1,0,1,0,0,2,1,6,4,0,3,4,0,8,0,8 -P,5,10,7,8,6,8,10,7,4,10,4,3,3,11,4,8 -Z,2,4,4,3,1,8,6,2,10,11,5,9,1,8,6,9 -J,0,0,1,0,0,12,4,4,3,11,4,11,0,7,0,8 -D,1,1,2,1,1,6,7,8,6,6,6,6,2,8,3,8 -K,4,6,6,4,4,7,8,4,8,7,5,7,3,8,5,8 -T,3,9,5,6,1,5,15,1,6,9,11,7,0,8,0,8 -C,6,9,7,7,7,8,5,6,3,7,8,11,8,9,5,4 -U,2,3,3,2,1,6,8,6,6,7,9,9,3,9,0,8 -Z,4,4,4,6,2,7,7,4,14,9,6,8,0,8,8,8 -F,6,11,10,8,10,6,10,1,5,10,7,5,6,10,5,2 -M,4,4,5,3,4,9,6,6,4,6,7,5,9,5,3,6 -Y,1,0,1,0,0,8,10,1,3,6,11,8,1,11,0,8 -Q,4,8,5,10,7,8,6,8,3,6,5,9,3,9,5,10 -O,7,10,7,8,7,7,8,8,4,10,7,8,3,8,3,8 -X,7,9,7,5,3,8,7,2,8,9,6,8,4,10,4,8 -B,3,7,4,5,4,9,7,3,5,7,6,7,3,9,4,8 -O,9,13,6,7,4,6,6,7,4,10,7,9,5,9,5,8 -U,4,11,5,8,4,7,6,12,4,7,12,8,3,9,0,8 -U,5,11,6,8,5,6,9,5,6,6,9,10,5,11,1,8 -Y,6,11,9,8,5,7,10,1,8,6,12,9,4,10,3,7 -B,1,3,2,2,1,8,7,3,5,10,5,7,2,8,4,9 -D,5,11,7,8,5,11,5,4,7,10,2,6,3,8,3,9 -Q,4,9,6,8,5,8,9,7,4,6,9,9,3,8,7,10 -Y,3,5,6,7,1,9,10,3,2,6,13,8,2,11,0,8 -G,2,6,3,4,2,7,7,7,6,6,6,8,2,7,6,11 -E,4,8,6,7,7,5,8,4,4,8,7,9,5,11,9,11 -N,3,4,5,3,2,7,9,2,4,10,6,7,5,8,0,7 -V,4,8,6,6,3,8,12,2,3,5,11,9,5,11,3,6 -U,1,0,2,1,0,8,6,11,4,7,12,8,3,10,0,8 -K,5,9,7,7,6,10,6,1,6,10,3,8,4,9,4,11 -V,3,8,5,6,2,7,11,3,4,6,12,8,3,10,1,8 -L,8,13,8,8,5,7,4,3,5,11,6,12,4,6,7,8 -F,4,10,4,7,2,1,13,5,3,12,10,6,0,8,3,6 -Z,2,1,2,1,1,7,7,3,11,8,6,8,0,8,6,8 -I,2,7,3,5,1,6,8,1,8,14,7,7,0,8,1,7 -D,6,8,8,6,5,7,9,8,6,9,7,5,5,9,4,9 -X,3,7,4,5,2,7,7,4,4,7,6,8,2,8,4,8 -X,3,6,5,4,3,8,7,3,8,5,6,8,2,8,6,8 -G,2,1,4,3,2,6,7,6,6,6,6,10,2,8,3,9 -Y,5,10,7,8,3,8,10,3,2,6,12,8,2,11,0,8 -E,2,1,2,3,2,7,7,5,6,7,6,9,2,8,5,10 -D,3,7,5,5,6,9,8,4,4,7,6,5,4,9,7,5 -X,3,7,4,4,1,7,7,4,4,7,6,8,3,8,4,8 -N,6,7,8,6,8,8,8,5,5,8,5,6,6,9,7,3 -P,3,6,5,9,7,8,13,3,1,9,8,6,4,11,2,7 -F,5,9,8,7,8,10,7,1,5,9,5,5,6,10,5,8 -F,4,7,6,5,6,6,9,1,4,10,7,7,5,10,3,4 -R,1,3,2,1,1,7,8,4,4,7,5,6,2,7,3,8 -P,5,9,6,6,6,7,9,4,6,8,7,4,5,10,4,7 -A,1,0,2,0,0,7,4,2,0,7,2,8,2,7,1,8 -X,3,5,4,3,2,7,7,3,9,6,6,8,3,8,6,7 -A,7,14,7,8,6,10,3,5,2,10,5,12,7,1,6,11 -L,3,9,3,7,2,0,2,3,6,1,0,8,0,8,0,8 -Y,4,11,6,8,3,10,10,1,3,6,12,8,1,11,0,8 -P,5,10,7,8,6,6,9,2,7,9,8,4,4,10,4,7 -W,1,0,2,0,0,7,8,3,0,7,8,8,5,9,0,8 -B,4,3,4,5,3,6,9,8,7,7,5,6,2,8,9,9 -Y,4,5,5,3,2,4,11,2,7,12,10,5,1,11,2,4 -K,5,9,7,6,6,5,7,1,6,9,8,10,4,7,3,8 -I,4,11,3,6,2,10,5,4,4,12,3,7,3,8,5,10 -S,4,8,5,6,4,8,7,5,8,5,6,7,0,8,8,8 -I,1,5,0,8,0,7,7,4,4,7,6,8,0,8,0,8 -J,2,11,3,8,3,10,7,1,6,11,3,7,1,6,2,6 -X,3,1,5,3,2,8,7,4,9,6,6,8,2,8,6,8 -H,11,14,11,8,8,6,9,3,5,10,5,9,7,6,5,6 -G,7,11,7,8,6,6,6,6,6,10,7,12,2,10,4,10 -Y,5,7,5,5,2,2,12,4,5,13,11,6,1,11,1,6 -Y,1,0,2,0,0,8,10,3,1,6,12,8,1,11,0,8 -N,9,15,8,8,4,8,10,5,4,5,6,10,7,12,2,6 -D,5,9,6,7,5,7,7,8,8,6,5,4,4,9,4,9 -Q,5,5,7,8,9,8,8,5,1,6,6,10,7,13,7,13 -T,4,10,5,8,4,7,12,5,6,7,11,8,3,12,1,7 -Q,2,6,3,4,2,8,8,8,5,5,8,9,3,8,5,10 -O,6,9,8,8,7,6,6,5,4,6,3,6,4,9,7,7 -A,10,14,8,8,4,11,1,3,0,10,4,11,3,4,4,10 -O,3,4,4,6,2,7,7,9,6,7,6,8,3,8,4,8 -E,5,11,7,8,5,7,7,1,9,10,6,9,2,8,5,8 -C,4,6,5,4,5,7,6,4,3,7,7,11,5,9,3,9 -A,7,11,7,6,5,10,3,5,2,10,5,11,7,2,6,10 -C,4,11,5,8,4,5,8,8,6,10,8,13,3,12,5,8 -F,5,7,6,5,6,8,6,5,4,7,6,8,6,9,6,10 -A,3,8,5,6,4,11,2,2,2,9,2,9,3,6,3,8 -F,3,9,4,6,1,1,13,5,4,12,10,6,0,8,2,6 -D,4,8,5,6,4,10,5,2,6,11,4,7,3,7,3,9 -L,1,0,2,1,0,2,1,6,4,0,2,5,0,8,0,8 -F,4,7,5,5,3,6,10,4,5,12,7,5,2,9,2,6 -U,5,9,5,6,2,7,4,14,6,7,14,8,3,9,0,8 -P,5,9,8,7,4,7,9,6,5,11,5,4,2,10,4,8 -C,3,8,4,6,3,5,8,8,7,10,8,13,2,10,4,9 -Q,5,9,5,4,3,11,3,3,6,11,3,9,3,8,6,13 -J,3,7,5,5,3,8,6,4,5,8,6,7,2,7,4,6 -K,4,8,6,6,6,7,8,5,4,7,6,7,7,7,6,11 -P,8,10,6,5,3,6,11,5,3,12,4,4,4,10,4,8 -V,5,11,8,8,4,6,11,2,4,8,12,9,3,10,2,8 -G,3,2,4,4,3,7,7,6,6,7,6,10,3,8,4,9 -E,1,1,1,2,1,4,8,5,8,7,6,13,0,8,6,9 -T,2,6,3,4,2,6,12,3,6,8,11,8,2,11,1,7 -N,4,6,6,6,6,6,9,5,3,6,4,8,7,8,4,9 -Z,4,11,6,8,4,6,9,3,10,11,9,6,1,9,6,6 -U,5,9,5,4,3,7,6,4,5,6,7,8,5,6,3,7 -Y,3,9,5,6,1,6,10,2,2,8,12,8,1,11,0,8 -Z,6,10,9,8,7,9,9,5,4,7,5,7,3,9,10,5 -Y,2,4,3,2,1,4,11,2,6,11,10,5,1,11,2,5 -H,9,12,9,6,4,7,8,5,4,9,10,9,7,10,5,9 -B,5,10,8,8,6,9,7,3,7,10,4,6,2,8,6,11 -Z,4,8,5,6,2,7,7,4,15,9,6,8,0,8,8,8 -J,5,10,6,7,2,8,6,3,7,15,5,9,0,6,1,7 -Z,5,8,7,6,4,8,7,2,9,12,5,8,2,8,6,8 -X,4,4,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -R,2,3,3,2,2,6,7,4,5,6,5,6,5,7,3,8 -T,5,7,6,5,6,7,8,4,6,7,7,9,5,8,6,5 -B,3,6,4,4,4,7,7,4,6,7,6,6,2,8,5,10 -T,8,11,8,8,6,7,11,4,8,11,9,4,6,12,6,5 -Z,4,7,6,5,4,6,9,2,9,11,8,6,1,8,6,6 -Z,5,6,4,9,4,6,11,3,3,12,7,6,2,7,9,3 -Z,2,0,2,1,1,7,7,3,11,8,6,8,0,8,7,8 -H,2,6,4,4,5,7,9,5,2,7,6,7,5,6,6,6 -B,6,11,6,8,7,7,8,9,6,6,5,7,2,8,8,9 -J,4,11,6,8,4,9,6,3,6,14,4,9,0,6,1,7 -R,3,3,4,4,2,5,10,8,4,7,4,8,2,7,6,11 -O,4,8,6,7,5,7,6,5,5,9,5,8,3,6,5,6 -F,3,8,3,6,2,1,11,3,5,11,11,9,0,8,2,7 -M,2,0,2,0,1,7,6,10,0,7,9,8,6,6,0,8 -L,4,7,5,5,6,7,7,3,5,6,7,11,6,11,6,5 -N,3,6,5,4,3,8,9,3,4,10,5,6,5,8,1,7 -T,3,4,4,6,1,8,15,1,6,6,11,9,0,8,0,8 -L,6,13,5,8,3,8,3,3,5,12,4,12,2,7,6,8 -O,5,8,7,7,5,7,5,4,5,8,4,8,3,7,4,7 -M,7,7,9,5,7,5,7,3,5,10,9,10,9,5,4,8 -N,1,0,1,1,0,7,7,10,0,5,6,8,4,8,0,8 -H,3,4,5,3,3,6,8,3,5,10,9,9,3,7,3,6 -V,1,1,2,1,0,7,9,4,2,7,13,8,2,10,0,8 -A,4,8,5,6,4,8,3,1,2,6,2,8,2,6,2,6 -C,2,5,3,3,1,4,8,5,6,11,9,12,1,9,2,7 -W,12,14,12,8,7,4,8,2,4,8,10,8,10,11,2,5 -P,4,7,6,5,3,7,10,3,6,14,5,2,0,10,3,9 -B,3,1,3,2,3,7,7,5,6,7,6,6,4,8,5,10 -Y,1,1,3,1,1,8,11,1,6,6,11,8,1,11,1,8 -O,6,10,6,8,5,7,7,8,5,10,6,8,3,8,3,8 -T,3,9,4,6,3,10,11,3,7,4,12,8,2,12,1,8 -I,1,5,1,4,1,7,7,1,8,7,6,8,0,8,3,8 -F,3,6,4,4,4,6,8,5,4,7,5,9,3,10,8,10 -W,5,7,6,5,6,7,8,6,3,8,8,7,7,9,4,9 -K,6,8,8,6,4,8,7,2,7,10,3,8,4,7,4,9 -Q,4,7,5,6,2,8,6,8,6,6,6,8,3,8,4,8 -E,5,10,7,8,6,7,8,2,7,11,6,9,3,8,4,9 -O,4,8,6,6,4,8,7,8,4,7,7,8,3,8,3,8 -G,3,4,4,6,2,8,8,8,7,6,7,8,2,7,6,11 -H,5,9,7,6,5,7,6,7,5,5,4,9,3,7,6,9 -P,6,7,8,9,10,9,9,3,2,6,8,7,6,10,6,4 -O,2,2,3,3,2,8,7,7,4,7,6,9,2,8,3,8 -R,3,8,5,6,4,10,7,3,6,10,3,7,3,7,2,10 -O,1,0,1,0,0,7,7,7,4,7,6,8,2,8,3,8 -R,5,9,7,6,7,9,7,6,3,8,5,6,5,6,8,10 -W,4,8,6,6,3,7,8,4,1,7,8,8,8,9,0,8 -X,3,4,4,5,1,7,7,4,4,7,6,8,3,8,4,8 -N,3,5,5,4,2,6,8,3,4,10,7,8,5,8,1,8 -A,5,10,7,8,4,8,2,2,3,6,2,7,5,7,5,8 -X,1,0,1,0,0,7,7,3,5,7,6,8,2,8,4,7 -I,2,7,4,5,4,10,6,2,5,8,5,5,3,8,5,6 -K,3,8,4,6,3,3,8,6,3,6,4,11,3,8,3,11 -Z,4,6,6,4,4,9,11,6,5,6,5,9,3,8,9,6 -T,2,3,4,4,1,9,15,1,5,5,11,9,0,8,0,8 -E,3,9,3,7,2,2,7,6,10,7,7,15,0,8,7,7 -N,7,12,8,6,4,5,9,5,4,13,11,9,6,9,0,9 -B,8,15,8,8,8,7,8,5,5,9,7,8,8,5,10,7 -C,2,3,2,2,1,6,8,6,7,8,7,13,1,9,3,10 -R,3,6,5,5,6,6,8,3,3,6,5,9,6,7,5,9 -I,6,12,4,6,2,11,3,4,6,11,2,7,3,8,3,12 -X,4,11,5,8,4,7,7,4,4,7,6,8,2,8,4,8 -E,3,8,3,6,4,3,7,5,9,7,7,14,0,8,6,9 -T,4,7,4,5,3,6,11,4,5,11,9,5,2,12,2,5 -X,3,7,5,6,5,9,7,2,4,8,6,6,3,9,7,7 -D,5,11,5,8,3,6,7,11,10,7,6,6,3,8,4,8 -W,8,9,12,8,13,7,7,5,5,7,5,8,10,9,9,7 -X,5,11,8,8,4,10,7,2,9,11,1,6,3,8,4,9 -H,3,2,4,3,3,6,7,6,6,7,6,8,6,8,3,8 -V,1,0,2,0,0,8,9,3,1,6,12,8,2,11,0,8 -H,5,9,6,5,4,8,7,3,5,10,4,8,5,7,4,7 -O,5,10,6,8,9,7,8,5,1,7,6,7,11,11,9,12 -R,3,7,4,5,2,5,10,8,4,7,4,8,3,7,6,11 -X,3,10,4,7,1,7,7,4,4,7,6,8,3,8,4,8 -O,3,6,4,4,3,7,7,7,4,6,5,7,3,8,3,7 -D,5,8,7,6,5,7,7,8,5,7,7,4,4,8,4,8 -F,3,8,3,5,1,1,13,4,3,12,10,6,0,8,2,6 -A,3,7,6,5,3,12,3,3,3,11,1,8,2,6,2,9 -P,3,6,6,4,3,9,8,3,5,12,4,4,1,10,3,9 -E,4,10,4,7,3,3,6,6,11,7,7,15,0,8,7,7 -O,4,3,5,4,2,8,7,8,7,6,6,9,3,8,4,8 -L,3,2,4,4,2,4,4,4,8,2,1,7,0,7,1,6 -O,5,9,6,7,3,7,6,9,8,7,5,8,3,8,4,8 -T,2,1,3,2,1,7,12,3,6,7,11,8,2,11,1,8 -J,2,4,4,3,1,8,8,1,6,14,5,7,0,7,0,8 -Q,5,7,6,9,6,8,7,6,3,8,7,9,3,9,6,9 -D,5,9,6,6,6,7,7,8,6,6,5,4,4,8,4,8 -C,4,8,6,6,4,5,7,6,8,6,6,13,1,7,4,9 -E,3,4,3,3,3,7,7,5,8,7,6,9,2,8,6,9 -N,4,5,7,4,3,7,9,3,5,11,6,6,6,8,1,7 -K,3,4,4,2,2,5,7,4,7,7,6,10,6,8,4,9 -Q,3,5,5,4,3,10,4,3,4,9,3,8,3,7,3,9 -L,2,5,4,3,2,7,3,1,7,9,2,10,0,7,2,9 -I,4,12,3,6,2,11,5,4,4,12,3,7,3,8,5,10 -T,2,5,4,6,1,7,14,0,6,7,11,8,0,8,0,8 -Y,1,0,2,0,0,7,10,3,1,7,12,8,1,11,0,8 -E,4,10,6,8,6,6,8,6,9,6,4,10,2,8,6,9 -U,9,11,9,8,4,3,10,6,8,13,12,9,3,9,1,6 -E,3,4,4,6,2,3,6,6,11,7,7,15,0,8,7,7 -J,1,1,1,1,0,12,3,6,4,13,4,11,0,7,0,8 -B,4,9,4,7,6,6,8,8,5,7,5,7,2,8,7,9 -F,0,0,1,0,0,3,11,4,2,11,8,6,0,8,2,8 -N,5,4,5,6,2,7,7,15,2,4,6,8,6,8,0,8 -P,4,9,6,7,5,5,10,3,6,10,9,5,1,10,4,7 -T,2,4,3,3,1,4,11,2,7,11,10,5,0,10,1,5 -D,3,4,5,3,3,8,7,6,6,9,5,6,3,8,4,9 -P,3,1,3,2,2,5,10,4,4,10,8,4,0,9,4,7 -Q,4,9,6,8,3,8,7,9,6,6,6,9,3,8,5,9 -S,9,15,9,8,4,8,4,5,6,13,6,10,3,8,3,8 -E,5,7,7,5,5,7,8,2,8,11,7,8,3,8,5,8 -S,1,1,2,2,0,8,7,4,7,4,6,7,0,8,7,8 -S,7,10,8,8,4,6,9,4,9,11,7,6,2,7,5,4 -S,4,8,5,6,4,7,7,5,7,5,6,9,0,8,8,8 -X,2,3,4,2,1,9,6,2,8,10,3,7,2,8,2,8 -J,3,9,5,7,3,7,6,3,6,15,6,11,1,6,1,7 -F,4,9,6,6,4,5,10,2,8,10,9,6,4,10,4,6 -H,1,0,1,0,0,7,8,10,1,7,5,8,2,8,0,8 -G,4,8,6,6,4,6,6,6,6,7,5,11,3,10,4,9 -H,5,5,5,7,3,7,8,15,1,7,5,8,3,8,0,8 -S,5,5,6,8,3,8,7,6,9,4,6,8,0,8,9,8 -T,7,9,7,7,3,5,12,3,10,12,10,3,1,11,3,4 -B,6,10,8,8,7,7,7,6,6,9,7,6,3,8,8,9 -M,9,13,11,8,6,10,2,2,3,9,3,9,7,2,1,9 -N,6,11,7,8,6,7,7,13,1,6,6,8,6,8,0,8 -C,4,11,5,8,4,5,8,8,7,10,9,13,2,10,4,10 -T,4,5,5,4,2,5,12,3,7,11,10,4,1,11,2,4 -Y,6,8,6,6,3,4,10,2,8,9,10,5,2,12,4,3 -F,1,0,1,0,0,3,12,4,2,11,8,6,0,8,2,7 -R,3,4,4,3,3,7,8,4,5,6,5,7,2,6,4,8 -N,3,7,4,5,2,7,7,14,2,5,6,8,5,8,0,8 -G,2,1,2,1,1,8,6,6,5,6,5,9,1,7,5,10 -Q,6,11,6,6,4,10,5,4,6,11,4,8,3,8,8,11 -J,2,7,2,5,1,11,3,10,3,12,7,13,1,6,0,8 -N,7,10,9,8,6,6,9,2,4,9,8,8,7,7,2,7 -P,5,11,5,8,6,5,10,9,4,8,6,5,2,10,3,8 -C,4,6,5,4,5,5,7,4,5,7,6,9,5,11,3,8 -U,8,13,7,7,5,8,6,5,4,5,6,7,5,6,3,5 -K,4,7,6,6,5,9,5,2,3,8,4,9,4,7,6,12 -V,4,11,7,8,3,7,12,3,4,6,12,9,3,10,1,8 -Q,7,12,6,7,4,9,4,4,7,10,4,9,3,8,8,11 -E,5,12,4,6,3,6,9,4,4,10,6,9,3,8,7,9 -F,3,2,4,3,2,6,10,4,5,10,9,5,2,9,3,6 -J,2,4,4,3,1,8,6,3,6,14,6,10,0,7,0,7 -Y,5,9,7,7,6,9,5,7,5,7,9,8,3,9,8,4 -Z,2,1,2,1,1,8,7,5,9,6,6,8,1,8,6,8 -G,7,13,6,7,3,9,6,5,6,11,4,8,5,7,5,8 -I,3,9,5,6,6,10,6,2,5,8,5,5,3,8,5,7 -Y,3,8,4,5,1,8,10,2,3,5,12,8,1,10,0,8 -B,2,5,4,3,3,8,8,3,5,10,5,6,3,7,5,9 -O,1,0,1,0,0,8,7,6,4,7,6,8,2,8,2,8 -B,6,9,8,6,7,10,6,3,6,10,3,7,4,7,5,12 -G,3,4,4,6,2,7,6,8,7,6,6,10,1,7,6,11 -A,3,8,5,5,2,6,4,3,1,6,1,8,2,7,2,7 -H,3,7,5,5,5,6,7,6,6,7,6,10,3,8,3,9 -Z,3,9,4,7,2,7,7,4,14,10,6,8,0,8,8,8 -I,1,3,1,2,1,7,7,1,7,7,6,8,0,8,2,8 -Y,6,9,8,7,8,9,7,6,4,6,8,8,3,9,8,4 -Q,4,6,4,7,4,7,11,4,3,6,10,11,3,10,6,8 -H,6,11,8,8,9,6,7,6,7,7,7,10,6,8,4,9 -M,11,12,11,6,5,7,10,5,4,4,5,11,11,13,2,7 -Y,1,0,2,0,0,7,10,3,1,7,12,8,1,11,0,8 -S,3,5,4,3,3,8,7,7,5,7,7,8,2,8,9,8 -O,1,3,2,1,1,7,7,5,3,9,6,8,2,8,2,8 -L,4,8,6,6,7,8,7,3,5,6,7,9,6,10,7,5 -P,4,8,5,6,4,4,11,4,6,11,9,5,0,10,3,7 -A,4,8,6,6,4,8,3,2,2,6,2,7,2,6,2,7 -U,3,8,5,7,5,7,7,4,3,6,6,8,6,8,1,8 -R,8,14,8,8,6,8,8,3,5,9,4,8,6,6,7,7 -A,3,6,5,4,3,8,6,2,4,8,2,5,2,6,2,7 -U,3,6,4,4,3,8,8,8,5,6,7,9,3,8,4,6 -N,5,10,7,8,5,7,8,5,5,7,7,7,6,7,3,7 -U,2,2,3,3,1,7,8,7,7,8,10,7,3,9,1,8 -U,3,3,3,1,1,6,8,5,7,8,7,8,3,10,2,5 -B,4,4,5,7,4,6,6,9,7,6,6,7,2,8,9,10 -O,6,10,7,8,6,7,8,7,4,10,7,7,5,9,4,9 -H,7,9,10,7,6,9,6,3,6,10,5,7,3,8,3,8 -J,1,1,1,1,0,12,4,6,4,13,4,10,0,7,0,8 -J,2,9,3,7,1,14,3,6,5,14,1,9,0,7,0,8 -I,2,5,0,7,0,7,7,4,4,7,6,8,0,8,0,8 -G,3,3,4,5,2,7,8,8,7,6,7,7,2,7,6,11 -P,3,5,4,4,2,6,10,6,4,9,7,2,1,10,4,6 -H,4,7,6,5,4,7,7,3,6,10,5,9,3,8,3,9 -G,5,11,7,8,6,7,6,7,8,6,5,8,2,10,8,12 -U,6,8,8,6,6,8,8,8,5,5,7,10,3,8,4,6 -U,6,11,6,6,4,6,5,6,5,6,9,9,5,9,3,10 -W,8,12,8,6,4,2,9,2,2,10,11,9,8,10,0,7 -Q,3,5,4,6,3,8,7,7,2,5,7,10,3,8,6,9 -E,2,6,2,4,2,3,6,6,10,7,7,14,0,8,7,8 -P,6,9,8,6,5,9,8,5,6,12,4,4,5,9,5,7 -M,3,3,4,2,2,8,6,6,3,6,7,8,6,6,1,7 -J,3,8,4,6,2,10,6,1,6,13,3,7,0,7,0,8 -T,5,10,6,8,7,8,7,4,7,7,6,9,5,7,5,7 -L,1,4,3,3,1,6,4,1,7,8,2,10,0,7,2,8 -S,4,11,5,8,4,8,7,8,7,8,5,7,2,8,9,8 -N,4,7,6,5,4,7,9,6,6,7,6,6,6,8,1,6 -P,3,6,4,4,2,5,11,9,3,9,6,5,1,10,4,8 -D,3,3,3,4,2,5,7,10,8,7,6,6,3,8,4,8 -X,6,10,9,7,4,8,6,1,9,10,4,8,3,8,4,8 -M,3,3,5,2,2,5,6,4,3,10,10,10,6,5,2,7 -A,4,11,6,8,5,7,4,2,1,7,1,8,2,7,2,7 -T,7,10,7,8,4,6,12,4,8,12,9,3,2,12,3,4 -L,4,8,5,6,3,7,3,2,8,7,2,8,1,6,2,7 -W,6,12,7,6,5,8,8,3,3,6,9,7,10,10,3,6 -P,4,6,5,9,8,8,9,4,0,8,7,6,5,10,5,7 -Q,4,9,5,8,3,7,6,8,6,6,7,7,3,8,6,9 -T,5,7,5,5,3,6,11,3,6,11,9,5,3,11,3,4 -L,3,6,4,4,2,4,5,2,8,3,2,7,0,7,1,6 -E,3,4,5,3,2,7,7,2,8,11,6,9,2,8,4,9 -W,4,7,6,5,3,8,8,4,1,7,8,8,8,9,0,8 -C,10,14,8,8,6,7,8,4,4,9,8,10,4,9,9,11 -K,7,9,8,5,4,5,8,4,6,10,11,11,6,12,4,7 -M,3,6,4,4,2,8,6,11,1,6,9,8,7,6,0,8 -T,5,9,7,7,6,7,6,7,7,6,7,9,4,11,6,8 -E,3,6,5,6,5,6,8,4,3,7,7,10,4,10,7,12 -T,6,8,6,6,3,4,12,2,9,12,9,5,0,10,2,4 -P,2,4,3,3,2,5,10,4,4,10,8,5,0,10,3,7 -V,4,9,6,7,7,8,6,4,2,8,7,8,8,9,4,7 -J,1,1,2,1,0,11,6,2,6,12,3,8,0,7,0,8 -E,3,4,4,3,3,7,7,5,8,7,6,8,2,8,6,9 -C,4,6,5,4,5,7,7,4,3,6,8,10,5,11,3,8 -R,5,8,7,6,7,8,8,7,3,7,4,6,5,7,7,8 -T,3,10,5,7,3,9,12,3,7,5,12,8,2,12,1,8 -U,4,5,5,4,3,6,8,5,7,7,10,10,3,9,1,8 -W,6,7,8,6,10,7,7,5,5,7,5,8,10,8,8,8 -T,4,10,5,7,3,8,14,1,5,6,10,9,0,8,0,8 -X,4,10,6,8,4,7,7,4,9,6,6,8,3,8,7,7 -R,3,5,5,4,5,7,8,3,3,7,5,8,6,8,4,8 -Y,1,1,3,2,1,6,10,1,6,8,11,8,1,11,2,8 -K,5,9,5,4,2,7,7,3,6,9,8,9,6,11,3,7 -M,8,9,11,8,12,7,9,4,4,7,5,8,12,6,6,7 -Z,5,10,6,8,3,7,7,4,15,9,6,8,0,8,8,8 -V,5,8,5,6,2,2,12,5,4,12,12,7,3,10,1,8 -G,4,4,5,6,3,7,5,7,8,6,5,8,2,8,6,11 -L,3,7,5,5,2,6,3,3,8,6,2,8,1,6,3,7 -A,3,11,5,8,4,12,3,3,3,10,2,9,2,7,3,9 -Q,6,11,6,6,3,7,6,4,8,9,5,9,3,7,9,10 -X,9,14,8,8,4,9,6,3,8,9,4,7,5,8,5,9 -G,2,4,3,3,2,7,7,5,5,6,6,9,2,8,4,9 -A,2,2,4,4,2,8,2,1,2,7,2,8,2,7,3,7 -A,3,7,4,5,2,7,4,2,0,6,2,8,2,7,1,7 -O,3,6,4,4,3,8,8,7,4,7,7,8,3,8,2,8 -I,1,5,1,4,1,8,7,1,7,7,6,7,0,8,3,7 -L,3,5,5,4,2,7,4,1,8,8,2,10,0,7,2,8 -X,3,7,5,5,3,8,8,3,8,6,6,7,3,8,6,8 -M,5,10,6,8,4,7,7,12,2,7,9,8,9,6,0,8 -Z,2,5,3,4,2,7,7,5,9,6,6,8,1,8,7,8 -J,3,7,5,5,4,10,5,2,6,8,5,5,3,7,5,7 -V,5,11,8,8,10,8,5,5,2,8,8,8,6,9,4,8 -V,5,9,4,4,2,9,10,4,4,6,10,6,4,11,3,7 -L,3,7,4,5,2,4,4,3,10,2,1,7,0,7,2,5 -H,5,7,8,5,6,5,9,3,6,10,8,8,3,8,3,6 -C,5,4,6,6,2,6,7,7,11,8,6,13,1,9,4,8 -X,3,5,5,3,2,5,9,2,8,11,10,9,2,9,3,6 -Y,5,7,5,5,2,3,10,2,7,11,11,6,1,11,2,5 -D,4,8,6,6,4,7,8,7,7,10,6,5,3,8,4,7 -U,9,11,9,8,6,3,8,5,8,10,9,10,3,9,2,6 -I,5,12,5,6,3,6,11,3,5,13,6,4,1,8,5,8 -Q,1,1,2,1,1,8,7,6,3,6,6,8,2,8,3,8 -J,2,5,3,3,1,10,6,2,6,12,4,9,1,6,1,7 -G,4,9,6,6,6,7,7,6,3,7,6,9,5,7,7,7 -U,4,4,5,3,2,5,8,5,7,10,9,8,3,9,2,5 -X,7,11,11,8,7,4,8,2,9,10,11,9,5,8,5,4 -P,4,6,5,4,4,8,5,6,5,7,6,7,2,9,7,9 -T,2,3,3,2,1,5,12,3,7,11,9,5,1,10,2,5 -T,5,11,6,8,8,6,8,4,5,6,6,9,6,7,6,7 -Y,4,10,6,7,1,9,11,3,2,5,13,8,1,11,0,8 -G,5,10,6,7,4,6,7,7,7,10,7,11,2,10,4,9 -K,7,14,8,8,5,9,6,3,5,11,3,7,5,7,4,8 -S,4,8,5,6,6,9,9,5,4,8,4,6,4,9,9,7 -N,4,10,6,8,5,8,8,6,5,7,6,6,6,9,2,6 -M,4,3,4,5,3,7,7,12,1,7,9,8,8,6,0,8 -G,2,3,3,2,1,7,7,5,5,10,7,10,2,9,4,10 -L,2,3,2,2,1,5,4,5,6,2,2,5,1,7,1,6 -X,3,9,4,6,1,7,7,4,4,7,6,8,3,8,4,8 -L,3,4,3,6,1,0,1,5,6,0,0,7,0,8,0,8 -V,6,11,6,6,3,7,9,3,4,8,9,6,5,9,3,6 -P,4,9,6,6,4,7,9,3,4,12,5,4,2,9,3,8 -K,3,1,5,3,3,6,7,4,8,7,6,11,3,8,5,9 -W,4,10,6,8,7,8,7,6,2,7,8,8,9,7,4,9 -Q,2,0,2,1,1,8,7,6,3,6,6,9,2,8,3,8 -Q,2,2,3,3,2,8,8,6,1,5,6,9,2,9,5,10 -Q,4,8,6,7,5,8,8,7,5,6,7,9,3,8,4,9 -S,3,6,5,4,5,6,7,3,2,8,6,6,2,7,10,1 -H,3,8,5,6,4,8,8,7,7,7,5,7,3,8,3,7 -W,2,3,4,2,2,7,10,2,2,7,9,8,6,11,0,8 -O,10,14,7,8,4,6,8,5,4,7,4,6,5,9,5,7 -Y,6,9,5,5,2,5,9,3,3,10,9,5,3,10,3,4 -L,1,0,1,0,0,2,2,5,4,1,2,6,0,8,0,8 -T,6,8,6,6,3,4,12,3,7,12,10,5,1,11,1,5 -G,2,3,2,2,1,6,8,5,4,9,8,9,2,8,4,9 -E,5,10,4,5,3,7,8,4,3,10,5,9,4,9,7,10 -J,6,7,8,8,7,8,8,5,7,7,5,8,4,10,10,8 -Q,4,3,5,5,2,8,9,7,6,6,8,9,3,8,5,9 -N,7,14,9,8,5,3,9,4,4,13,12,10,6,9,0,8 -T,4,5,4,4,2,6,11,2,7,11,9,4,1,11,2,4 -M,5,8,7,6,7,8,6,6,5,7,7,10,11,6,2,9 -O,4,5,5,4,3,7,7,8,5,7,6,8,2,8,3,8 -A,6,10,7,6,3,12,0,4,1,11,4,12,4,4,3,11 -T,2,9,4,7,2,7,13,0,5,7,10,8,0,8,0,8 -N,3,5,6,3,2,7,9,2,5,10,6,6,5,8,1,7 -F,4,10,4,7,3,1,12,4,4,11,10,8,0,8,2,6 -P,2,5,3,7,5,8,6,5,1,7,6,7,6,8,5,9 -U,3,7,5,5,3,4,8,6,6,7,9,10,3,9,1,8 -H,5,7,8,5,5,9,7,3,6,10,4,7,5,8,4,9 -O,6,9,4,4,2,8,7,5,5,8,4,7,4,9,5,8 -S,2,8,3,6,2,8,8,6,9,5,6,7,0,8,9,8 -J,5,9,6,7,3,6,8,2,6,15,6,8,2,8,2,8 -O,4,5,5,4,4,8,4,4,4,9,4,10,3,6,6,6 -B,4,8,6,6,5,7,8,6,6,10,6,6,3,8,7,8 -F,3,8,5,6,3,6,11,4,6,11,9,4,2,10,3,5 -E,3,9,3,6,2,3,6,6,10,7,7,14,0,8,7,8 -F,3,6,5,4,3,5,10,4,6,10,9,5,2,9,3,5 -A,2,3,3,1,1,6,2,2,1,5,2,8,1,6,1,7 -Q,3,5,4,6,4,8,9,4,2,5,8,11,2,10,5,8 -C,6,9,6,7,4,4,7,5,7,10,9,14,4,9,5,5 -S,4,9,6,6,7,9,4,4,4,9,6,9,4,7,10,9 -F,7,10,9,8,7,9,7,2,6,12,4,6,5,9,4,9 -C,5,10,7,9,8,5,6,4,4,7,6,11,5,11,8,10 -V,4,7,6,5,6,8,6,4,2,7,8,8,7,9,4,6 -T,4,4,5,3,2,5,12,2,8,11,9,4,0,10,2,4 -N,5,9,5,4,2,9,11,5,3,5,6,9,5,11,2,6 -E,1,0,1,0,0,5,8,5,7,7,6,12,0,8,6,10 -L,3,8,3,6,2,0,2,4,6,1,0,8,0,8,0,8 -A,3,9,5,6,2,6,5,3,1,6,1,8,2,7,2,7 -K,5,11,5,8,5,3,8,7,3,6,4,11,3,8,2,11 -M,6,9,10,7,12,7,5,3,2,7,5,8,15,7,4,6 -R,2,3,3,2,2,7,7,5,5,7,5,6,2,7,4,8 -S,6,12,6,7,3,6,8,3,6,13,7,7,2,9,3,7 -Y,3,9,5,6,3,7,9,1,6,6,11,8,2,11,2,7 -V,7,10,5,5,2,6,11,5,4,11,9,4,4,11,3,10 -S,2,0,2,1,1,8,7,4,6,5,6,8,0,8,7,8 -M,5,6,8,4,5,9,6,2,4,9,5,7,8,6,2,8 -O,9,15,6,8,5,5,7,7,4,10,7,10,5,9,5,8 -L,3,7,3,5,1,0,1,6,6,0,0,6,0,8,0,8 -D,6,9,8,8,8,7,6,5,7,7,5,9,6,5,10,3 -P,2,1,3,2,1,4,10,3,5,10,8,5,0,9,3,7 -W,3,8,5,6,5,11,11,2,2,5,8,7,7,12,1,7 -O,4,3,5,4,2,7,6,8,8,6,5,7,3,8,4,8 -E,4,9,5,6,3,5,9,2,10,10,8,9,2,8,5,5 -J,2,11,3,8,2,15,4,4,5,13,1,8,0,7,0,8 -T,5,8,7,7,7,7,9,4,8,7,7,8,3,10,8,6 -D,2,2,3,3,2,7,7,7,6,6,6,4,2,8,3,7 -C,7,10,8,8,4,4,8,6,9,12,9,13,2,9,3,7 -T,6,9,6,7,5,6,11,3,7,11,9,5,2,12,2,4 -S,2,3,4,2,1,8,7,2,6,10,6,8,1,9,5,8 -A,4,9,6,6,2,9,5,3,1,8,1,8,2,7,2,8 diff --git a/samples/cpp/logo.png b/samples/cpp/logo.png deleted file mode 100644 index 0263c5598..000000000 Binary files a/samples/cpp/logo.png and /dev/null differ diff --git a/samples/cpp/logo_in_clutter.png b/samples/cpp/logo_in_clutter.png deleted file mode 100644 index ccc9ee9bc..000000000 Binary files a/samples/cpp/logo_in_clutter.png and /dev/null differ diff --git a/samples/cpp/matching_to_many_images/query.png b/samples/cpp/matching_to_many_images/query.png deleted file mode 100755 index 9aa1199ee..000000000 Binary files a/samples/cpp/matching_to_many_images/query.png and /dev/null differ diff --git a/samples/cpp/matching_to_many_images/train/1.png b/samples/cpp/matching_to_many_images/train/1.png deleted file mode 100755 index c52e19ea5..000000000 Binary files a/samples/cpp/matching_to_many_images/train/1.png and /dev/null differ diff --git a/samples/cpp/matching_to_many_images/train/2.png b/samples/cpp/matching_to_many_images/train/2.png deleted file mode 100755 index 7b1189cf0..000000000 Binary files a/samples/cpp/matching_to_many_images/train/2.png and /dev/null differ diff --git a/samples/cpp/matching_to_many_images/train/3.png b/samples/cpp/matching_to_many_images/train/3.png deleted file mode 100755 index dc2389aa7..000000000 Binary files a/samples/cpp/matching_to_many_images/train/3.png and /dev/null differ diff --git a/samples/cpp/matching_to_many_images/train/trainImages.txt b/samples/cpp/matching_to_many_images/train/trainImages.txt deleted file mode 100644 index b37663950..000000000 --- a/samples/cpp/matching_to_many_images/train/trainImages.txt +++ /dev/null @@ -1,3 +0,0 @@ -1.png -2.png -3.png diff --git a/samples/cpp/memorial.exr b/samples/cpp/memorial.exr deleted file mode 100644 index 8ea854505..000000000 Binary files a/samples/cpp/memorial.exr and /dev/null differ diff --git a/samples/cpp/pic1.png b/samples/cpp/pic1.png deleted file mode 100644 index 3e48aa4b8..000000000 Binary files a/samples/cpp/pic1.png and /dev/null differ diff --git a/samples/cpp/pic2.png b/samples/cpp/pic2.png deleted file mode 100644 index 068213f7c..000000000 Binary files a/samples/cpp/pic2.png and /dev/null differ diff --git a/samples/cpp/pic3.png b/samples/cpp/pic3.png deleted file mode 100644 index fe214f00f..000000000 Binary files a/samples/cpp/pic3.png and /dev/null differ diff --git a/samples/cpp/pic4.png b/samples/cpp/pic4.png deleted file mode 100644 index 57b7a0d09..000000000 Binary files a/samples/cpp/pic4.png and /dev/null differ diff --git a/samples/cpp/pic5.png b/samples/cpp/pic5.png deleted file mode 100644 index 2e6bfa7cb..000000000 Binary files a/samples/cpp/pic5.png and /dev/null differ diff --git a/samples/cpp/pic6.png b/samples/cpp/pic6.png deleted file mode 100644 index 5cd6ab06e..000000000 Binary files a/samples/cpp/pic6.png and /dev/null differ diff --git a/samples/cpp/rgbdodometry/depth_00000.png b/samples/cpp/rgbdodometry/depth_00000.png deleted file mode 100644 index 705ad125d..000000000 Binary files a/samples/cpp/rgbdodometry/depth_00000.png and /dev/null differ diff --git a/samples/cpp/rgbdodometry/depth_00002.png b/samples/cpp/rgbdodometry/depth_00002.png deleted file mode 100644 index e708283ad..000000000 Binary files a/samples/cpp/rgbdodometry/depth_00002.png and /dev/null differ diff --git a/samples/cpp/rgbdodometry/image_00000.png b/samples/cpp/rgbdodometry/image_00000.png deleted file mode 100644 index 7f4889172..000000000 Binary files a/samples/cpp/rgbdodometry/image_00000.png and /dev/null differ diff --git a/samples/cpp/rgbdodometry/image_00002.png b/samples/cpp/rgbdodometry/image_00002.png deleted file mode 100644 index 7ee283dc6..000000000 Binary files a/samples/cpp/rgbdodometry/image_00002.png and /dev/null differ diff --git a/samples/cpp/right01.jpg b/samples/cpp/right01.jpg deleted file mode 100644 index 4d6071b8b..000000000 Binary files a/samples/cpp/right01.jpg and /dev/null differ diff --git a/samples/cpp/right02.jpg b/samples/cpp/right02.jpg deleted file mode 100644 index 6c0fab094..000000000 Binary files a/samples/cpp/right02.jpg and /dev/null differ diff --git a/samples/cpp/right03.jpg b/samples/cpp/right03.jpg deleted file mode 100644 index 75027611d..000000000 Binary files a/samples/cpp/right03.jpg and /dev/null differ diff --git a/samples/cpp/right04.jpg b/samples/cpp/right04.jpg deleted file mode 100644 index 958973bc6..000000000 Binary files a/samples/cpp/right04.jpg and /dev/null differ diff --git a/samples/cpp/right05.jpg b/samples/cpp/right05.jpg deleted file mode 100644 index 926c82582..000000000 Binary files a/samples/cpp/right05.jpg and /dev/null differ diff --git a/samples/cpp/right06.jpg b/samples/cpp/right06.jpg deleted file mode 100644 index 69a7994f8..000000000 Binary files a/samples/cpp/right06.jpg and /dev/null differ diff --git a/samples/cpp/right07.jpg b/samples/cpp/right07.jpg deleted file mode 100644 index 9aff92bd4..000000000 Binary files a/samples/cpp/right07.jpg and /dev/null differ diff --git a/samples/cpp/right08.jpg b/samples/cpp/right08.jpg deleted file mode 100644 index abb794a12..000000000 Binary files a/samples/cpp/right08.jpg and /dev/null differ diff --git a/samples/cpp/right09.jpg b/samples/cpp/right09.jpg deleted file mode 100644 index a6dd6f992..000000000 Binary files a/samples/cpp/right09.jpg and /dev/null differ diff --git a/samples/cpp/right11.jpg b/samples/cpp/right11.jpg deleted file mode 100644 index 29b99bec3..000000000 Binary files a/samples/cpp/right11.jpg and /dev/null differ diff --git a/samples/cpp/right12.jpg b/samples/cpp/right12.jpg deleted file mode 100644 index 35b2d07f4..000000000 Binary files a/samples/cpp/right12.jpg and /dev/null differ diff --git a/samples/cpp/right13.jpg b/samples/cpp/right13.jpg deleted file mode 100644 index d504a46b9..000000000 Binary files a/samples/cpp/right13.jpg and /dev/null differ diff --git a/samples/cpp/right14.jpg b/samples/cpp/right14.jpg deleted file mode 100644 index 2decf1e76..000000000 Binary files a/samples/cpp/right14.jpg and /dev/null differ diff --git a/samples/cpp/stereo_calib.xml b/samples/cpp/stereo_calib.xml deleted file mode 100644 index 68875facf..000000000 --- a/samples/cpp/stereo_calib.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - -"left01.jpg" -"right01.jpg" -"left02.jpg" -"right02.jpg" -"left03.jpg" -"right03.jpg" -"left04.jpg" -"right04.jpg" -"left05.jpg" -"right05.jpg" -"left06.jpg" -"right06.jpg" -"left07.jpg" -"right07.jpg" -"left08.jpg" -"right08.jpg" -"left09.jpg" -"right09.jpg" -"left11.jpg" -"right11.jpg" -"left12.jpg" -"right12.jpg" -"left13.jpg" -"right13.jpg" -"left14.jpg" -"right14.jpg" - - - diff --git a/samples/cpp/stuff.jpg b/samples/cpp/stuff.jpg deleted file mode 100644 index 720d3413c..000000000 Binary files a/samples/cpp/stuff.jpg and /dev/null differ diff --git a/samples/cpp/templ.png b/samples/cpp/templ.png deleted file mode 100644 index 31f6995cf..000000000 Binary files a/samples/cpp/templ.png and /dev/null differ diff --git a/samples/cpp/tsukuba_l.png b/samples/cpp/tsukuba_l.png deleted file mode 100644 index be22fd694..000000000 Binary files a/samples/cpp/tsukuba_l.png and /dev/null differ diff --git a/samples/cpp/tsukuba_r.png b/samples/cpp/tsukuba_r.png deleted file mode 100644 index c4acf61bb..000000000 Binary files a/samples/cpp/tsukuba_r.png and /dev/null differ diff --git a/samples/cpp/tutorial_code/HighGUI/AddingImagesTrackbar.cpp b/samples/cpp/tutorial_code/HighGUI/AddingImagesTrackbar.cpp deleted file mode 100644 index eb858a472..000000000 --- a/samples/cpp/tutorial_code/HighGUI/AddingImagesTrackbar.cpp +++ /dev/null @@ -1,69 +0,0 @@ -/** - * @file LinearBlend.cpp - * @brief Simple linear blender ( dst = alpha*src1 + beta*src2 ) - * @author OpenCV team - */ - -#include "opencv2/highgui/highgui.hpp" -#include - -using namespace cv; - -/** Global Variables */ -const int alpha_slider_max = 100; -int alpha_slider; -double alpha; -double beta; - -/** Matrices to store images */ -Mat src1; -Mat src2; -Mat dst; - -/** - * @function on_trackbar - * @brief Callback for trackbar - */ -static void on_trackbar( int, void* ) -{ - alpha = (double) alpha_slider/alpha_slider_max ; - - beta = ( 1.0 - alpha ); - - addWeighted( src1, alpha, src2, beta, 0.0, dst); - - imshow( "Linear Blend", dst ); -} - - -/** - * @function main - * @brief Main function - */ -int main( void ) -{ - /// Read image ( same size, same type ) - src1 = imread("../images/LinuxLogo.jpg"); - src2 = imread("../images/WindowsLogo.jpg"); - - if( !src1.data ) { printf("Error loading src1 \n"); return -1; } - if( !src2.data ) { printf("Error loading src2 \n"); return -1; } - - /// Initialize values - alpha_slider = 0; - - /// Create Windows - namedWindow("Linear Blend", 1); - - /// Create Trackbars - char TrackbarName[50]; - sprintf( TrackbarName, "Alpha x %d", alpha_slider_max ); - createTrackbar( TrackbarName, "Linear Blend", &alpha_slider, alpha_slider_max, on_trackbar ); - - /// Show some stuff - on_trackbar( alpha_slider, 0 ); - - /// Wait until user press some key - waitKey(0); - return 0; -} diff --git a/samples/cpp/tutorial_code/HighGUI/BasicLinearTransformsTrackbar.cpp b/samples/cpp/tutorial_code/HighGUI/BasicLinearTransformsTrackbar.cpp deleted file mode 100644 index b344c96e0..000000000 --- a/samples/cpp/tutorial_code/HighGUI/BasicLinearTransformsTrackbar.cpp +++ /dev/null @@ -1,69 +0,0 @@ -/** - * @file LinearTransforms.cpp - * @brief Simple program to change contrast and brightness - * @date Mon, June 6, 2011 - * @author OpenCV team - */ - -#include "opencv2/highgui/highgui.hpp" - -using namespace cv; - -/** Global Variables */ -const int alpha_max = 5; -const int beta_max = 125; -int alpha; /**< Simple contrast control */ -int beta; /**< Simple brightness control*/ - -/** Matrices to store images */ -Mat image; - -/** - * @function on_trackbar - * @brief Called whenever any of alpha or beta changes - */ -static void on_trackbar( int, void* ) -{ - Mat new_image = Mat::zeros( image.size(), image.type() ); - - for( int y = 0; y < image.rows; y++ ) - { for( int x = 0; x < image.cols; x++ ) - { for( int c = 0; c < 3; c++ ) - { - new_image.at(y,x)[c] = saturate_cast( alpha*( image.at(y,x)[c] ) + beta ); - } - } - } - imshow("New Image", new_image); -} - - -/** - * @function main - * @brief Main function - */ -int main( int, char** argv ) -{ - /// Read image given by user - image = imread( argv[1] ); - - /// Initialize values - alpha = 1; - beta = 0; - - /// Create Windows - namedWindow("Original Image", 1); - namedWindow("New Image", 1); - - /// Create Trackbars - createTrackbar( "Contrast Trackbar", "New Image", &alpha, alpha_max, on_trackbar ); - createTrackbar( "Brightness Trackbar", "New Image", &beta, beta_max, on_trackbar ); - - /// Show some stuff - imshow("Original Image", image); - imshow("New Image", image); - - /// Wait until user press some key - waitKey(); - return 0; -} diff --git a/samples/cpp/tutorial_code/HighGUI/video-input-psnr-ssim/video/Megamind.avi b/samples/cpp/tutorial_code/HighGUI/video-input-psnr-ssim/video/Megamind.avi deleted file mode 100644 index 86351eb01..000000000 Binary files a/samples/cpp/tutorial_code/HighGUI/video-input-psnr-ssim/video/Megamind.avi and /dev/null differ diff --git a/samples/cpp/tutorial_code/HighGUI/video-input-psnr-ssim/video/Megamind_bugy.avi b/samples/cpp/tutorial_code/HighGUI/video-input-psnr-ssim/video/Megamind_bugy.avi deleted file mode 100644 index 67ab6bec1..000000000 Binary files a/samples/cpp/tutorial_code/HighGUI/video-input-psnr-ssim/video/Megamind_bugy.avi and /dev/null differ diff --git a/samples/cpp/tutorial_code/ImgProc/AddingImages.cpp b/samples/cpp/tutorial_code/ImgProc/AddingImages.cpp deleted file mode 100644 index 4e974275c..000000000 --- a/samples/cpp/tutorial_code/ImgProc/AddingImages.cpp +++ /dev/null @@ -1,51 +0,0 @@ -/** - * @file AddingImages.cpp - * @brief Simple linear blender ( dst = alpha*src1 + beta*src2 ) - * @author OpenCV team - */ - -#include "opencv2/highgui/highgui.hpp" -#include - -using namespace cv; - -/** - * @function main - * @brief Main function - */ -int main( void ) -{ - - double alpha = 0.5; double beta; double input; - - Mat src1, src2, dst; - - /// Ask the user enter alpha - std::cout<<" Simple Linear Blender "<>input; - - // We use the alpha provided by the user iff it is between 0 and 1 - if( alpha >= 0 && alpha <= 1 ) - { alpha = input; } - - /// Read image ( same size, same type ) - src1 = imread("../images/LinuxLogo.jpg"); - src2 = imread("../images/WindowsLogo.jpg"); - - if( !src1.data ) { std::cout<< "Error loading src1"< - -using namespace cv; - -double alpha; /**< Simple contrast control */ -int beta; /**< Simple brightness control */ - -/** - * @function main - * @brief Main function - */ -int main( int, char** argv ) -{ - /// Read image given by user - Mat image = imread( argv[1] ); - Mat new_image = Mat::zeros( image.size(), image.type() ); - - /// Initialize values - std::cout<<" Basic Linear Transforms "<>alpha; - std::cout<<"* Enter the beta value [0-100]: "; std::cin>>beta; - - - /// Do the operation new_image(i,j) = alpha*image(i,j) + beta - /// Instead of these 'for' loops we could have used simply: - /// image.convertTo(new_image, -1, alpha, beta); - /// but we wanted to show you how to access the pixels :) - for( int y = 0; y < image.rows; y++ ) - { for( int x = 0; x < image.cols; x++ ) - { for( int c = 0; c < 3; c++ ) - { - new_image.at(y,x)[c] = saturate_cast( alpha*( image.at(y,x)[c] ) + beta ); - } - } - } - - /// Create Windows - namedWindow("Original Image", 1); - namedWindow("New Image", 1); - - /// Show stuff - imshow("Original Image", image); - imshow("New Image", new_image); - - - /// Wait until user press some key - waitKey(); - return 0; -} diff --git a/samples/cpp/tutorial_code/calib3d/camera_calibration/VID5.xml b/samples/cpp/tutorial_code/calib3d/camera_calibration/VID5.xml deleted file mode 100644 index ac5bce799..000000000 --- a/samples/cpp/tutorial_code/calib3d/camera_calibration/VID5.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - -images/CameraCalibraation/VID5/xx1.jpg -images/CameraCalibraation/VID5/xx2.jpg -images/CameraCalibraation/VID5/xx3.jpg -images/CameraCalibraation/VID5/xx4.jpg -images/CameraCalibraation/VID5/xx5.jpg -images/CameraCalibraation/VID5/xx6.jpg -images/CameraCalibraation/VID5/xx7.jpg -images/CameraCalibraation/VID5/xx8.jpg - - \ No newline at end of file diff --git a/samples/cpp/tutorial_code/calib3d/camera_calibration/in_VID5.xml b/samples/cpp/tutorial_code/calib3d/camera_calibration/in_VID5.xml deleted file mode 100644 index 9976bccb3..000000000 --- a/samples/cpp/tutorial_code/calib3d/camera_calibration/in_VID5.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - 9 - 6 - - - 50 - - - "CHESSBOARD" - - - "images/CameraCalibraation/VID5/VID5.xml" - - 0 - - - 100 - - - 25 - - 1 - - 1 - - 1 - - - "out_camera_data.xml" - - 1 - - 1 - - 1 - - - \ No newline at end of file diff --git a/samples/cpp/tutorial_code/calib3d/camera_calibration/out_camera_data.yml b/samples/cpp/tutorial_code/calib3d/camera_calibration/out_camera_data.yml deleted file mode 100644 index c8c960bb7..000000000 --- a/samples/cpp/tutorial_code/calib3d/camera_calibration/out_camera_data.yml +++ /dev/null @@ -1,352 +0,0 @@ -%YAML:1.0 -calibration_Time: "08/19/11 20:44:38" -nrOfFrames: 8 -image_Width: 640 -image_Height: 480 -board_Width: 9 -board_Height: 6 -square_Size: 50. -FixAspectRatio: 1. -# flags: +fix_aspectRatio +fix_principal_point +zero_tangent_dist -flagValue: 14 -Camera_Matrix: !!opencv-matrix - rows: 3 - cols: 3 - dt: d - data: [ 6.5746697810243404e+002, 0., 3.1950000000000000e+002, 0., - 6.5746697810243404e+002, 2.3950000000000000e+002, 0., 0., 1. ] -Distortion_Coefficients: !!opencv-matrix - rows: 5 - cols: 1 - dt: d - data: [ -4.1802327018241026e-001, 5.0715243805833121e-001, 0., 0., - -5.7843596847939704e-001 ] -Avg_Reprojection_Error: 3.8441346462381665e-001 -Per_View_Reprojection_Errors: !!opencv-matrix - rows: 8 - cols: 1 - dt: f - data: [ 5.04357755e-001, 4.85754758e-001, 3.99563968e-001, - 4.13829178e-001, 3.53570908e-001, 3.21116358e-001, - 2.74473161e-001, 2.39761785e-001 ] -# a set of 6-tuples (rotation vector + translation vector) for each view -Extrinsic_Parameters: !!opencv-matrix - rows: 8 - cols: 6 - dt: d - data: [ -7.8704123655486097e-002, -1.5922384772614945e-001, - 3.1166227207451498e+000, 2.4224388101960471e+002, - 1.1795590397660339e+002, 6.2576484126093249e+002, - -1.4117480285164308e-001, -1.7917415443804836e-002, - 3.1333182268743949e+000, 2.5943034781849354e+002, - 1.4039780562976958e+002, 6.3848706527260981e+002, - 7.2230525186138789e-002, -7.5445981266787754e-002, - 1.5712860749221762e+000, 1.7426560451795339e+002, - -1.9309240362258871e+002, 7.0891416556762647e+002, - 2.0367310600105853e-002, 6.8565520026996951e-002, - -5.4313033031644169e-004, -2.0146314940404827e+002, - -1.3305643514116997e+002, 7.4933554744027231e+002, - -3.4468530027734055e-002, 2.1921265175331925e-002, - -1.5731053528054522e+000, -1.1155718744299284e+002, - 2.0307615364261443e+002, 8.4915903914333899e+002, - 3.7425562109513817e-002, 7.4883169379022230e-002, - -3.6031632305130512e-002, -2.0094505419395196e+002, - -1.1627359108310560e+002, 9.2021583518760133e+002, - 6.8105689976949157e-002, 6.4426739692440949e-002, - -7.0967130057087435e-002, -1.9233852871740035e+002, - -1.0334652096641923e+002, 1.0755293563503658e+003, - -5.8017546499862287e-002, -1.6909812666033443e-003, - -1.5876137659782963e+000, -1.0242234847115104e+002, - 2.2583088401423066e+002, 1.1125972190244058e+003 ] -Image_points: !!opencv-matrix - rows: 8 - cols: 54 - dt: "2f" - data: [ 5.58494690e+002, 3.55650085e+002, 5.13314697e+002, - 3.59107666e+002, 4.65728333e+002, 3.62133911e+002, - 4.15701111e+002, 3.65026459e+002, 3.64399353e+002, - 3.67339203e+002, 3.12101196e+002, 3.69211914e+002, - 2.59208405e+002, 3.70413513e+002, 2.07456192e+002, - 3.71175995e+002, 1.56619507e+002, 3.72176544e+002, - 5.60868713e+002, 3.08104828e+002, 5.15191772e+002, - 3.10485626e+002, 4.67032959e+002, 3.12660004e+002, - 4.16112152e+002, 3.14887177e+002, 3.64010712e+002, - 3.16825775e+002, 3.10712372e+002, 3.18640808e+002, - 2.56853943e+002, 3.20017365e+002, 2.04168182e+002, - 3.20908417e+002, 1.52469528e+002, 3.22105377e+002, - 5.62328369e+002, 2.58646881e+002, 5.16396301e+002, - 2.59919281e+002, 4.67907654e+002, 2.61257874e+002, - 4.16463440e+002, 2.62675537e+002, 3.63546570e+002, - 2.64064117e+002, 3.09528137e+002, 2.65489990e+002, - 2.54765533e+002, 2.66862030e+002, 2.01299225e+002, - 2.67997345e+002, 1.48913437e+002, 2.69627167e+002, - 5.63098022e+002, 2.08423523e+002, 5.16782654e+002, - 2.08424667e+002, 4.68059296e+002, 2.08661697e+002, - 4.16216431e+002, 2.09268982e+002, 3.62888763e+002, - 2.10013397e+002, 3.08458557e+002, 2.11074738e+002, - 2.53267990e+002, 2.12496582e+002, 1.99121384e+002, - 2.14005814e+002, 1.46551376e+002, 2.15851318e+002, - 5.62997437e+002, 1.57966492e+002, 5.16406494e+002, - 1.56580688e+002, 4.67334900e+002, 1.55756500e+002, - 4.15378235e+002, 1.55492874e+002, 3.62096710e+002, - 1.55498734e+002, 3.07522827e+002, 1.56133240e+002, - 2.52235214e+002, 1.57516571e+002, 1.97876328e+002, - 1.59318787e+002, 1.45078247e+002, 1.61638428e+002, - 5.62097168e+002, 1.07469536e+002, 5.15766846e+002, - 1.04902527e+002, 4.66562866e+002, 1.03045807e+002, - 4.14651459e+002, 1.01924713e+002, 3.61240662e+002, - 1.01357826e+002, 3.06746613e+002, 1.01582802e+002, - 2.51568024e+002, 1.02920105e+002, 1.97343307e+002, - 1.04941299e+002, 1.44756821e+002, 1.07737488e+002, - 5.68062500e+002, 3.73591125e+002, 5.25272644e+002, - 3.77019318e+002, 4.79870941e+002, 3.80086578e+002, - 4.31823730e+002, 3.83036652e+002, 3.81995758e+002, - 3.85271759e+002, 3.30728729e+002, 3.86998779e+002, - 2.78071167e+002, 3.88151031e+002, 2.26231567e+002, - 3.88669586e+002, 1.74855331e+002, 3.89197998e+002, - 5.69792542e+002, 3.27097382e+002, 5.26866028e+002, - 3.29362366e+002, 4.81278229e+002, 3.31532928e+002, - 4.32783203e+002, 3.33552185e+002, 3.82408234e+002, - 3.35186554e+002, 3.30427399e+002, 3.36404053e+002, - 2.77138519e+002, 3.37450958e+002, 2.24525131e+002, - 3.37957092e+002, 1.72285507e+002, 3.38503540e+002, - 5.70942749e+002, 2.79243713e+002, 5.27789307e+002, - 2.80073486e+002, 4.82146576e+002, 2.81226410e+002, - 4.33247375e+002, 2.82237427e+002, 3.82503662e+002, - 2.83062286e+002, 3.30138885e+002, 2.83794434e+002, - 2.76433228e+002, 2.84549286e+002, 2.23158783e+002, - 2.84981049e+002, 1.70520218e+002, 2.85720886e+002, - 5.71001953e+002, 2.30928329e+002, 5.27846863e+002, - 2.30519928e+002, 4.82114563e+002, 2.30268906e+002, - 4.33114563e+002, 2.30243515e+002, 3.82384857e+002, - 2.30311340e+002, 3.29870392e+002, 2.30454620e+002, - 2.76012634e+002, 2.30882156e+002, 2.22529434e+002, - 2.31355362e+002, 1.69742065e+002, 2.32063004e+002, - 5.70199036e+002, 1.82609772e+002, 5.27030884e+002, - 1.80973267e+002, 4.81193573e+002, 1.79573792e+002, - 4.32409821e+002, 1.78475616e+002, 3.81855530e+002, - 1.77680283e+002, 3.29641937e+002, 1.77092087e+002, - 2.75895782e+002, 1.77155502e+002, 2.22438889e+002, - 1.77605667e+002, 1.69884583e+002, 1.78365585e+002, - 5.69026245e+002, 1.34654831e+002, 5.26171570e+002, - 1.31798691e+002, 4.80653503e+002, 1.29171509e+002, - 4.31869904e+002, 1.27280067e+002, 3.81419739e+002, - 1.25591202e+002, 3.29466644e+002, 1.24407089e+002, - 2.76225342e+002, 1.24174736e+002, 2.23024109e+002, - 1.24463333e+002, 1.70838898e+002, 1.25398903e+002, - 4.73812897e+002, 6.94673386e+001, 4.74245453e+002, - 1.12387466e+002, 4.74243347e+002, 1.56034164e+002, - 4.73834778e+002, 2.00523651e+002, 4.72891602e+002, - 2.44457306e+002, 4.71412811e+002, 2.87981171e+002, - 4.69708252e+002, 3.30783173e+002, 4.67558228e+002, - 3.71818420e+002, 4.65495667e+002, 4.11996979e+002, - 4.31027649e+002, 6.75546722e+001, 4.31269440e+002, - 1.10960022e+002, 4.31185486e+002, 1.55113556e+002, - 4.30830139e+002, 2.00061066e+002, 4.30168427e+002, - 2.44456863e+002, 4.29107544e+002, 2.88479645e+002, - 4.27829071e+002, 3.31813507e+002, 4.26131653e+002, - 3.73071228e+002, 4.24718811e+002, 4.13476563e+002, - 3.86868805e+002, 6.61982269e+001, 3.86895416e+002, - 1.09904411e+002, 3.86690216e+002, 1.54396423e+002, - 3.86368591e+002, 1.99800369e+002, 3.85792206e+002, - 2.44538574e+002, 3.85117279e+002, 2.88826447e+002, - 3.84405273e+002, 3.32408020e+002, 3.83303772e+002, - 3.74074097e+002, 3.82477448e+002, 4.14638977e+002, - 3.41941437e+002, 6.54462357e+001, 3.41628204e+002, - 1.09383698e+002, 3.41402344e+002, 1.54105545e+002, - 3.41168854e+002, 1.99655045e+002, 3.40816681e+002, - 2.44469910e+002, 3.40516937e+002, 2.88975800e+002, - 3.40365662e+002, 3.32670990e+002, 3.39935211e+002, - 3.74465759e+002, 3.39847626e+002, 4.14742279e+002, - 2.96694000e+002, 6.56859589e+001, 2.96075226e+002, - 1.09505333e+002, 2.95704895e+002, 1.54202652e+002, - 2.95653107e+002, 1.99734131e+002, 2.95589661e+002, - 2.44549530e+002, 2.95629547e+002, 2.88889496e+002, - 2.96138733e+002, 3.32610931e+002, 2.96520905e+002, - 3.74608551e+002, 2.96987091e+002, 4.14774902e+002, - 2.51414978e+002, 6.65755463e+001, 2.50681854e+002, - 1.10189331e+002, 2.50183380e+002, 1.54658005e+002, - 2.50331161e+002, 2.00073761e+002, 2.50590790e+002, - 2.44719513e+002, 2.51083817e+002, 2.88868286e+002, - 2.52134262e+002, 3.32266937e+002, 2.53097809e+002, - 3.74022491e+002, 2.54404007e+002, 4.14018066e+002, - 1.49524078e+002, 1.27699501e+002, 1.89511658e+002, - 1.25816605e+002, 2.31050888e+002, 1.24260918e+002, - 2.74076721e+002, 1.23023209e+002, 3.17643005e+002, - 1.22288109e+002, 3.61785889e+002, 1.22105164e+002, - 4.06142670e+002, 1.22401566e+002, 4.49623962e+002, - 1.23246025e+002, 4.92677216e+002, 1.24087708e+002, - 1.48706085e+002, 1.69077423e+002, 1.88827805e+002, - 1.67750443e+002, 2.30439865e+002, 1.66769333e+002, - 2.73830933e+002, 1.65871170e+002, 3.17596741e+002, - 1.65410919e+002, 3.61983459e+002, 1.65327866e+002, - 4.06748322e+002, 1.65463974e+002, 4.50450226e+002, - 1.66126526e+002, 4.93614655e+002, 1.66970413e+002, - 1.48312607e+002, 2.11499451e+002, 1.88574097e+002, - 2.10860214e+002, 2.30130676e+002, 2.10261612e+002, - 2.73557709e+002, 2.09837143e+002, 3.17542572e+002, - 2.09633057e+002, 3.62091248e+002, 2.09732620e+002, - 4.06934570e+002, 2.09926758e+002, 4.50914612e+002, - 2.10320221e+002, 4.94044495e+002, 2.10900925e+002, - 1.48613831e+002, 2.53997177e+002, 1.88797791e+002, - 2.53912842e+002, 2.30240204e+002, 2.53975067e+002, - 2.73746704e+002, 2.54010208e+002, 3.17718262e+002, - 2.54106003e+002, 3.62188965e+002, 2.54205475e+002, - 4.06908783e+002, 2.54317505e+002, 4.50824951e+002, - 2.54539490e+002, 4.93825714e+002, 2.54753876e+002, - 1.49541687e+002, 2.96404175e+002, 1.89357727e+002, - 2.97117523e+002, 2.30807007e+002, 2.97805603e+002, - 2.74325470e+002, 2.97966522e+002, 3.18042206e+002, - 2.98304535e+002, 3.62105774e+002, 2.98552643e+002, - 4.06672272e+002, 2.98572418e+002, 4.50363068e+002, - 2.98569550e+002, 4.93109894e+002, 2.98516205e+002, - 1.50883698e+002, 3.38493195e+002, 1.90633621e+002, - 3.39862610e+002, 2.31920990e+002, 3.40869415e+002, - 2.74971252e+002, 3.41453766e+002, 3.18235229e+002, - 3.41952637e+002, 3.62063477e+002, 3.42314026e+002, - 4.06098938e+002, 3.42221802e+002, 4.49477386e+002, - 3.42063812e+002, 4.91864716e+002, 3.41727600e+002, - 2.36129852e+002, 3.92798004e+002, 2.34999939e+002, - 3.56118683e+002, 2.34376099e+002, 3.18607025e+002, - 2.33822159e+002, 2.80400696e+002, 2.33565445e+002, - 2.42213104e+002, 2.33583069e+002, 2.03937286e+002, - 2.34028824e+002, 1.65756607e+002, 2.34613373e+002, - 1.28586639e+002, 2.35190308e+002, 9.18279037e+001, - 2.73031616e+002, 3.93267242e+002, 2.72295166e+002, - 3.56342743e+002, 2.71799347e+002, 3.18847412e+002, - 2.71418854e+002, 2.80287872e+002, 2.71161469e+002, - 2.41881134e+002, 2.71248962e+002, 2.03348145e+002, - 2.71379303e+002, 1.64895874e+002, 2.71946045e+002, - 1.27450935e+002, 2.72322418e+002, 9.06900787e+001, - 3.10670715e+002, 3.93568848e+002, 3.10389160e+002, - 3.56545959e+002, 3.10084625e+002, 3.18814514e+002, - 3.09801544e+002, 2.80242737e+002, 3.09678711e+002, - 2.41574814e+002, 3.09779663e+002, 2.02989838e+002, - 3.09842712e+002, 1.64338043e+002, 3.10076782e+002, - 1.26870911e+002, 3.10243286e+002, 8.98413315e+001, - 3.48618134e+002, 3.93563202e+002, 3.48617065e+002, - 3.56472382e+002, 3.48608795e+002, 3.18855621e+002, - 3.48544556e+002, 2.80011017e+002, 3.48556396e+002, - 2.41388168e+002, 3.48585388e+002, 2.02692429e+002, - 3.48435089e+002, 1.64099731e+002, 3.48442902e+002, - 1.26549957e+002, 3.48338043e+002, 8.98002014e+001, - 3.86625610e+002, 3.93188599e+002, 3.87047729e+002, - 3.56377594e+002, 3.87306274e+002, 3.18714752e+002, - 3.87337799e+002, 2.79868896e+002, 3.87402740e+002, - 2.41228760e+002, 3.87295166e+002, 2.02695313e+002, - 3.87030273e+002, 1.64203415e+002, 3.86741211e+002, - 1.26606262e+002, 3.86337311e+002, 8.99655075e+001, - 4.24534088e+002, 3.92702545e+002, 4.25310822e+002, - 3.55900452e+002, 4.25869019e+002, 3.18160614e+002, - 4.25909790e+002, 2.79615753e+002, 4.25977295e+002, - 2.41165100e+002, 4.25826477e+002, 2.02876389e+002, - 4.25331665e+002, 1.64527618e+002, 4.24775787e+002, - 1.27097328e+002, 4.23985138e+002, 9.08176651e+001, - 1.79142670e+002, 1.58573654e+002, 2.12791580e+002, - 1.56291031e+002, 2.47140106e+002, 1.54265656e+002, - 2.82607300e+002, 1.52373688e+002, 3.18175507e+002, - 1.50692184e+002, 3.54185852e+002, 1.49404175e+002, - 3.90455200e+002, 1.48229370e+002, 4.26106689e+002, - 1.47507843e+002, 4.61576141e+002, 1.46712479e+002, - 1.80388336e+002, 1.93027603e+002, 2.14026459e+002, - 1.91128204e+002, 2.48376541e+002, 1.89414978e+002, - 2.83795807e+002, 1.87720856e+002, 3.19472473e+002, - 1.86192383e+002, 3.55483826e+002, 1.84929199e+002, - 3.91970764e+002, 1.83747040e+002, 4.27654572e+002, - 1.82931534e+002, 4.63295227e+002, 1.81977234e+002, - 1.81914261e+002, 2.27955460e+002, 2.15291260e+002, - 2.26512482e+002, 2.49628265e+002, 2.25067520e+002, - 2.85066406e+002, 2.23593185e+002, 3.20846680e+002, - 2.22337708e+002, 3.56862885e+002, 2.21191040e+002, - 3.93279907e+002, 2.19905640e+002, 4.29202271e+002, - 2.18870361e+002, 4.64728424e+002, 2.17972977e+002, - 1.83496948e+002, 2.62963226e+002, 2.16930527e+002, - 2.61755219e+002, 2.51115829e+002, 2.60777222e+002, - 2.86553406e+002, 2.59500336e+002, 3.22299896e+002, - 2.58380737e+002, 3.58307648e+002, 2.57236694e+002, - 3.94551819e+002, 2.56009125e+002, 4.30358948e+002, - 2.54925797e+002, 4.65684998e+002, 2.54021484e+002, - 1.85461685e+002, 2.97687378e+002, 2.18712234e+002, - 2.96999207e+002, 2.52770218e+002, 2.96270752e+002, - 2.88213776e+002, 2.95168213e+002, 3.23698334e+002, - 2.94233032e+002, 3.59477722e+002, 2.93170715e+002, - 3.95647766e+002, 2.91897400e+002, 4.31309845e+002, - 2.90856995e+002, 4.66494110e+002, 2.89726410e+002, - 1.87661331e+002, 3.32186188e+002, 2.20767746e+002, - 3.31906250e+002, 2.54839096e+002, 3.31398651e+002, - 2.89963745e+002, 3.30524139e+002, 3.25207642e+002, - 3.29771820e+002, 3.60686035e+002, 3.28762695e+002, - 3.96576447e+002, 3.27542206e+002, 4.31994415e+002, - 3.26294189e+002, 4.66894653e+002, 3.24949921e+002, - 2.03543015e+002, 1.77473557e+002, 2.32777847e+002, - 1.74712509e+002, 2.62628723e+002, 1.72331970e+002, - 2.93045898e+002, 1.69686768e+002, 3.23527618e+002, - 1.67496246e+002, 3.54206787e+002, 1.65446075e+002, - 3.85180176e+002, 1.63360580e+002, 4.15484253e+002, - 1.61536423e+002, 4.45720947e+002, 1.59896164e+002, - 2.05864395e+002, 2.07228104e+002, 2.35242096e+002, - 2.04699326e+002, 2.64853973e+002, 2.02407455e+002, - 2.95353882e+002, 1.99972321e+002, 3.25811890e+002, - 1.97671921e+002, 3.56471252e+002, 1.95763168e+002, - 3.87280548e+002, 1.93597977e+002, 4.17615814e+002, - 1.91867371e+002, 4.48018677e+002, 1.90067413e+002, - 2.08421249e+002, 2.37166977e+002, 2.37513824e+002, - 2.34982773e+002, 2.67261261e+002, 2.32802841e+002, - 2.97555817e+002, 2.30466080e+002, 3.28118103e+002, - 2.28462463e+002, 3.58699707e+002, 2.26417038e+002, - 3.89468842e+002, 2.24356827e+002, 4.19895996e+002, - 2.22421921e+002, 4.50077850e+002, 2.20683517e+002, - 2.11095444e+002, 2.66940186e+002, 2.40241348e+002, - 2.64970093e+002, 2.69563019e+002, 2.63153290e+002, - 2.99863464e+002, 2.60983551e+002, 3.30282440e+002, - 2.58911560e+002, 3.60724792e+002, 2.56935730e+002, - 3.91487915e+002, 2.54799423e+002, 4.21789093e+002, - 2.52929688e+002, 4.51818481e+002, 2.51059357e+002, - 2.13829117e+002, 2.96591217e+002, 2.42742859e+002, - 2.94884583e+002, 2.72209076e+002, 2.93215668e+002, - 3.02402985e+002, 2.91230591e+002, 3.32536072e+002, - 2.89165192e+002, 3.62860901e+002, 2.87413605e+002, - 3.93481842e+002, 2.85199615e+002, 4.23728851e+002, - 2.83277496e+002, 4.53453094e+002, 2.81229309e+002, - 2.16799316e+002, 3.25975220e+002, 2.45605515e+002, - 3.24619904e+002, 2.74777344e+002, 3.22958679e+002, - 3.04762817e+002, 3.21008057e+002, 3.34797150e+002, - 3.19291443e+002, 3.65005798e+002, 3.17295044e+002, - 3.95311981e+002, 3.15296021e+002, 4.25312592e+002, - 3.13086945e+002, 4.54931152e+002, 3.11027130e+002, - 2.60550232e+002, 3.70739563e+002, 2.59674011e+002, - 3.42115936e+002, 2.58910492e+002, 3.13278015e+002, - 2.58195618e+002, 2.84013580e+002, 2.57727173e+002, - 2.55017166e+002, 2.57326263e+002, 2.25760986e+002, - 2.57096619e+002, 1.96577972e+002, 2.57031860e+002, - 1.68026199e+002, 2.56873383e+002, 1.39550308e+002, - 2.89019318e+002, 3.70481354e+002, 2.88355560e+002, - 3.41833252e+002, 2.87601471e+002, 3.12872925e+002, - 2.87057190e+002, 2.83485535e+002, 2.86599762e+002, - 2.54255096e+002, 2.86174438e+002, 2.25023285e+002, - 2.85775940e+002, 1.95715347e+002, 2.85577087e+002, - 1.66989502e+002, 2.85395477e+002, 1.38597382e+002, - 3.18072754e+002, 3.70118317e+002, 3.17432709e+002, - 3.41398743e+002, 3.16917267e+002, 3.12476044e+002, - 3.16284363e+002, 2.83001587e+002, 3.15799072e+002, - 2.53725845e+002, 3.15411957e+002, 2.24337708e+002, - 3.15070374e+002, 1.95034119e+002, 3.14736847e+002, - 1.66195313e+002, 3.14439789e+002, 1.37797058e+002, - 3.47083588e+002, 3.69678101e+002, 3.46717987e+002, - 3.40949524e+002, 3.46185303e+002, 3.12009857e+002, - 3.45728088e+002, 2.82454071e+002, 3.45226624e+002, - 2.53109863e+002, 3.44883606e+002, 2.23839539e+002, - 3.44373535e+002, 1.94399933e+002, 3.43879852e+002, - 1.65690643e+002, 3.43438629e+002, 1.37252930e+002, - 3.76341522e+002, 3.68972321e+002, 3.76086884e+002, - 3.40412842e+002, 3.75708893e+002, 3.11398376e+002, - 3.75143494e+002, 2.81901520e+002, 3.74762970e+002, - 2.52577988e+002, 3.74223969e+002, 2.23348221e+002, - 3.73600891e+002, 1.93979538e+002, 3.72983917e+002, - 1.65201294e+002, 3.72517273e+002, 1.36871033e+002, - 4.05512115e+002, 3.68243225e+002, 4.05366333e+002, - 3.39678650e+002, 4.05090027e+002, 3.10679108e+002, - 4.04612366e+002, 2.81203522e+002, 4.04152649e+002, - 2.52051605e+002, 4.03539703e+002, 2.22930420e+002, - 4.02903351e+002, 1.93625381e+002, 4.02272827e+002, - 1.65004440e+002, 4.01353333e+002, 1.36796814e+002 ] diff --git a/samples/cpp/tutorial_code/core/file_input_output/file_input_output.cpp b/samples/cpp/tutorial_code/core/file_input_output/file_input_output.cpp deleted file mode 100644 index 9c527a8aa..000000000 --- a/samples/cpp/tutorial_code/core/file_input_output/file_input_output.cpp +++ /dev/null @@ -1,154 +0,0 @@ -#include -#include -#include - -using namespace cv; -using namespace std; - -static void help(char** av) -{ - cout << endl - << av[0] << " shows the usage of the OpenCV serialization functionality." << endl - << "usage: " << endl - << av[0] << " outputfile.yml.gz" << endl - << "The output file may be either XML (xml) or YAML (yml/yaml). You can even compress it by " - << "specifying this in its extension like xml.gz yaml.gz etc... " << endl - << "With FileStorage you can serialize objects in OpenCV by using the << and >> operators" << endl - << "For example: - create a class and have it serialized" << endl - << " - use it to read and write matrices." << endl; -} - -class MyData -{ -public: - MyData() : A(0), X(0), id() - {} - explicit MyData(int) : A(97), X(CV_PI), id("mydata1234") // explicit to avoid implicit conversion - {} - void write(FileStorage& fs) const //Write serialization for this class - { - fs << "{" << "A" << A << "X" << X << "id" << id << "}"; - } - void read(const FileNode& node) //Read serialization for this class - { - A = (int)node["A"]; - X = (double)node["X"]; - id = (string)node["id"]; - } -public: // Data Members - int A; - double X; - string id; -}; - -//These write and read functions must be defined for the serialization in FileStorage to work -static void write(FileStorage& fs, const std::string&, const MyData& x) -{ - x.write(fs); -} -static void read(const FileNode& node, MyData& x, const MyData& default_value = MyData()){ - if(node.empty()) - x = default_value; - else - x.read(node); -} - -// This function will print our custom class to the console -static ostream& operator<<(ostream& out, const MyData& m) -{ - out << "{ id = " << m.id << ", "; - out << "X = " << m.X << ", "; - out << "A = " << m.A << "}"; - return out; -} - -int main(int ac, char** av) -{ - if (ac != 2) - { - help(av); - return 1; - } - - string filename = av[1]; - { //write - Mat R = Mat_::eye(3, 3), - T = Mat_::zeros(3, 1); - MyData m(1); - - FileStorage fs(filename, FileStorage::WRITE); - - fs << "iterationNr" << 100; - fs << "strings" << "["; // text - string sequence - fs << "image1.jpg" << "Awesomeness" << "baboon.jpg"; - fs << "]"; // close sequence - - fs << "Mapping"; // text - mapping - fs << "{" << "One" << 1; - fs << "Two" << 2 << "}"; - - fs << "R" << R; // cv::Mat - fs << "T" << T; - - fs << "MyData" << m; // your own data structures - - fs.release(); // explicit close - cout << "Write Done." << endl; - } - - {//read - cout << endl << "Reading: " << endl; - FileStorage fs; - fs.open(filename, FileStorage::READ); - - int itNr; - //fs["iterationNr"] >> itNr; - itNr = (int) fs["iterationNr"]; - cout << itNr; - if (!fs.isOpened()) - { - cerr << "Failed to open " << filename << endl; - help(av); - return 1; - } - - FileNode n = fs["strings"]; // Read string sequence - Get node - if (n.type() != FileNode::SEQ) - { - cerr << "strings is not a sequence! FAIL" << endl; - return 1; - } - - FileNodeIterator it = n.begin(), it_end = n.end(); // Go through the node - for (; it != it_end; ++it) - cout << (string)*it << endl; - - - n = fs["Mapping"]; // Read mappings from a sequence - cout << "Two " << (int)(n["Two"]) << "; "; - cout << "One " << (int)(n["One"]) << endl << endl; - - - MyData m; - Mat R, T; - - fs["R"] >> R; // Read cv::Mat - fs["T"] >> T; - fs["MyData"] >> m; // Read your own structure_ - - cout << endl - << "R = " << R << endl; - cout << "T = " << T << endl << endl; - cout << "MyData = " << endl << m << endl << endl; - - //Show default behavior for non existing nodes - cout << "Attempt to read NonExisting (should initialize the data structure with its default)."; - fs["NonExisting"] >> m; - cout << endl << "NonExisting = " << endl << m << endl; - } - - cout << endl - << "Tip: Open up " << filename << " with a text editor to see the serialized data." << endl; - - return 0; -} \ No newline at end of file diff --git a/samples/cpp/tutorial_code/images/HappyFish.jpg b/samples/cpp/tutorial_code/images/HappyFish.jpg deleted file mode 100755 index c76288edb..000000000 Binary files a/samples/cpp/tutorial_code/images/HappyFish.jpg and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/LinuxLogo.jpg b/samples/cpp/tutorial_code/images/LinuxLogo.jpg deleted file mode 100755 index 34cba8864..000000000 Binary files a/samples/cpp/tutorial_code/images/LinuxLogo.jpg and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/Megamind.png b/samples/cpp/tutorial_code/images/Megamind.png deleted file mode 100644 index a1cc6d178..000000000 Binary files a/samples/cpp/tutorial_code/images/Megamind.png and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/Megamind_alt.png b/samples/cpp/tutorial_code/images/Megamind_alt.png deleted file mode 100644 index 4e345f23d..000000000 Binary files a/samples/cpp/tutorial_code/images/Megamind_alt.png and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/WindowsLogo.jpg b/samples/cpp/tutorial_code/images/WindowsLogo.jpg deleted file mode 100755 index 04be44923..000000000 Binary files a/samples/cpp/tutorial_code/images/WindowsLogo.jpg and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/baboon.jpg b/samples/cpp/tutorial_code/images/baboon.jpg deleted file mode 100644 index 2f98d8359..000000000 Binary files a/samples/cpp/tutorial_code/images/baboon.jpg and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/cat.jpg b/samples/cpp/tutorial_code/images/cat.jpg deleted file mode 100755 index df4a907e5..000000000 Binary files a/samples/cpp/tutorial_code/images/cat.jpg and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/chicky_512.png b/samples/cpp/tutorial_code/images/chicky_512.png deleted file mode 100644 index 746f8cc24..000000000 Binary files a/samples/cpp/tutorial_code/images/chicky_512.png and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/hand_sample1.jpg b/samples/cpp/tutorial_code/images/hand_sample1.jpg deleted file mode 100644 index 4c42898ec..000000000 Binary files a/samples/cpp/tutorial_code/images/hand_sample1.jpg and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/hand_sample2.jpg b/samples/cpp/tutorial_code/images/hand_sample2.jpg deleted file mode 100644 index 8ca11f9fb..000000000 Binary files a/samples/cpp/tutorial_code/images/hand_sample2.jpg and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/hand_sample3.jpg b/samples/cpp/tutorial_code/images/hand_sample3.jpg deleted file mode 100644 index bd339a00a..000000000 Binary files a/samples/cpp/tutorial_code/images/hand_sample3.jpg and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/imageTextN.png b/samples/cpp/tutorial_code/images/imageTextN.png deleted file mode 100644 index cdb58f659..000000000 Binary files a/samples/cpp/tutorial_code/images/imageTextN.png and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/imageTextR.png b/samples/cpp/tutorial_code/images/imageTextR.png deleted file mode 100644 index 7f90abdf0..000000000 Binary files a/samples/cpp/tutorial_code/images/imageTextR.png and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/lena.png b/samples/cpp/tutorial_code/images/lena.png deleted file mode 100644 index 59ef68aab..000000000 Binary files a/samples/cpp/tutorial_code/images/lena.png and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/opencv-logo.png b/samples/cpp/tutorial_code/images/opencv-logo.png deleted file mode 100644 index 8cd8155c1..000000000 Binary files a/samples/cpp/tutorial_code/images/opencv-logo.png and /dev/null differ diff --git a/samples/cpp/tutorial_code/images/yellowball.jpg b/samples/cpp/tutorial_code/images/yellowball.jpg deleted file mode 100644 index ac76e08ba..000000000 Binary files a/samples/cpp/tutorial_code/images/yellowball.jpg and /dev/null differ diff --git a/samples/cpp/tutorial_code/ml/introduction_to_svm/introduction_to_svm.cpp b/samples/cpp/tutorial_code/ml/introduction_to_svm/introduction_to_svm.cpp deleted file mode 100644 index 480229b53..000000000 --- a/samples/cpp/tutorial_code/ml/introduction_to_svm/introduction_to_svm.cpp +++ /dev/null @@ -1,68 +0,0 @@ -#include -#include -#include - -using namespace cv; - -int main() -{ - // Data for visual representation - int width = 512, height = 512; - Mat image = Mat::zeros(height, width, CV_8UC3); - - // Set up training data - float labels[4] = {1.0, -1.0, -1.0, -1.0}; - Mat labelsMat(4, 1, CV_32FC1, labels); - - float trainingData[4][2] = { {501, 10}, {255, 10}, {501, 255}, {10, 501} }; - Mat trainingDataMat(4, 2, CV_32FC1, trainingData); - - // Set up SVM's parameters - CvSVMParams params; - params.svm_type = CvSVM::C_SVC; - params.kernel_type = CvSVM::LINEAR; - params.term_crit = cvTermCriteria(CV_TERMCRIT_ITER, 100, 1e-6); - - // Train the SVM - CvSVM SVM; - SVM.train(trainingDataMat, labelsMat, Mat(), Mat(), params); - - Vec3b green(0,255,0), blue (255,0,0); - // Show the decision regions given by the SVM - for (int i = 0; i < image.rows; ++i) - for (int j = 0; j < image.cols; ++j) - { - Mat sampleMat = (Mat_(1,2) << i,j); - float response = SVM.predict(sampleMat); - - if (response == 1) - image.at(j, i) = green; - else if (response == -1) - image.at(j, i) = blue; - } - - // Show the training data - int thickness = -1; - int lineType = 8; - circle( image, Point(501, 10), 5, Scalar( 0, 0, 0), thickness, lineType); - circle( image, Point(255, 10), 5, Scalar(255, 255, 255), thickness, lineType); - circle( image, Point(501, 255), 5, Scalar(255, 255, 255), thickness, lineType); - circle( image, Point( 10, 501), 5, Scalar(255, 255, 255), thickness, lineType); - - // Show support vectors - thickness = 2; - lineType = 8; - int c = SVM.get_support_vector_count(); - - for (int i = 0; i < c; ++i) - { - const float* v = SVM.get_support_vector(i); - circle( image, Point( (int) v[0], (int) v[1]), 6, Scalar(128, 128, 128), thickness, lineType); - } - - imwrite("result.png", image); // save the image - - imshow("SVM Simple Example", image); // show it to the user - waitKey(0); - -} diff --git a/samples/cpp/tutorial_code/ml/non_linear_svms/non_linear_svms.cpp b/samples/cpp/tutorial_code/ml/non_linear_svms/non_linear_svms.cpp deleted file mode 100644 index a24029a23..000000000 --- a/samples/cpp/tutorial_code/ml/non_linear_svms/non_linear_svms.cpp +++ /dev/null @@ -1,130 +0,0 @@ -#include -#include -#include -#include - -#define NTRAINING_SAMPLES 100 // Number of training samples per class -#define FRAC_LINEAR_SEP 0.9f // Fraction of samples which compose the linear separable part - -using namespace cv; -using namespace std; - -static void help() -{ - cout<< "\n--------------------------------------------------------------------------" << endl - << "This program shows Support Vector Machines for Non-Linearly Separable Data. " << endl - << "Usage:" << endl - << "./non_linear_svms" << endl - << "--------------------------------------------------------------------------" << endl - << endl; -} - -int main() -{ - help(); - - // Data for visual representation - const int WIDTH = 512, HEIGHT = 512; - Mat I = Mat::zeros(HEIGHT, WIDTH, CV_8UC3); - - //--------------------- 1. Set up training data randomly --------------------------------------- - Mat trainData(2*NTRAINING_SAMPLES, 2, CV_32FC1); - Mat labels (2*NTRAINING_SAMPLES, 1, CV_32FC1); - - RNG rng(100); // Random value generation class - - // Set up the linearly separable part of the training data - int nLinearSamples = (int) (FRAC_LINEAR_SEP * NTRAINING_SAMPLES); - - // Generate random points for the class 1 - Mat trainClass = trainData.rowRange(0, nLinearSamples); - // The x coordinate of the points is in [0, 0.4) - Mat c = trainClass.colRange(0, 1); - rng.fill(c, RNG::UNIFORM, Scalar(1), Scalar(0.4 * WIDTH)); - // The y coordinate of the points is in [0, 1) - c = trainClass.colRange(1,2); - rng.fill(c, RNG::UNIFORM, Scalar(1), Scalar(HEIGHT)); - - // Generate random points for the class 2 - trainClass = trainData.rowRange(2*NTRAINING_SAMPLES-nLinearSamples, 2*NTRAINING_SAMPLES); - // The x coordinate of the points is in [0.6, 1] - c = trainClass.colRange(0 , 1); - rng.fill(c, RNG::UNIFORM, Scalar(0.6*WIDTH), Scalar(WIDTH)); - // The y coordinate of the points is in [0, 1) - c = trainClass.colRange(1,2); - rng.fill(c, RNG::UNIFORM, Scalar(1), Scalar(HEIGHT)); - - //------------------ Set up the non-linearly separable part of the training data --------------- - - // Generate random points for the classes 1 and 2 - trainClass = trainData.rowRange( nLinearSamples, 2*NTRAINING_SAMPLES-nLinearSamples); - // The x coordinate of the points is in [0.4, 0.6) - c = trainClass.colRange(0,1); - rng.fill(c, RNG::UNIFORM, Scalar(0.4*WIDTH), Scalar(0.6*WIDTH)); - // The y coordinate of the points is in [0, 1) - c = trainClass.colRange(1,2); - rng.fill(c, RNG::UNIFORM, Scalar(1), Scalar(HEIGHT)); - - //------------------------- Set up the labels for the classes --------------------------------- - labels.rowRange( 0, NTRAINING_SAMPLES).setTo(1); // Class 1 - labels.rowRange(NTRAINING_SAMPLES, 2*NTRAINING_SAMPLES).setTo(2); // Class 2 - - //------------------------ 2. Set up the support vector machines parameters -------------------- - CvSVMParams params; - params.svm_type = SVM::C_SVC; - params.C = 0.1; - params.kernel_type = SVM::LINEAR; - params.term_crit = TermCriteria(CV_TERMCRIT_ITER, (int)1e7, 1e-6); - - //------------------------ 3. Train the svm ---------------------------------------------------- - cout << "Starting training process" << endl; - CvSVM svm; - svm.train(trainData, labels, Mat(), Mat(), params); - cout << "Finished training process" << endl; - - //------------------------ 4. Show the decision regions ---------------------------------------- - Vec3b green(0,100,0), blue (100,0,0); - for (int i = 0; i < I.rows; ++i) - for (int j = 0; j < I.cols; ++j) - { - Mat sampleMat = (Mat_(1,2) << i, j); - float response = svm.predict(sampleMat); - - if (response == 1) I.at(j, i) = green; - else if (response == 2) I.at(j, i) = blue; - } - - //----------------------- 5. Show the training data -------------------------------------------- - int thick = -1; - int lineType = 8; - float px, py; - // Class 1 - for (int i = 0; i < NTRAINING_SAMPLES; ++i) - { - px = trainData.at(i,0); - py = trainData.at(i,1); - circle(I, Point( (int) px, (int) py ), 3, Scalar(0, 255, 0), thick, lineType); - } - // Class 2 - for (int i = NTRAINING_SAMPLES; i <2*NTRAINING_SAMPLES; ++i) - { - px = trainData.at(i,0); - py = trainData.at(i,1); - circle(I, Point( (int) px, (int) py ), 3, Scalar(255, 0, 0), thick, lineType); - } - - //------------------------- 6. Show support vectors -------------------------------------------- - thick = 2; - lineType = 8; - int x = svm.get_support_vector_count(); - - for (int i = 0; i < x; ++i) - { - const float* v = svm.get_support_vector(i); - circle( I, Point( (int) v[0], (int) v[1]), 6, Scalar(128, 128, 128), thick, lineType); - } - - imwrite("result.png", I); // save the Image - imshow("SVM for Non-Linear Training Data", I); // show it to the user - waitKey(0); -} \ No newline at end of file diff --git a/samples/gpu/768x576.avi b/samples/gpu/768x576.avi deleted file mode 100644 index 965ab12bd..000000000 Binary files a/samples/gpu/768x576.avi and /dev/null differ diff --git a/samples/gpu/aloeL.jpg b/samples/gpu/aloeL.jpg deleted file mode 100644 index 4c192768e..000000000 Binary files a/samples/gpu/aloeL.jpg and /dev/null differ diff --git a/samples/gpu/aloeR.jpg b/samples/gpu/aloeR.jpg deleted file mode 100644 index 7ecdf4891..000000000 Binary files a/samples/gpu/aloeR.jpg and /dev/null differ diff --git a/samples/gpu/basketball1.png b/samples/gpu/basketball1.png deleted file mode 100644 index 53b2dbaad..000000000 Binary files a/samples/gpu/basketball1.png and /dev/null differ diff --git a/samples/gpu/basketball2.png b/samples/gpu/basketball2.png deleted file mode 100644 index 1d069b965..000000000 Binary files a/samples/gpu/basketball2.png and /dev/null differ diff --git a/samples/gpu/road.png b/samples/gpu/road.png deleted file mode 100644 index a52c87cff..000000000 Binary files a/samples/gpu/road.png and /dev/null differ diff --git a/samples/gpu/rubberwhale1.png b/samples/gpu/rubberwhale1.png deleted file mode 100644 index e2b08dba2..000000000 Binary files a/samples/gpu/rubberwhale1.png and /dev/null differ diff --git a/samples/gpu/rubberwhale2.png b/samples/gpu/rubberwhale2.png deleted file mode 100644 index f365370a4..000000000 Binary files a/samples/gpu/rubberwhale2.png and /dev/null differ diff --git a/samples/gpu/tsucuba_left.png b/samples/gpu/tsucuba_left.png deleted file mode 100644 index 09679b24f..000000000 Binary files a/samples/gpu/tsucuba_left.png and /dev/null differ diff --git a/samples/gpu/tsucuba_right.png b/samples/gpu/tsucuba_right.png deleted file mode 100644 index a97b2763f..000000000 Binary files a/samples/gpu/tsucuba_right.png and /dev/null differ diff --git a/samples/java/ant/build.xml b/samples/java/ant/build.xml deleted file mode 100644 index d817aa63d..000000000 --- a/samples/java/ant/build.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/samples/java/ant/src/SimpleSample.java b/samples/java/ant/src/SimpleSample.java deleted file mode 100644 index a0375c562..000000000 --- a/samples/java/ant/src/SimpleSample.java +++ /dev/null @@ -1,21 +0,0 @@ -import org.opencv.core.Core; -import org.opencv.core.Mat; -import org.opencv.core.CvType; -import org.opencv.core.Scalar; - -class SimpleSample { - - static{ System.loadLibrary(Core.NATIVE_LIBRARY_NAME); } - - public static void main(String[] args) { - System.out.println("Welcome to OpenCV " + Core.VERSION); - Mat m = new Mat(5, 10, CvType.CV_8UC1, new Scalar(0)); - System.out.println("OpenCV Mat: " + m); - Mat mr1 = m.row(1); - mr1.setTo(new Scalar(1)); - Mat mc5 = m.col(5); - mc5.setTo(new Scalar(5)); - System.out.println("OpenCV Mat data:\n" + m.dump()); - } - -} diff --git a/samples/java/eclipse/HelloCV/.classpath b/samples/java/eclipse/HelloCV/.classpath deleted file mode 100644 index 645263d83..000000000 --- a/samples/java/eclipse/HelloCV/.classpath +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/samples/java/eclipse/HelloCV/.project b/samples/java/eclipse/HelloCV/.project deleted file mode 100644 index b1df1de5e..000000000 --- a/samples/java/eclipse/HelloCV/.project +++ /dev/null @@ -1,17 +0,0 @@ - - - HelloCV - - - - - - org.eclipse.jdt.core.javabuilder - - - - - - org.eclipse.jdt.core.javanature - - diff --git a/samples/java/eclipse/HelloCV/.settings/org.eclipse.jdt.core.prefs b/samples/java/eclipse/HelloCV/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index 7341ab168..000000000 --- a/samples/java/eclipse/HelloCV/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,11 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 -org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=1.7 -org.eclipse.jdt.core.compiler.debug.lineNumber=generate -org.eclipse.jdt.core.compiler.debug.localVariable=generate -org.eclipse.jdt.core.compiler.debug.sourceFile=generate -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.7 diff --git a/samples/java/eclipse/HelloCV/src/Main.java b/samples/java/eclipse/HelloCV/src/Main.java deleted file mode 100644 index 44f2bb02b..000000000 --- a/samples/java/eclipse/HelloCV/src/Main.java +++ /dev/null @@ -1,14 +0,0 @@ -import org.opencv.core.Core; -import org.opencv.core.CvType; -import org.opencv.core.Mat; - -public class Main { - - public static void main(String[] args) { - System.out.println("Welcome to OpenCV " + Core.VERSION); - System.loadLibrary(Core.NATIVE_LIBRARY_NAME); - Mat m = Mat.eye(3, 3, CvType.CV_8UC1); - System.out.println("m = " + m.dump()); - } - -} diff --git a/samples/java/sbt/README b/samples/java/sbt/README deleted file mode 100644 index 263ff5474..000000000 --- a/samples/java/sbt/README +++ /dev/null @@ -1,13 +0,0 @@ -A demo of the Java wrapper for OpenCV with two examples: -1) feature detection and matching and -2) face detection. -The examples are coded in Scala and Java. -Anyone familiar with Java should be able to read the Scala examples. -Please feel free to contribute code examples in Scala or Java, or any JVM language. - -To run the examples: -1) Install OpenCV and copy the OpenCV jar to lib/. - This jar must match the native libraries installed in your system. - If this isn't the case, you may get a java.lang.UnsatisfiedLinkError at runtime. -2) Go to the root directory and type "sbt/sbt run". - This should generate images in your current directory. diff --git a/samples/java/sbt/lib/copy_opencv_jar_here b/samples/java/sbt/lib/copy_opencv_jar_here deleted file mode 100644 index e69de29bb..000000000 diff --git a/samples/java/sbt/project/build.scala b/samples/java/sbt/project/build.scala deleted file mode 100644 index 5a7380b96..000000000 --- a/samples/java/sbt/project/build.scala +++ /dev/null @@ -1,22 +0,0 @@ -import sbt._ -import Keys._ - -object OpenCVJavaDemoBuild extends Build { - def scalaSettings = Seq( - scalaVersion := "2.10.0", - scalacOptions ++= Seq( - "-optimize", - "-unchecked", - "-deprecation" - ) - ) - - def buildSettings = - Project.defaultSettings ++ - scalaSettings - - lazy val root = { - val settings = buildSettings ++ Seq(name := "OpenCVJavaDemo") - Project(id = "OpenCVJavaDemo", base = file("."), settings = settings) - } -} diff --git a/samples/java/sbt/project/plugins.sbt b/samples/java/sbt/project/plugins.sbt deleted file mode 100644 index c2371be43..000000000 --- a/samples/java/sbt/project/plugins.sbt +++ /dev/null @@ -1 +0,0 @@ -addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.1.0") diff --git a/samples/java/sbt/sbt/sbt b/samples/java/sbt/sbt/sbt deleted file mode 100644 index 99ae7ec25..000000000 --- a/samples/java/sbt/sbt/sbt +++ /dev/null @@ -1 +0,0 @@ -java -Xms512M -Xmx1536M -Xss1M -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=384M -jar `dirname $0`/sbt-launch.jar "$@" \ No newline at end of file diff --git a/samples/java/sbt/sbt/sbt-launch.jar b/samples/java/sbt/sbt/sbt-launch.jar deleted file mode 100644 index 06ad8d880..000000000 Binary files a/samples/java/sbt/sbt/sbt-launch.jar and /dev/null differ diff --git a/samples/java/sbt/src/main/java/DetectFaceDemo.java b/samples/java/sbt/src/main/java/DetectFaceDemo.java deleted file mode 100644 index fb0856723..000000000 --- a/samples/java/sbt/src/main/java/DetectFaceDemo.java +++ /dev/null @@ -1,44 +0,0 @@ -import org.opencv.core.Core; -import org.opencv.core.Mat; -import org.opencv.core.MatOfRect; -import org.opencv.core.Point; -import org.opencv.core.Rect; -import org.opencv.core.Scalar; -import org.opencv.highgui.Highgui; -import org.opencv.objdetect.CascadeClassifier; - -/* - * Detects faces in an image, draws boxes around them, and writes the results - * to "faceDetection.png". - */ -public class DetectFaceDemo { - public void run() { - System.out.println("\nRunning DetectFaceDemo"); - - // Create a face detector from the cascade file in the resources - // directory. - CascadeClassifier faceDetector = new CascadeClassifier(getClass() - .getResource("/lbpcascade_frontalface.xml").getPath()); - Mat image = Highgui.imread(getClass().getResource( - "/AverageMaleFace.jpg").getPath()); - - // Detect faces in the image. - // MatOfRect is a special container class for Rect. - MatOfRect faceDetections = new MatOfRect(); - faceDetector.detectMultiScale(image, faceDetections); - - System.out.println(String.format("Detected %s faces", - faceDetections.toArray().length)); - - // Draw a bounding box around each face. - for (Rect rect : faceDetections.toArray()) { - Core.rectangle(image, new Point(rect.x, rect.y), new Point(rect.x - + rect.width, rect.y + rect.height), new Scalar(0, 255, 0)); - } - - // Save the visualized detection. - String filename = "faceDetection.png"; - System.out.println(String.format("Writing %s", filename)); - Highgui.imwrite(filename, image); - } -} \ No newline at end of file diff --git a/samples/java/sbt/src/main/resources/AverageMaleFace.jpg b/samples/java/sbt/src/main/resources/AverageMaleFace.jpg deleted file mode 100644 index 3b96e03b8..000000000 Binary files a/samples/java/sbt/src/main/resources/AverageMaleFace.jpg and /dev/null differ diff --git a/samples/java/sbt/src/main/resources/img1.png b/samples/java/sbt/src/main/resources/img1.png deleted file mode 100644 index 93cd5945a..000000000 Binary files a/samples/java/sbt/src/main/resources/img1.png and /dev/null differ diff --git a/samples/java/sbt/src/main/resources/img2.png b/samples/java/sbt/src/main/resources/img2.png deleted file mode 100644 index 41959c66f..000000000 Binary files a/samples/java/sbt/src/main/resources/img2.png and /dev/null differ diff --git a/samples/java/sbt/src/main/scala/Main.scala b/samples/java/sbt/src/main/scala/Main.scala deleted file mode 100644 index 6f07aa19c..000000000 --- a/samples/java/sbt/src/main/scala/Main.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * The main runner for the Java demos. - * Demos whose name begins with "Scala" are written in the Scala language, - * demonstrating the generic nature of the interface. - * The other demos are in Java. - * Currently, all demos are run, sequentially. - * - * You're invited to submit your own examples, in any JVM language of - * your choosing so long as you can get them to build. - */ - -import org.opencv.core.Core - -object Main extends App { - // We must load the native library before using any OpenCV functions. - // You must load this library _exactly once_ per Java invocation. - // If you load it more than once, you will get a java.lang.UnsatisfiedLinkError. - System.loadLibrary(Core.NATIVE_LIBRARY_NAME) - - ScalaCorrespondenceMatchingDemo.run() - ScalaDetectFaceDemo.run() - new DetectFaceDemo().run() -} diff --git a/samples/java/sbt/src/main/scala/ScalaCorrespondenceMatchingDemo.scala b/samples/java/sbt/src/main/scala/ScalaCorrespondenceMatchingDemo.scala deleted file mode 100644 index 30ab0553e..000000000 --- a/samples/java/sbt/src/main/scala/ScalaCorrespondenceMatchingDemo.scala +++ /dev/null @@ -1,69 +0,0 @@ -import org.opencv.highgui.Highgui -import org.opencv.features2d.DescriptorExtractor -import org.opencv.features2d.Features2d -import org.opencv.core.MatOfKeyPoint -import org.opencv.core.Mat -import org.opencv.features2d.FeatureDetector -import org.opencv.features2d.DescriptorMatcher -import org.opencv.core.MatOfDMatch -import reflect._ - -/* - * Finds corresponding points between a pair of images using local descriptors. - * The correspondences are visualized in the image "scalaCorrespondences.png", - * which is written to disk. - */ -object ScalaCorrespondenceMatchingDemo { - def run() { - println(s"\nRunning ${classTag[this.type].toString.replace("$", "")}") - - // Detects keypoints and extracts descriptors in a given image of type Mat. - def detectAndExtract(mat: Mat) = { - // A special container class for KeyPoint. - val keyPoints = new MatOfKeyPoint - // We're using the SURF detector. - val detector = FeatureDetector.create(FeatureDetector.SURF) - detector.detect(mat, keyPoints) - - println(s"There were ${keyPoints.toArray.size} KeyPoints detected") - - // Let's just use the best KeyPoints. - val sorted = keyPoints.toArray.sortBy(_.response).reverse.take(50) - // There isn't a constructor that takes Array[KeyPoint], so we unpack - // the array and use the constructor that can take any number of - // arguments. - val bestKeyPoints: MatOfKeyPoint = new MatOfKeyPoint(sorted: _*) - - // We're using the SURF descriptor. - val extractor = DescriptorExtractor.create(DescriptorExtractor.SURF) - val descriptors = new Mat - extractor.compute(mat, bestKeyPoints, descriptors) - - println(s"${descriptors.rows} descriptors were extracted, each with dimension ${descriptors.cols}") - - (bestKeyPoints, descriptors) - } - - // Load the images from the |resources| directory. - val leftImage = Highgui.imread(getClass.getResource("/img1.png").getPath) - val rightImage = Highgui.imread(getClass.getResource("/img2.png").getPath) - - // Detect KeyPoints and extract descriptors. - val (leftKeyPoints, leftDescriptors) = detectAndExtract(leftImage) - val (rightKeyPoints, rightDescriptors) = detectAndExtract(rightImage) - - // Match the descriptors. - val matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE) - // A special container class for DMatch. - val dmatches = new MatOfDMatch - // The backticks are because "match" is a keyword in Scala. - matcher.`match`(leftDescriptors, rightDescriptors, dmatches) - - // Visualize the matches and save the visualization. - val correspondenceImage = new Mat - Features2d.drawMatches(leftImage, leftKeyPoints, rightImage, rightKeyPoints, dmatches, correspondenceImage) - val filename = "scalaCorrespondences.png" - println(s"Writing ${filename}") - assert(Highgui.imwrite(filename, correspondenceImage)) - } -} \ No newline at end of file diff --git a/samples/java/sbt/src/main/scala/ScalaDetectFaceDemo.scala b/samples/java/sbt/src/main/scala/ScalaDetectFaceDemo.scala deleted file mode 100644 index a35eeb778..000000000 --- a/samples/java/sbt/src/main/scala/ScalaDetectFaceDemo.scala +++ /dev/null @@ -1,43 +0,0 @@ -import org.opencv.core.Core -import org.opencv.core.MatOfRect -import org.opencv.core.Point -import org.opencv.core.Scalar -import org.opencv.highgui.Highgui -import org.opencv.objdetect.CascadeClassifier -import reflect._ - -/* - * Detects faces in an image, draws boxes around them, and writes the results - * to "scalaFaceDetection.png". - */ -object ScalaDetectFaceDemo { - def run() { - println(s"\nRunning ${classTag[this.type].toString.replace("$", "")}") - - // Create a face detector from the cascade file in the resources directory. - val faceDetector = new CascadeClassifier(getClass.getResource("/lbpcascade_frontalface.xml").getPath) - val image = Highgui.imread(getClass.getResource("/AverageMaleFace.jpg").getPath) - - // Detect faces in the image. - // MatOfRect is a special container class for Rect. - val faceDetections = new MatOfRect - faceDetector.detectMultiScale(image, faceDetections) - - println(s"Detected ${faceDetections.toArray.size} faces") - - // Draw a bounding box around each face. - for (rect <- faceDetections.toArray) { - Core.rectangle( - image, - new Point(rect.x, rect.y), - new Point(rect.x + rect.width, - rect.y + rect.height), - new Scalar(0, 255, 0)) - } - - // Save the visualized detection. - val filename = "scalaFaceDetection.png" - println(s"Writing ${filename}") - assert(Highgui.imwrite(filename, image)) - } -} \ No newline at end of file diff --git a/samples/python2/data/aero1.jpg b/samples/python2/data/aero1.jpg deleted file mode 100644 index a7249e48b..000000000 Binary files a/samples/python2/data/aero1.jpg and /dev/null differ diff --git a/samples/python2/data/aero3.jpg b/samples/python2/data/aero3.jpg deleted file mode 100644 index 3c2a99e2b..000000000 Binary files a/samples/python2/data/aero3.jpg and /dev/null differ diff --git a/samples/python2/data/digits.png b/samples/python2/data/digits.png deleted file mode 100644 index 01cdd2972..000000000 Binary files a/samples/python2/data/digits.png and /dev/null differ diff --git a/samples/python2/data/licenseplate_motion.jpg b/samples/python2/data/licenseplate_motion.jpg deleted file mode 100644 index 9723ea148..000000000 Binary files a/samples/python2/data/licenseplate_motion.jpg and /dev/null differ diff --git a/samples/python2/data/starry_night.jpg b/samples/python2/data/starry_night.jpg deleted file mode 100644 index 824e0e5a2..000000000 Binary files a/samples/python2/data/starry_night.jpg and /dev/null differ diff --git a/samples/python2/data/text_defocus.jpg b/samples/python2/data/text_defocus.jpg deleted file mode 100644 index 42c37e058..000000000 Binary files a/samples/python2/data/text_defocus.jpg and /dev/null differ diff --git a/samples/python2/data/text_motion.jpg b/samples/python2/data/text_motion.jpg deleted file mode 100644 index 781f095c2..000000000 Binary files a/samples/python2/data/text_motion.jpg and /dev/null differ diff --git a/samples/python2/facerec_demo.py b/samples/python2/facerec_demo.py deleted file mode 100755 index 1b0adcc21..000000000 --- a/samples/python2/facerec_demo.py +++ /dev/null @@ -1,161 +0,0 @@ -#!/usr/bin/env python -# Software License Agreement (BSD License) -# -# Copyright (c) 2012, Philipp Wagner . -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following -# disclaimer in the documentation and/or other materials provided -# with the distribution. -# * Neither the name of the author nor the names of its -# contributors may be used to endorse or promote products derived -# from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - - -import os -import sys -import cv2 -import numpy as np - -def normalize(X, low, high, dtype=None): - """Normalizes a given array in X to a value between low and high.""" - X = np.asarray(X) - minX, maxX = np.min(X), np.max(X) - # normalize to [0...1]. - X = X - float(minX) - X = X / float((maxX - minX)) - # scale to [low...high]. - X = X * (high-low) - X = X + low - if dtype is None: - return np.asarray(X) - return np.asarray(X, dtype=dtype) - - -def read_images(path, sz=None): - """Reads the images in a given folder, resizes images on the fly if size is given. - - Args: - path: Path to a folder with subfolders representing the subjects (persons). - sz: A tuple with the size Resizes - - Returns: - A list [X,y] - - X: The images, which is a Python list of numpy arrays. - y: The corresponding labels (the unique number of the subject, person) in a Python list. - """ - c = 0 - X,y = [], [] - for dirname, dirnames, filenames in os.walk(path): - for subdirname in dirnames: - subject_path = os.path.join(dirname, subdirname) - for filename in os.listdir(subject_path): - try: - im = cv2.imread(os.path.join(subject_path, filename), cv2.IMREAD_GRAYSCALE) - # resize to given size (if given) - if (sz is not None): - im = cv2.resize(im, sz) - X.append(np.asarray(im, dtype=np.uint8)) - y.append(c) - except IOError, (errno, strerror): - print "I/O error({0}): {1}".format(errno, strerror) - except: - print "Unexpected error:", sys.exc_info()[0] - raise - c = c+1 - return [X,y] - -if __name__ == "__main__": - # This is where we write the images, if an output_dir is given - # in command line: - out_dir = None - # You'll need at least a path to your image data, please see - # the tutorial coming with this source code on how to prepare - # your image data: - if len(sys.argv) < 2: - print "USAGE: facerec_demo.py []" - sys.exit() - # Now read in the image data. This must be a valid path! - [X,y] = read_images(sys.argv[1]) - # Convert labels to 32bit integers. This is a workaround for 64bit machines, - # because the labels will truncated else. This will be fixed in code as - # soon as possible, so Python users don't need to know about this. - # Thanks to Leo Dirac for reporting: - y = np.asarray(y, dtype=np.int32) - # If a out_dir is given, set it: - if len(sys.argv) == 3: - out_dir = sys.argv[2] - # Create the Eigenfaces model. We are going to use the default - # parameters for this simple example, please read the documentation - # for thresholding: - model = cv2.createEigenFaceRecognizer() - # Read - # Learn the model. Remember our function returns Python lists, - # so we use np.asarray to turn them into NumPy lists to make - # the OpenCV wrapper happy: - model.train(np.asarray(X), np.asarray(y)) - # We now get a prediction from the model! In reality you - # should always use unseen images for testing your model. - # But so many people were confused, when I sliced an image - # off in the C++ version, so I am just using an image we - # have trained with. - # - # model.predict is going to return the predicted label and - # the associated confidence: - [p_label, p_confidence] = model.predict(np.asarray(X[0])) - # Print it: - print "Predicted label = %d (confidence=%.2f)" % (p_label, p_confidence) - # Cool! Finally we'll plot the Eigenfaces, because that's - # what most people read in the papers are keen to see. - # - # Just like in C++ you have access to all model internal - # data, because the cv::FaceRecognizer is a cv::Algorithm. - # - # You can see the available parameters with getParams(): - print model.getParams() - # Now let's get some data: - mean = model.getMat("mean") - eigenvectors = model.getMat("eigenvectors") - # We'll save the mean, by first normalizing it: - mean_norm = normalize(mean, 0, 255, dtype=np.uint8) - mean_resized = mean_norm.reshape(X[0].shape) - if out_dir is None: - cv2.imshow("mean", mean_resized) - else: - cv2.imwrite("%s/mean.png" % (out_dir), mean_resized) - # Turn the first (at most) 16 eigenvectors into grayscale - # images. You could also use cv::normalize here, but sticking - # to NumPy is much easier for now. - # Note: eigenvectors are stored by column: - for i in xrange(min(len(X), 16)): - eigenvector_i = eigenvectors[:,i].reshape(X[0].shape) - eigenvector_i_norm = normalize(eigenvector_i, 0, 255, dtype=np.uint8) - # Show or save the images: - if out_dir is None: - cv2.imshow("%s/eigenface_%d" % (out_dir,i), eigenvector_i_norm) - else: - cv2.imwrite("%s/eigenface_%d.png" % (out_dir,i), eigenvector_i_norm) - # Show the images: - if out_dir is None: - cv2.waitKey(0)